/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #d62d8c;
    --secondary-color: #7b2d7e;
    --accent-orange: #f89e3b;
    --accent-yellow: #ffc107;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --white-color: #ffffff;
    --gray-color: #7f8c8d;
    --border-color: #e0e0e0;

    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --font-size-small: 0.875rem;
    --font-size-normal: 1rem;
    --font-size-medium: 1.125rem;
    --font-size-large: 1.5rem;
    --font-size-xlarge: 2rem;
    --font-size-xxlarge: 2.5rem;
    --font-size-hero: 3rem;

    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Container */
    --container-width: 1200px;
    --container-padding: 1rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

    /* Header Height */
    --header-height: 70px;
    --header-mobile-height: 200px; /* Adjusted: Nav bar (65px) + Action buttons (135px) */
}

/* ===== BASE STYLES ===== */
body {
    font-family: var(--font-family);
    font-size: var(--font-size-normal);
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

/* ===== REUSABLE CLASSES ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--spacing-xxl) 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section__subtitle {
    display: block;
    font-size: var(--font-size-small);
    color: var(--primary-color);
    font-weight: var(--font-semibold);
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.section__title {
    font-size: var(--font-size-xlarge);
    font-weight: var(--font-bold);
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

.section__title--center {
    text-align: center;
}

.section__description {
    font-size: var(--font-size-normal);
    color: var(--gray-color);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: var(--font-size-normal);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn--primary:hover {
    background-color: #b8256f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn--secondary:hover {
    background-color: #621f63;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--hero {
    background: linear-gradient(135deg, #d62d8c 0%, #e84393 50%, #f06ea9 100%);
    color: var(--white-color);
    padding: 1.125rem 2.75rem;
    font-size: 1rem;
    font-weight: var(--font-semibold);
    letter-spacing: 1.2px;
    
    /* Premium layered shadows */
    box-shadow: 
        0 8px 28px rgba(214, 45, 140, 0.35),
        0 4px 16px rgba(232, 67, 147, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.25);
    
    /* Elegant border */
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    
    /* Smooth premium transitions */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    position: relative;
    overflow: hidden;
    
    /* Premium pulse animation */
    animation: btnPulse 3s ease-in-out infinite;
}

/* Premium shine effect */
.btn--hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.btn--hero:hover::before {
    left: 100%;
}

.btn--hero:hover {
    background: linear-gradient(135deg, #e84393 0%, #f06ea9 50%, #ff8ec4 100%);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 12px 40px rgba(214, 45, 140, 0.45),
        0 6px 24px rgba(232, 67, 147, 0.35),
        0 3px 12px rgba(0, 0, 0, 0.2),
        inset 0 -2px 10px rgba(0, 0, 0, 0.15),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
    animation: none;
}

.btn--hero:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 6px 24px rgba(214, 45, 140, 0.4),
        0 3px 12px rgba(232, 67, 147, 0.3),
        inset 0 -2px 12px rgba(0, 0, 0, 0.2),
        inset 0 2px 12px rgba(255, 255, 255, 0.2);
}

/* Premium pulse animation for call-to-action */
@keyframes btnPulse {
    0%, 100% {
        box-shadow: 
            0 8px 28px rgba(214, 45, 140, 0.35),
            0 4px 16px rgba(232, 67, 147, 0.25),
            0 2px 8px rgba(0, 0, 0, 0.15),
            inset 0 -2px 8px rgba(0, 0, 0, 0.15),
            inset 0 2px 8px rgba(255, 255, 255, 0.25);
    }
    50% {
        box-shadow: 
            0 10px 36px rgba(214, 45, 140, 0.45),
            0 5px 20px rgba(232, 67, 147, 0.35),
            0 3px 10px rgba(0, 0, 0, 0.2),
            inset 0 -2px 8px rgba(0, 0, 0, 0.15),
            inset 0 2px 8px rgba(255, 255, 255, 0.25);
    }
}

.btn--block {
    width: 100%;
    text-align: center;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: var(--shadow-md);
    z-index: 100;
    transition: all var(--transition-normal);
    
    /* Premium glassmorphism effect on mobile */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(214, 45, 140, 0.08);
}

.header.scroll-header {
    box-shadow: 0 8px 32px rgba(214, 45, 140, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.nav {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 1.5rem;
}

/* Mobile: Center logo, hamburger on left - Premium Edition */
@media screen and (max-width: 991px) {
    .header {
        /* Enhanced premium glassmorphism */
        background: linear-gradient(180deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(255, 255, 255, 0.95) 100%);
        box-shadow: 
            0 4px 24px rgba(214, 45, 140, 0.08),
            0 2px 12px rgba(123, 45, 126, 0.04),
            0 1px 0 rgba(214, 45, 140, 0.06) inset;
    }
    
    .nav {
        justify-content: center;
        height: 72px;
        padding: 1rem 1.25rem;
    }
    
    .nav__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.3s ease;
    }
    
    .nav__logo:active {
        transform: translateX(-50%) scale(0.96);
    }
    
    .nav__toggle {
        position: absolute;
        left: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: linear-gradient(135deg, 
            rgba(214, 45, 140, 0.08) 0%, 
            rgba(123, 45, 126, 0.08) 100%);
        border: 1px solid rgba(214, 45, 140, 0.12);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }
    
    .nav__toggle:active {
        transform: translateY(-50%) scale(0.92);
        background: linear-gradient(135deg, 
            rgba(214, 45, 140, 0.15) 0%, 
            rgba(123, 45, 126, 0.15) 100%);
    }
    
    .nav__search {
        position: absolute;
        right: 1rem;
        visibility: hidden;
    }
    
    .nav__actions {
        display: none !important;
    }
}

.nav__logo {
    display: flex;
    align-items: center;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo__image {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 12px;
    
    /* Elegant shadows and effects */
    box-shadow: 
        0 4px 12px rgba(214, 45, 140, 0.15),
        0 2px 6px rgba(123, 45, 126, 0.1);
    
    /* Smooth transitions */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Subtle border for elegance */
    border: 2px solid rgba(214, 45, 140, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    padding: 6px;
}

/* Hover effect for professional interactivity */
.nav__logo:hover .logo__image {
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(214, 45, 140, 0.25),
        0 3px 10px rgba(123, 45, 126, 0.15);
    border-color: rgba(214, 45, 140, 0.2);
}

/* Pulse animation for elegance */
@keyframes logoPulse {
    0%, 100% {
        box-shadow: 
            0 4px 12px rgba(214, 45, 140, 0.15),
            0 2px 6px rgba(123, 45, 126, 0.1);
    }
    50% {
        box-shadow: 
            0 6px 16px rgba(214, 45, 140, 0.25),
            0 3px 8px rgba(123, 45, 126, 0.15);
    }
}

.logo__image {
    animation: logoPulse 3s ease-in-out infinite;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo__title {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.logo__subtitle {
    font-size: 0.7rem;
    font-weight: var(--font-bold);
    color: var(--secondary-color);
    letter-spacing: 2.5px;
}

/* ===== MOBILE NAVIGATION - ULTRA PREMIUM EDITION ===== */

/* Mobile Menu Logo Section */
.nav__menu-logo {
    position: absolute;
    top: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.nav__menu-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 16px;
    
    /* Premium shadows with brand colors */
    box-shadow: 
        0 8px 24px rgba(214, 45, 140, 0.2),
        0 4px 12px rgba(123, 45, 126, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.1);
    
    /* Elegant border with gradient */
    border: 2px solid rgba(214, 45, 140, 0.2);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(248, 249, 250, 0.95));
    padding: 8px;
    
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__menu-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.nav__menu-logo-title {
    font-size: 1.4rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(214, 45, 140, 0.15);
}

.nav__menu-logo-subtitle {
    font-size: 0.65rem;
    font-weight: var(--font-semibold);
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Mobile Navigation - Premium Slide-in Menu */
.nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    
    /* Premium glassmorphism background with gradient */
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(252, 248, 250, 0.98) 50%,
        rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Premium shadow with colored tint */
    box-shadow: 
        -12px 0 48px rgba(214, 45, 140, 0.15),
        -6px 0 28px rgba(123, 45, 126, 0.1),
        -3px 0 16px rgba(0, 0, 0, 0.08);
    
    /* Elegant left border with gradient */
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, 
        rgba(214, 45, 140, 0.4) 0%,
        rgba(123, 45, 126, 0.4) 50%,
        rgba(214, 45, 140, 0.4) 100%) 1;
    
    overflow-y: auto;
    overflow-x: hidden;
    
    /* Decorative background pattern */
    background-image: 
        linear-gradient(180deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(252, 248, 250, 0.98) 50%,
            rgba(255, 255, 255, 0.98) 100%),
        radial-gradient(circle at 20% 20%, rgba(214, 45, 140, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(123, 45, 126, 0.03) 0%, transparent 50%);
}

.nav__menu.show-menu {
    right: 0;
}

/* Premium scrollbar for menu */
.nav__menu::-webkit-scrollbar {
    width: 6px;
}

.nav__menu::-webkit-scrollbar-track {
    background: rgba(214, 45, 140, 0.05);
    border-radius: 10px;
}

.nav__menu::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.nav__menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b8256f, #621f63);
}

/* Decorative Divider */
.nav__menu-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(214, 45, 140, 0.3) 20%,
        rgba(123, 45, 126, 0.3) 50%,
        rgba(214, 45, 140, 0.3) 80%,
        transparent 100%);
    margin-top: 10.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.nav__menu-divider::before {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(252, 248, 250, 0.98) 100%);
    color: var(--primary-color);
    font-size: 0.9rem;
    padding: 0 0.75rem;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Navigation Items Container */
.nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 15rem;
    padding-bottom: 2rem;
}

.nav__item {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.3s ease;
}

/* Premium Navigation Item Cards */
.nav__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    padding: 1.15rem 1.25rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Premium card style */
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(248, 249, 250, 0.6) 100%);
    
    /* Elegant shadows */
    box-shadow: 
        0 2px 8px rgba(214, 45, 140, 0.06),
        0 1px 4px rgba(123, 45, 126, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    
    border: 1px solid rgba(214, 45, 140, 0.08);
    letter-spacing: 0.3px;
    overflow: hidden;
}

/* Nav link icon - NEW! */
.nav__link i {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, 
        rgba(214, 45, 140, 0.1) 0%, 
        rgba(123, 45, 126, 0.08) 100%);
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Accent border on left */
.nav__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

/* Shimmer effect */
.nav__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

/* Hover state */
.nav__link:hover {
    transform: translateX(6px);
    color: var(--primary-color);
    background: linear-gradient(135deg, 
        rgba(214, 45, 140, 0.12) 0%, 
        rgba(123, 45, 126, 0.08) 100%);
    
    box-shadow: 
        0 6px 20px rgba(214, 45, 140, 0.15),
        0 3px 10px rgba(123, 45, 126, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    
    border-color: rgba(214, 45, 140, 0.2);
}

.nav__link:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.nav__link:hover::after {
    left: 100%;
}

.nav__link:hover i {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    color: var(--white-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(214, 45, 140, 0.3);
}

/* Active state */
.nav__link.active-link {
    color: var(--primary-color);
    font-weight: var(--font-bold);
    background: linear-gradient(135deg, 
        rgba(214, 45, 140, 0.15) 0%, 
        rgba(123, 45, 126, 0.12) 100%);
    
    box-shadow: 
        0 8px 24px rgba(214, 45, 140, 0.2),
        0 4px 12px rgba(123, 45, 126, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(214, 45, 140, 0.1);
    
    border-color: rgba(214, 45, 140, 0.25);
    transform: translateX(4px);
}

.nav__link.active-link::before {
    transform: scaleY(1);
}

.nav__link.active-link i {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    color: var(--white-color);
    box-shadow: 0 4px 16px rgba(214, 45, 140, 0.35);
}

/* Touch feedback */
.nav__link:active {
    transform: translateX(2px) scale(0.98);
}

.nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    cursor: pointer;
    
    /* Premium close button */
    background: linear-gradient(135deg, 
        rgba(214, 45, 140, 0.1) 0%, 
        rgba(123, 45, 126, 0.1) 100%);
    border-radius: 50%;
    border: 1px solid rgba(214, 45, 140, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__close:hover {
    background: linear-gradient(135deg, 
        rgba(214, 45, 140, 0.18) 0%, 
        rgba(123, 45, 126, 0.18) 100%);
    transform: rotate(90deg);
    border-color: rgba(214, 45, 140, 0.25);
}

.nav__close:active {
    transform: rotate(90deg) scale(0.9);
}

.nav__toggle {
    font-size: 1.3rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.nav__toggle i {
    transition: transform 0.3s ease;
}

.nav__toggle:hover i {
    transform: rotate(90deg);
}

/* Mobile Action Buttons Section - Premium Edition */
.nav__mobile-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 1.5rem 1rem;
    
    /* Premium gradient background */
    background: linear-gradient(180deg, 
        rgba(248, 249, 250, 0.95) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    
    /* Elegant top border with gradient */
    border-top: 1px solid rgba(214, 45, 140, 0.12);
    
    /* Subtle shadow for depth */
    box-shadow: 0 -4px 20px rgba(214, 45, 140, 0.04);
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
    border-radius: 20px;
}

.mobile-action-btn:active {
    transform: scale(0.96);
}

.mobile-action-btn__icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    
    /* Premium layered shadows */
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(214, 45, 140, 0.15),
        0 2px 6px rgba(123, 45, 126, 0.1),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.2);
    
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Elegant border */
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Ripple effect */
.mobile-action-btn__icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: inherit;
    opacity: 0;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
}

.mobile-action-btn__icon i {
    font-size: 2.1rem;
    color: var(--white-color);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.mobile-action-btn span {
    font-size: 0.8rem;
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    text-align: center;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.mobile-action-btn:active span {
    color: var(--primary-color);
}

.mobile-action-btn--donate .mobile-action-btn__icon {
    background: linear-gradient(135deg, #d62d8c 0%, #e84393 50%, #f06ea9 100%);
}

.mobile-action-btn--involved .mobile-action-btn__icon {
    background: linear-gradient(135deg, #7b2d7e 0%, #9b4d9f 50%, #b86db8 100%);
}

.mobile-action-btn:active .mobile-action-btn__icon {
    transform: scale(0.94);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(214, 45, 140, 0.2),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.15);
}

@media screen and (min-width: 400px) {
    .mobile-action-btn__icon {
        width: 88px;
        height: 88px;
    }
    
    .mobile-action-btn__icon i {
        font-size: 2.2rem;
    }
    
    .nav__mobile-actions {
        gap: 3rem;
    }
}

/* Hide mobile-only items on desktop */
.mobile-only {
    display: none !important;
}

/* Show mobile-only items on mobile */
@media screen and (max-width: 991px) {
    .mobile-only {
        display: flex !important; /* Or block, depending on desired layout */
    }
}

/* Premium menu animation when opening */
.nav__menu.show-menu .nav__item {
    animation: slideInRight 0.4s ease forwards;
}

.nav__menu.show-menu .nav__item:nth-child(1) { animation-delay: 0.1s; }
.nav__menu.show-menu .nav__item:nth-child(2) { animation-delay: 0.15s; }
.nav__menu.show-menu .nav__item:nth-child(3) { animation-delay: 0.2s; }
.nav__menu.show-menu .nav__item:nth-child(4) { animation-delay: 0.25s; }
.nav__menu.show-menu .nav__item:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Backdrop blur overlay when menu is open */
.nav__menu::after {
    content: '';
    position: fixed;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.nav__menu.show-menu::after {
    opacity: 1;
    pointer-events: auto;
}

/* Desktop: Show desktop actions, hide mobile */
.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav__actions .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(214, 45, 140, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__actions .btn:hover {
    box-shadow: 0 6px 20px rgba(214, 45, 140, 0.3);
}

/* Hide mobile action buttons on desktop */
@media screen and (min-width: 992px) {
    .nav__mobile-actions {
        display: none;
    }
    
    .nav__search {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
/* Hero section now uses slider - see css/hero-slider.css for slider styles */
.hero {
    position: relative;
    min-height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 2rem; /* Increased bottom padding for mobile */
    overflow: hidden;
}

/* Use regular header height on desktop */
@media screen and (min-width: 992px) {
    .hero {
        padding-top: var(--header-height);
        padding-bottom: 0;
    }
}

/* Fallback gradient if no image is provided */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

.hero__container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem var(--container-padding); /* Increased padding */
    position: relative;
    z-index: 2;
}

.hero__content {
    text-align: center;
    color: var(--white-color);
    max-width: 800px;
    padding-top: 5rem;
}

.hero__title {
    font-size: 1.85rem; /* Slightly reduced for better fit on mobile */
    font-weight: 800;
    margin-bottom: 1rem; /* Consistent margin */
    line-height: 1.25;
    
    /* Premium display font */
    font-family: 'Montserrat', 'Poppins', sans-serif;
    
    /* Premium gradient text */
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #ffe4f2 30%, 
        #ffd4e9 60%, 
        #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Smooth text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* Premium letter spacing */
    letter-spacing: 0.5px;
    word-spacing: 2px;
    
    /* Text transform for impact */
    text-transform: uppercase;
    
    /* Subtle animation */
    animation: titleGlow 4s ease-in-out infinite;
    
    position: relative;
    z-index: 1;
    
    /* Drop shadow using filter for gradient text */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3))
            drop-shadow(0 4px 12px rgba(214, 45, 140, 0.25))
            drop-shadow(0 8px 24px rgba(123, 45, 126, 0.15));
}

/* Premium glow animation for h1 */
@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3))
                drop-shadow(0 4px 12px rgba(214, 45, 140, 0.25))
                drop-shadow(0 8px 24px rgba(123, 45, 126, 0.15));
    }
    50% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3))
                drop-shadow(0 4px 16px rgba(214, 45, 140, 0.35))
                drop-shadow(0 8px 32px rgba(123, 45, 126, 0.25));
    }
}

.hero__description {
    font-size: 0.9rem; /* Optimized for mobile readability */
    font-weight: var(--font-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Action Cards - 2x2 Material Design Ghost Grid on Mobile */
.action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    padding: 1.25rem 1rem;
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin: 0 auto;
}

.action-card {
    aspect-ratio: 1;
    padding: 1.25rem 0.5rem;
    text-align: center;
    color: var(--white-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Material Design easing */
    cursor: pointer;
    border-radius: 12px; /* Material Design: 12px for cards */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    
    /* Ghost/Outlined style with glassmorphism */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    
    /* Material elevation */
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
    
    min-height: 120px;
}

/* Ripple effect container */
.action-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-card:active::before {
    width: 300px;
    height: 300px;
    transition: width 0s, height 0s;
}

/* Touch feedback */
.action-card:active {
    transform: scale(0.97);
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.16),
        0 1px 1px rgba(0, 0, 0, 0.28);
}

/* Icon styles */
.action-card i {
    font-size: 2.5rem;
    margin-bottom: 0.375rem;
    opacity: 0.95;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

/* Text styles - Material Design caption */
.action-card h3 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    opacity: 0.92;
    position: relative;
    z-index: 1;
}

/* Hover states with Material Design elevation */
@media (hover: hover) {
    .action-card:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.35);
        
        /* Material elevation level 8 */
        box-shadow: 
            0 5px 12px rgba(0, 0, 0, 0.16),
            0 3px 8px rgba(0, 0, 0, 0.23);
    }
    
    .action-card:hover i {
        transform: scale(1.1);
    }
    
    /* Subtle gradient overlays on hover */
    .action-card--purple:hover {
        background: linear-gradient(
            135deg, 
            rgba(123, 45, 126, 0.18), 
            rgba(123, 45, 126, 0.08)
        );
        border-color: rgba(123, 45, 126, 0.5);
    }
    
    .action-card--pink:hover {
        background: linear-gradient(
            135deg, 
            rgba(214, 45, 140, 0.18), 
            rgba(214, 45, 140, 0.08)
        );
        border-color: rgba(214, 45, 140, 0.5);
    }
    
    .action-card--orange:hover {
        background: linear-gradient(
            135deg, 
            rgba(248, 158, 59, 0.18), 
            rgba(248, 158, 59, 0.08)
        );
        border-color: rgba(248, 158, 59, 0.5);
    }
    
    .action-card--yellow:hover {
        background: linear-gradient(
            135deg, 
            rgba(255, 193, 7, 0.18), 
            rgba(255, 193, 7, 0.08)
        );
        border-color: rgba(255, 193, 7, 0.5);
    }
}

/* Focus state for accessibility */
.action-card:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

/* Small mobile optimization (iPhone SE, etc.) */
@media screen and (max-width: 375px) {
    .hero__title {
        font-size: 1.65rem; /* Even smaller for tiny screens */
        margin-bottom: 0.875rem;
        letter-spacing: 0.3px;
        word-spacing: 1px;
    }
    
    .hero__description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .hero__container {
        padding: 0 4rem;
        

    }
    
    .btn--hero {
        padding: 1rem 2.25rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .action-cards {
        gap: 0.5rem;
        padding: 1rem 0.875rem;
        max-width: 350px;
    }
    
    .action-card {
        padding: 1rem 0.375rem;
        min-height: 70px;
    }
    
    .action-card i {
        font-size: 1rem;
    }
    
    .action-card h3 {
        font-size: 0.5rem;
    }
}

/* Slightly larger mobile (iPhone 12/13/14, etc.) */
@media screen and (min-width: 390px) and (max-width: 767px) {
    .hero__title {
        font-size: 2rem; /* Optimal for standard mobile */
        letter-spacing: 0.6px;
        word-spacing: 2px;
    }
    
    .hero__container {
        margin-top: 80px; /* Adjust for better vertical centering */
    }
    .hero__description {
        font-size: 0.95rem;
    }
    
    .action-cards {
        max-width: 650px;
        gap: 1rem;
    }
    
    .action-card {
        min-height: 100px;
        
    }
    
    .action-card i {
        font-size: 1.75rem;
    }
    
    .action-card h3 {
        font-size: 0.4rem;
    }
}

/* ===== MISSION SECTION - Premium Elegant Design ===== */
.mission {
    background: linear-gradient(135deg, 
        #f8f9fa 0%, 
        #ffffff 50%, 
        #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Elegant background pattern */
.mission::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(214, 45, 140, 0.06) 0%, 
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mission::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(123, 45, 126, 0.05) 0%, 
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mission .container {
    position: relative;
    z-index: 1;
}

.mission .section__header {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    
    /* Premium glassmorphism card */
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    
    border-radius: 32px;
    
    /* Elegant shadows */
    box-shadow: 
        0 20px 60px rgba(214, 45, 140, 0.08),
        0 10px 30px rgba(123, 45, 126, 0.06),
        0 5px 15px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(214, 45, 140, 0.05);
    
    /* Elegant border */
    border: 1px solid rgba(255, 255, 255, 0.5);
    
    position: relative;
    overflow: hidden;
    
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Smooth entrance animation */
    animation: fadeInUp 0.8s ease-out;
}

/* Decorative corner accents */
.mission .section__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, 
        rgba(214, 45, 140, 0.08) 0%, 
        transparent 70%);
    border-radius: 0 0 100% 0;
    pointer-events: none;
}

.mission .section__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, 
        rgba(123, 45, 126, 0.08) 0%, 
        transparent 70%);
    border-radius: 100% 0 0 0;
    pointer-events: none;
}

.mission .section__header:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 24px 80px rgba(214, 45, 140, 0.12),
        0 12px 40px rgba(123, 45, 126, 0.08),
        0 6px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(214, 45, 140, 0.08);
}

.mission .section__subtitle {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--white-color);
    font-weight: var(--font-bold);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    
    /* Premium badge style */
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    
    box-shadow: 
        0 6px 20px rgba(214, 45, 140, 0.25),
        0 3px 10px rgba(123, 45, 126, 0.15),
        inset 0 -1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    
    position: relative;
    z-index: 1;
    
    transition: all 0.3s ease;
}

.mission .section__subtitle:hover {
    transform: scale(1.05);
    box-shadow: 
        0 8px 28px rgba(214, 45, 140, 0.35),
        0 4px 14px rgba(123, 45, 126, 0.2),
        inset 0 -1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.mission .section__title {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    
    /* Elegant gradient text */
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Subtle text shadow for depth */
    filter: drop-shadow(0 2px 4px rgba(214, 45, 140, 0.1));
}

.mission .section__description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    max-width: 100%;
    position: relative;
    z-index: 1;
    text-align: justify;
}

/* Elegant first letter drop cap */
.mission .section__description::first-letter {
    font-size: 3.5em;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    float: left;
    line-height: 0.85;
    margin: 0.05em 0.15em 0 0;
}

/* Smooth entrance animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .mission .section__header {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }
    
    .mission .section__header::before,
    .mission .section__header::after {
        width: 80px;
        height: 80px;
    }
    
    .mission .section__subtitle {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 0.5rem 1.25rem;
    }
    
    .mission .section__title {
        font-size: 1.75rem;
    }
    
    .mission .section__description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media screen and (max-width: 480px) {
    .mission .section__header {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }
    
    .mission .section__title {
        font-size: 1.5rem;
    }
}

/* ===== SERVICES SECTION ===== */
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.service {
    background-color: var(--white-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.service:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service:hover .service__image img {
    transform: scale(1.1);
}

.service__content {
    padding: var(--spacing-lg);
}

.service__title {
    font-size: var(--font-size-large);
    font-weight: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.service__description {
    font-size: var(--font-size-normal);
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

/* ===== CAUSES SECTION ===== */
.causes {
    background-color: var(--light-color);
}

.causes__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.cause-card {
    background-color: var(--white-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.cause-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.cause-card__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.cause-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.cause-card:hover .cause-card__image img {
    transform: scale(1.1);
}

.cause-card__content {
    padding: var(--spacing-lg);
}

.cause-card__title {
    font-size: var(--font-size-medium);
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.cause-card__description {
    font-size: var(--font-size-small);
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.cause-card__progress {
    margin-bottom: var(--spacing-md);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.progress-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-orange));
    border-radius: 10px;
    transition: width var(--transition-slow);
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-small);
    margin-bottom: var(--spacing-md);
}

.progress-stats__donated {
    font-weight: var(--font-semibold);
    color: var(--primary-color);
}

.progress-stats__goal {
    color: var(--gray-color);
}

/* ===== STATISTICS SECTION ===== */
.stats {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white-color);
}

.stats__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
}

.stat {
    padding: var(--spacing-lg);
}

.stat__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.stat__number {
    display: inline-block;
    font-size: var(--font-size-hero);
    font-weight: var(--font-bold);
    line-height: 1;
}

.stat__suffix {
    font-size: var(--font-size-xlarge);
    font-weight: var(--font-bold);
    margin-left: 4px;
}

.stat__label {
    font-size: var(--font-size-medium);
    font-weight: var(--font-medium);
    margin-top: var(--spacing-sm);
    opacity: 0.9;
}

/* ===== EVENTS SECTION ===== */
.events__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.event-card {
    background-color: var(--white-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.event-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.event-card__image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.event-card:hover .event-card__image img {
    transform: scale(1.1);
}

.event-card__date {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-small);
    font-weight: var(--font-semibold);
}

.event-card__content {
    padding: var(--spacing-lg);
}

.event-card__category {
    display: inline-block;
    font-size: var(--font-size-small);
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.event-card__title {
    font-size: var(--font-size-medium);
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.event-card__description {
    font-size: var(--font-size-small);
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.event-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    font-weight: var(--font-semibold);
    font-size: var(--font-size-small);
    transition: gap var(--transition-fast);
}

.event-card__link:hover {
    gap: var(--spacing-sm);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
    color: var(--white-color);
    text-align: center;
}

.newsletter__title {
    font-size: var(--font-size-xlarge);
    font-weight: var(--font-bold);
    margin-bottom: var(--spacing-lg);
}

.newsletter__form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter__input {
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-normal);
}

.newsletter__input:focus {
    outline: 2px solid var(--white-color);
    outline-offset: 2px;
}

/* ===== FOOTER - Premium Elegant Design ===== */
.footer {
    position: relative;
    background: linear-gradient(180deg, 
        #1a1a2e 0%, 
        #16213e 50%,
        #0f1419 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 1.5rem;
    overflow: hidden;
}

/* Elegant gradient overlays */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(214, 45, 140, 0.5) 20%,
        rgba(123, 45, 126, 0.5) 50%,
        rgba(214, 45, 140, 0.5) 80%,
        transparent 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(214, 45, 140, 0.06) 0%, 
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    position: relative;
}

/* Elegant divider after grid */
.footer__grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(214, 45, 140, 0.3) 50%,
        transparent 100%);
}

.footer__column {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.footer__column:nth-child(1) { animation-delay: 0.1s; }
.footer__column:nth-child(2) { animation-delay: 0.2s; }
.footer__column:nth-child(3) { animation-delay: 0.3s; }
.footer__column:nth-child(4) { animation-delay: 0.4s; }

.footer__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer__logo:hover {
    transform: translateX(4px);
}

.footer__logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 14px;
    
    /* Premium shadows with brand colors */
    box-shadow: 
        0 6px 20px rgba(214, 45, 140, 0.2),
        0 3px 10px rgba(123, 45, 126, 0.15),
        0 1px 4px rgba(0, 0, 0, 0.1);
    
    /* Elegant border with gradient */
    border: 2px solid rgba(214, 45, 140, 0.15);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12), 
        rgba(248, 249, 250, 0.08));
    padding: 6px;
    
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__logo:hover .footer__logo-image {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 
        0 10px 30px rgba(214, 45, 140, 0.3),
        0 5px 15px rgba(123, 45, 126, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.15);
    border-color: rgba(214, 45, 140, 0.3);
}

.footer__text {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2px;
}

.footer__text a {
    color: var(--primary-color);
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
    position: relative;
}

.footer__text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color));
    transition: width 0.3s ease;
}

.footer__text a:hover::after {
    width: 100%;
}

.footer__text a:hover {
    color: #e84393;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    
    /* Premium glassmorphism */
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-6px) scale(1.05);
    border-color: rgba(214, 45, 140, 0.4);
    box-shadow: 
        0 8px 24px rgba(214, 45, 140, 0.3),
        0 4px 12px rgba(123, 45, 126, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    color: var(--white-color);
    transform: scale(1.15);
}

.social-link:active {
    transform: translateY(-3px) scale(1.02);
}

.footer__title {
    font-size: 1.1rem;
    font-weight: var(--font-bold);
    margin-bottom: 1.25rem;
    color: var(--white-color);
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Elegant underline accent */
.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color));
    border-radius: 2px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__list li {
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.footer__list li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer__list li:hover {
    padding-left: 18px;
}

.footer__list li:hover::before {
    left: 0;
    opacity: 1;
}

.footer__list a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--font-regular);
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.2px;
}

.footer__list a:hover {
    color: var(--white-color);
    transform: translateX(2px);
}

.footer__bottom {
    padding-top: 1.5rem;
    text-align: center;
    position: relative;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
}

.footer__bottom a {
    color: rgba(214, 45, 140, 0.8);
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
    position: relative;
}

.footer__bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer__bottom a:hover {
    color: var(--primary-color);
}

.footer__bottom a:hover::after {
    width: 100%;
}

/* ===== MEDIA QUERIES ===== */

/* Small devices (landscape phones, 576px and up) */
@media screen and (min-width: 576px) {
    .action-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer__column:first-child {
        grid-column: 1 / -1;
    }
}

/* Medium devices (tablets, 768px and up) */
@media screen and (min-width: 768px) {
    :root {
        --font-size-large: 1.75rem;
        --font-size-xlarge: 2.25rem;
        --font-size-xxlarge: 3rem;
        --font-size-hero: 3.5rem;
        --container-padding: 2rem;
    }

    .hero__title {
        font-size: 2.5rem; /* Larger on tablet */
        letter-spacing: 1px;
        word-spacing: 3px;
    }
    
    .hero__description {
        font-size: 1.1rem; /* Larger on tablet */
    }
    
    .hero__container {
        padding: 3rem var(--container-padding);
    }

    /* Action cards: Switch to horizontal 4-column on tablet/desktop */
    .action-cards {
        grid-template-columns: repeat(4, 1fr);
        max-width: 900px;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .action-card {
        aspect-ratio: auto;
        min-height: 140px;
        padding: 1.5rem 1rem;
    }
    
    .action-card i {
        font-size: 2.75rem;
    }
    
    .action-card h3 {
        font-size: 0.8rem;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .causes__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .newsletter__form {
        flex-direction: row;
    }

    .newsletter__input {
        flex: 1;
    }

    .footer__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .footer__column:first-child {
        grid-column: auto;
    }
    
    .footer {
        padding: 5rem 0 2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media screen and (min-width: 992px) {
    /* Hide all mobile navigation elements */
    .nav__mobile-actions {
        display: none !important;
    }
    
    .nav__toggle {
        display: none !important;
    }
    
    /* Hide mobile menu logo on desktop */
    .nav__menu-logo {
        display: none !important;
    }
    
    /* Desktop Navigation */
    .nav {
        justify-content: space-between;
        height: 70px;
        padding: 0 2rem;
    }
    
    .nav__logo {
        position: static;
        transform: none;
    }
    
    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        box-shadow: none;
        border: none;
        overflow: visible;
        display: block;
        border-image: none;
        background-image: none;
    }
    
    .nav__menu::after {
        display: none;
    }

    .nav__list {
        flex-direction: row;
        gap: var(--spacing-lg);
        margin-top: 0;
        padding-bottom: 0;
        display: flex;
    }
    
    .nav__item {
        animation: none !important;
        opacity: 1;
        transform: none;
        display: block;
    }

    .nav__link {
        font-size: var(--font-size-normal);
        padding: 0.5rem 0;
        background: transparent !important;
        border-radius: 0;
        letter-spacing: normal;
        box-shadow: none;
        border: none;
        font-weight: var(--font-medium);
    }
    
    /* Hide icons on desktop */
    .nav__link i {
        display: none;
    }
    
    .nav__link::before {
        display: none;
    }
    
    .nav__link::after {
        display: none;
    }
    
    .nav__link:hover,
    .nav__link.active-link {
        padding-left: 0;
        transform: none;
    }
    
    .nav__link.active-link {
        font-weight: var(--font-semibold);
    }
    
    .nav__link.active-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        display: block;
    }

    .nav__close {
        display: none;
    }

    .nav__actions {
        display: flex !important;
    }
    
    /* Desktop header style */
    .header {
        background: var(--white-color);
        backdrop-filter: none;
        border-bottom: none;
    }
    
    .header.scroll-header {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        background: var(--white-color);
    }
    
    /* Hero content desktop sizing */
    .hero__title {
        font-size: var(--font-size-hero); /* Full size on desktop */
        letter-spacing: 1.5px;
        word-spacing: 4px;
    }
    
    .hero__description {
        font-size: var(--font-size-medium); /* Comfortable reading size */
    }

    .causes__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .events__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media screen and (min-width: 1200px) {
    :root {
        --font-size-hero: 4rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply animations to elements */
.hero__content {
    animation: fadeInUp 1s ease-out;
}

.action-cards {
    animation: fadeIn 1s ease-out 0.3s both;
}

/* ===== IMPACT STATISTICS SECTION ===== */
.impact-stats {
    padding: 4rem 0 4.5rem;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 50%,
        rgba(248, 249, 250, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative gradient orbs */
.impact-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(214, 45, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.impact-stats::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 45, 126, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.impact-stats__header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.impact-stats__subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: var(--font-semibold);
    letter-spacing: 2.5px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    
    /* Premium badge effect */
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, 
        rgba(214, 45, 140, 0.1) 0%, 
        rgba(123, 45, 126, 0.08) 100%);
    border-radius: 50px;
    border: 1px solid rgba(214, 45, 140, 0.2);
}

.impact-stats__title {
    font-size: 2rem;
    font-weight: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.impact-stats__description {
    font-size: 1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.impact-stats__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Premium Stat Cards */
.impact-stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    
    /* Premium shadow layers */
    box-shadow: 
        0 8px 32px rgba(214, 45, 140, 0.08),
        0 4px 16px rgba(123, 45, 126, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    
    border: 1px solid rgba(214, 45, 140, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover glow effect */
.impact-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--primary-color) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-stat-card:hover::before {
    opacity: 1;
}

.impact-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(214, 45, 140, 0.12),
        0 8px 24px rgba(123, 45, 126, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.impact-stat-card__icon-wrapper {
    margin-bottom: 1.5rem;
}

.impact-stat-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    
    /* Animated pulse ring */
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 0 0 0 rgba(214, 45, 140, 0.4);
    
    transition: all 0.4s ease;
}

.impact-stat-card:hover .impact-stat-card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.15),
        0 0 0 8px rgba(214, 45, 140, 0.1);
}

.impact-stat-card__icon i {
    font-size: 1.75rem;
    color: var(--white-color);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Icon color variants */
.impact-stat-card__icon--purple {
    background: linear-gradient(135deg, #7b2d7e 0%, #9b4d9f 100%);
}

.impact-stat-card__icon--pink {
    background: linear-gradient(135deg, #d62d8c 0%, #e84393 100%);
}

.impact-stat-card__icon--orange {
    background: linear-gradient(135deg, #f89e3b 0%, #ff8c42 100%);
}

.impact-stat-card__icon--yellow {
    background: linear-gradient(135deg, #ffc107 0%, #ffdb4d 100%);
}

.impact-stat-card__content {
    text-align: center;
}

.impact-stat-card__number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.impact-stat-card__number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
}

.impact-stat-card__suffix {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-left: 0.25rem;
    opacity: 0.8;
}

.impact-stat-card__label {
    font-size: 0.95rem;
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

/* Premium progress bar */
.impact-stat-card__bar {
    width: 100%;
    height: 6px;
    background: rgba(214, 45, 140, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.impact-stat-card__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-orange) 100%);
    border-radius: 10px;
    position: relative;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Animated shine effect */
    overflow: hidden;
}

.impact-stat-card__bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Mobile optimization */
@media screen and (max-width: 374px) {
    .impact-stats {
        padding: 3rem 0;
    }
    
    .impact-stats__title {
        font-size: 1.65rem;
    }
    
    .impact-stat-card {
        padding: 1.75rem 1.25rem;
    }
    
    .impact-stat-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .impact-stat-card__icon i {
        font-size: 1.5rem;
    }
    
    .impact-stat-card__number {
        font-size: 2.5rem;
    }
    
    .impact-stat-card__suffix {
        font-size: 1.5rem;
    }
}

/* Tablet and up */
@media screen and (min-width: 576px) {
    .impact-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .impact-stats__title {
        font-size: 2.25rem;
    }
}

@media screen and (min-width: 768px) {
    .impact-stats {
        padding: 5rem 0 5.5rem;
    }
    
    .impact-stats__header {
        margin-bottom: 4rem;
    }
    
    .impact-stats__title {
        font-size: 2.75rem;
    }
    
    .impact-stat-card {
        padding: 2.5rem 2rem;
    }
    
    .impact-stat-card__icon {
        width: 80px;
        height: 80px;
    }
    
    .impact-stat-card__icon i {
        font-size: 2rem;
    }
    
    .impact-stat-card__number {
        font-size: 3.5rem;
    }
}

@media screen and (min-width: 992px) {
    .impact-stats__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .impact-stats__title {
        font-size: 3rem;
    }
}
