
        :root {
            --bg: #0f1f1b;
            --overlayDark: rgba(0,0,0,0.35);
            --green600: #3f7b63;
            --green700: #2f6a56;
            --green800: #2a5848;
            --green900: #1e4538;
            --textPrimary: #ffffff;
            --textMuted: rgba(255,255,255,0.82);
            --textSoft: rgba(255,255,255,0.72);
            --chipBg: #ffffff;
            --chipText: #2f6a56;
            --cta: #2f6a56;
            --ctaText: #ffffff;
            --ctaHover: #254f45;
            --divider: rgba(255,255,255,0.12);
            
            --font-base: Montserrat, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
            --font-heading: Montserrat, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
            
            --radius-pill: 9999px;
            --radius-lg: 1.25rem;
            --radius-md: 0.75rem;
            --radius-sm: 0.5rem;
            
            --shadow-soft: 0 8px 24px rgba(0,0,0,0.18);
            --shadow-chip: 0 2px 10px rgba(0,0,0,0.10);
        }

/* Video Carousel Section */
.video-carousel-section {
    background: linear-gradient(180deg, rgba(15,31,27,0.75) 0%, rgba(15,31,27,0.85) 100%), url('assets/ready_to_dance.png');
    background-position: center;
    background-size: cover;
    padding: 4rem 0 3rem;
    color: #ffffff;
}

.video-carousel-eyebrow {
    text-align: center;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    margin: 0 0 1.5rem 0;
}

.video-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.video-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2rem) / 3);
    gap: 1rem;
    padding: 0.25rem;
    /* Hide scrollbar (cross-browser) */
    -ms-overflow-style: none; /* IE and old Edge */
    scrollbar-width: none;    /* Firefox */
}

.video-track::-webkit-scrollbar { /* Chrome, Safari */
    display: none;
}

.video-slide {
    scroll-snap-align: start;
}

.video-thumb {
    background: rgba(0,0,0,0.6);
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 160px;
    max-height: 260px;
    display: grid;
    place-items: center;
    position: relative;
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
}

.play-triangle {
    width: 0; height: 0;
    border-left: 14px solid var(--green700);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.carousel-nav {
    display: none;
}

.video-carousel-ctas {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

/* CTA buttons in carousel */
.video-carousel-ctas .dance-button,
.video-carousel-ctas .capture-button {
    border-radius: var(--radius-pill);
    padding: 0.7rem 1.4rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.20);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.video-carousel-ctas .dance-button {
    background: #ffffff;
    color: var(--green700);
    border: 1px solid rgba(0,0,0,0.05);
}

.video-carousel-ctas .dance-button:hover {
    background: var(--green800);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.video-carousel-ctas .capture-button {
    background: var(--green700);
    color: #ffffff;
}

.video-carousel-ctas .capture-button:hover {
    background: var(--green800);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

@media (max-width: 992px) {
    .video-track { grid-auto-columns: calc((100% - 1rem) / 2); }
    .video-thumb { min-height: 140px; max-height: 220px; }
}

@media (max-width: 768px) {
    .video-carousel-section { padding: 3rem 0 2.25rem; }
    .video-track { grid-auto-columns: 85%; }
    .video-thumb { min-height: 130px; max-height: 200px; }
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-base);
            background-color: var(--bg);
            color: var(--textPrimary);
            line-height: 1.6;
        }

        .skip-to-content {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--cta);
            color: var(--ctaText);
            padding: 8px;
            text-decoration: none;
            border-radius: var(--radius-sm);
            z-index: 1000;
        }

        .skip-to-content:focus {
            top: 6px;
        }

        /* Header Styles */
        .header {
            position: sticky;
            top: 0;
            height: 9vh;
            min-height: 70px;
            z-index: 100;
            background: rgba(15, 31, 27, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-container {
            width: 92vw;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            height: 100%;
        }

        .brand {
            display: flex;
            align-items: center;
            width: 320px;
            flex-shrink: 0;
            min-width: 320px;
        }

        .logo {
            display: block;
            height: 2.8rem;
            width: auto;
            margin-right: 1rem;
            object-fit: contain;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.1);
            padding: 0.2rem;
        }

        .brand-block {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }

        .brand-title {
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.01em;
            color: var(--textPrimary);
            line-height: 1.2;
        }

        .brand-subtitle {
            font-weight: 500;
            font-size: 0.75rem;
            letter-spacing: 0.02em;
            opacity: 0.85;
            color: var(--textSoft);
            line-height: 1.1;
        }

        .nav-links {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 1.2rem;
            flex: 1;
            min-width: 0;
        }

        .nav-link {
            font-size: 0.95rem;
            color: var(--textPrimary);
            opacity: 0.95;
            text-decoration: none;
            transition: opacity 0.2s ease;
            white-space: nowrap;
        }

        .nav-link:hover {
            opacity: 1;
        }

        .nav-chip {
            padding: 0.5rem 0.9rem;
            border-radius: var(--radius-pill);
            background: var(--chipBg);
            color: var(--chipText);
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            box-shadow: var(--shadow-chip);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            white-space: nowrap;
        }

        .nav-chip:hover {
            background: var(--green800);
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            transition: .3s ease;
        }

        .nav-button {
            padding: 0.6rem 1rem;
            border-radius: var(--radius-pill);
            background: var(--cta);
            color: var(--ctaText);
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(0,0,0,0.20);
            transition: background-color 0.2s ease, transform 0.2s ease;
            white-space: nowrap;
        }

        .nav-button:hover {
            background: var(--green800);
            color: #ffffff;
            transform: translateY(-1px);
        }

        /* Hero Styles */
        .hero {
            height: 70vh;
            min-height: 500px;
            background-image: linear-gradient(0deg, rgba(15,31,27,0.65), rgba(47,106,86,0.35)), url('assets/Ba.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .hero-container {
            width: 92vw;
            margin: 0 auto;
            padding-top: 4vh;
            padding-bottom: 4vh;
            display: grid;
            grid-template-columns: 55% 45%;
            gap: 2vw;
            align-items: center;
            height: 100%;
        }

        .media-card {
            width: 85%;
            aspect-ratio: 16/9;
            min-height: 20vh;
            background: transparent;
            border-radius: var(--radius-lg);
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            position: relative;
            overflow: hidden;
            margin: 0 auto;
        }

        .media-card-inner {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 1rem;
            background: transparent;
            display: grid;
            place-items: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: inherit;
            z-index: 1;
            border: 4px solid #ffffff;
        }

        .play-button {
            width: 3.6rem;
            height: 3.6rem;
            border: 0.22rem solid var(--green600);
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, border-color 0.2s ease;
            position: relative;
            z-index: 2;
        }

        .play-button:hover {
            transform: scale(1.1);
            border-color: var(--green700);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 1rem solid var(--green600);
            border-top: 0.6rem solid transparent;
            border-bottom: 0.6rem solid transparent;
            margin-left: 0.2rem;
        }

        .pause-button {
            width: 3.6rem;
            height: 3.6rem;
            border: 0.22rem solid var(--green600);
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, border-color 0.2s ease;
            position: relative;
            z-index: 2;
            margin-left: 0.8rem;
        }

        .pause-button::after {
            content: '';
            display: block;
            width: 1rem;
            height: 1rem;
            box-sizing: content-box;
            border-left: 0.35rem solid var(--green600);
            border-right: 0.35rem solid var(--green600);
        }

        .hero-copy {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-weight: 300;
            letter-spacing: 0.02em;
            line-height: 0.9;
            font-size: clamp(1.8rem, 6vw, 4.5rem);
            color: var(--textPrimary);
            margin-bottom: 0.2rem;
        }

        .hero-subtitle {
            font-size: clamp(0.9rem, 1.4vw, 1.3rem);
            font-style: italic;
            font-weight: 400;
            color: rgba(255,255,255,0.92);
            line-height: 1.2;
            margin-bottom: 0.3rem;
        }

        .hero-meta {
            font-size: clamp(0.75rem, 1vw, 0.9rem);
            font-weight: 400;
            color: rgba(255,255,255,0.85);
            line-height: 1.1;
            margin-bottom: 0.4rem;
        }

        .hero-paragraph {
            font-size: clamp(0.8rem, 0.9vw, 0.95rem);
            font-style: italic;
            font-weight: 400;
            color: rgba(255,255,255,0.88);
            line-height: 1.3;
            margin-bottom: 0.1rem;
        }

        .hero-paragraph.bold {
            font-style: normal;
            font-weight: 600;
            color: rgba(255,255,255,0.92);
            line-height: 1.3;
            margin-bottom: 0.6rem;
        }

        .hero-button {
            margin-top: 0.4rem;
            padding: 0.7rem 1rem;
            border-radius: var(--radius-pill);
            background: var(--cta);
            color: var(--ctaText);
            font-size: clamp(0.8rem, 0.9vw, 0.9rem);
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 1.25;
            text-decoration: none;
            box-shadow: 0 10px 24px rgba(0,0,0,0.25);
            align-self: flex-start;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .hero-button:hover {
            background: var(--ctaHover);
            transform: translateY(-2px);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--textPrimary);
            font-size: 1rem;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 55% 45%;
            }
            
            :root {
                --radius-lg: 1rem;
            }
            
            .nav-links {
                gap: 0.8rem;
            }
            
            .nav-link {
                font-size: 0.9rem;
            }
            
            .brand {
                width: 280px;
            }
        }

        @media (max-width: 992px) {
            .header {
                height: 10vh;
            }
            
            .hero {
                height: auto;
                min-height: unset;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3vh;
                padding-top: 4vh;
                padding-bottom: 6vh;
            }
            
            .media-card {
                width: 90%;
                aspect-ratio: 16/9;
                min-height: 18vh;
            }
            
            .hero-title {
                font-size: clamp(1.6rem, 8vw, 3.5rem);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .nav-links.mobile-visible {
                display: flex;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(15, 31, 27, 0.98);
                backdrop-filter: blur(15px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: var(--shadow-soft);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .mobile-menu-toggle {
                display: block;
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                color: var(--textPrimary);
                padding: 0.5rem 1rem;
                border-radius: var(--radius-sm);
                font-size: 0.9rem;
            }
            
            .hero-button {
                padding: 0.85rem 1.1rem;
            }
            
            .brand {
                width: auto;
                flex: 1;
            }
            
            .brand-title {
                font-size: 0.95rem;
            }
            
            .brand-subtitle {
                font-size: 0.65rem;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                width: 96vw;
                padding: 0.8rem 0;
            }
            
            .hero-container {
                width: 96vw;
            }
            
            .brand-title {
                font-size: 0.9rem;
            }
            
            .brand-subtitle {
                font-size: 0.6rem;
            }
            
            .logo {
                height: 2.2rem;
            }
        }

        /* Perfect Human Section */
        .perfect-human-section {
            background: linear-gradient(180deg, #f5f9f7 0%, #f1f6f3 50%, #edf3ef 100%);
            padding: 6rem 0;
        }

        .section-container {
            width: 92vw;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 600;
            color: var(--green700);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-divider {
            width: 60px;
            height: 3px;
            background: #dc3545;
            margin: 0 auto;
            border-radius: 2px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .card {
            background: #ffffff;
            padding: 2.5rem 2rem;
            border-radius: var(--radius-lg);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .card-icon {
            width: 48px;
            height: 48px;
            background: rgba(47, 106, 86, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--green700);
        }

        .card-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #4a5568;
            margin-bottom: 0.5rem;
        }

        .card-accent {
            width: 60px;
            height: 3px;
            background: var(--green600);
            border-radius: 2px;
            margin-top: 0.5rem;
        }

        .quote-section {
            text-align: center;
            margin-bottom: 3rem;
            padding: 0 2rem;
        }

        .quote-text {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            font-style: italic;
            color: #6b7280;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section {
            text-align: center;
        }

        .sacred-space-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--green700);
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: var(--radius-pill);
            box-shadow: 0 8px 24px rgba(47, 106, 86, 0.3);
            transition: all 0.3s ease;
        }

        .sacred-space-button:hover {
            background: var(--green800);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(47, 106, 86, 0.4);
        }

        /* Responsive Design for Perfect Human Section */
        @media (max-width: 992px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .perfect-human-section {
                padding: 4rem 0;
            }
        }

        @media (max-width: 768px) {
            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .card {
                padding: 2rem 1.5rem;
            }
            
            .section-container {
                width: 96vw;
            }
            
            .quote-section {
                padding: 0 1rem;
            }
        }

        /* Sacred Waters Section */
        .sacred-waters-section {
            background: url('assets/sacred.png');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            padding: 6rem 0;
            color: #ffffff;
        }

        .white-title {
            color: #ffffff !important;
        }

        .red-divider {
            background: #dc3545 !important;
        }

        .sacred-waters-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .main-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .content-paragraph {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

        .highlight-boxes {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .highlight-box {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .highlight-text {
            font-size: 1.1rem;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .highlight-accent {
            width: 40px;
            height: 2px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 1px;
        }

        .sacred-quote-section {
            text-align: center;
            margin-bottom: 3rem;
            padding: 0 2rem;
        }

        .sacred-quote-text {
            font-size: clamp(1.2rem, 2.2vw, 1.6rem);
            font-style: italic;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
        }

        .discover-journey-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: #ffffff;
            color: var(--green700);
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: var(--radius-pill);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .discover-journey-button:hover {
            background: var(--green800);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Design for Sacred Waters Section */
        @media (max-width: 992px) {
            .sacred-waters-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .sacred-waters-section {
                padding: 4rem 0;
            }
        }

        @media (max-width: 768px) {
            .highlight-boxes {
                gap: 1rem;
            }
            
            .highlight-box {
                padding: 1.2rem;
            }
            
            .sacred-quote-section {
                padding: 0 1rem;
            }
        }

        /* Kaaba Luum Section */
        .kaaba-luum-section {
            background: #f8f9fa;
            padding: 6rem 0;
            margin-top: -3rem; /* subtle overlap with previous section */
        }

        .kaaba-header-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .kaaba-text-content {
            padding-right: 2rem;
        }

        .kaaba-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            color: var(--green700);
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        .location-info {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .location-icon {
            font-size: 1.2rem;
            color: #dc3545;
            margin-top: 0.1rem;
        }

        .location-text {
            flex: 1;
        }

        .location-main {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.3rem;
        }

        .location-sub {
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }

        .location-divider {
            width: 60px;
            height: 3px;
            background: #dc3545;
            border-radius: 2px;
            margin-bottom: 2rem;
        }

        .kaaba-quote {
            font-size: 1.2rem;
            font-style: italic;
            color: #4a5568;
            line-height: 1.6;
            margin: 0;
            padding-left: 1.5rem;
            border-left: 3px solid rgba(47, 106, 86, 0.3);
        }

        .kaaba-image-content {
            position: relative;
        }

        .kaaba-image {
            width: 100%;
            height: auto;
        }

        .kaaba-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 20;
            margin-bottom: -8rem;
        }

        .feature-card {
            background: #ffffff;
            padding: 2.5rem 2rem;
            border-radius: var(--radius-lg);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(47, 106, 86, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--green700);
        }

        .feature-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #4a5568;
            margin-bottom: 0.5rem;
        }

        .feature-accent {
            width: 60px;
            height: 3px;
            background: var(--green600);
            border-radius: 2px;
            margin-top: 0.5rem;
        }

        /* Responsive Design for Kaaba Luum Section */
        @media (max-width: 992px) {
            .kaaba-header-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .kaaba-text-content {
                padding-right: 0;
            }
            
            .kaaba-features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                margin-bottom: -6rem;
            }
            
            .kaaba-luum-section {
                padding: 4rem 0;
            }
        }

        @media (max-width: 768px) {
            .kaaba-features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: -4rem;
            }
            
            .feature-card {
                padding: 2rem 1.5rem;
            }
            
            .kaaba-header-content {
                gap: 2rem;
            }
        }

        /* Overlap Section */
        .overlap-section {
            background-image: linear-gradient(0deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url('assets/oversection.png');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            padding: 12rem 0 8rem 0;
            margin-top: -6rem;
            position: relative;
            z-index: 10;
            color: #ffffff;
        }

        .overlap-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }

        .overlap-title {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 2rem;
            line-height: 1.3;
            letter-spacing: 0.01em;
        }

        .overlap-text {
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 3rem;
            font-weight: 300;
            font-style: italic;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .overlap-cta {
            display: flex;
            justify-content: center;
        }

        .explore-button {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background: #ffffff;
            color: #666;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: var(--radius-pill);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .explore-button:hover {
            background: var(--green800);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
        }

        /* Responsive Design for Overlap Section */
        @media (max-width: 992px) {
            .overlap-section {
                margin-top: -4rem;
                padding: 10rem 0 6rem 0;
            }
            
            .overlap-content {
                padding: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .overlap-section {
                background-attachment: scroll;
                margin-top: -3rem;
                padding: 8rem 0 5rem 0;
            }
            
            .overlap-content {
                padding: 1.5rem 1rem;
            }
            
            .overlap-text {
                margin-bottom: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .overlap-section {
                margin-top: -2rem;
                padding: 6rem 0 4rem 0;
            }
            
            .overlap-content {
                padding: 1rem;
            }
            
            .overlap-text {
                margin-bottom: 2rem;
            }
        }

        /* Three Sacred Experiences Wrapper */
        .three-sacred-experiences-wrapper {
            background: linear-gradient(to bottom, #fdf6e3 0%, #f0f8f4 50%, #e8f5e8 100%);
        }

        /* Three Sacred Experiences Section */
        .three-sacred-section {
            background: transparent;
            padding: 6rem 0;
        }

        .sacred-title {
            color: var(--green700) !important;
        }

        .section-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: #666;
            text-align: center;
            max-width: 800px;
            margin: 2rem auto 0;
            line-height: 1.6;
            font-style: italic;
        }

        .sacred-experience-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 4rem;
        }

        .experience-media {
            position: relative;
        }

        .leadership-dance-image {
            width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .experience-text {
            padding-left: 2rem;
        }

        .experience-title {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 600;
            color: var(--green700);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .experience-divider {
            width: 60px;
            height: 3px;
            background: var(--green600);
            border-radius: 2px;
            margin-bottom: 1.5rem;
        }

        .experience-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 2rem;
        }

        .experience-cta {
            margin-top: 1.5rem;
        }

        .dance-button {
            display: inline-block;
            padding: 0.7rem 1.3rem;
            background: rgba(255, 255, 255, 0.8);
            color: var(--green700);
            font-size: 0.9rem;
            font-weight: 400;
            text-decoration: none;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
            font-style: normal;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .dance-button:hover {
            background: var(--green800);
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        /* Responsive Design for Three Sacred Experiences Section */
        @media (max-width: 992px) {
            .sacred-experience-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .experience-text {
                padding-left: 0;
                text-align: center;
            }
            
            .experience-divider {
                margin-left: auto;
                margin-right: auto;
            }
            
            .three-sacred-section {
                padding: 4rem 0;
            }
        }

        @media (max-width: 768px) {
            .sacred-experience-content {
                gap: 2rem;
            }
            
            .section-subtitle {
                padding: 0 1rem;
            }
        }

        /* Leadership Inspiration Section */
        .leadership-inspiration-section {
            background: transparent;
            padding: 6rem 0;
        }

        .inspiration-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .inspiration-text {
            padding-right: 2rem;
        }

        .inspiration-title {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 600;
            color: var(--green700);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .inspiration-divider {
            width: 60px;
            height: 3px;
            background: var(--green600);
            border-radius: 2px;
            margin-bottom: 1.5rem;
        }

        .inspiration-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 2rem;
        }

        .inspiration-cta {
            margin-top: 1.5rem;
        }

        .rise-button {
            display: inline-block;
            padding: 0.7rem 1.3rem;
            background: rgba(255, 255, 255, 0.8);
            color: var(--green700);
            font-size: 0.9rem;
            font-weight: 400;
            text-decoration: none;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
            font-style: normal;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .rise-button:hover {
            background: var(--green800);
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        .inspiration-media {
            position: relative;
        }

        .leadership-inspiration-image {
            width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        /* Responsive Design for Leadership Inspiration Section */
        @media (max-width: 992px) {
            .inspiration-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .inspiration-text {
                padding-right: 0;
                text-align: center;
                order: 2;
            }
            
            .inspiration-media {
                order: 1;
            }
            
            .inspiration-divider {
                margin-left: auto;
                margin-right: auto;
            }
            
            .leadership-inspiration-section {
                padding: 4rem 0;
            }
        }

        @media (max-width: 768px) {
            .inspiration-content {
                gap: 2rem;
            }
        }

        /* Activated Leadership Section */
        .activated-leadership-section {
            background: transparent;
            padding: 6rem 0;
        }

        .activated-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .activated-media {
            position: relative;
        }

        .activated-leadership-image {
            width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .activated-text {
            padding-left: 2rem;
        }

        .activated-title {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 600;
            color: var(--green700);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .activated-divider {
            width: 60px;
            height: 3px;
            background: var(--green600);
            border-radius: 2px;
            margin-bottom: 1.5rem;
        }

        .activated-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 2rem;
        }

        .activated-cta {
            margin-top: 1.5rem;
        }

        .capture-button {
            display: inline-block;
            padding: 0.7rem 1.3rem;
            background: rgba(255, 255, 255, 0.8);
            color: var(--green700);
            font-size: 0.9rem;
            font-weight: 400;
            text-decoration: none;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
            font-style: normal;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .capture-button:hover {
            background: var(--green800);
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        /* Responsive Design for Activated Leadership Section */
        @media (max-width: 992px) {
            .activated-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .activated-text {
                padding-left: 0;
                text-align: center;
            }
            
            .activated-divider {
                margin-left: auto;
                margin-right: auto;
            }
            
            .activated-leadership-section {
                padding: 4rem 0;
            }
        }

        @media (max-width: 768px) {
            .activated-content {
                gap: 2rem;
            }
        }

        /* Ready to Dance Section */
        .ready-to-dance-section {
            background-image: linear-gradient(0deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('assets/ready_to_dance.png');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            padding: 8rem 0;
            color: #ffffff;
            text-align: center;
        }

        .ready-to-dance-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .ready-to-dance-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 2rem;
            line-height: 1.3;
            letter-spacing: 0.01em;
        }

        .ready-to-dance-description {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            font-weight: 400;
            font-style: italic;
        }

        .ready-to-dance-cta {
            display: flex;
            justify-content: center;
        }

        .transformation-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.9);
            color: #666;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: var(--radius-pill);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .transformation-button:hover {
            background: var(--green800);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
        }

        /* Responsive Design for Ready to Dance Section */
        @media (max-width: 768px) {
            .ready-to-dance-section {
                background-attachment: scroll;
                padding: 6rem 0;
            }
            
            .ready-to-dance-content {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .ready-to-dance-section {
                padding: 5rem 0;
            }
            
            .ready-to-dance-content {
                padding: 0 1rem;
            }
        }

        /* Investment Options Section */
        .investment-options-section {
            background: #f8f9fa;
            padding: 6rem 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .pricing-card:nth-child(1) {
            grid-column: 1 / 3;
        }

        .pricing-card:nth-child(2) {
            grid-column: 3 / 5;
        }

        .pricing-card:nth-child(3) {
            grid-column: 5 / 7;
        }

        .pricing-card:nth-child(4) {
            grid-column: 2 / 4;
        }

        .pricing-card:nth-child(5) {
            grid-column: 4 / 6;
        }

        .pricing-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 100%;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            border: 2px solid var(--green600);
        }

        .pricing-card.featured {
            transform: scale(1.05);
        }

        .save-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: #dc3545;
            color: #ffffff;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
        }

        .save-badge span:first-child {
            display: block;
            font-size: 0.75rem;
        }

        .save-badge span:last-child {
            display: block;
            font-size: 1rem;
            font-weight: 700;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: rgba(47, 106, 86, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--green700);
        }

        .price-info {
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
        }

        /* Align icons left only for Perfect Human cards */
        .perfect-human-section .card-icon {
            margin: 0 0 1.5rem 0;
        }

        .period {
            font-size: 1.1rem;
            color: #666;
            font-weight: 400;
        }

        .plan-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .plan-subtitle {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            text-align: left;
        }

        .features-list li {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.4;
        }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green600);
            font-weight: 600;
        }

        .choose-plan-btn {
            width: 100%;
            padding: 0.9rem 1.5rem;
            background: var(--green700);
            color: #ffffff;
            border: none;
            border-radius: var(--radius-pill);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .choose-plan-btn:hover {
            background: var(--green600);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(47, 106, 86, 0.3);
        }

        /* Responsive Design for Investment Options */
        @media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }
            
            .pricing-card:nth-child(1) {
                grid-column: 1 / 3;
            }

            .pricing-card:nth-child(2) {
                grid-column: 3 / 5;
            }

            .pricing-card:nth-child(3) {
                grid-column: 2 / 4;
            }

            .pricing-card:nth-child(4) {
                grid-column: 1 / 3;
            }

            .pricing-card:nth-child(5) {
                grid-column: 3 / 5;
            }
        }

        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .pricing-card {
                padding: 2rem 1.5rem;
                grid-column: 1;
            }
            
            .pricing-card.featured {
                transform: none;
                border-width: 1px;
            }
            
            .investment-options-section {
                padding: 4rem 0;
            }
        }

        /* Message from Nikki Le Section */
        .message-section {
            background: linear-gradient(135deg, #2f6a56 0%, #1f4a3c 100%);
            padding: 6rem 0;
            color: #ffffff;
        }

        .message-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            align-items: start;
        }

        .message-left {
            padding-right: 2rem;
        }

        .message-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 300;
            margin-bottom: 1rem;
            color: #ffffff;
            line-height: 1.2;
        }

        .message-divider {
            width: 60px;
            height: 3px;
            background: #dc3545;
            margin-bottom: 2rem;
        }

        .message-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .message-quote {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .message-quote p {
            font-size: 1rem;
            line-height: 1.5;
            color: var(--green700);
            margin: 0;
            font-style: italic;
        }

        .message-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .video-player {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 16/9;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
        }

        .play-button {
            transition: transform 0.3s ease;
        }

        .video-placeholder:hover .play-button {
            transform: scale(1.1);
        }

        .message-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-bottom: 3rem;
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .feature-box {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 0;
            padding: 2rem;
            backdrop-filter: blur(10px);
            border: none;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .feature-box:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        
        .feature-box:last-child {
            border-right: none;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .feature-description {
            font-size: 0.95rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .message-cta {
            text-align: center;
        }

        .transform-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            text-decoration: none;
            border-radius: var(--radius-pill);
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .transform-button:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Design for Message Section */
        @media (max-width: 1200px) {
            .message-content {
                gap: 3rem;
            }
            
            .message-left {
                padding-right: 1rem;
            }
        }

        @media (max-width: 992px) {
            .message-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .message-left {
                padding-right: 0;
                text-align: center;
            }
            
            .message-features {
                grid-template-columns: repeat(3, 1fr);
                gap: 0;
            }
        }

        @media (max-width: 768px) {
            .message-section {
                padding: 4rem 0;
            }
            
            .message-content {
                margin-bottom: 3rem;
            }
            
            .message-quote {
                padding: 1.5rem;
            }
            
            .feature-box {
                padding: 1.5rem;
            }
            
            .message-features {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .feature-box {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .feature-box:last-child {
                border-bottom: none;
            }
            
            .transform-button {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
        }

        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, #4a6b5a 0%, #3d5a4a 25%, #2f4a3c 50%, #1f3a2c 75%, #0f2a1c 100%);
            padding: 6rem 0;
            color: #ffffff;
            text-align: center;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .newsletter-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 400;
            margin-bottom: 1rem;
            color: #ffffff;
            line-height: 1.2;
        }

        .newsletter-divider {
            width: 60px;
            height: 3px;
            background: rgba(255, 255, 255, 0.6);
            margin: 0 auto 2rem;
        }

        .newsletter-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 3rem;
        }

        .newsletter-form {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-label {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
        }

        .email-input {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-sm);
            color: #ffffff;
            font-size: 1rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .email-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .email-input:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        }

        .consent-group {
            margin-bottom: 2rem;
            text-align: left;
        }

        .consent-label {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            cursor: pointer;
        }

        .consent-checkbox {
            width: 18px;
            height: 18px;
            margin: 0;
            flex-shrink: 0;
            margin-top: 0.1rem;
            accent-color: rgba(255, 255, 255, 0.8);
        }

        .consent-text {
            font-size: 0.85rem;
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.8);
        }

        .subscribe-button {
            width: 100%;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .subscribe-button:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .privacy-note {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            font-style: italic;
        }

        .community-message {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Responsive Design for Newsletter Section */
        @media (max-width: 768px) {
            .newsletter-section {
                padding: 4rem 0;
            }
            
            .newsletter-form {
                padding: 2rem 1.5rem;
            }
            
            .newsletter-icon {
                width: 60px;
                height: 60px;
            }
            
            .newsletter-icon svg {
                width: 36px;
                height: 36px;
            }
        }

        @media (max-width: 480px) {
            .newsletter-form {
                padding: 1.5rem 1rem;
            }
            
            .consent-label {
                gap: 0.5rem;
            }
            
            .consent-text {
                font-size: 0.8rem;
            }
        }

        /* Footer Section */
        .footer {
            background: #0f2a1c;
            color: #ffffff;
            padding: 4rem 0 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            max-width: 500px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .logo-circle {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.9rem;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .brand-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 0.25rem 0;
            line-height: 1.2;
        }

        .brand-tagline {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            font-style: italic;
        }

        .brand-description {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }

        .made-with-love {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .heart {
            font-size: 1rem;
        }

        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .column-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav li {
            margin-bottom: 0.75rem;
        }

        .footer-nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .copyright p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        .footer-legal {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .legal-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .legal-link:hover {
            color: #ffffff;
        }

        .powered-by {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
        }

        .footer-quote {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-quote p {
            font-size: 1rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Responsive Design for Footer */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-links {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 3rem 0 1.5rem;
            }
            
            .footer-container {
                padding: 0 1rem;
            }
            
            .footer-content {
                gap: 2rem;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .footer-legal {
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .footer-logo {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
            
            .logo-circle {
                width: 40px;
                height: 40px;
                font-size: 0.8rem;
            }
            
            .footer-legal {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .made-with-love {
                flex-wrap: wrap;
            }
        }
