/* ============================================
           CSS RESET & BASE
           ============================================ */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --coral: #194993;
            --coral-dark: #12366b;
            --coral-light: #2d65c2;
            --teal: #2279ae;
            --teal-dark: #165074;
            --teal-light: #3c9cd8;
            --yellow: #d49923;
            --yellow-light: #e0b557;
            --bg-white: #FFFFFF;
            --bg-warm: #FAFAF8;
            --bg-section-alt: #F5F3EF;
            --text-dark: #2C2C2A;
            --text-medium: #5A5A57;
            --text-light: #8A8A86;
            --shadow-sm: 0 2px 8px rgba(44, 44, 42, 0.06);
            --shadow-md: 0 4px 20px rgba(44, 44, 42, 0.08);
            --shadow-lg: 0 8px 32px rgba(44, 44, 42, 0.12);
            --radius-sm: 12px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-full: 9999px;
            --font-heading: 'Nunito', sans-serif;
            --font-body: 'Inter', sans-serif;
            --transition: 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--bg-white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 800;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img,
        svg {
            display: block;
            max-width: 100%;
        }

        button,
        input,
        textarea {
            font-family: var(--font-body);
            border: none;
            outline: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: all var(--transition);
            text-align: center;
            white-space: nowrap;
        }

        .btn-primary {
            background-color: var(--coral);
            color: var(--bg-white);
            box-shadow: 0 4px 16px rgba(25, 73, 147, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--coral-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(25, 73, 147, 0.4);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--coral);
            border: 2px solid var(--coral);
        }

        .btn-secondary:hover {
            background-color: var(--coral);
            color: var(--bg-white);
            transform: translateY(-2px);
        }

        .btn-teal {
            background-color: var(--teal);
            color: var(--bg-white);
            box-shadow: 0 4px 16px rgba(34, 121, 174, 0.3);
        }

        .btn-teal:hover {
            background-color: var(--teal-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(34, 121, 174, 0.4);
        }

        .btn-small {
            padding: 10px 24px;
            font-size: 0.9rem;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--yellow-light), var(--yellow));
            color: var(--text-dark);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 6px 16px;
            border-radius: var(--radius-full);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-medium);
            max-width: 640px;
            margin: 0 auto 48px;
            line-height: 1.7;
        }

        .section-header {
            text-align: center;
            padding: 80px 0 48px;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }

        .navbar.scrolled {
            box-shadow: var(--shadow-md);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.25rem;
            color: var(--text-dark);
            white-space: nowrap;
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--coral), var(--yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

        .nav-links a {
            padding: 8px 16px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-medium);
            border-radius: var(--radius-full);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--coral);
            background-color: rgba(25, 73, 147, 0.08);
        }

        .nav-cta {
            margin-left: 8px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
        }

        .hamburger:hover {
            background-color: var(--bg-warm);
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background-color: var(--text-dark);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            width: 100%;
            background: var(--bg-white);
            box-shadow: var(--shadow-lg);
            padding: 20px;
            z-index: 999;
            transform: translateY(-10px);
            opacity: 0;
            pointer-events: none;
            transition: all var(--transition);
        }

        .mobile-menu.open {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .mobile-menu a {
            display: block;
            padding: 14px 20px;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-medium);
            border-radius: var(--radius-sm);
            transition: all var(--transition);
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: var(--coral);
            background-color: rgba(25, 73, 147, 0.08);
        }

        .mobile-menu .btn {
            width: 100%;
            margin-top: 12px;
        }

        @media (max-width: 900px) {

            .nav-links,
            .nav-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-white) 100%);
            overflow: hidden;
            position: relative;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-white);
            border: 2px solid var(--yellow);
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-medium);
            margin-bottom: 24px;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--teal);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 3.75rem);
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .hero h1 .highlight {
            color: var(--coral);
            position: relative;
        }

        .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--yellow);
            opacity: 0.4;
            border-radius: 4px;
            z-index: -1;
        }

        .hero-text {
            font-size: 1.15rem;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 36px;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-illustration {
            position: relative;
            width: 100%;
            max-width: 480px;
        }

        .hero-illustration svg {
            width: 100%;
            height: auto;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
            animation: float 6s ease-in-out infinite;
        }

        .floating-shape:nth-child(1) {
            width: 80px;
            height: 80px;
            background: var(--coral);
            top: -20px;
            right: 40px;
            animation-delay: 0s;
        }

        .floating-shape:nth-child(2) {
            width: 60px;
            height: 60px;
            background: var(--teal);
            bottom: 40px;
            left: -10px;
            animation-delay: 2s;
        }

        .floating-shape:nth-child(3) {
            width: 40px;
            height: 40px;
            background: var(--yellow);
            top: 50%;
            right: -10px;
            animation-delay: 4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            33% {
                transform: translateY(-12px) rotate(5deg);
            }

            66% {
                transform: translateY(8px) rotate(-3deg);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 130px 0 60px;
            }

            .hero .container {
                grid-template-columns: 1fr;
                gap: 36px;
                text-align: center;
            }

            .hero-text {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-visual {
                order: -1;
            }

            .hero-illustration {
                max-width: 320px;
            }
        }

        /* ============================================
           WHAT IS KINDERKINETICS
           ============================================ */
        .what-is {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .explainer-text {
            max-width: 720px;
            margin: 0 auto 56px;
            text-align: center;
        }

        .explainer-text p {
            font-size: 1.05rem;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .explainer-text p strong {
            color: var(--text-dark);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .feature-card {
            background: var(--bg-warm);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
            transition: all var(--transition);
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--coral);
        }

        .feature-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 20px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
        }

        .feature-card:nth-child(1) .feature-icon {
            background: linear-gradient(135deg, #E8EFF8, #D2E0F2);
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, #EAF3F8, #D4E7F2);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, #FDF7EB, #FBF0D5);
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .feature-card p {
            font-size: 0.95rem;
            color: var(--text-medium);
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feature-card {
                padding: 32px 24px;
            }
        }

        /* ============================================
           OUR SESSIONS
           ============================================ */
        .sessions {
            padding: 100px 0;
            background: var(--bg-warm);
        }

        .sessions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .session-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            padding: 48px 36px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .session-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
        }

        .session-card:nth-child(1)::before {
            background: linear-gradient(90deg, var(--teal), var(--teal-light));
        }

        .session-card:nth-child(2)::before {
            background: linear-gradient(90deg, var(--coral), var(--coral-light));
        }

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

        .session-card:nth-child(1):hover {
            border-color: var(--teal);
        }

        .session-card:nth-child(2):hover {
            border-color: var(--coral);
        }

        .session-emoji {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .session-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .session-card p {
            font-size: 1rem;
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .session-pricing {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-warm);
            padding: 6px 14px;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 24px;
        }

        @media (max-width: 768px) {
            .sessions-grid {
                grid-template-columns: 1fr;
            }

            .session-card {
                padding: 36px 28px;
            }
        }

        /* ============================================
           ENROLMENT
           ============================================ */
        .enrolment {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .enrolment-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .enrolment-box {
            background: linear-gradient(135deg, #F0F4FA, #E2EAF4);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            border: 2px solid var(--coral);
            position: relative;
        }

        .enrolment-box::before {
            content: '🎉';
            position: absolute;
            top: -24px;
            left: 50%;
            transform: translateX(-50%);
            width: 48px;
            height: 48px;
            background: var(--coral);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: var(--shadow-md);
        }

        .enrolment-box h3 {
            font-size: 1.75rem;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .enrolment-box p {
            font-size: 1rem;
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .enrolment-help {
            margin-top: 20px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .enrolment-help a {
            color: var(--teal);
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        @media (max-width: 768px) {
            .enrolment-box {
                padding: 48px 24px;
            }
        }

        /* ============================================
           TESTIMONIALS
           ============================================ */
        .testimonials {
            padding: 100px 0;
            background: var(--bg-section-alt);
        }

        .testimonials-tabs {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .testimonials-tabs .tab-btn {
            background: var(--bg-white);
            color: var(--text-medium);
            border: 2px solid transparent;
            padding: 14px 28px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            border-radius: var(--radius-full);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .testimonials-tabs .tab-btn:hover {
            color: var(--coral);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .testimonials-tabs .tab-btn.active {
            background: linear-gradient(135deg, var(--coral), var(--coral-light));
            color: var(--bg-white);
            box-shadow: 0 8px 24px rgba(25, 73, 147, 0.25);
        }

        .testimonials-tabs .tab-btn[data-tab="kiana"].active {
            background: linear-gradient(135deg, var(--teal), var(--teal-light));
            box-shadow: 0 8px 24px rgba(34, 121, 174, 0.2);
        }

        /* Tab Pane Visibility */
        .testimonials-pane {
            display: none;
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .testimonials-pane.active {
            display: block;
        }

        .testimonials-pane.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .testimonial-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
            border-top: 4px solid transparent;
        }

        /* Card Accent Themes */
        .testimonial-card.card-coral {
            border-top-color: var(--coral-light);
        }

        .testimonial-card.card-coral .testimonial-avatar {
            background: var(--coral);
            box-shadow: 0 4px 12px rgba(25, 73, 147, 0.2);
        }

        .testimonial-card.card-coral .testimonial-quote::before {
            color: var(--coral);
        }

        .testimonial-card.card-teal {
            border-top-color: var(--teal-light);
        }

        .testimonial-card.card-teal .testimonial-avatar {
            background: var(--teal);
            box-shadow: 0 4px 12px rgba(34, 121, 174, 0.2);
        }

        .testimonial-card.card-teal .testimonial-quote::before {
            color: var(--teal);
        }

        .testimonial-card.card-yellow {
            border-top-color: var(--yellow);
        }

        .testimonial-card.card-yellow .testimonial-avatar {
            background: var(--yellow);
            color: var(--text-dark);
            box-shadow: 0 4px 12px rgba(212, 153, 35, 0.2);
        }

        .testimonial-card.card-yellow .testimonial-quote::before {
            color: var(--yellow);
        }

        /* Custom Hover Shadow Glows */
        .testimonial-card.card-coral:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(25, 73, 147, 0.12);
        }

        .testimonial-card.card-teal:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(34, 121, 174, 0.12);
        }

        .testimonial-card.card-yellow:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(212, 153, 35, 0.12);
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .star {
            color: var(--yellow);
            font-size: 20px;
        }

        .testimonial-quote {
            font-size: 1rem;
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 3rem;
            font-family: var(--font-heading);
            line-height: 0;
            display: block;
            margin-bottom: 12px;
            opacity: 0.5;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: var(--bg-white);
        }

        .testimonial-name {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* Hidden Cards Styling & Animations */
        .testimonial-card.hidden-card {
            display: none;
        }

        .testimonial-card.hidden-card.show-card {
            display: flex !important;
            animation: cardAppear 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes cardAppear {
            0% {
                opacity: 0;
                transform: scale(0.95) translateY(15px);
            }

            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Action Center */
        .testimonials-actions {
            display: flex;
            justify-content: center;
            margin-top: 44px;
        }

        .load-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: var(--radius-full);
            padding: 14px 32px;
            transition: all var(--transition);
            border: 2px solid var(--text-dark);
            background: transparent;
            color: var(--text-dark);
            outline: none;
        }

        .load-more-btn:hover {
            background: var(--text-dark);
            color: var(--bg-white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        @media (max-width: 900px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        /* ============================================
           SHOP / MERCH
           ============================================ */
        .shop {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .shop-notice {
            text-align: center;
            margin-bottom: 40px;
        }

        .shop-notice p {
            color: var(--text-medium);
            font-size: 1rem;
        }

        .shop-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .product-card {
            background: var(--bg-warm);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            text-align: center;
            transition: all var(--transition);
            border: 2px solid transparent;
        }

        .product-card:hover {
            border-color: var(--teal);
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .product-card.placeholder {
            display: none;
        }

        .product-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            background: var(--bg-white);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            box-shadow: var(--shadow-sm);
        }

        .product-card h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .product-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--teal);
            margin-bottom: 16px;
        }

        .notify-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: var(--teal);
            color: var(--bg-white);
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all var(--transition);
            border: none;
        }

        .notify-btn:hover {
            background: var(--teal-dark);
            transform: translateY(-2px);
        }

        @media (max-width: 900px) {
            .shop-grid {
                grid-template-columns: 1fr;
                max-width: 360px;
                margin: 0 auto;
            }
        }

        /* ============================================
           DONATE / VOLUNTEER
           ============================================ */
        .donate {
            padding: 100px 0;
            background: var(--bg-warm);
        }

        .donate-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .donate-text {
            text-align: center;
            margin-bottom: 40px;
        }

        .donate-text p {
            font-size: 1.05rem;
            color: var(--text-medium);
            line-height: 1.7;
        }

        .bank-details {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--teal);
        }

        .bank-details h3 {
            font-size: 1.25rem;
            margin-bottom: 20px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .bank-details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 32px;
        }

        .bank-detail-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .bank-detail-item.full-width {
            grid-column: span 2;
        }

        .bank-detail-item label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .bank-detail-item span {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            background: var(--bg-warm);
            padding: 8px 12px;
            border-radius: var(--radius-sm);
        }

        @media (max-width: 600px) {
            .bank-details-grid {
                grid-template-columns: 1fr;
            }

            .bank-detail-item.full-width {
                grid-column: span 1;
            }

            .bank-details {
                padding: 28px 20px;
            }
        }

        /* ============================================
           CONTACT
           ============================================ */
        .contact {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 48px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .contact-item:nth-child(1) .contact-icon {
            background: linear-gradient(135deg, #E8EFF8, #D2E0F2);
        }

        .contact-item:nth-child(2) .contact-icon {
            background: linear-gradient(135deg, #EAF3F8, #D4E7F2);
        }

        .contact-item:nth-child(3) .contact-icon {
            background: linear-gradient(135deg, #FDF7EB, #FBF0D5);
        }

        .contact-item h4 {
            font-size: 1rem;
            margin-bottom: 4px;
            color: var(--text-dark);
        }

        .contact-item p,
        .contact-item a {
            font-size: 0.95rem;
            color: var(--text-medium);
        }

        .contact-item a:hover {
            color: var(--coral);
        }

        .contact-form {
            background: var(--bg-warm);
            border-radius: var(--radius-lg);
            padding: 36px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #E5E5E2;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            color: var(--text-dark);
            background: var(--bg-white);
            transition: all var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--coral);
            box-shadow: 0 0 0 3px rgba(25, 73, 147, 0.15);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-light);
        }

        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .contact-form {
                padding: 28px 20px;
            }
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: var(--text-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 64px 0 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 48px;
        }

        .footer-brand h3 {
            font-size: 1.25rem;
            color: var(--bg-white);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-brand h3 span {
            font-size: 20px;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
        }

        .social-link:hover {
            background: var(--coral);
            transform: translateY(-3px);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: var(--bg-white);
        }

        .footer-column h4 {
            color: var(--bg-white);
            font-size: 0.95rem;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            font-size: 0.9rem;
            transition: color var(--transition);
        }

        .footer-column a:hover {
            color: var(--coral-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           SCROLL ANIMATIONS
           ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        /* ============================================
           UTILITY
           ============================================ */
        .text-center {
            text-align: center;
        }

        .mt-8 {
            margin-top: 8px;
        }

        .mt-16 {
            margin-top: 16px;
        }

        /* ============================================
           FLOATING WHATSAPP BUTTON
           ============================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: drop-shadow(0 8px 24px rgba(37, 211, 102, 0.3));
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .whatsapp-float:active {
            transform: scale(0.95);
        }

        .whatsapp-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            position: relative;
            z-index: 2;
            transition: background 0.3s ease;
        }

        .whatsapp-icon svg {
            display: block;
            width: 30px;
            height: 30px;
        }

        .whatsapp-float:hover .whatsapp-icon svg {
            animation: whatsapp-wiggle 0.5s ease-in-out;
        }

        @keyframes whatsapp-wiggle {

            0%,
            100% {
                transform: rotate(0);
            }

            15% {
                transform: rotate(-15deg);
            }

            30% {
                transform: rotate(10deg);
            }

            45% {
                transform: rotate(-10deg);
            }

            60% {
                transform: rotate(5deg);
            }

            75% {
                transform: rotate(-3deg);
            }
        }

        .whatsapp-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #25D366;
            border-radius: 50%;
            z-index: 1;
            opacity: 0.7;
            animation: whatsapp-pulse-anim 2s infinite;
            pointer-events: none;
        }

        @keyframes whatsapp-pulse-anim {
            0% {
                transform: scale(0.95);
                opacity: 0.8;
            }

            100% {
                transform: scale(1.6);
                opacity: 0;
            }
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 75px;
            background-color: #2C2C2A;
            color: #FFFFFF;
            padding: 8px 16px;
            border-radius: 20px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.85rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            transform: translateX(10px);
            box-shadow: var(--shadow-md);
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -6px;
            transform: translateY(-50%) rotate(45deg);
            width: 12px;
            height: 12px;
            background-color: #2C2C2A;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        /* Show the tooltip automatically on load then fade after a few seconds */
        .whatsapp-tooltip.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            animation: tooltip-peek 6s forwards;
        }

        @keyframes tooltip-peek {

            0%,
            80% {
                opacity: 1;
                visibility: visible;
                transform: translateX(0);
            }

            100% {
                opacity: 0;
                visibility: hidden;
                transform: translateX(10px);
            }
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-icon {
                width: 50px;
                height: 50px;
            }

            .whatsapp-icon svg {
                width: 24px;
                height: 24px;
            }

            .whatsapp-tooltip {
                display: none;
                /* Hide tooltip on small mobile screens to keep UI clean */
            }
        }

        /* ============================================
           GALLERY SECTION
           ============================================ */
        .gallery-section {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .gallery-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            padding: 0 10px;
        }

        .gallery-tab-btn {
            background-color: var(--bg-warm);
            color: var(--text-medium);
            padding: 10px 24px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: all var(--transition);
            border: 2px solid transparent;
        }

        .gallery-tab-btn:hover {
            background-color: rgba(25, 73, 147, 0.05);
            color: var(--coral);
            transform: translateY(-1px);
        }

        .gallery-tab-btn.active {
            background-color: var(--coral);
            color: var(--bg-white);
            box-shadow: 0 4px 16px rgba(25, 73, 147, 0.25);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
            transition: all 0.5s ease;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background-color: var(--bg-warm);
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            aspect-ratio: 4 / 3;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
            opacity: 1;
            transform: scale(1);
        }

        /* Card entry & filter transitions */
        .gallery-item.hidden {
            display: none !important;
        }

        .gallery-item.fade-out {
            opacity: 0;
            transform: scale(0.9);
            pointer-events: none;
            position: absolute;
            z-index: -1;
        }

        /* Items initially hidden for Load More */
        .gallery-item.load-more-hidden {
            display: none;
        }

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

        .gallery-media {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .gallery-item:hover .gallery-media {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(44, 44, 42, 0.85) 0%, rgba(44, 44, 42, 0.2) 60%, rgba(44, 44, 42, 0) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            opacity: 0;
            transition: opacity 0.35s ease;
            color: var(--bg-white);
            z-index: 2;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item-title {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.15rem;
            margin-bottom: 4px;
            transform: translateY(12px);
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .gallery-item-desc {
            font-size: 0.85rem;
            opacity: 0.9;
            transform: translateY(16px);
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            transition-delay: 0.05s;
        }

        .gallery-item:hover .gallery-item-title,
        .gallery-item:hover .gallery-item-desc {
            transform: translateY(0);
        }

        /* Video icon styling */
        .video-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            background: rgba(25, 73, 147, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-white);
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(25, 73, 147, 0.4);
            z-index: 3;
            transition: transform var(--transition);
        }

        .gallery-item:hover .video-badge {
            transform: scale(1.1) rotate(5deg);
        }

        .video-badge svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
            margin-left: 2px;
        }

        /* Action buttons */
        .gallery-actions {
            text-align: center;
            margin-top: 32px;
        }

        /* ============================================
           LIGHTBOX MODAL
           ============================================ */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(20, 20, 19, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 44px;
            cursor: pointer;
            transition: color var(--transition), transform var(--transition);
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .lightbox-close:hover {
            color: var(--bg-white);
            transform: rotate(90deg);
            background: rgba(255, 255, 255, 0.05);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all var(--transition);
            z-index: 10;
        }

        .lightbox-nav:hover {
            background: var(--coral);
            border-color: var(--coral);
            color: var(--bg-white);
            transform: translateY(-50%) scale(1.08);
            box-shadow: 0 4px 16px rgba(25, 73, 147, 0.4);
        }

        .lightbox-prev {
            left: 24px;
        }

        .lightbox-next {
            right: 24px;
        }

        .lightbox-content {
            width: 100%;
            max-width: 1000px;
            padding: 0 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .lightbox-media-container {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: var(--radius-md);
            overflow: hidden;
            background-color: #000000;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            max-height: 70vh;
        }

        .lightbox-img,
        .lightbox-video {
            max-width: 100%;
            max-height: 70vh;
            object-fit: contain;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox-img.active,
        .lightbox-video.active {
            display: block;
            opacity: 1;
        }

        .lightbox-caption {
            color: var(--bg-white);
            text-align: center;
            margin-top: 20px;
            padding: 0 20px;
            width: 100%;
        }

        .lightbox-caption-title {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 4px;
            color: var(--yellow);
        }

        .lightbox-caption-desc {
            font-size: 0.95rem;
            opacity: 0.85;
            color: #E2E2DF;
        }

        .lightbox-counter {
            position: absolute;
            bottom: -40px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .gallery-section {
                padding: 80px 0 60px;
            }

            .lightbox-content {
                padding: 0 20px;
            }

            .lightbox-nav {
                width: 44px;
                height: 44px;
                font-size: 14px;
            }

            .lightbox-prev {
                left: 10px;
            }

            .lightbox-next {
                right: 10px;
            }

            .lightbox-close {
                top: 16px;
                right: 16px;
                width: 40px;
                height: 40px;
                font-size: 32px;
            }

            .lightbox-caption-title {
                font-size: 1.15rem;
            }

            .lightbox-caption-desc {
                font-size: 0.85rem;
            }
        }
