/* ============================================
   PREMIUM LUXURY DESIGN SYSTEM
   ============================================ */

:root {
    /* Premium Color Palette - Lighter & Brighter */
    --bg-primary: #1A1A1A;
    --bg-secondary: #252525;
    --bg-tertiary: #2F2F2F;
    --bg-light: #3A3A3A;
    --text-primary: #FFFFFF;
    --text-secondary: #D0D0D0;
    --text-tertiary: #A8A8A8;
    --accent-primary: #F5F5F5;
    --accent-secondary: #D4AF7A;
    --accent-champagne: #E0B872;
    --accent-rose-gold: #F0D4C8;
    --glass-bg: rgba(255, 255, 255, 0.10);
    --glass-border: rgba(255, 255, 255, 0.18);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 2rem;
    
    /* Animation */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    * {
        scroll-behavior: inherit;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(232, 232, 232, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 122, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(232, 196, 184, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(20px, 20px) scale(1.05);
        opacity: 0.8;
    }
}

@media (pointer: fine) {
    body {
        cursor: none;
    }
    
    * {
        cursor: inherit;
    }
}

/* Premium Custom Cursor */
.custom-cursor {
    width: 24px;
    height: 24px;
    border: 1.5px solid rgba(212, 175, 122, 0.8);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: normal;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0 0 10px rgba(212, 175, 122, 0.3);
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.2s ease, height 0.2s ease;
    box-shadow: 0 0 8px rgba(212, 175, 122, 0.6);
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    border-color: var(--accent-champagne);
    border-width: 2px;
    box-shadow: 0 0 20px rgba(212, 175, 122, 0.5);
}

.custom-cursor.hover + .custom-cursor-dot,
.custom-cursor-dot.hover {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 12px rgba(212, 175, 122, 0.8);
}

@media (pointer: fine) {
    a, button, .nav-cta, .hero-cta, .cta-button, .nav-link, 
    .rules-nav-btn, .rules-carousel-dot, input, textarea, select {
        cursor: none !important;
    }
    
    /* Show cursor for mobile menu links */
    .nav-menu .nav-link {
        cursor: none !important;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(
        135deg,
        #FFFFFF 0%,
        var(--accent-champagne) 50%,
        #FFFFFF 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
    letter-spacing: -0.03em;
}

.single-line-heading {
    white-space: nowrap;
    font-size: clamp(2rem, 4.5vw, 4rem);
    overflow: visible;
}

.section-subheading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    color: var(--text-primary);
}

.large-text {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    text-align: justify;
    text-justify: inter-word;
}

.journey-header .large-text {
    text-align: center;
    text-justify: auto;
}

.body-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
    text-align: justify;
    text-justify: inter-word;
}

.accent-text {
    font-size: 1rem;
    color: var(--accent-champagne);
    text-align: center;
    margin: var(--spacing-md) 0;
    font-weight: 400;
    letter-spacing: 0.1em;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

/* Ensure nav-menu breaks out of nav stacking context */
.nav .nav-menu {
    position: fixed !important;
    z-index: 10001 !important;
    isolation: isolate !important;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.nav-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-champagne), transparent);
    transition: all 0.4s var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(232, 232, 232, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--accent-champagne);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

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

.nav-cta {
    display: none;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-champagne) 0%, var(--accent-secondary) 100%);
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--transition-smooth), height 0.6s var(--transition-smooth);
    z-index: -1;
}

.nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover {
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 122, 0.3);
}

.nav-cta:hover::before {
    width: 300px;
    height: 300px;
}

.nav-cta:hover::after {
    left: 100%;
}

.nav-request-invite {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1001;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.3);
}

.nav-request-invite::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-request-invite:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 122, 0.5);
}

.nav-request-invite:hover::before {
    left: 100%;
}

/* ============================================
   HERO SECTION - MODERN VIDEO BACKGROUND
   Fully Responsive for All Devices
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Video Background Container */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Vimeo Video Iframe */
.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100vw, 177.78vh);
    height: max(100vh, 56.25vw);
    min-width: 100vw;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
    filter: brightness(0.85) contrast(1.1);
    object-fit: cover;
}

/* Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

/* Hero Content Container */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    width: 100%;
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--accent-champagne);
    margin: 0 0 2rem 0;
    text-shadow: 
        0 4px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 122, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.6s;
}

/* Hero Description */
.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(232, 232, 232, 0.9);
    margin: 0 0 3rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Hero Button */
.hero-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--accent-champagne);
    border: 2px solid var(--accent-champagne);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 122, 0.15), transparent);
    transition: left 0.6s ease;
}

.hero-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-champagne) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    z-index: -1;
    opacity: 0;
}

.hero-button:hover {
    color: var(--bg-primary);
    border-color: var(--accent-rose-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 122, 0.3);
}

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

.hero-button:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0.3;
}

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

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    z-index: 1;
}

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

.section-dark {
    background-color: var(--bg-secondary);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(232, 232, 232, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 122, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.intro-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.intro-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(212, 175, 122, 0.02) 100px,
            rgba(212, 175, 122, 0.02) 101px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 100px,
            rgba(212, 175, 122, 0.02) 100px,
            rgba(212, 175, 122, 0.02) 101px
        );
    z-index: 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* Image Wrapper with Decorative Elements */
.intro-image-wrapper {
    position: relative;
    animation: fade-slide-in 1s ease forwards;
    display: flex;
    align-items: stretch;
    height: 100%;
}

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

/* Decorative Frame */
.intro-decorative-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(212, 175, 122, 0.3);
    border-radius: 12px;
    z-index: 0;
    animation: frame-glow 3s ease-in-out infinite;
}

@keyframes frame-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 122, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 122, 0.4);
    }
}

/* Location Badge */
.intro-location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.95), rgba(224, 184, 114, 0.95));
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.4);
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.intro-location-badge svg {
    width: 16px;
    height: 16px;
}

/* Decorative Corners */
.intro-decorative-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--accent-champagne);
    z-index: 2;
    opacity: 0.7;
    transition: all 0.5s var(--transition-smooth);
}

.corner-tl {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.corner-tr {
    top: -5px;
    right: -5px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 8px 0 0;
}

.corner-bl {
    bottom: -5px;
    left: -5px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 8px;
}

.corner-br {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

.intro-image-wrapper:hover .intro-decorative-corner {
    opacity: 1;
    transform: scale(1.1);
}

.intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
    height: 100%;
    min-height: 500px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.05) brightness(1.05);
    transition: transform 0.8s var(--transition-smooth), filter 0.8s var(--transition-smooth);
}

.intro-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.8s var(--transition-smooth);
    z-index: 1;
    pointer-events: none;
}

.intro-image:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.1);
}

.intro-image:hover::before {
    opacity: 1;
}

/* Text Content */
.intro-text {
    padding-left: var(--spacing-md);
    animation: fade-slide-in-right 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes fade-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Intro Heading */
.intro-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        135deg,
        #FFFFFF 0%,
        var(--accent-champagne) 50%,
        #FFFFFF 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* Label */
.intro-label {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.15), rgba(224, 184, 114, 0.1));
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 50px;
    color: var(--accent-champagne);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

/* Main Text */
.intro-main-text {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    text-align: justify;
    text-justify: inter-word;
}

/* Read More Button */
.read-more-btn {
    background: transparent;
    border: 1px solid var(--accent-champagne);
    color: var(--accent-champagne);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 122, 0.1), transparent);
    transition: left 0.5s ease;
}

.read-more-btn:hover {
    background: rgba(212, 175, 122, 0.1);
    border-color: var(--accent-champagne);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.2);
}

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

/* Text Highlights */
.text-highlight {
    color: var(--accent-champagne);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-champagne), transparent);
    opacity: 0.5;
}

.brand-highlight {
    color: var(--text-primary);
    font-size: 1.05em;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-gold {
    color: var(--accent-champagne);
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.italic-text {
    font-style: italic;
}

.keep-together {
    white-space: nowrap;
}

.text-emphasis {
    color: var(--text-primary);
    font-weight: 500;
}

.golden-subheading-text {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--accent-champagne);
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
    margin-top: var(--spacing-md);
    letter-spacing: 0.02em;
}

/* Feature Items */
.intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.intro-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(212, 175, 122, 0.2);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s var(--transition-smooth);
}

.intro-feature-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-champagne);
}

.intro-feature-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.15), rgba(224, 184, 114, 0.1));
    border-color: rgba(212, 175, 122, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.2);
}

@media (max-width: 968px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .intro-text {
        padding-left: 0;
        text-align: center;
    }

    .intro-image img {
        height: 300px;
    }

    .intro-label {
        display: block;
        text-align: center;
    }

    .intro-features {
        justify-content: center;
    }

    .intro-decorative-frame {
        display: none;
    }

    .intro-location-badge {
        top: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* ============================================
   WHO WE ARE SECTION
   ============================================ */

.who-we-are-section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/band.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(0px) brightness(0.7);
    z-index: 0;
    pointer-events: none;
}

.who-we-are-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 14, 14, 0.55) 0%,
        rgba(25, 25, 25, 0.50) 30%,
        rgba(25, 25, 25, 0.50) 70%,
        rgba(14, 14, 14, 0.55) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.who-we-are-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}


.who-we-are-intro .section-heading {
    margin-bottom: 2.5rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.who-we-are-tagline {
    text-align: center;
    padding: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    position: relative;
    overflow: visible;
    margin-left: calc(-1 * var(--spacing-xl));
    margin-right: calc(-1 * var(--spacing-xl));
}

.who-we-are-background-morph {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    filter: blur(40px) brightness(0.8);
    animation: morphBackground 20s ease-in-out infinite;
}

.who-we-are-background-morph::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at 30% 40%,
        rgba(212, 175, 122, 0.3) 0%,
        transparent 50%
    ),
    radial-gradient(
        ellipse at 70% 60%,
        rgba(224, 184, 114, 0.25) 0%,
        transparent 50%
    ),
    radial-gradient(
        ellipse at 50% 50%,
        rgba(240, 212, 200, 0.2) 0%,
        transparent 60%
    );
    animation: morphBlob 15s ease-in-out infinite;
    mix-blend-mode: overlay;
}

.who-we-are-background-morph::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(
        circle at 60% 30%,
        rgba(212, 175, 122, 0.25) 0%,
        transparent 40%
    );
    animation: morphBlob2 18s ease-in-out infinite;
    mix-blend-mode: soft-light;
}

.who-we-are-wrapper {
    position: relative;
    padding: 3rem 3.5rem;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-clip: padding-box;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(212, 175, 122, 0.3),
        0 0 60px rgba(212, 175, 122, 0.15);
    overflow: hidden;
    animation: taglinePulse 3s ease-in-out infinite;
    z-index: 1;
}

.who-we-are-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 122, 0.1) 0%,
        rgba(224, 184, 114, 0.05) 50%,
        rgba(212, 175, 122, 0.1) 100%
    );
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

.who-we-are-border-glow {
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 122, 0.6),
        rgba(224, 184, 114, 0.4),
        rgba(240, 212, 200, 0.5),
        rgba(212, 175, 122, 0.6)
    );
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderRotate 4s linear infinite;
    z-index: -1;
}

.who-we-are-sparkle {
    position: absolute;
    font-size: 1.5rem;
    color: var(--accent-champagne);
    filter: drop-shadow(0 0 10px rgba(212, 175, 122, 0.8));
    animation: sparkleFloat 3s ease-in-out infinite;
    pointer-events: none;
}

.who-we-are-sparkle.sparkle-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.who-we-are-sparkle.sparkle-2 {
    top: 15%;
    right: 8%;
    animation-delay: 0.7s;
    font-size: 1.2rem;
}

.who-we-are-sparkle.sparkle-3 {
    bottom: 15%;
    left: 8%;
    animation-delay: 1.4s;
    font-size: 1rem;
}

.who-we-are-sparkle.sparkle-4 {
    bottom: 10%;
    right: 5%;
    animation-delay: 2.1s;
    font-size: 1.3rem;
}

.who-we-are-big {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        135deg,
        #FFFFFF 0%,
        var(--accent-champagne) 50%,
        #FFFFFF 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 40px rgba(212, 175, 122, 0.3);
}

.who-we-are-accent-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--accent-champagne) 50%,
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(212, 175, 122, 0.6);
    border-radius: 2px;
    z-index: 2;
}

.glow-accent {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(212, 175, 122, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}


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

@keyframes gentlePulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes slowFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.1);
    }
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

/* Glass Morphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 122, 0.08), transparent);
    transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.glass-panel:hover::before {
    left: 100%;
}

/* Highlight Heading */
.highlight-heading {
    position: relative;
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.1), rgba(232, 196, 184, 0.1));
    border-left: 3px solid var(--accent-champagne);
    margin: var(--spacing-lg) 0;
}

.highlight-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-champagne), var(--accent-rose-gold), transparent);
}

.about-section {
    background: 
        linear-gradient(135deg, rgba(14, 14, 14, 0.95) 0%, rgba(20, 18, 16, 0.98) 50%, rgba(14, 14, 14, 0.95) 100%),
        radial-gradient(ellipse at 0% 0%, rgba(212, 175, 122, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(224, 184, 114, 0.12) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(212, 175, 122, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 700px 500px at 80% 70%, rgba(224, 184, 114, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 600px 400px at 50% 50%, rgba(240, 212, 200, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: subtleShift 20s ease-in-out infinite;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 122, 0.02) 2px,
            rgba(212, 175, 122, 0.02) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 122, 0.02) 2px,
            rgba(212, 175, 122, 0.02) 4px
        );
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;
}

@keyframes subtleShift {
    0%, 100% { 
        opacity: 0.6; 
        transform: translateY(0) scale(1); 
    }
    33% { 
        opacity: 0.8; 
        transform: translateY(-15px) scale(1.02); 
    }
    66% { 
        opacity: 0.7; 
        transform: translateY(10px) scale(0.98); 
    }
}

/* About Section Intro */
.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xxl);
    position: relative;
    z-index: 2;
}

.about-intro .single-line-heading {
    max-width: 100%;
    overflow: visible;
}

/* About Content Layout */
.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

/* About Main Panel */
.about-main {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: var(--spacing-xl) var(--spacing-xxl);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-main:hover {
    border-color: rgba(212, 175, 122, 0.5);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 122, 0.3),
        0 0 80px rgba(212, 175, 122, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.01);
}

.about-main::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(224, 184, 114, 0.2), transparent 50%, rgba(240, 212, 200, 0.1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.6s ease;
}

.about-main:hover::before {
    opacity: 0.8;
}


/* Decorative Glow */
.about-decorative-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite;
}

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

/* About Highlight Title */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.2), rgba(224, 184, 114, 0.15));
    border: 1px solid rgba(212, 175, 122, 0.4);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-secondary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-main:hover .about-badge {
    transform: scale(1.05);
    border-color: rgba(212, 175, 122, 0.6);
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.3);
}

.about-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 122, 0.3), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.about-main:hover .about-badge::before {
    left: 100%;
}

.about-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-secondary);
}

.about-highlight {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.15;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Brand Word Animation */
.brand-word {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: brand-shimmer 3s ease-in-out infinite;
    position: relative;
    transition: all 0.4s ease;
}

.about-main:hover .brand-word {
    transform: scale(1.05);
    filter: brightness(1.4) drop-shadow(0 0 20px rgba(212, 175, 122, 0.6));
}

@keyframes brand-shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.highlight-accent {
    display: block;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-champagne));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.25rem;
    animation: accent-glow 2s ease-in-out infinite;
    transition: all 0.4s ease;
}

.about-main:hover .highlight-accent {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 15px rgba(212, 175, 122, 0.7));
}

@keyframes accent-glow {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(212, 175, 122, 0.5));
    }
}

/* Enhanced Divider */
.about-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: var(--spacing-sm) auto;
    position: relative;
    z-index: 1;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
    position: relative;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-champagne);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 122, 0.5);
    animation: dot-pulse 2s ease-in-out infinite;
}

.divider-dot:first-child {
    animation-delay: 0s;
}

.divider-dot:last-child {
    animation-delay: 1s;
}

@keyframes dot-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.about-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(212, 175, 122, 0.6);
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: var(--spacing-sm) 0;
    font-weight: 300;
    text-align: justify;
    text-justify: inter-word;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Text Accent */
.text-accent {
    color: var(--accent-champagne);
    font-weight: 500;
    position: relative;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-champagne), transparent);
    opacity: 0.5;
}

/* Highlighted Description */
.about-description-highlight {
    font-size: 1.08rem;
    font-weight: 400;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.08), transparent);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 12px;
    border-left: 3px solid var(--accent-champagne);
    margin-top: var(--spacing-xs);
}

/* Text Glow Effect */
.text-glow {
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    animation: text-shimmer 3s ease-in-out infinite;
}

@keyframes text-shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 8px rgba(212, 175, 122, 0.3));
    }
}

/* Animated Text Glow - Beautiful Color Animation */
.animated-text-glow {
    display: inline-block;
    background: linear-gradient(135deg, 
        var(--accent-champagne) 0%, 
        #f4d03f 20%, 
        var(--accent-rose-gold) 40%, 
        #d4af37 60%, 
        #e8c547 80%, 
        var(--accent-champagne) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    position: relative;
    animation: 
        gradient-shift 5s ease-in-out infinite,
        text-pulse 3.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 122, 0.5));
    transition: all 0.3s ease;
}

.animated-text-glow:hover {
    filter: drop-shadow(0 0 20px rgba(212, 175, 122, 0.8));
    transform: scale(1.03);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes text-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 122, 0.5)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(212, 175, 122, 0.7)) brightness(1.2);
    }
}

/* About Tagline */
.about-tagline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(224, 184, 114, 0.2);
    position: relative;
}

.tagline-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.2), rgba(224, 184, 114, 0.15));
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 50%;
    color: var(--accent-secondary);
    margin-bottom: 0;
    transition: all 0.4s var(--transition-smooth);
}

.about-tagline:hover .tagline-icon {
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.25), rgba(224, 184, 114, 0.2));
    border-color: rgba(212, 175, 122, 0.4);
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 15px rgba(212, 175, 122, 0.2);
}

.tagline-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-secondary);
}

.tagline-accent {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-champagne);
    position: relative;
    padding: 0 var(--spacing-md);
}

/* Couple Icons */
.about-couple-icons {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.couple-icon-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.couple-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-champagne);
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.3), rgba(224, 184, 114, 0.2));
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.3);
}

.couple-avatar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af7a' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.avatar-1:hover {
    transform: translateX(-3px) scale(1.05);
    border-color: var(--accent-secondary);
    box-shadow: 0 6px 20px rgba(212, 175, 122, 0.4);
}

.avatar-2:hover {
    transform: translateX(3px) scale(1.05);
    border-color: var(--accent-secondary);
    box-shadow: 0 6px 20px rgba(212, 175, 122, 0.4);
}

.couple-connector {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-champagne);
    animation: connector-pulse 2s ease-in-out infinite;
}

@keyframes connector-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* About Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.about-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 184, 114, 0.15);
    border-radius: 12px;
    padding: 0;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 184, 114, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.about-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 184, 114, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.about-feature-card:hover::before {
    opacity: 1;
}

.feature-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    transition: all 0.5s var(--transition-smooth);
}

.feature-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.about-feature-card:hover .feature-image img {
    filter: brightness(0.85) contrast(1.15);
    transform: scale(1.05);
}

.feature-icon {
    color: var(--accent-champagne);
    margin-bottom: var(--spacing-md);
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 3;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 122, 0.3);
    transition: all 0.4s var(--transition-smooth);
}

.about-feature-card:hover .feature-icon {
    background: rgba(212, 175, 122, 0.2);
    border-color: rgba(212, 175, 122, 0.5);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 122, 0.3);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent-champagne);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-sm);
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
    position: relative;
    z-index: 2;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        gap: var(--spacing-xl);
    }

    .about-intro {
        margin-bottom: var(--spacing-lg);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-main {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .about-highlight {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RULES SECTION
   ============================================ */

.rules-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Premium VIP Background Image */
.rules-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1574634534894-89d7576c8259?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.rules-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(14, 14, 14, 0.82) 20%,
        rgba(20, 20, 20, 0.85) 50%,
        rgba(14, 14, 14, 0.82) 80%,
        rgba(0, 0, 0, 0.88) 100%
    );
    z-index: 1;
}

.rules-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            ellipse at top,
            rgba(212, 175, 122, 0.12) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at bottom,
            rgba(176, 141, 87, 0.08) 0%,
            transparent 60%
        );
    z-index: 2;
}

/* Animated Background Container */
.rules-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    opacity: 0.35;
}

/* Animated Shapes */
.animated-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.15), transparent);
    filter: blur(40px);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.2), transparent);
    animation: float-1 20s infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: -5%;
    background: radial-gradient(circle, rgba(224, 184, 114, 0.15), transparent);
    animation: float-2 25s infinite;
}

.shape-3 {
    width: 350px;
    height: 350px;
    bottom: -10%;
    left: 15%;
    background: radial-gradient(circle, rgba(232, 196, 184, 0.12), transparent);
    animation: float-3 22s infinite;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 122, 0.18), transparent);
    animation: float-4 18s infinite, pulse 8s infinite;
}

.shape-5 {
    width: 320px;
    height: 320px;
    bottom: 10%;
    right: 10%;
    background: radial-gradient(circle, rgba(176, 141, 87, 0.15), transparent);
    animation: float-5 23s infinite;
}

/* Animated Gradients */
.animated-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.gradient-1 {
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(212, 175, 122, 0.05) 25%,
        transparent 50%,
        rgba(224, 184, 114, 0.05) 75%,
        transparent 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

.gradient-2 {
    background: linear-gradient(-45deg,
        transparent 0%,
        rgba(232, 196, 184, 0.03) 33%,
        transparent 66%,
        rgba(212, 175, 122, 0.04) 100%);
    background-size: 400% 400%;
    animation: gradient-shift 20s ease infinite reverse;
}

/* Keyframe Animations */
@keyframes float-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(100px, 80px) scale(1.1);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-80px, 100px) scale(1.15);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-60px, -90px) scale(1.08);
    }
}

@keyframes float-4 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) translate(50px, -50px) scale(1.2);
    }
}

@keyframes float-5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(70px, -70px) scale(1.12);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animated Gold Lines */
.gold-line {
    position: absolute;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 122, 0.6) 50%,
        transparent 100%);
    opacity: 0;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.line-1 {
    width: 2px;
    height: 300px;
    top: -50px;
    left: 15%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(212, 175, 122, 0.5) 50%,
        transparent 100%);
    animation: line-drop 8s infinite;
    animation-delay: 0s;
}

.line-2 {
    width: 2px;
    height: 250px;
    top: -50px;
    right: 20%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(224, 184, 114, 0.4) 50%,
        transparent 100%);
    animation: line-drop 10s infinite;
    animation-delay: 2s;
}

.line-3 {
    width: 400px;
    height: 1px;
    top: 20%;
    left: -100px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 122, 0.6) 50%,
        transparent 100%);
    animation: line-slide-right 12s infinite;
    animation-delay: 1s;
}

.line-4 {
    width: 350px;
    height: 1px;
    top: 60%;
    right: -100px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(176, 141, 87, 0.5) 50%,
        transparent 100%);
    animation: line-slide-left 14s infinite;
    animation-delay: 3s;
}

.line-5 {
    width: 2px;
    height: 200px;
    top: -50px;
    left: 50%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(232, 196, 184, 0.4) 50%,
        transparent 100%);
    animation: line-drop 9s infinite;
    animation-delay: 4s;
}

.line-6 {
    width: 300px;
    height: 1px;
    bottom: 30%;
    left: -100px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 122, 0.5) 50%,
        transparent 100%);
    animation: line-slide-right 11s infinite;
    animation-delay: 5s;
}

/* Geometric Patterns */
.geo-pattern {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 122, 0.3);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.pattern-1 {
    top: 10%;
    left: 10%;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 122, 0.4);
    animation: rotate-scale 20s infinite, fade-pulse 4s infinite;
}

.pattern-2 {
    top: 15%;
    right: 15%;
    transform: rotate(45deg);
    border: 2px solid rgba(224, 184, 114, 0.3);
    animation: rotate-reverse 25s infinite, fade-pulse 5s infinite;
    animation-delay: 1s;
}

.pattern-3 {
    bottom: 20%;
    left: 20%;
    border-radius: 50%;
    border: 2px solid rgba(232, 196, 184, 0.35);
    width: 100px;
    height: 100px;
    animation: rotate-scale 22s infinite, fade-pulse 4.5s infinite;
    animation-delay: 2s;
}

.pattern-4 {
    bottom: 15%;
    right: 12%;
    transform: rotate(30deg);
    border: 2px solid rgba(176, 141, 87, 0.4);
    width: 90px;
    height: 90px;
    animation: rotate-reverse 18s infinite, fade-pulse 5.5s infinite;
    animation-delay: 3s;
}

/* Gold Particles */
.gold-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.8), transparent);
    border-radius: 50%;
    opacity: 0;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    box-shadow: 0 0 10px rgba(212, 175, 122, 0.5);
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: particle-float-1 15s infinite;
    animation-delay: 0s;
}

.particle-2 {
    top: 40%;
    right: 15%;
    animation: particle-float-2 18s infinite;
    animation-delay: 2s;
}

.particle-3 {
    top: 60%;
    left: 25%;
    animation: particle-float-3 20s infinite;
    animation-delay: 4s;
}

.particle-4 {
    top: 30%;
    right: 30%;
    animation: particle-float-1 16s infinite;
    animation-delay: 6s;
}

.particle-5 {
    bottom: 25%;
    left: 40%;
    animation: particle-float-2 19s infinite;
    animation-delay: 8s;
}

.particle-6 {
    top: 50%;
    left: 60%;
    animation: particle-float-3 17s infinite;
    animation-delay: 10s;
}

/* Line Animations */
@keyframes line-drop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px));
        opacity: 0;
    }
}

@keyframes line-slide-right {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px));
        opacity: 0;
    }
}

@keyframes line-slide-left {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(-100vw - 100px));
        opacity: 0;
    }
}

/* Pattern Animations */
@keyframes rotate-scale {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes rotate-reverse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(-135deg) scale(1.15);
        opacity: 0.5;
    }
}

@keyframes fade-pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.6;
    }
}

/* Particle Animations */
@keyframes particle-float-1 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(150px, -200px);
        opacity: 0.8;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(300px, -400px);
        opacity: 0;
    }
}

@keyframes particle-float-2 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(-200px, 150px);
        opacity: 0.8;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-400px, 300px);
        opacity: 0;
    }
}

@keyframes particle-float-3 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(100px, 200px) scale(1.5);
        opacity: 0.9;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(200px, 400px) scale(2);
        opacity: 0;
    }
}

.rules-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.rules-header .large-text {
    text-align: center;
}

/* ============================================
   NEW PREMIUM RULES CAROUSEL
   ============================================ */
.rules-carousel-new {
    position: relative;
    margin-top: var(--spacing-xl);
    padding: 0 2rem;
    z-index: 2;
}

.rules-carousel-viewport {
    overflow: visible;
    position: relative;
    width: 100%;
    margin-bottom: var(--spacing-xl);
    visibility: visible;
    opacity: 1;
}

.rules-carousel-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    visibility: visible;
    opacity: 1;
}

.rules-carousel-slider .rule-item {
    min-width: 0;
    height: auto;
}

/* Premium Navigation Buttons */
.rules-carousel-controls {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 1rem;
    margin-top: var(--spacing-lg);
}

.rules-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.15), rgba(224, 184, 114, 0.1));
    border: 2px solid rgba(212, 175, 122, 0.3);
    color: var(--accent-champagne);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.rules-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.rules-nav-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.3), rgba(224, 184, 114, 0.2));
    border-color: rgba(212, 175, 122, 0.6);
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(212, 175, 122, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.rules-nav-btn:hover::before {
    width: 200%;
    height: 200%;
}

.rules-nav-btn:active {
    transform: scale(0.95);
}

.rules-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.rules-nav-btn[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.rules-nav-btn svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    position: relative;
    z-index: 1;
}

/* Premium Dots Indicator */
.rules-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rules-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 122, 0.4);
    border: 1px solid rgba(212, 175, 122, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.rules-carousel-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 122, 0.6);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.rules-carousel-dot.active {
    width: 40px;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--accent-champagne), var(--accent-rose-gold));
    border-color: var(--accent-champagne);
    box-shadow: 0 0 20px rgba(212, 175, 122, 0.8), 0 0 40px rgba(212, 175, 122, 0.4);
}

.rules-carousel-dot:hover:not(.active) {
    background: rgba(212, 175, 122, 0.7);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(212, 175, 122, 0.6);
}

.rules-carousel-dot:hover:not(.active)::after {
    width: 100%;
    height: 100%;
}

.rule-item {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 122, 0.2);
    border-radius: 16px;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Background image container */
.rule-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.7s var(--transition-smooth);
    z-index: 0;
    filter: brightness(0.7);
}

.rule-item:hover .rule-bg-image {
    opacity: 1;
    transform: scale(1);
}

/* Content wrapper to position above background */
.rule-content {
    position: relative;
    z-index: 3;
    transition: all 0.5s var(--transition-smooth);
}

.rule-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-champagne), var(--accent-secondary));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s var(--transition-smooth);
    border-radius: 16px 0 0 16px;
    z-index: 4;
}

.rule-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.7s var(--transition-smooth);
    pointer-events: none;
    z-index: 1;
}

.rule-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(212, 175, 122, 0.4);
    box-shadow: 
        0 12px 40px rgba(212, 175, 122, 0.2),
        0 0 0 1px rgba(212, 175, 122, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rule-item:hover::before {
    transform: scaleY(1);
}

.rule-item:hover::after {
    opacity: 1;
}

.rule-icon {
    color: var(--accent-champagne);
    margin-bottom: var(--spacing-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.15), rgba(224, 184, 114, 0.1));
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 12px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    z-index: 3;
}

.rule-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-champagne);
    transition: all 0.4s var(--transition-smooth);
}

.rule-item:hover .rule-icon {
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.9), rgba(224, 184, 114, 0.8));
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow:
        0 8px 24px rgba(212, 175, 122, 0.4),
        0 0 30px rgba(212, 175, 122, 0.3);
}

.rule-item:hover .rule-icon svg {
    stroke: #0e0e0e;
    transform: scale(1.15) rotate(5deg);
}

.rule-title {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    line-height: 1.3;
    transition: all 0.5s var(--transition-smooth);
}

.rule-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    position: relative;
    z-index: 1;
    transition: all 0.5s var(--transition-smooth);
    text-align: justify;
    text-justify: inter-word;
}

.rule-item:hover .rule-title {
    color: #ffffff;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 122, 0.3);
}

.rule-item:hover .rule-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Tablet view - 2 columns */
@media (max-width: 1024px) {
    .rules-carousel-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile view - 1 column */
@media (max-width: 768px) {
    .rules-carousel-new {
        padding: 0 1rem;
    }

    .rules-carousel-slider {
        grid-template-columns: 1fr;
    }

    .rules-carousel-controls {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .rules-nav-btn {
        width: 48px;
        height: 48px;
    }
    
    .rules-nav-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .rules-carousel-dots {
        order: -1;
        width: 100%;
    }
    
    .rules-carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .rules-carousel-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .rules-carousel-prev {
        left: -0.5rem;
    }
    
    .rules-carousel-next {
        right: -0.5rem;
    }
    
    .rule-item {
        padding: var(--spacing-md);
    }

    .intro-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .intro-heading {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* ============================================
   WHY STELLA & NOTTE SECTION
   ============================================ */

.why-stella-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.why-stella-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    filter: blur(8px) brightness(0.4);
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.why-stella-section:hover .why-stella-bg-image {
    transform: scale(1.15);
}

.why-stella-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(14, 14, 14, 0.85) 0%,
        rgba(20, 20, 20, 0.80) 50%,
        rgba(14, 14, 14, 0.85) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.why-stella-section .container {
    position: relative;
    z-index: 2;
}

.why-stella-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.why-stella-header .section-heading {
    color: var(--text-primary);
    font-weight: 400;
}

.why-stella-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1px;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 122, 0.2);
    background: rgba(212, 175, 122, 0.1);
    overflow: hidden;
}

.why-stella-card {
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 160px;
    position: relative;
    transition: all 0.3s ease;
}

.why-stella-card-dark {
    background-color: rgba(14, 14, 14, 0.95);
    border: 1px solid rgba(212, 175, 122, 0.15);
}

.why-stella-card-light {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 122, 0.1);
}

.why-stella-word {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--accent-champagne);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.why-stella-text {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.why-stella-card-light .why-stella-text {
    color: var(--text-primary);
}

.why-stella-card:hover {
    background-color: rgba(212, 175, 122, 0.05);
    border-color: rgba(212, 175, 122, 0.3);
    transform: translateY(-2px);
}

.why-stella-card:hover .why-stella-word {
    color: var(--accent-secondary);
}

@media (max-width: 1200px) {
    .why-stella-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .why-stella-section {
        padding: var(--spacing-lg) 0;
    }
    
    .why-stella-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, auto);
        max-width: 100%;
    }
    
    .why-stella-card {
        min-height: 140px;
    }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.benefits-intro .body-text {
    text-align: center;
    text-justify: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.benefit-card {
    padding: var(--spacing-lg);
    background-color: var(--bg-secondary);
    border: 1px solid rgba(212, 175, 122, 0.1);
    transition: all 0.6s var(--transition-smooth);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s var(--transition-smooth);
    transform: scale(0);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    background: linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
                linear-gradient(135deg, var(--accent-champagne), transparent, var(--accent-champagne)) border-box;
    opacity: 0;
    transition: opacity 0.6s var(--transition-smooth);
    z-index: -1;
}

.benefit-card:hover {
    border-color: rgba(212, 175, 122, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 122, 0.2), 0 0 30px rgba(212, 175, 122, 0.1);
}

.benefit-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.benefit-card:hover::after {
    opacity: 1;
}

/* Benefit Card with Background Image */
.benefit-card-image {
    background-size: cover;
    background-position: center;
    min-height: 350px;
    padding: 0;
    border: none;
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.3) 0%,
        rgba(26, 26, 26, 0.65) 100%
    );
    transition: background 0.6s var(--transition-smooth);
}

.benefit-card-image:hover .benefit-overlay {
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.2) 0%,
        rgba(26, 26, 26, 0.5) 100%
    );
}

.benefit-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

/* Featured Benefit Card */
.benefit-card-featured {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border: 1px solid rgba(212, 175, 122, 0.2);
}

/* Benefit Icon */
.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-md);
    color: var(--accent-champagne);
    opacity: 0.8;
    transition: all 0.4s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card:hover .benefit-icon {
    opacity: 1;
    transform: translateY(-4px) scale(1.1);
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
    text-align: center;
}

.alliances-section {
    text-align: center;
    border-top: 1px solid rgba(212, 175, 122, 0.2);
    padding-top: var(--spacing-xxl);
}

/* Alliances Slider */
.alliances-slider-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    margin: var(--spacing-md) 0;
    padding: 2rem 2rem;
}

.alliances-slider-wrapper::before,
.alliances-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
    opacity: 0.6;
}

.alliances-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.8) 0%, transparent 100%);
}

.alliances-slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, rgba(26, 26, 26, 0.8) 0%, transparent 100%);
}

.alliances-slider {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0;
}

.alliances-slider-track {
    display: flex;
    gap: 2rem;
    animation: slideRightToLeft 40s linear infinite;
    will-change: transform;
    width: max-content;
}

.alliances-slider-wrapper:hover .alliances-slider-track {
    animation-play-state: paused;
}

@keyframes slideRightToLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.alliances-slider-track .category-card {
    flex: 0 0 320px;
    min-width: 320px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.alliances-slider-track .category-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.category-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 175, 122, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.category-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-bg::before {
    background: rgba(0, 0, 0, 0.3);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 122, 0.4),
        rgba(224, 184, 114, 0.2),
        rgba(240, 212, 200, 0.3)
    );
    background-size: 200% 200%;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: borderFlow 3s ease infinite;
}

@keyframes borderFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 122, 0.5);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 122, 0.3),
        0 0 80px rgba(212, 175, 122, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.15), rgba(224, 184, 114, 0.1));
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.category-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(5deg);
    border-color: rgba(212, 175, 122, 0.6);
    box-shadow: 0 10px 30px rgba(212, 175, 122, 0.4);
}

.category-card:hover .category-icon::before {
    opacity: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

.category-icon svg {
    color: var(--accent-champagne);
    filter: drop-shadow(0 0 10px rgba(212, 175, 122, 0.5));
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.category-card:hover .category-icon svg {
    filter: drop-shadow(0 0 20px rgba(212, 175, 122, 0.8));
    transform: scale(1.1);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    margin: 0;
    transition: all 0.4s ease;
    background: linear-gradient(
        135deg,
        #FFFFFF 0%,
        var(--accent-champagne) 50%,
        #FFFFFF 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.category-card:hover .category-title {
    transform: scale(1.05);
    animation: shimmer 2s linear infinite;
}

.category-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(212, 175, 122, 0.4) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.category-card:hover .category-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
}
    50% {
        transform: scale(1.2);
    opacity: 1;
    }
}

/* Responsive Alliances Slider */
@media (max-width: 768px) {
    .alliances-slider-track .category-card {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .alliances-slider-track {
        gap: 1.5rem;
    }

    .category-card {
        padding: 2.5rem 1.5rem;
    }

    .category-icon {
        width: 80px;
        height: 80px;
    }

    .category-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .alliances-slider-track .category-card {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .alliances-slider-track {
        gap: 1rem;
    }

    .category-card {
        padding: 2rem 1.2rem;
    }

    .category-icon {
        width: 70px;
        height: 70px;
    }

    .category-icon svg {
        width: 36px;
        height: 36px;
    }

    .category-title {
        font-size: 1.2rem;
    }
}

.alliances-description {
    max-width: 800px;
    margin: var(--spacing-lg) auto;
    text-align: center;
}

/* Alliance Quote Container */
.alliance-quote-container {
    position: relative;
    max-width: 900px;
    margin: var(--spacing-md) auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.quote-decorative-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 122, 0.6) 50%,
        transparent 100%
    );
    position: relative;
}

.quote-decorative-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-champagne);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 122, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

.alliance-quote {
    position: relative;
    text-align: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 20px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px rgba(212, 175, 122, 0.15);
    transition: all 0.5s ease;
}

.alliance-quote:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 122, 0.5);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 80px rgba(212, 175, 122, 0.25);
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-champagne);
    line-height: 0.5;
    position: absolute;
    opacity: 0.3;
    filter: drop-shadow(0 0 20px rgba(212, 175, 122, 0.5));
    font-weight: 700;
}

.quote-mark:first-of-type {
    top: 1rem;
    left: 1rem;
}

.quote-mark-end {
    bottom: 1rem;
    right: 1rem;
    transform: rotate(180deg);
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

.welcome-main-highlight {
    font-size: 2.25rem;
    font-style: italic;
    font-weight: 600;
    color: var(--accent-champagne);
    display: inline-block;
    margin-right: 0.5rem;
}

.quote-highlight {
    background: linear-gradient(
        135deg,
        var(--accent-champagne) 0%,
        var(--accent-secondary) 50%,
        var(--accent-champagne) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    animation: shimmer 3s linear infinite;
    position: relative;
    display: inline-block;
}

.quote-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-champagne) 50%,
        transparent
    );
    opacity: 0.6;
}

/* Responsive Quote */
@media (max-width: 768px) {
    .alliance-quote-container {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .quote-decorative-line {
        width: 100%;
        height: 2px;
    }

    .alliance-quote {
        padding: 1.5rem 2rem;
    }

    .quote-text {
        font-size: 1.4rem;
    }
    
    .welcome-main-highlight {
        font-size: 1.75rem;
    }

    .quote-mark {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .alliance-quote {
        padding: 1.5rem 1.5rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }
    
    .welcome-main-highlight {
        font-size: 1.5rem;
    }

    .quote-mark {
        font-size: 2.5rem;
    }

    .quote-mark:first-of-type {
        top: 0.5rem;
        left: 0.5rem;
    }

    .quote-mark-end {
        bottom: 0.5rem;
        right: 0.5rem;
    }
}

/* ============================================
   MEMBERSHIP CTA - PREMIUM DESIGN
   ============================================ */

.membership-cta {
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}

.membership-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1549294413-26f195200c16?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=75');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.membership-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(14, 14, 14, 0.75) 25%,
        rgba(20, 20, 20, 0.8) 50%,
        rgba(14, 14, 14, 0.75) 75%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
}

.membership-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 175, 122, 0.08) 0%,
        transparent 70%
    );
    z-index: 2;
}

.membership-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 122, 0.2);
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 80px rgba(212, 175, 122, 0.1);
}

.membership-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.membership-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
}

.membership-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    text-align: justify;
    text-justify: inter-word;
    margin-left: auto;
    margin-right: auto;
}

.membership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.membership-benefit {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.membership-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
    transform: scaleX(0);
    transition: transform 0.4s var(--transition-smooth);
}

.membership-benefit:hover::before {
    transform: scaleX(1);
}

.membership-benefit:hover {
    background: rgba(212, 175, 122, 0.1);
    border-color: rgba(212, 175, 122, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 122, 0.2);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.2), rgba(224, 184, 114, 0.15));
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 16px;
    color: var(--accent-secondary);
    transition: all 0.4s var(--transition-smooth);
}

.membership-benefit:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.3), rgba(224, 184, 114, 0.25));
    border-color: rgba(212, 175, 122, 0.5);
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-secondary);
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
}

.membership-tagline {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md) 0;
}

.tagline-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-style: italic;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .membership-content {
        padding: var(--spacing-lg) var(--spacing-sm);
        border-radius: 16px;
    }
    
    .membership-heading {
        font-size: 2rem;
    }
    
    .membership-benefits {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .tagline-text {
        font-size: 1.25rem;
    }
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.membership-feature {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 122, 0.2);
    border-radius: 12px;
    transition: all 0.5s var(--transition-smooth);
    text-align: center;
}

.membership-feature svg {
    color: var(--accent-champagne);
    margin-bottom: var(--spacing-md);
    transition: transform 0.4s var(--transition-smooth);
}

.membership-feature h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.membership-feature p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.membership-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 122, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(212, 175, 122, 0.2);
}

.membership-feature:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    border: 1px solid var(--accent-champagne);
    color: var(--accent-champagne);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    transition: all 0.6s var(--transition-smooth);
    background-color: transparent;
    margin: var(--spacing-md) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-champagne) 0%, var(--accent-secondary) 100%);
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--transition-smooth), height 0.6s var(--transition-smooth);
    z-index: -1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    color: var(--bg-primary);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 122, 0.4);
    border-color: var(--accent-rose-gold);
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover::after {
    left: 100%;
}

.membership-details {
    margin-top: var(--spacing-lg);
    text-align: left;
}

/* ============================================
   FINE PRINT
   ============================================ */

.fine-print {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fine-print-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.1em;
    font-weight: 300;
}

.roadmap {
    margin: var(--spacing-lg) 0;
    text-align: left;
    padding: var(--spacing-lg);
    background-color: var(--bg-primary);
    border: 1px solid rgba(212, 175, 122, 0.1);
}

.roadmap-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-weight: 400;
}

.roadmap-steps {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.roadmap-steps li {
    counter-increment: step-counter;
    padding: var(--spacing-sm) 0 var(--spacing-sm) 3rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

.roadmap-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: var(--spacing-sm);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-champagne);
    color: var(--accent-champagne);
    font-size: 0.9rem;
    font-weight: 400;
}

.checklist {
    margin: var(--spacing-lg) 0;
    text-align: left;
}

.checklist-item {
    color: var(--text-secondary);
    margin: var(--spacing-sm) 0;
    font-weight: 300;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-top: var(--spacing-lg);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    background:
        linear-gradient(135deg, rgba(14, 14, 14, 0.98) 0%, rgba(20, 18, 16, 0.95) 50%, rgba(14, 14, 14, 0.98) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 122, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(224, 184, 114, 0.06) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xxl) 0;
}

.team-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 79px,
            rgba(212, 175, 122, 0.08) 79px,
            rgba(212, 175, 122, 0.08) 80px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 79px,
            rgba(212, 175, 122, 0.08) 79px,
            rgba(212, 175, 122, 0.08) 80px
        );
    opacity: 0.4;
    z-index: 0;
    animation: gridPulse 10s ease-in-out infinite;
}

.team-grid-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    animation: breathe 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

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

.team-intro {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto var(--spacing-xxl);
}

.team-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.15), rgba(224, 184, 114, 0.1));
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-champagne);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

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

.team-member[data-index="1"] { animation-delay: 0.1s; }
.team-member[data-index="2"] { animation-delay: 0.2s; }
.team-member[data-index="3"] { animation-delay: 0.3s; }
.team-member[data-index="4"] { animation-delay: 0.4s; }
.team-member[data-index="5"] { animation-delay: 0.5s; }
.team-member[data-index="6"] { animation-delay: 0.6s; }
.team-member[data-index="7"] { animation-delay: 0.7s; }

.team-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 175, 122, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 122, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px rgba(212, 175, 122, 0.15);
}

.team-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.team-card:hover .team-card-glow {
    opacity: 1;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(30%);
    transition: all 0.6s var(--transition-smooth);
    position: relative;
}

.team-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(14, 14, 14, 0.4) 60%,
        rgba(14, 14, 14, 0.9) 100%
    );
    z-index: 1;
}

.team-card:hover .team-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(14, 14, 14, 0.95) 50%
    );
    transform: translateY(100%);
    transition: transform 0.5s var(--transition-smooth);
    z-index: 2;
    text-align: center;
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

.team-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--accent-champagne);
    line-height: 1.6;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--transition-smooth) 0.1s;
}

.team-card:hover .team-quote {
    opacity: 1;
    transform: translateY(0);
}

.team-info {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-family: var(--font-heading);
}

.team-title {
    font-size: 1rem;
    color: var(--accent-champagne);
    margin-bottom: 1rem;
    font-weight: 400;
}

.team-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.role-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 122, 0.1);
    border: 1px solid rgba(212, 175, 122, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.role-tag:hover {
    background: rgba(212, 175, 122, 0.2);
    border-color: rgba(212, 175, 122, 0.4);
    color: var(--accent-champagne);
    transform: translateY(-2px);
}

/* View Bio Button */
.view-bio-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.2), rgba(224, 184, 114, 0.15));
    border: 1px solid rgba(212, 175, 122, 0.4);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.2);
}

.team-card:hover .view-bio-btn {
    opacity: 1;
    transform: translateY(0);
}

.view-bio-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.3), rgba(224, 184, 114, 0.25));
    border-color: rgba(212, 175, 122, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 122, 0.4);
}

/* Bio Modal */
.bio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.bio-modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.bio-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.bio-modal-content {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
    background:
        linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(25, 25, 25, 0.95) 50%, rgba(20, 20, 20, 0.98) 100%),
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 122, 0.08) 0%, transparent 60%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 24px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 80px rgba(212, 175, 122, 0.15);
    z-index: 2;
    animation: slideUp 0.5s var(--transition-smooth);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
    opacity: 1;
        transform: translateY(0);
    }
}

.bio-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 122, 0.1);
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 50%;
    color: var(--accent-champagne);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.bio-modal-close:hover {
    background: rgba(212, 175, 122, 0.2);
    border-color: rgba(212, 175, 122, 0.5);
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.3);
}

.bio-modal-header {
    position: relative;
    padding: 3rem;
    border-bottom: 1px solid rgba(212, 175, 122, 0.2);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bio-modal-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(212, 175, 122, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 122, 0.2);
    flex-shrink: 0;
}

.bio-modal-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.bio-modal-subtitle {
    font-size: 1.1rem;
    color: var(--accent-champagne);
    font-weight: 400;
}

.bio-modal-body {
    padding: 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.bio-modal-body p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
    text-justify: inter-word;
}

.bio-modal-body h3 {
    color: var(--accent-champagne);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.bio-modal-body ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.bio-modal-body ul li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    text-align: justify;
    text-justify: inter-word;
}

.bio-modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-champagne);
    font-weight: 600;
    font-size: 1.1rem;
}

.bio-highlight {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-champagne);
    text-align: center;
    padding: 1.5rem 0;
    font-style: italic;
    letter-spacing: 0.05em;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .bio-modal-content {
        margin: 2rem 1rem;
        border-radius: 20px;
    }

    .bio-modal-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .bio-modal-image {
        width: 120px;
        height: 120px;
    }

    .bio-modal-title h2 {
        font-size: 2rem;
    }

    .bio-modal-subtitle {
        font-size: 1rem;
    }

    .bio-modal-body {
        padding: 2rem 1.5rem;
    }

    .bio-modal-body p {
        font-size: 1rem;
        text-align: justify;
        text-justify: inter-word;
    }

    .bio-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: 1rem;
        right: 1rem;
    }

    .view-bio-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   LIFESTYLE GALLERY
   ============================================ */

.lifestyle-gallery {
    background: var(--bg-primary);
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.gallery-intro .large-text {
    text-align: center;
    text-justify: auto;
}

.welcome-premium-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0;
    line-height: 1.6;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 1rem 0;
}

.welcome-premium-text::before {
    content: '✨';
    margin-right: 0.5rem;
    display: inline-block;
}

.welcome-premium-text::after {
    content: '✨';
    margin-left: 0.5rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .welcome-premium-text {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }
}

/* ============================================
   PROFESSIONAL GROWTH SECTION
   ============================================ */

.professional-growth-section {
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.professional-growth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/businessmembers.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(0px) brightness(0.6);
    z-index: 0;
    pointer-events: none;
}

.professional-growth-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 14, 14, 0.65) 0%,
        rgba(25, 25, 25, 0.60) 30%,
        rgba(25, 25, 25, 0.60) 70%,
        rgba(14, 14, 14, 0.65) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.professional-growth-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.professional-growth-intro {
    text-align: center;
    width: 100%;
}

.professional-growth-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0 0 var(--spacing-sm) 0;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-champagne) 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
}

.professional-growth-text {
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 800px;
}

.professional-growth-text .body-text {
    margin: 0;
    line-height: 1.8;
    color: var(--text-primary);
}

.professional-growth-emphasis {
    font-style: italic;
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
}

.professional-growth-emphasis {
    font-style: italic;
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
}

@media (max-width: 968px) {
    .professional-growth-content {
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }

    .professional-growth-text {
        padding: var(--spacing-lg);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .professional-growth-section {
        padding: var(--spacing-md) 0;
    }

    .professional-growth-section::before {
        background-attachment: scroll;
        filter: blur(0px) brightness(0.55);
    }

    .professional-growth-section::after {
        background: linear-gradient(
            135deg,
            rgba(14, 14, 14, 0.70) 0%,
            rgba(25, 25, 25, 0.65) 50%,
            rgba(14, 14, 14, 0.70) 100%
        );
    }

    .professional-growth-intro {
        padding: 0 var(--spacing-md);
    }

    .professional-growth-heading {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        line-height: 1.5;
    }

    .professional-growth-text {
        padding: var(--spacing-md);
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    min-height: 300px;
    transition: transform 0.6s var(--transition-smooth);
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth), filter 0.8s var(--transition-smooth);
    filter: grayscale(20%) brightness(0.95);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(26, 26, 26, 0.7) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-lg);
    opacity: 0.8;
    transition: opacity 0.6s var(--transition-smooth);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    transform: translateY(10px);
    transition: transform 0.6s var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1.1);
}

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

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

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

    .gallery-tall,
    .gallery-wide {
        grid-column: auto;
        grid-row: auto;
    }
}

/* ============================================
   APPLY SECTION
   ============================================ */

.apply-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.apply-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1) saturate(0.8);
    transition: transform 0.6s ease;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.apply-section:hover .apply-hero img {
    transform: scale(1.05);
}

.apply-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 14, 14, 0.85) 0%,
        rgba(20, 18, 16, 0.75) 50%,
        rgba(14, 14, 14, 0.85) 100%
    );
    z-index: 1;
}

.apply-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 122, 0.2);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 80px rgba(212, 175, 122, 0.1);
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.2), rgba(224, 184, 114, 0.15));
    border: 1px solid rgba(212, 175, 122, 0.4);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-secondary);
    margin-bottom: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.vip-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.vip-badge:hover::before {
    left: 100%;
}

.vip-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-secondary);
}

.apply-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.vip-accent {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-champagne));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
}

.apply-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
}

.vip-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
    margin: var(--spacing-md) auto;
    position: relative;
}

.vip-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(212, 175, 122, 0.6);
}

.apply-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    text-align: justify;
    text-justify: inter-word;
    margin-left: auto;
    margin-right: auto;
}

.vip-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.vip-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s var(--transition-smooth);
}

.vip-feature:hover {
    background: rgba(212, 175, 122, 0.1);
    border-color: rgba(212, 175, 122, 0.3);
    color: var(--accent-secondary);
    transform: translateY(-2px);
}

.vip-feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-secondary);
    opacity: 0.8;
}

.vip-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-champagne));
    color: var(--bg-primary);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 
        0 10px 30px rgba(212, 175, 122, 0.3),
        0 0 0 0 rgba(212, 175, 122, 0.5);
    margin-bottom: var(--spacing-md);
}

.vip-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.vip-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.vip-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(212, 175, 122, 0.4),
        0 0 0 4px rgba(212, 175, 122, 0.2);
}

.vip-cta-button:active {
    transform: translateY(-1px);
}

.vip-cta-button span {
    position: relative;
    z-index: 1;
}

.vip-cta-button svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s var(--transition-smooth);
}

.vip-cta-button:hover svg {
    transform: translateX(4px);
}

.vip-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-style: italic;
    margin-top: var(--spacing-sm);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .apply-content {
        padding: var(--spacing-lg) var(--spacing-sm);
        border-radius: 16px;
    }
    
    .apply-heading {
        font-size: 2rem;
    }
    
    .vip-features {
        flex-direction: column;
        align-items: center;
    }
    
    .vip-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   FOOTER - SOPHISTICATED DESIGN
   ============================================ */

.footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 122, 0.2);
    background:
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%),
        radial-gradient(circle at 50% 0%, rgba(212, 175, 122, 0.05), transparent 70%);
    position: relative;
    margin-bottom: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-champagne), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(212, 175, 122, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-champagne);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.25rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-champagne), transparent);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-champagne);
    transform: translateX(3px);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link-inline {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-inline:hover {
    color: var(--accent-champagne);
}

.footer-info {
    text-align: right;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-champagne);
    flex-shrink: 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-logo-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 400;
    color: var(--accent-champagne);
    margin: 0;
    letter-spacing: 0.02em;
}

.footer-legal {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top: none;
    text-align: left;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    color: var(--accent-champagne);
    transform: translateX(3px);
}

.footer-social-link:hover svg {
    transform: scale(1.1);
}

.footer-payment {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-payment-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

.footer-pay-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-champagne);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
    padding: 0.5rem 0;
}

.footer-pay-link:hover {
    color: #D4B76D;
    transform: translateX(5px);
}

.footer-pay-link svg {
    flex-shrink: 0;
    color: var(--accent-champagne);
    transition: all 0.3s ease;
}

.footer-pay-link:hover svg {
    color: #D4B76D;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin: 0;
}

.footer-visitor-count {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin: 0;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-logo-img {
        height: 110px;
    }

    .footer-legal {
        text-align: center;
    }

    .footer-legal-links {
        align-items: center;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-social-links {
        align-items: center;
    }
}

/* ============================================
   INVESTORS SECTION
   ============================================ */

#investors {
    background:
        linear-gradient(135deg, rgba(14, 14, 14, 0.98) 0%, rgba(25, 25, 25, 0.95) 50%, rgba(18, 18, 18, 0.98) 100%),
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 122, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(224, 184, 114, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(240, 212, 200, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

#investors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 122, 0.3) 50%,
        transparent 100%);
}

#investors::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 122, 0.3) 50%,
        transparent 100%);
}

#investors .section-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}

#investors .section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent-champagne) 50%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(212, 175, 122, 0.5);
}

#investors .container {
    text-align: center;
}

.investors-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: var(--spacing-xl);
    padding: 3rem 0;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.investors-scroll-wrapper::before,
.investors-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.investors-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    border-radius: 20px 0 0 20px;
}

.investors-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    border-radius: 0 20px 20px 0;
}

.investors-scroll {
    display: flex;
    gap: 4rem;
    animation: scrollLeft 30s linear infinite;
    width: fit-content;
}

.investors-scroll:hover {
    animation-play-state: paused;
}

.investor-logo {
    flex-shrink: 0;
    width: 350px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(212, 175, 122, 0.05);
    border-radius: 16px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.investor-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(212, 175, 122, 0.1) 0%,
        transparent 50%,
        rgba(224, 184, 114, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.investor-logo:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 60px rgba(212, 175, 122, 0.15);
}

.investor-logo:hover::before {
    opacity: 1;
}

.investor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.95) contrast(1.05);
    transition: all 0.4s var(--transition-smooth);
}

.investor-logo:hover img {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.02);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 3 - 4rem * 3));
    }
}

/* Responsive adjustments for investors scroll */
@media (max-width: 768px) {
    #investors {
        padding: var(--spacing-lg) 0;
    }
    
    #investors .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    #investors .section-heading {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .investors-scroll-wrapper {
        margin-top: var(--spacing-md);
        padding: 2rem 0;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .investors-scroll-wrapper::before,
    .investors-scroll-wrapper::after {
        width: 60px;
    }

    .investor-logo {
        width: 250px;
        height: 150px;
        padding: 1.5rem;
    }

    .investors-scroll {
        gap: 2.5rem;
    }

    @keyframes scrollLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 3 - 2.5rem * 3));
        }
    }
    
    /* Fix tagline section on mobile */
    .journey-tagline {
        padding: var(--spacing-md) 1rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: var(--spacing-md);
        width: 100%;
        max-width: 100%;
    }
    
    .tagline-background-morph {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .tagline-wrapper {
        padding: 1rem 1.5rem;
        margin: 0 auto;
        max-width: 100%;
        position: relative;
        z-index: 1;
    }
    
    .tagline-big {
        font-size: clamp(1.2rem, 4.5vw, 1.5rem);
        line-height: 1.4;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    #investors {
        padding: var(--spacing-md) 0;
    }
    
    #investors .section-heading {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .investors-scroll-wrapper {
        padding: 1.5rem 0;
        margin-top: var(--spacing-md);
    }
    
    .investors-scroll-wrapper::before,
    .investors-scroll-wrapper::after {
        width: 40px;
    }

    .investor-logo {
        width: 200px;
        height: 120px;
        padding: 1rem;
    }

    .investors-scroll {
        gap: 1.5rem;
    }

    @keyframes scrollLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 3 - 1.5rem * 3));
        }
    }
    
    /* Extra small mobile tagline fixes */
    .journey-tagline {
        padding: var(--spacing-sm) 0.75rem;
    }
    
    .tagline-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .tagline-big {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
}

/* ============================================
   IMPACT SECTION
   ============================================ */

.impact-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.impact-text {
    padding-right: var(--spacing-md);
}

.impact-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.impact-image img,
.impact-image video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.05) brightness(1.05);
    transition: transform 0.8s var(--transition-smooth), filter 0.8s var(--transition-smooth);
}

.impact-image:hover img,
.impact-image:hover video {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.05) brightness(1.1);
}

@media (max-width: 968px) {
    .impact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .impact-text {
        padding-right: 0;
        text-align: center;
    }

    .impact-image img,
    .impact-image video {
        height: 400px;
    }
}

/* ============================================
   MEMBERSHIP JOURNEY SECTION - PREMIUM REDESIGN
   ============================================ */

.membership-journey-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xxl) 0;
}

/* Premium Background Glow */
.roadmap-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(224, 184, 114, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Journey Header */
.journey-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(224, 184, 114, 0.15), rgba(240, 212, 200, 0.1));
    border: 1px solid rgba(224, 184, 114, 0.3);
    border-radius: 50px;
    color: var(--accent-champagne);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
}

.journey-badge svg {
    stroke: var(--accent-champagne);
}

.journey-header .highlight-text {
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Roadmap Container */
.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) 0;
    position: relative;
}

/* Progress Line */
.roadmap-progress-line {
    position: absolute;
    left: 50px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(to bottom,
        rgba(224, 184, 114, 0.2) 0%,
        rgba(224, 184, 114, 0.5) 50%,
        rgba(224, 184, 114, 0.2) 100%
    );
    z-index: 1;
}

/* Roadmap Step */
.roadmap-step {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--spacing-md);
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: step-fade-in 0.8s ease forwards;
}

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

@keyframes step-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Number Wrapper */
.step-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100px;
    height: 100px;
    justify-content: center;
}

.step-number {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 184, 114, 0.15), rgba(240, 212, 200, 0.1));
    border: 2px solid var(--accent-champagne);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-champagne);
    z-index: 2;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(224, 184, 114, 0.3);
    overflow: visible;
    margin: 0 auto;
}

.step-number span {
    position: relative;
    z-index: 3;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(224, 184, 114, 0.4);
}

/* Step Pulse Animation */
.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-1px);
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-champagne);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 20px rgba(224, 184, 114, 0.5);
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) translateY(-1px) scale(1);
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(224, 184, 114, 0.5);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-1px) scale(1.2);
        opacity: 0.4;
        box-shadow: 0 0 30px rgba(224, 184, 114, 0.4);
    }
    100% {
        transform: translate(-50%, -50%) translateY(-1px) scale(1.4);
        opacity: 0;
        box-shadow: 0 0 40px rgba(224, 184, 114, 0);
    }
}

/* Connector Line */
.step-connector-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent-champagne), transparent);
    margin: var(--spacing-xs) auto 0;
    opacity: 0.5;
}

.roadmap-step:last-child .step-connector-line {
    display: none;
}

/* Final Step Number (Checkmark) */
.step-number-final {
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    color: var(--bg-primary);
    border: none;
    animation: final-glow 2s ease-in-out infinite;
}

@keyframes final-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(224, 184, 114, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(224, 184, 114, 0.8);
    }
}

/* Step Content Card */
.step-content-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(224, 184, 114, 0.2);
    border-radius: 12px;
    padding: var(--spacing-md) var(--spacing-lg);
    transition: all 0.4s var(--transition-smooth);
}

.step-content-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--accent-champagne), transparent, var(--accent-rose-gold));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
    z-index: -1;
}

.step-content-card:hover {
    transform: translateX(8px);
    border-color: rgba(224, 184, 114, 0.4);
    box-shadow: 0 8px 32px rgba(224, 184, 114, 0.15);
}

.step-content-card:hover::before {
    opacity: 1;
}

/* Step Icon Circle */
.step-icon-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 184, 114, 0.2), rgba(240, 212, 200, 0.15));
    border: 1px solid rgba(224, 184, 114, 0.3);
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.step-content-card:hover .step-icon-circle {
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    transform: rotate(10deg) scale(1.1);
}

.step-icon-circle svg {
    stroke: var(--accent-champagne);
    transition: stroke 0.3s ease;
}

.step-content-card:hover .step-icon-circle svg {
    stroke: var(--bg-primary);
}

/* Step Title */
.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.02em;
}

/* Step Description */
.step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Final Step Card */
.step-card-final {
    background: linear-gradient(135deg, rgba(224, 184, 114, 0.15), rgba(240, 212, 200, 0.1));
    border-color: var(--accent-champagne);
    position: relative;
    overflow: hidden;
}

.step-card-final::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 184, 114, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Celebration Sparkles */
.step-celebration {
    position: absolute;
    top: 20px;
    right: 20px;
}

.celebration-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-champagne);
    border-radius: 50%;
    animation: sparkle-float 2s ease-in-out infinite;
}

.celebration-sparkle:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.celebration-sparkle:nth-child(2) {
    top: 15px;
    left: 20px;
    animation-delay: 0.3s;
}

.celebration-sparkle:nth-child(3) {
    top: -10px;
    left: 40px;
    animation-delay: 0.6s;
}

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

/* Journey Footer */
.journey-footer {
    max-width: 900px;
    margin: var(--spacing-xxl) auto 0;
    position: relative;
    z-index: 2;
}

.journey-notice {
    position: relative;
    text-align: center;
    padding: 0;
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(224, 184, 114, 0.2);
    border-radius: 16px;
    overflow: hidden;
}

.journey-notice-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 400px;
}

.journey-notice-text {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.journey-notice-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.journey-notice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
}

.notice-icon svg {
    stroke: var(--bg-primary);
    stroke-width: 2;
}

.notice-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
}

.notice-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
}

.notice-tagline {
    font-size: 1.2rem;
    color: var(--accent-champagne);
    font-weight: 500;
    margin-top: var(--spacing-md);
}

/* Journey Actions */
.journey-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.action-step {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(224, 184, 114, 0.15);
    border-radius: 12px;
    transition: all 0.4s var(--transition-smooth);
}

.action-step:hover {
    border-color: rgba(224, 184, 114, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.action-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.action-button {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(224, 184, 114, 0.15), rgba(240, 212, 200, 0.15));
    border: 1px solid var(--accent-champagne);
    color: var(--accent-champagne);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.action-button:hover {
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(224, 184, 114, 0.4);
}

.action-button-primary {
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    color: var(--bg-primary);
    border: none;
}

.action-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(224, 184, 114, 0.5);
}

/* Membership CTA Section - Redesigned */
.membership-cta-section {
    margin: var(--spacing-lg) calc(-50vw + 50%);
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 122, 0.1);
    border-bottom: 1px solid rgba(212, 175, 122, 0.1);
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.membership-cta-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    width: 140%;
    height: 140%;
    background-image: url('assets/powercouple.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(40px) brightness(0.15) contrast(1.3) saturate(1.4) grayscale(0.3);
    -webkit-filter: blur(40px) brightness(0.15) contrast(1.3) saturate(1.4) grayscale(0.3);
    transform: scale(1.1);
    z-index: 0;
    animation: subtleZoom 25s ease-in-out infinite alternate;
    opacity: 0.9;
}

@keyframes subtleZoom {
    0% {
        transform: scale(1.1) translateY(0);
    }
    100% {
        transform: scale(1.15) translateY(-2%);
    }
}

.membership-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.95) 100%),
        radial-gradient(ellipse at 50% 30%, rgba(212, 175, 122, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(240, 212, 200, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 122, 0.06) 0%, transparent 40%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
    box-shadow: 
        inset 0 0 200px rgba(0, 0, 0, 0.8),
        inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.membership-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(212, 175, 122, 0.25);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(212, 175, 122, 0.1);
    overflow: hidden;
    z-index: 2;
}

.membership-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 122, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(240, 212, 200, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.membership-cta-content > * {
    position: relative;
    z-index: 3;
}

.membership-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.2), rgba(240, 212, 200, 0.15));
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-champagne);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-md);
}

.membership-cta-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-champagne);
}

.membership-cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.membership-cta-main {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.membership-cta-accent {
    display: block;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.membership-cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: var(--spacing-md) auto;
    max-width: 300px;
}

.membership-cta-divider .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 122, 0.4), transparent);
}

.membership-cta-divider .divider-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-champagne);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(212, 175, 122, 0.6);
}

.membership-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: var(--spacing-xs);
    font-style: italic;
}

.membership-cta-tagline {
    font-size: 1.5rem;
    color: var(--accent-champagne);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
}

.membership-cta-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: var(--spacing-md) auto;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 122, 0.2);
}

.membership-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.membership-cta-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.membership-cta-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.membership-cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--spacing-md) var(--spacing-xl);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.membership-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.membership-cta-button:hover::before {
    left: 100%;
}

.membership-cta-button-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(212, 175, 122, 0.3);
    color: var(--text-primary);
}

.membership-cta-button-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border-color: rgba(212, 175, 122, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.membership-cta-button-primary {
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    border: none;
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(212, 175, 122, 0.3);
}

.membership-cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 122, 0.5);
}

.membership-cta-button-primary .button-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.membership-cta-button-primary:hover .button-icon {
    transform: translateX(4px);
}

.button-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    opacity: 0.8;
}

.membership-cta-button-secondary .button-label {
    color: var(--text-secondary);
}

.membership-cta-button-primary .button-label {
    color: rgba(26, 26, 26, 0.7);
}

.button-text {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.button-icon {
    width: 18px;
    height: 18px;
}

/* Journey Tagline */
.journey-tagline {
    text-align: center;
    padding: var(--spacing-md) var(--spacing-xl);
    margin-top: var(--spacing-md);
    position: relative;
    overflow: visible;
    margin-left: calc(-1 * var(--spacing-xl));
    margin-right: calc(-1 * var(--spacing-xl));
}

.tagline-background-morph {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    filter: blur(40px) brightness(0.8);
    animation: morphBackground 20s ease-in-out infinite;
}

.tagline-background-morph::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at 30% 40%,
        rgba(212, 175, 122, 0.3) 0%,
        transparent 50%
    ),
    radial-gradient(
        ellipse at 70% 60%,
        rgba(224, 184, 114, 0.25) 0%,
        transparent 50%
    ),
    radial-gradient(
        ellipse at 50% 50%,
        rgba(240, 212, 200, 0.2) 0%,
        transparent 60%
    );
    animation: morphBlob 15s ease-in-out infinite;
    mix-blend-mode: overlay;
}

.tagline-background-morph::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(
        circle at 60% 30%,
        rgba(212, 175, 122, 0.25) 0%,
        transparent 40%
    );
    animation: morphBlob2 18s ease-in-out infinite;
    mix-blend-mode: soft-light;
}

@keyframes morphBackground {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: blur(40px) brightness(0.8);
    }
    33% {
        transform: scale(1.1) rotate(2deg);
        filter: blur(45px) brightness(0.85);
    }
    66% {
        transform: scale(0.95) rotate(-2deg);
        filter: blur(35px) brightness(0.75);
    }
}

@keyframes morphBlob {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1) rotate(120deg);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9) rotate(240deg);
        border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
    }
}

@keyframes morphBlob2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }
    50% {
        transform: translate(-40px, 40px) scale(1.2) rotate(180deg);
        border-radius: 60% 40% 30% 70% / 70% 30% 60% 40%;
    }
}

.tagline-wrapper {
    position: relative;
    padding: 1.5rem 3rem;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    backdrop-filter: blur(35px) saturate(200%);
    -webkit-backdrop-filter: blur(35px) saturate(200%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-clip: padding-box;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(212, 175, 122, 0.3),
        0 0 60px rgba(212, 175, 122, 0.15);
    overflow: hidden;
    animation: taglinePulse 3s ease-in-out infinite;
    z-index: 1;
}

.tagline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 122, 0.1) 0%,
        rgba(224, 184, 114, 0.05) 50%,
        rgba(212, 175, 122, 0.1) 100%
    );
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

.tagline-border-glow {
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 122, 0.6),
        rgba(224, 184, 114, 0.4),
        rgba(240, 212, 200, 0.5),
        rgba(212, 175, 122, 0.6)
    );
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderRotate 4s linear infinite;
    z-index: -1;
}

.tagline-sparkle {
    position: absolute;
    font-size: 1.5rem;
    color: var(--accent-champagne);
    filter: drop-shadow(0 0 10px rgba(212, 175, 122, 0.8));
    animation: sparkleFloat 3s ease-in-out infinite;
    pointer-events: none;
}

.sparkle-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 15%;
    right: 8%;
    animation-delay: 0.7s;
    font-size: 1.2rem;
}

.sparkle-3 {
    bottom: 15%;
    left: 8%;
    animation-delay: 1.4s;
    font-size: 1rem;
}

.sparkle-4 {
    bottom: 10%;
    right: 5%;
    animation-delay: 2.1s;
    font-size: 1.3rem;
}

.tagline-big {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        135deg,
        #FFFFFF 0%,
        var(--accent-champagne) 50%,
        #FFFFFF 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 40px rgba(212, 175, 122, 0.3);
}

.tagline-accent-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--accent-champagne) 50%,
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(212, 175, 122, 0.6);
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes taglinePulse {
    0%, 100% {
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 0 1px rgba(212, 175, 122, 0.3),
            0 0 80px rgba(212, 175, 122, 0.2);
    }
    50% {
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            0 0 0 1px rgba(212, 175, 122, 0.5),
            0 0 100px rgba(212, 175, 122, 0.3);
    }
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes lineExpand {
    0%, 100% {
        width: 60%;
        opacity: 0.7;
    }
    50% {
        width: 80%;
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .roadmap-container {
        padding: var(--spacing-md) 0;
    }

    .roadmap-step {
        grid-template-columns: 100px 1fr;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-xl);
    }

    .roadmap-progress-line {
        left: 50px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .step-pulse {
        width: 60px;
        height: 60px;
        z-index: 1;
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(224, 184, 114, 0.5);
    }
    
    .step-number {
        z-index: 2;
        box-shadow: 0 4px 20px rgba(224, 184, 114, 0.3);
    }
    
    .step-number span {
        z-index: 3;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .journey-actions {
        grid-template-columns: 1fr;
    }

    .notice-title {
        font-size: 1.5rem;
    }

    .tagline-wrapper {
        padding: 1.25rem 2rem;
    }

    .tagline-big {
        font-size: 1.5rem;
    }

    .tagline-sparkle {
        font-size: 1.2rem;
    }

    .sparkle-2, .sparkle-3 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .membership-journey-section {
        padding: var(--spacing-xl) 0;
    }

    .journey-header {
        margin-bottom: var(--spacing-lg);
    }
    
    .journey-tagline {
        padding: var(--spacing-md) 1rem;
        margin-left: 0;
        margin-right: 0;
        margin-top: var(--spacing-md);
    }
    
    .tagline-background-morph {
        width: 100%;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .tagline-wrapper {
        padding: 1rem 1.5rem;
        margin: 0 auto;
        max-width: 100%;
        position: relative;
        z-index: 1;
    }
    
    .tagline-big {
        font-size: clamp(1.2rem, 4.5vw, 1.5rem);
        line-height: 1.4;
        word-wrap: break-word;
    }

    .journey-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }

    .roadmap-container {
        padding: var(--spacing-sm) 0;
    }

    .roadmap-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }

    .roadmap-progress-line {
        display: none;
    }

    .step-number-wrapper {
        margin: 0 auto var(--spacing-md);
        width: 120px;
        height: 120px;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .step-number {
        position: relative;
        z-index: 2;
    }

    .step-connector-line {
        display: none;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        z-index: 2;
        box-shadow: 0 4px 20px rgba(224, 184, 114, 0.3);
    }

    .step-pulse {
        width: 70px;
        height: 70px;
        z-index: 0;
        opacity: 0.6;
        box-shadow: 0 0 15px rgba(224, 184, 114, 0.4);
        animation: pulse-ring-mobile 2s ease-out infinite;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) translateY(-1px) !important;
        pointer-events: none;
        display: block !important;
    }
    
@keyframes pulse-ring-mobile {
    0% {
        transform: translate(-50%, -50%) translateY(-1px) scale(1);
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(224, 184, 114, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-1px) scale(1.1);
        opacity: 0.3;
        box-shadow: 0 0 15px rgba(224, 184, 114, 0.2);
    }
    100% {
        transform: translate(-50%, -50%) translateY(-1px) scale(1.2);
        opacity: 0;
        box-shadow: 0 0 20px rgba(224, 184, 114, 0);
    }
}
    
    @media (max-width: 768px) {
        .step-pulse {
            animation: pulse-ring-mobile 2s ease-out infinite;
        }
    }

    .step-content-card {
        padding: var(--spacing-lg);
    }

    .step-icon-circle {
        margin: 0 auto var(--spacing-md);
        width: 48px;
        height: 48px;
    }

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

    .step-title {
        font-size: 1.3rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    .step-content-card:hover {
        transform: translateY(-4px);
    }

    .notice-icon {
        width: 56px;
        height: 56px;
    }

    .notice-icon svg {
        width: 28px;
        height: 28px;
    }

    .notice-title {
        font-size: 1.3rem;
    }

    .notice-subtitle {
        font-size: 1rem;
    }

    .notice-tagline {
        font-size: 1.1rem;
    }

    .action-step {
        padding: var(--spacing-md);
    }

    .journey-tagline {
        padding: var(--spacing-md);
    }

    .tagline-wrapper {
        padding: 1rem 1.5rem;
    }

    .tagline-big {
        font-size: 1.3rem;
    }

    .tagline-sparkle {
        font-size: 1rem;
    }

    .sparkle-2, .sparkle-3 {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .membership-journey-section {
        padding: var(--spacing-lg) 0;
    }

    .journey-header .section-heading {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .journey-header .large-text {
        font-size: 0.95rem;
        text-align: center;
    }

    .journey-badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.85rem;
        gap: 0.3rem;
    }

    .journey-badge svg {
        width: 14px;
        height: 14px;
    }

    .roadmap-step {
        margin-bottom: var(--spacing-md);
    }

    .step-number-wrapper {
        margin-bottom: var(--spacing-sm);
        width: 120px;
        height: 120px;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .step-number {
        position: relative;
        z-index: 2;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        z-index: 2;
        box-shadow: 0 4px 20px rgba(224, 184, 114, 0.3);
    }
    
    .step-number span {
        z-index: 3;
    }

    .step-pulse {
        width: 60px;
        height: 60px;
        z-index: 0;
        opacity: 0.6;
        box-shadow: 0 0 15px rgba(224, 184, 114, 0.4);
        animation: pulse-ring-mobile 2s ease-out infinite;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) translateY(-1px) !important;
        pointer-events: none;
        display: block !important;
    }

    .step-content-card {
        padding: var(--spacing-md);
    }

    .step-icon-circle {
        width: 44px;
        height: 44px;
    }

    .step-icon-circle svg {
        width: 22px;
        height: 22px;
    }

    .step-title {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .step-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .celebration-sparkle {
        width: 6px;
        height: 6px;
    }

    .journey-footer {
        margin-top: var(--spacing-lg);
    }

    .journey-notice {
        padding: var(--spacing-md);
    }

    .notice-icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--spacing-sm);
    }

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

    .notice-title {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .notice-subtitle {
        font-size: 0.95rem;
    }

    .notice-tagline {
        font-size: 1rem;
    }

    .action-step {
        padding: var(--spacing-sm);
    }

    .action-label {
        font-size: 0.8rem;
        margin-bottom: var(--spacing-sm);
    }

    .action-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .journey-tagline {
        padding: var(--spacing-sm);
    }

    .tagline-wrapper {
        padding: 1rem 1.2rem;
    }

    .tagline-big {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .tagline-sparkle {
        font-size: 0.9rem;
    }

    .sparkle-1, .sparkle-4 {
        font-size: 0.9rem;
    }

    .sparkle-2, .sparkle-3 {
        font-size: 0.7rem;
    }

    /* Team Section Responsive */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-image-wrapper {
        height: 280px;
    }

    .team-info {
        padding: 1.5rem;
    }

    .team-name {
        font-size: 1.25rem;
    }

    .team-title {
        font-size: 0.9rem;
    }

    .role-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: var(--spacing-lg) 0;
    }

    .team-intro {
        margin-bottom: var(--spacing-lg);
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-image-wrapper {
        height: 300px;
    }

    .team-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1.2rem;
    }
}

/* ============================================
   FRANCHISE & BELONG SECTIONS
   ============================================ */

.franchise-section,
.belong-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.franchise-hero,
.belong-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.franchise-hero img,
.belong-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.7) grayscale(30%);
}

.franchise-overlay,
.belong-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(37, 37, 37, 0.75) 100%
    );
}

.franchise-content,
.belong-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.franchise-content .large-text,
.franchise-content .body-text,
.belong-content .large-text,
.belong-content .body-text {
    text-align: center;
    text-justify: auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(212, 175, 122, 0.2);
    border-top-color: var(--accent-champagne);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
        --spacing-xl: 4rem;
        --spacing-xxl: 5rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .nav-request-invite {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
        margin-right: 0.75rem;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .rules-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-legal {
        text-align: center;
    }

    .footer-legal-links {
        align-items: center;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-social-links {
        align-items: center;
    }

    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta,
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

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


/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(232, 232, 232, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 122, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: rgba(212, 175, 122, 0.4);
    box-shadow: 0 8px 30px rgba(212, 175, 122, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.faq-question:hover {
    color: var(--accent-champagne);
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--accent-champagne);
    transition: transform 0.3s var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--accent-champagne);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth), padding 0.4s var(--transition-smooth);
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    padding-top: 0.5rem;
    text-align: justify;
    text-justify: inter-word;
}

.faq-category {
    margin-bottom: var(--spacing-xl);
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-champagne);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(212, 175, 122, 0.2);
    letter-spacing: 0.02em;
}

.faq-read-more {
    text-align: center;
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.faq-read-more-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.15), rgba(224, 184, 114, 0.1));
    border: 1px solid rgba(212, 175, 122, 0.4);
    border-radius: 50px;
    color: var(--accent-champagne);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-read-more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.faq-read-more-button:hover {
    color: var(--bg-primary);
    border-color: var(--accent-champagne);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 122, 0.3);
}

.faq-read-more-button:hover::before {
    left: 0;
}

.faq-read-more-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-read-more-button:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .faq-section {
        padding: var(--spacing-lg) 0;
    }

    .faq-header {
        margin-bottom: var(--spacing-lg);
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-category {
        margin-bottom: var(--spacing-lg);
    }

    .faq-category-title {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-md);
    }

    .faq-read-more {
        margin-top: var(--spacing-lg);
    }

    .faq-read-more-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile Menu Toggle Button */
.nav-request-invite {
    display: inline-flex;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--accent-champagne);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Ensure scrolling works on mobile - override any conflicting styles */
@media (max-width: 768px) {
    html {
        overflow-y: auto !important;
        overflow-x: hidden !important;
        height: auto !important;
        position: relative !important;
    }
    
    body {
        overflow-y: auto !important;
        overflow-x: hidden !important;
        height: auto !important;
        position: relative !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Only prevent scrolling when menu is actually open */
    body.menu-open {
        overflow: hidden !important;
    }
    
    /* Ensure main content can scroll */
    main {
        overflow-y: visible !important;
        overflow-x: hidden !important;
        position: relative;
        min-height: 100vh;
    }
    
    /* Ensure sections don't block scrolling */
    section {
        overflow: visible !important;
        position: relative;
    }
}

/* Mobile Menu Backdrop */
/* Luxury Backdrop - Deep Scrim with Blur */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* Darker, Richer Overlay */
    background: rgba(0, 0, 0, 0.75);

    /* Heavier Blur for Depth */
    backdrop-filter: blur(12px) saturate(0.8);
    -webkit-backdrop-filter: blur(12px) saturate(0.8);

    opacity: 0;
    visibility: hidden;

    /* Slower Fade for Dramatic Effect */
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    z-index: 9998;
    pointer-events: none;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* ============================================
   LUXURY SIDEBAR NAVIGATION
   Emotional Design: Private Lounge at Night
   ============================================ */

.nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100%;
    width: 85%;
    max-width: 460px;
    height: 100vh !important;

    /* Deep, Rich Background - Not pure black */
    background: #0A0A0A !important;

    /* Luxury Lounge Pattern - Art Deco Inspired */
    background-image:
        /* Vertical gold lines - like wallpaper in a private club */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(201, 169, 97, 0.02) 60px,
            rgba(201, 169, 97, 0.02) 61px,
            transparent 61px,
            transparent 120px
        ),
        /* Diagonal subtle texture */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(201, 169, 97, 0.008) 100px,
            rgba(201, 169, 97, 0.008) 101px
        ),
        /* Ambient gold glows */
        radial-gradient(circle at 30% 15%, rgba(201, 169, 97, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 70% 85%, rgba(201, 169, 97, 0.03) 0%, transparent 45%),
        /* Film grain texture */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E") !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 0;
    padding-top: 3rem;

    /* Slower, Heavier Slide Transition */
    transition: right 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Dramatic Shadow - Like a Velvet Curtain */
    box-shadow:
        -30px 0 80px rgba(0, 0, 0, 0.9),
        -10px 0 40px rgba(0, 0, 0, 0.7),
        inset 1px 0 0 rgba(201, 169, 97, 0.08);

    z-index: 10005 !important;

    /* Refined Gold Edge Glow */
    border-left: 1px solid rgba(201, 169, 97, 0.12);

    overflow-y: auto;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    will-change: transform;
    isolation: isolate !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
    pointer-events: all !important;
}

/* Subtle Ambient Glow on Left Edge */
.nav-menu::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(201, 169, 97, 0.15) 20%,
        rgba(201, 169, 97, 0.2) 50%,
        rgba(201, 169, 97, 0.15) 80%,
        transparent 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 1.2s ease-out 0.3s;
}

/* Glow Activates After Sidebar Opens */
.nav-menu.active::before {
    opacity: 1;
}

.nav-menu.active {
    right: 0 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
}

/* ============================================
   SIDEBAR HEADER - THE GREETING ZONE
   ============================================ */

.nav-header {
    padding: 0 2.5rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.nav-menu.active .nav-header {
    opacity: 1;
    transform: translateY(0);
}

/* Monogram - Elegant Identity */
.nav-monogram {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(201, 169, 97, 0.9);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

/* Subtle Divider Below Monogram */
.nav-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 169, 97, 0.3),
        transparent
    );
    margin: 0 auto;
}

/* Refined Close Button - Minimal & Elegant */
.mobile-menu-close {
    position: absolute !important;
    top: 2rem !important;
    right: 2rem !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: rgba(232, 232, 232, 0.6) !important;
    background: transparent !important;
    border: 1px solid rgba(232, 232, 232, 0.12) !important;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10007 !important;

    /* Slow, Confident Transitions */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    padding: 0;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    mix-blend-mode: normal !important;
    opacity: 0.7 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.mobile-menu-close:hover {
    background: rgba(201, 169, 97, 0.08) !important;
    border-color: rgba(201, 169, 97, 0.3) !important;
    color: rgba(201, 169, 97, 0.9) !important;

    /* Slow Rotation - Luxurious Movement */
    transform: rotate(90deg) scale(1.05);

    /* Soft Glow */
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.15);
    opacity: 1 !important;
}

.mobile-menu-close svg {
    width: 16px !important;
    height: 16px !important;
    stroke: currentColor !important;
    stroke-width: 1.2 !important;
    display: block !important;
    opacity: 1 !important;
    transition: all 0.6s ease-out;
}

/* Navigation Links - Whispered Hierarchy */
.nav-link {
    /* Typography - Serif for Elegance */
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: rgba(232, 232, 232, 0.75);

    /* Minimal Spacing - Very tight padding */
    padding: 0.35rem 2.5rem;
    margin: 0;
    width: 100%;

    text-align: center;
    /* Divider line below each menu item - more visible */
    border-bottom: 1px solid rgba(201, 169, 97, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;

    /* Slow, Luxurious Transitions */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-decoration: none;
    will-change: transform, opacity;
    transform: translateZ(0) translateX(0);
    -webkit-transform: translateZ(0) translateX(0);

    position: relative;
    z-index: 1;
    mix-blend-mode: normal !important;

    /* Subtle Letter Spacing */
    letter-spacing: 0.02em;
    line-height: 1.3;

    opacity: 0;
    cursor: pointer !important;

    /* No Rounded Corners - Clean Lines */
    border-radius: 0;
    }

/* Remove border from last menu item */
.nav-link:last-of-type {
    border-bottom: none;
}

/* Sidebar Menu Button - Request Invitation */
.nav-menu-button {
    display: none; /* Hidden by default (desktop) */
    width: calc(100% - 5rem);
    margin: 2rem auto 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.3);
}

.nav-menu-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-menu-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 122, 0.5);
}

.nav-menu-button:hover::before {
    left: 100%;
}

/* Staggered Reveal - Menu Items Wake Up Sequentially */
.nav-menu.active .nav-link {
    opacity: 1 !important;
    animation: fadeInLuxury 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    cursor: pointer !important;
}

/* Longer Delays - More Dramatic Reveal */
.nav-menu.active .nav-link:nth-child(2) { animation-delay: 0.1s; }
.nav-menu.active .nav-link:nth-child(3) { animation-delay: 0.18s; }
.nav-menu.active .nav-link:nth-child(4) { animation-delay: 0.26s; }
.nav-menu.active .nav-link:nth-child(5) { animation-delay: 0.34s; }
.nav-menu.active .nav-link:nth-child(6) { animation-delay: 0.42s; }
.nav-menu.active .nav-link:nth-child(7) { animation-delay: 0.5s; }
.nav-menu.active .nav-link:nth-child(8) { animation-delay: 0.58s; }
.nav-menu.active .nav-link:nth-child(9) { animation-delay: 0.66s; }
.nav-menu.active .nav-link:nth-child(10) { animation-delay: 0.74s; }
.nav-menu.active .nav-link:nth-child(11) { animation-delay: 0.82s; }
.nav-menu.active .nav-link:nth-child(12) { animation-delay: 0.9s; }

@keyframes fadeInLuxury {
    from {
        opacity: 0;
        transform: translateX(-20px) translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.nav-link:first-of-type {
    margin-top: 0;
}

/* Hover State - Gold Color with Shine */
.nav-link::before {
    display: none;
}

/* Hover State - Gold text with shine effect */
.nav-link:hover {
    background: transparent;
    transform: none;
    color: var(--accent-champagne);
    opacity: 1;
    box-shadow: none;
    /* Shine effect - subtle glow */
    text-shadow: 
        0 0 10px rgba(201, 169, 97, 0.5),
        0 0 20px rgba(201, 169, 97, 0.3),
        0 0 30px rgba(201, 169, 97, 0.2);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Underline Accent - Disabled */
.nav-link::after {
    display: none;
}

/* Active State - Quiet Acknowledgment "You Are Here" */
.nav-link:active,
.nav-link.active {
    color: rgba(232, 232, 232, 1);
    font-weight: 400;
}

/* Active Indicator - Hairline Gold Accent */
.nav-link:active::after,
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 2.5rem;
    width: 2rem;
    height: 1px;
    background: rgba(201, 169, 97, 0.7);
    opacity: 1;
    transform: translateX(0);
}

/* Active Left Glow */
.nav-link.active::before {
    height: 60%;
    opacity: 0.6;
}


@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        gap: 1rem;
        align-items: center;
    }

    .nav-logo {
        z-index: 1002;
    }
    
    .nav-logo-img {
        height: 55px; /* Increased from 45px */
    }
    
    /* Hide Request Invitation button in header on mobile */
    .nav-request-invite {
        display: none !important;
    }
    
    /* Lower the hamburger menu icon on mobile */
    .nav-right {
        align-items: flex-end;
        padding-bottom: 6px; /* Lower the entire nav-right container */
    }
    
    /* Simple hamburger menu on mobile */
    .mobile-menu-toggle {
        width: 20px;
        height: 16px;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 2px;
        background: var(--accent-champagne);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-menu {
        width: 85%;
        max-width: 350px;
    }

    .nav-link {
        padding: 0.35rem 1.5rem;
        margin: 0;
        line-height: 1.4;
        border-bottom: 1px solid rgba(201, 169, 97, 0.25);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link:last-of-type {
        border-bottom: none;
    }
    
    /* Sidebar Menu Button Styling - Show on mobile only */
    .nav-menu-button {
        display: block; /* Show on mobile */
        width: calc(100% - 3rem);
        margin: 1.5rem auto 1rem;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-menu.active .nav-menu-button {
        opacity: 1;
        animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
    }

    /* Journey Notice Mobile */
    .journey-notice-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .journey-notice-text {
        padding: var(--spacing-lg);
        order: 2;
    }

    .journey-notice-image {
        min-height: 300px;
        order: 1;
    }

    .membership-cta-content {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .membership-cta-heading {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .membership-cta-tagline {
        font-size: 1.25rem;
    }

    .membership-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .membership-cta-button {
        min-width: auto;
        width: 100%;
    }

    .membership-cta-image {
        max-width: 100%;
    }


    /* Container Padding */
    .container {
        padding: 0 1rem;
    }

    /* Intro Section */
    .intro-content {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-image-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }

    .intro-features {
        flex-direction: column;
        gap: 1rem;
    }

    /* Who We Are Section */
    .who-we-are-section {
        padding: var(--spacing-lg) 0;
    }


    .who-we-are-tagline {
        margin-left: calc(-1 * var(--spacing-md));
        margin-right: calc(-1 * var(--spacing-md));
        padding: var(--spacing-lg);
    }

    .who-we-are-wrapper {
        padding: 2rem 2.5rem;
    }

    .who-we-are-big {
        font-size: 1.2rem;
        font-weight: 300;
    }

    .who-we-are-sparkle {
        font-size: 1.2rem;
    }

    .who-we-are-sparkle.sparkle-2,
    .who-we-are-sparkle.sparkle-3 {
        font-size: 1rem;
    }

    .who-we-are-tagline {
        margin-left: calc(-1 * var(--spacing-sm));
        margin-right: calc(-1 * var(--spacing-sm));
        padding: var(--spacing-md);
    }

    .who-we-are-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .who-we-are-big {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.5;
    }

    .who-we-are-sparkle {
        font-size: 1rem;
    }

    .who-we-are-sparkle.sparkle-2,
    .who-we-are-sparkle.sparkle-3 {
        font-size: 0.8rem;
    }

    .who-we-are-intro .section-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-main {
        padding: 2rem 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* Rules Section */
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .rule-item {
        padding: 2rem 1.5rem;
    }

    .rule-icon svg {
        width: 28px;
        height: 28px;
    }

    .rule-title {
        font-size: 1.25rem;
    }

    /* Benefits Section */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        min-height: 250px;
    }

    .alliances-visual {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .categories-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    /* Membership CTA Section */
    .membership-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Impact Section */
    .impact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .impact-image {
        order: -1;
    }

    /* Journey Timeline */
    .journey-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .journey-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        position: static;
        margin-bottom: 1rem;
    }

    .journey-actions {
        flex-direction: column;
        gap: 2rem;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .team-member {
        padding: 1rem;
    }

    .team-name {
        font-size: 1rem;
    }

    .team-role {
        font-size: 0.85rem;
    }

    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-tall,
    .gallery-wide {
        height: 250px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Typography Mobile Adjustments */
    .section-heading {
        font-size: clamp(2rem, 8vw, 3rem);
        text-align: center;
    }

    .section-subheading {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        text-align: center;
    }

    .large-text {
        font-size: 1.125rem;
        text-align: center;
    }

    /* Disable hover effects on mobile */
    .benefit-card:hover,
    .team-member:hover {
        transform: none;
    }

    /* Spacing Adjustments */
    .section {
        padding: 3rem 0;
    }

    /* VIP Badges and Accents */
    .vip-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
    }

    .vip-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Apply Section */
    .apply-content {
        padding: 2rem 1rem;
    }

    .apply-heading {
        font-size: 2rem;
    }

    .vip-cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    /* Franchise Section */
    .franchise-content {
        padding: 2rem 1.5rem;
    }

    /* Belong Section */
    .belong-content {
        padding: 2rem 1rem;
    }

    /* Hide decorative elements on mobile for better performance */
    .who-decorative-circle,
    .who-decorative-line,
    .who-particle,
    .gold-line,
    .geo-pattern,
    .gold-particle,
    .animated-shape,
    .animated-gradient {
        display: none;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 20px !important;
        font-size: 0.65rem !important;
    }

    .scroll-indicator svg {
        width: 20px !important;
        height: 20px !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .rules-carousel-wrapper {
        padding: 0 2.5rem;
    }
    
    .rules-carousel-nav {
        width: 36px;
        height: 36px;
    }
    
    .rules-carousel-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .rules-carousel-prev {
        left: -0.25rem;
    }
    
    .rules-carousel-next {
        right: -0.25rem;
    }
    
    .rules-carousel-indicator {
        width: 12px !important;
        height: 12px !important;
    }

    .rules-carousel-indicator.active {
        width: 32px !important;
        height: 12px !important;
    }
    
    .nav-menu {
        width: 100%;
        max-width: 100%;
    }

    .hero-headline {
        font-size: clamp(3rem, 12vw, 4.5rem);
    }

    .section-heading {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .container {
        padding: 0 1rem;
    }

    .benefit-card,
    .rule-item {
        padding: 1.5rem 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .categories-list {
        grid-template-columns: 1fr;
    }

    .hero-cta,
    .cta-button,
    .vip-cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }

    /* Even smaller text for very small devices */
    .body-text {
        font-size: 0.95rem;
    }

    .large-text {
        font-size: 1rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 100px 1rem 2rem;
    }

    .hero-headline {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }

    .scroll-indicator {
        display: none !important;
    }
}

/* Large Desktop Devices */
@media (min-width: 1400px) {
    .nav-menu {
        gap: 2rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

/* Medium Desktop Devices */
@media (min-width: 1025px) and (max-width: 1399px) {
    .nav-menu {
        gap: 1.25rem;
    }

    .nav-link {
        font-size: 0.78rem;
    }
}

/* Tablet Devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .container {
        padding: 0 2rem;
    }

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

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

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

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

    .hero-headline {
        font-size: clamp(3rem, 8vw, 5rem);
    }
}

/* ============================================
   READ MORE MODAL
   ============================================ */

.read-more-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.read-more-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(14, 14, 14, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.read-more-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 122, 0.1);
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 50%;
    color: var(--accent-champagne);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
}

.modal-close:hover {
    background: rgba(212, 175, 122, 0.2);
    border-color: var(--accent-champagne);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-champagne);
}

.modal-body {
    padding: 3rem 2.5rem 2.5rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
    text-justify: inter-word;
}

.modal-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-word;
}

.modal-text p:last-child {
    margin-bottom: 0;
}

.modal-text .text-highlight {
    color: var(--accent-champagne);
    font-weight: 500;
}

.modal-text .brand-highlight {
    color: var(--accent-champagne);
    font-weight: 600;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
        border-radius: 16px;
    }

    .modal-body {
        padding: 2.5rem 1.5rem 2rem;
    }

    .modal-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-md);
    }

    .modal-text {
        font-size: 1rem;
    }

    .modal-text p {
        font-size: 1rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   TERMS & CONDITIONS PAGE
   ============================================ */

.terms-section {
    padding: calc(var(--spacing-xxl) + 4rem) 0 var(--spacing-xxl);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    min-height: 100vh;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(232, 232, 232, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 122, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.terms-header {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.terms-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.terms-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
    text-align: justify;
    text-justify: inter-word;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.terms-item {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.terms-item:nth-child(1) { animation-delay: 0.1s; }
.terms-item:nth-child(2) { animation-delay: 0.15s; }
.terms-item:nth-child(3) { animation-delay: 0.2s; }
.terms-item:nth-child(4) { animation-delay: 0.25s; }
.terms-item:nth-child(5) { animation-delay: 0.3s; }
.terms-item:nth-child(6) { animation-delay: 0.35s; }
.terms-item:nth-child(7) { animation-delay: 0.4s; }
.terms-item:nth-child(8) { animation-delay: 0.45s; }
.terms-item:nth-child(9) { animation-delay: 0.5s; }
.terms-item:nth-child(10) { animation-delay: 0.55s; }
.terms-item:nth-child(11) { animation-delay: 0.6s; }
.terms-item:nth-child(12) { animation-delay: 0.65s; }
.terms-item:nth-child(13) { animation-delay: 0.7s; }
.terms-item:nth-child(14) { animation-delay: 0.75s; }
.terms-item:nth-child(15) { animation-delay: 0.8s; }
.terms-item:nth-child(16) { animation-delay: 0.85s; }
.terms-item:nth-child(17) { animation-delay: 0.9s; }
.terms-item:nth-child(18) { animation-delay: 0.95s; }
.terms-item:nth-child(19) { animation-delay: 1s; }
.terms-item:nth-child(20) { animation-delay: 1.05s; }
.terms-item:nth-child(21) { animation-delay: 1.1s; }
.terms-item:nth-child(22) { animation-delay: 1.15s; }
.terms-item:nth-child(23) { animation-delay: 1.2s; }

.terms-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-item-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--accent-champagne);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.terms-item-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
    text-align: justify;
    text-justify: inter-word;
}

.terms-item-text:last-child {
    margin-bottom: 0;
}

.terms-link {
    color: var(--accent-champagne);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
}

.terms-link:hover {
    color: var(--accent-rose-gold);
    border-bottom-color: var(--accent-champagne);
}

.terms-contact-info {
    margin-top: var(--spacing-sm);
}

.terms-contact-info .terms-item-text {
    margin-bottom: 0.5rem;
}

.terms-contact-info .terms-item-text strong {
    color: var(--text-primary);
    font-weight: 400;
    margin-right: 0.5rem;
}

.terms-signature {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(212, 175, 122, 0.2);
    text-align: center;
}

.terms-signature-text {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    margin-bottom: var(--spacing-xs);
    font-style: italic;
    text-align: justify;
    text-justify: inter-word;
}

.terms-signature-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-champagne);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: var(--spacing-sm) 0;
}

.terms-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-champagne);
    font-size: 1.2rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .terms-section {
        padding: calc(var(--spacing-xl) + 4rem) 0 var(--spacing-xl);
    }

    .terms-header {
        margin-bottom: var(--spacing-lg);
    }

    .terms-title {
        margin-bottom: var(--spacing-sm);
    }

    .terms-intro {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
    }

    .terms-item {
        margin-bottom: var(--spacing-md);
        padding-bottom: var(--spacing-md);
    }

    .terms-item-title {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-xs);
    }

    .terms-item-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .terms-signature {
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-md);
    }

    .terms-signature-name {
        font-size: 1.25rem;
    }
}

/* ============================================
   MEMBERSHIP FORM PAGE
   ============================================ */

.membership-form-section {
    padding: calc(var(--spacing-xxl) + 4rem) 0 var(--spacing-xxl);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    min-height: 100vh;
}

.membership-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(232, 232, 232, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 122, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.membership-form-header {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.2), rgba(240, 212, 200, 0.15));
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-champagne);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-md);
}

.form-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-champagne);
}

.form-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

.membership-form {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-section {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 175, 122, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--accent-champagne);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(212, 175, 122, 0.2);
    letter-spacing: -0.01em;
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.required-asterisk {
    color: #e74c3c;
    font-weight: 600;
    margin-left: 2px;
}

.form-label .form-link {
    text-transform: none;
    color: var(--accent-champagne);
    text-decoration: underline;
    font-weight: 400;
    transition: color 0.3s ease;
}

.form-label .form-link:hover {
    color: var(--accent-rose-gold);
    text-decoration: none;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-champagne);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 3px rgba(212, 175, 122, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.3);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-tertiary);
    opacity: 0.6;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23E0B872' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
    cursor: pointer;
}

.form-select option {
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 0.75rem 1rem;
    border: none;
}

.form-select option:hover {
    background: rgba(212, 175, 122, 0.2) !important;
    color: var(--accent-champagne) !important;
}

.form-select option:checked,
.form-select option:focus {
    background: rgba(212, 175, 122, 0.3) !important;
    color: var(--accent-champagne) !important;
}

/* For better browser compatibility */
.form-select {
    color: var(--text-primary) !important;
}

.form-select::-ms-expand {
    display: none;
}

/* Custom dropdown styling for better visibility */
select.form-select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-primary) !important;
}

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

.form-actions {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-rose-gold));
    border: none;
    border-radius: 12px;
    color: var(--bg-primary);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 122, 0.3);
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 122, 0.5);
}

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

.form-submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
    transform: translateX(4px);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.form-submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .membership-form-section {
        padding: calc(var(--spacing-xl) + 4rem) 0 var(--spacing-xl);
    }

    .membership-form-header {
        margin-bottom: var(--spacing-lg);
    }

    .form-title {
        margin-bottom: var(--spacing-xs);
    }

    .form-subtitle {
        font-size: 1rem;
    }

    .form-section {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }

    .form-section-title {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-md);
    }

    .form-group {
        margin-bottom: var(--spacing-md);
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .form-submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }
}

/* ============================================
   FINE PRINTS CONFIRMATION MODAL
   ============================================ */
.fine-prints-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fine-prints-modal.active {
    opacity: 1;
    visibility: visible;
}

.fine-prints-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fine-prints-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 80px rgba(212, 175, 122, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fine-prints-modal.active .fine-prints-modal-content {
    transform: scale(1) translateY(0);
}

.fine-prints-modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.modal-question-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.modal-question {
    text-align: left;
}

.modal-question-text {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-link {
    color: var(--accent-champagne);
    text-decoration: underline;
    font-weight: 400;
    transition: color 0.3s ease;
}

.modal-link:hover {
    color: var(--accent-rose-gold);
    text-decoration: none;
}

.modal-answer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.modal-answer-btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    color: var(--text-primary);
    min-width: 100px;
}

.modal-answer-btn:hover {
    background: rgba(212, 175, 122, 0.1);
    border-color: var(--accent-champagne);
    transform: translateY(-2px);
}

.modal-answer-btn.selected {
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-secondary));
    color: var(--bg-primary);
    border-color: var(--accent-champagne);
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.3);
}

.fine-prints-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.fine-prints-btn-continue {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-secondary));
    color: var(--bg-primary);
    border-color: var(--accent-champagne);
}

.fine-prints-btn-continue:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 122, 0.4);
    border-color: var(--accent-champagne);
}

.fine-prints-btn-continue:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.fine-prints-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-body);
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.fine-prints-btn-yes {
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-secondary));
    color: var(--bg-primary);
    border-color: var(--accent-champagne);
}

.fine-prints-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 122, 0.4);
    border-color: var(--accent-champagne);
}

.fine-prints-btn-no {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(212, 175, 122, 0.3);
}

.fine-prints-btn-no:hover {
    background: rgba(212, 175, 122, 0.1);
    border-color: var(--accent-champagne);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .fine-prints-modal-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }

    .fine-prints-modal-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .fine-prints-modal-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .modal-question-group {
        gap: 1.5rem;
    }

    .modal-question-text {
        font-size: 0.9rem;
    }

    .modal-answer-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .modal-answer-btn {
        width: 100%;
    }

    .fine-prints-btn {
        width: 100%;
        padding: 0.875rem 2rem;
    }
}


/* ============================================
   FRANCHISEE PAGE STYLES
   ============================================ */

/* Franchise Hero Section */
.franchise-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.franchise-hero-section .franchise-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.franchise-hero-section .franchise-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.franchise-hero-section .franchise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.franchise-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 2rem;
}

.franchise-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.franchise-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--accent-secondary);
    letter-spacing: 0.05em;
}

/* Franchise Contact Section */
.franchise-contact-section {
    background: var(--bg-secondary);
    padding: 3rem 0;
}

.franchise-contact-box {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.03) 100%);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    text-align: center;
}

.franchise-contact-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.franchise-email-link,
.franchise-phone-link {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.franchise-email-link:hover,
.franchise-phone-link:hover {
    color: var(--accent-champagne);
}

/* Franchise Intro Section */
.franchise-intro-section {
    padding: 6rem 0;
}

.franchise-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.franchise-intro-text {
    font-size: 1.35rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.franchise-divider {
    text-align: center;
    padding: 2rem 0;
    color: var(--accent-secondary);
    font-size: 1.5rem;
}

/* Franchise Benefits Section */
.franchise-benefits-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.franchise-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.franchise-benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.franchise-benefit-item:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.15);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    stroke: var(--accent-secondary);
}

.benefit-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Franchise Requirements Section */
.franchise-requirements-section {
    padding: 6rem 0;
}

.franchise-requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.franchise-requirement-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.requirement-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-secondary);
    opacity: 0.4;
    flex-shrink: 0;
}

.requirement-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding-top: 0.5rem;
}

/* Franchise Closing Section */
.franchise-closing-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.franchise-closing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.franchise-closing-text {
    font-size: 1.35rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.franchise-closing-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.franchise-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-champagne) 100%);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.franchise-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.4);
}

.franchise-cta-button svg {
    transition: transform 0.3s ease;
}

.franchise-cta-button:hover svg {
    transform: translateX(4px);
}

.franchise-cta-button-secondary {
    background: transparent;
    color: var(--accent-secondary);
    border: 1px solid var(--accent-secondary);
}

.franchise-cta-button-secondary:hover {
    background: rgba(201, 169, 97, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .franchise-hero-title {
        font-size: 2.5rem;
    }

    .franchise-hero-subtitle {
        font-size: 1.1rem;
    }

    .franchise-contact-box {
        padding: 2rem 1.5rem;
    }

    .franchise-contact-text {
        font-size: 1rem;
    }

    .franchise-intro-text {
        font-size: 1.15rem;
    }

    .franchise-closing-text {
        font-size: 1.15rem;
    }

    .franchise-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .franchise-requirements-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .franchise-closing-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .franchise-cta-button {
        justify-content: center;
    }
}

/* ============================================
   WhatsApp Chat Widget Styles
   ============================================ */

.whatsapp-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    font-family: var(--font-body);
}

.whatsapp-float-button {
    width: 64px;
    height: 64px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    padding: 0;
    margin: 0;
}

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

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

.whatsapp-float-button svg {
    color: #fff;
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-icon-img {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.whatsapp-chat-bubble {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-chat-bubble.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-bubble-content {
    padding: 0;
    position: relative;
}

.chat-bubble-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

.chat-bubble-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.chat-bubble-header {
    background: linear-gradient(135deg, #C9A961 0%, #A88B47 100%);
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-bubble-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    padding: 4px;
}

.chat-bubble-title {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.chat-bubble-title strong {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.chat-bubble-title span {
    font-size: 13px;
    opacity: 0.9;
}

.chat-bubble-message {
    padding: 20px;
    background: #fff;
}

.chat-bubble-message p {
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.chat-bubble-message p:last-child {
    margin-bottom: 0;
}

.chat-bubble-message p:first-child {
    font-weight: 500;
    color: #C9A961;
}

.chat-bubble-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    margin: 0 20px 20px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.chat-bubble-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.chat-bubble-button svg {
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float-button {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }

    .whatsapp-float-button svg {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-icon-img {
        width: 50px;
        height: 50px;
    }

    .whatsapp-chat-bubble {
        width: calc(100vw - 40px);
        max-width: 320px;
        bottom: 75px;
    }
}

@media (max-width: 480px) {
    .whatsapp-chat-bubble {
        width: calc(100vw - 30px);
        right: -10px;
    }
}

/* ============================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Disable expensive effects on mobile for better performance */
@media (max-width: 768px) {
    /* Reduce/disable backdrop-filter on mobile (very expensive) */
    .nav {
        backdrop-filter: blur(10px) saturate(150%);
        -webkit-backdrop-filter: blur(10px) saturate(150%);
        background-color: rgba(14, 14, 14, 0.95);
    }
    
    .glass-panel,
    .about-main,
    .benefit-card,
    .rule-item {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    /* Disable continuous animations on mobile */
    body::before {
        animation: none;
    }
    
    .section-heading {
        /* Keep gradient but allow fade-in animation */
        background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-champagne) 50%, #FFFFFF 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Allow opacity and transform animations */
        animation: none;
    }
    
    /* Ensure section headings can fade in */
    .section-heading {
        transition: opacity 0.6s ease, transform 0.6s ease !important;
    }
    
    /* Reduce blur filters on mobile */
    .who-we-are-section::before {
        background-attachment: scroll;
        filter: blur(0px) brightness(0.65);
        background-position: center center;
    }
    
    .who-we-are-section::after {
        background: linear-gradient(
            135deg,
            rgba(14, 14, 14, 0.60) 0%,
            rgba(25, 25, 25, 0.55) 50%,
            rgba(14, 14, 14, 0.60) 100%
        );
    }
    
    .who-we-are-background-morph {
        filter: blur(20px) brightness(0.8);
        animation: none;
    }
    
    .why-stella-bg-image {
        filter: blur(4px) brightness(0.4);
        background-attachment: scroll; /* Remove fixed attachment on mobile */
    }
    
    /* Disable hover effects that use transforms on mobile */
    .benefit-card:hover,
    .team-member:hover,
    .rule-item:hover {
        transform: none;
    }
    
    
    /* Reduce parallax effects */
    .hero-background {
        transform: none !important;
    }
    
    /* Optimize container padding for mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Reduce spacing on mobile */
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    /* Disable expensive glow effects */
    .about-decorative-glow,
    .who-we-are-border-glow {
        display: none;
    }
    
    /* Simplify decorative elements */
    .intro-decorative-corner {
        opacity: 0.5;
    }
    
    /* Optimize text rendering */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeSpeed;
    }
    
    /* Optimize will-change - only use for elements that are actively animating */
    /* Don't disable will-change completely, but use it selectively */
    
    /* Reduce animation complexity but keep them working */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Simplify sparkle animations - keep subtle animation */
    .who-we-are-sparkle {
        animation: sparkleFloat 2s ease-in-out infinite;
        opacity: 0.5;
    }
    
    /* Optimize image loading */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    /* Optimize transition durations - keep animations smooth but not too fast */
    * {
        transition-duration: 0.4s;
    }
    
    /* Keep essential fade-in animations working with proper timing */
    .fade-in {
        animation: fadeInUp 0.6s ease-out forwards !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Ensure elements with fade-in class animate properly */
    .section.fade-in,
    .benefit-card.fade-in,
    .rule-item.fade-in,
    .team-member.fade-in,
    .content-block.fade-in,
    .investor-item.fade-in,
    .category-item.fade-in {
        animation: fadeInUp 0.6s ease-out forwards !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Ensure elements waiting to animate have proper initial state and transitions */
    .section,
    .benefit-card,
    .rule-item,
    .team-member,
    .content-block,
    .investor-item,
    .category-item {
        transition: opacity 0.6s ease-out, transform 0.6s ease-out !important;
    }
}

/* Extra optimizations for small mobile devices */
@media (max-width: 480px) {
    /* Further reduce effects */
    .nav {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    /* Simplify hero section */
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }
    
    /* Reduce section padding */
    .section {
        padding: var(--spacing-md) 0;
    }
    
    /* Optimize card layouts */
    .benefit-card,
    .rule-item,
    .team-member {
        margin-bottom: 1.5rem;
    }
    
    /* Simplify decorative elements */
    .intro-decorative-frame,
    .intro-decorative-corner {
        display: none;
    }
    
    /* Reduce font sizes slightly */
    .section-heading {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .large-text {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover states on touch devices */
    *:hover {
        transform: none !important;
    }
    
    /* Increase touch target sizes */
    a, button, .nav-link, .hero-cta, .cta-button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Optimize scrolling */
    html, body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: auto;
        overflow-y: auto !important;
    }
    
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Disable parallax on touch devices */
    .hero-background,
    .parallax-element {
        transform: none !important;
        will-change: auto;
    }
}

/* Landscape mobile optimizations */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .section {
        padding: var(--spacing-md) 0;
    }
}

/* ============================================
   HERO SECTION - MOBILE RESPONSIVE
   ============================================ */

/* ============================================
   HERO SECTION - RESPONSIVE STYLES
   ============================================ */

/* Tablet Devices (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: clamp(3.5rem, 7vw, 6rem);
    }
    
    .hero-description {
        font-size: clamp(1.1rem, 1.6vw, 1.25rem);
        max-width: 650px;
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        touch-action: pan-y;
    }
    
    .hero-video-bg {
        width: 100%;
        height: 100%;
        height: 100dvh;
    }
    
    /* Mobile: Video covers full screen - zoomed to fill entire viewport */
    .hero-video-iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        /* Calculate based on viewport - ensure it covers both dimensions */
        /* For portrait: scale to cover full height, then ensure width coverage */
        width: max(177.78vh, 100vw); /* Cover height first, but ensure width too */
        height: max(100vh, 56.25vw); /* Cover viewport height */
        min-width: 177.78vh; /* At minimum, cover full height */
        min-height: 100vh;
        min-height: 100dvh;
        /* Zoom in with scale to ensure no black bars */
        transform: translate(-50%, -50%) scale(1.5); /* 50% zoom to ensure full coverage */
        object-fit: cover;
        margin: 0;
        padding: 0;
    }
    
    .hero-overlay {
        width: 100%;
        height: 100%;
        height: 100dvh;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-content-wrapper {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 4vw, 1.15rem);
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-button {
        padding: 1.1rem 2.8rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        margin-bottom: 1.25rem;
        gap: 0.15em;
    }
    
    .hero-description {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        margin-bottom: 2rem;
        padding: 0;
        line-height: 1.6;
    }
    
    .hero-button {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
        width: auto;
        max-width: 100%;
    }
}

/* Landscape Mobile Devices */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 60px 0 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: clamp(0.8rem, 3vw, 0.95rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-button {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
    }
    
    /* Landscape: Video should cover horizontally with zoom */
    .hero-video-iframe {
        width: 177.78vh;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%) scale(1.15); /* Slight zoom for landscape */
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE - ALL HOMEPAGE SECTIONS
   ============================================ */

@media (max-width: 768px) {
    /* Global Mobile Fixes */
    * {
        max-width: 100%;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Container - Consistent Padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }
    
    /* Section Spacing */
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    /* Typography - Mobile Optimized */
    .section-heading {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .large-text {
        font-size: clamp(1rem, 4vw, 1.25rem);
        line-height: 1.6;
    }
    
    .body-text {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        line-height: 1.7;
    }
    
    /* Intro Section */
    .intro-section {
        padding: var(--spacing-lg) 0;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-image-wrapper {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .intro-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }
    
    .intro-text {
        text-align: center;
        padding: 0;
    }
    
    .intro-heading {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .intro-main-text {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        text-align: justify;
        margin-bottom: 1.5rem;
    }
    
    .read-more-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    /* About Section */
    .about-section {
        padding: var(--spacing-lg) 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-main {
        padding: 2rem 1.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-feature-card {
        padding: 1.5rem;
    }
    
    /* Benefits Section */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .benefit-card-image {
        min-height: 300px;
    }
    
    .benefit-title {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
    }
    
    .benefit-text {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }
    
    /* Why Stella Section */
    .why-stella-section {
        padding: var(--spacing-lg) 0;
    }
    
    .why-stella-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .why-stella-card {
        padding: 1.5rem 1rem;
        min-height: 120px;
    }
    
    .why-stella-word {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }
    
    .why-stella-text {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }
    
    /* Alliances Section */
    .alliances-section {
        padding: var(--spacing-lg) 0;
    }
    
    .quote-section {
        padding: var(--spacing-sm) 0;
    }
    
    .alliance-quote-container {
        margin: var(--spacing-sm) auto;
    }
    
    .alliances-slider-wrapper {
        padding: 1.5rem 1rem;
        margin: var(--spacing-sm) 0;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
        min-width: 280px;
    }
    
    .category-title {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
    }
    
    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .team-member {
        max-width: 100%;
    }
    
    /* Rules Section */
    .rules-section {
        padding: var(--spacing-lg) 0;
    }
    
    .rules-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .rule-item {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .rule-title {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        margin-bottom: 1rem;
    }
    
    .rule-text {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        line-height: 1.6;
    }
    
    /* Buttons - Touch Friendly */
    button, a.button, .cta-button, .hero-cta, .read-more-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Prevent Horizontal Scroll but Allow Vertical Scroll */
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        width: 100%;
        height: auto;
        min-height: 100vh;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }
    
    main {
        overflow-x: hidden;
        overflow-y: visible;
        position: relative;
    }
    
    section {
        overflow-x: hidden;
        overflow-y: visible;
        position: relative;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .section {
        padding: var(--spacing-md) 0;
    }
    
    .section-heading {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1.25rem;
    }
    
    .intro-heading {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .why-stella-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card,
    .rule-item,
    .about-feature-card {
        padding: 1.5rem 1rem;
    }
    
    .category-card {
        min-width: 260px;
        padding: 1.5rem 1rem;
    }
    
    button, a.button, .cta-button, .hero-cta {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
}
