/* --- 0. ROOT VARIABLES & RESET --- */

:root {
    /* PALETTE */
    --primary: #B76E79;   /* Muted Rose - Main action color */
    --primary-dark: #9e5a64; /* Darker rose for hover */
    --secondary: #7E9C8A; /* Sage Green - Subtitles, badges */
    --accent: #E7C1B2;    /* Dusty Peach - Background blobs, subtle borders */
    --bg-cream: #FFF7F3;  /* Main background */
    --bg-cream-dark: #FDF2ED; /* Slightly darker cream for alternating sections */
    --text-dark: #3A2E2A; /* Main text color */
    --text-light: #7A6E6A; /* Secondary text color */
    --white: #FFFFFF;

    /* SPACING & LAYOUT */
    --section-spacing: 100px; /* Reduced slightly for better mobile density */
    --container-width: 1200px;
    --border-radius-lg: 20px;
    --border-radius-md: 12px;

    /* SHADOWS & EFFECTS */
    --shadow-sm: 0 5px 20px rgba(58, 46, 42, 0.03);
    --shadow-md: 0 15px 40px rgba(58, 46, 42, 0.08);
    --shadow-premium: 0 20px 50px rgba(183, 110, 121, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'manrope';
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography Overrides */
h1, h2, h3, h4, blockquote, .logo-text, .price-block { font-family: 'Josefin Sans', sans-serif; }
h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
.italic-accent { font-style: italic; color: var(--primary); font-weight: 400; }

/* Utility Classes */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 25px; }
.max-800 { max-width: 800px; }
.section-padding { padding: var(--section-spacing) 0; }
.bg-cream-dark { background-color: var(--bg-cream-dark); }
.text-center { text-align: center; }

/* --- 1. CUSTOM CURSOR --- */
.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9999; pointer-events: none;
}
.cursor-dot { width: 8px; height: 8px; background-color: var(--primary); transition: transform 0.2s ease; }
.cursor-outline {
    width: 40px; height: 40px; border: 2px solid rgba(183, 110, 121, 0.5);
    transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s;
}
body.cursor-hover .cursor-outline {
    width: 60px; height: 60px; background-color: rgba(183, 110, 121, 0.1); border-color: transparent;
}
@media (max-width: 1024px) { .cursor-dot, .cursor-outline { display: none; } html { cursor: auto; }}

/* --- 2. LOADER --- */
/* Fix for Loader Cropping */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader video {
    width: 100%;
    height: 100%;
    /* Use 'contain' to see the whole video without cropping on mobile */
    object-fit: contain; 
}

/* Skip Button Styling */
.skip-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.skip-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .skip-btn {
        bottom: 20px;
        right: 20px;
        font-size: 0.7rem;
    }
}

/* --- 3. HEADER & NAV (Refined) --- */
.site-header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 15px 0; /* Reduced padding */
    background: rgba(255, 247, 243, 0.95); 
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(183, 110, 121, 0.08); transition: var(--transition-smooth);
}
.site-header.shrink { padding: 10px 0; background: rgba(255, 247, 243, 0.98); box-shadow: var(--shadow-sm); }

.header-container { display: flex; justify-content: space-between; align-items: center; }

.logo-wrapper { display: flex; align-items: center; text-decoration: none; gap: 10px; z-index: 2001; }
.site-logo { height: 90px; width: auto; transition: height 0.3s; } /* Smaller Logo */
.site-header.shrink .site-logo { height: 55px; }
.logo-text-group { display: flex; flex-direction: column; }
.logo-text { font-weight: 800; font-size: 1.1rem; color: var(--text-dark); line-height: 1; }
.logo-sub { font-size: 0.6rem; letter-spacing: 2.5px; color: var(--primary); text-transform: uppercase; font-weight: 700; margin-top: 3px; }

.nav-menu { display: flex; align-items: center; }
.nav-inner { display: flex; align-items: center; gap: 35px; }
.nav-link { 
    text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 0.95rem; /* Reduced font size */
    position: relative; padding: 5px 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; 
    background: var(--primary); transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.btn-primary, .nav-btn, .nav-btn-mobile, .footer-cta {
    background: var(--primary); color: white !important; 
    padding: 12px 28px; border-radius: 50px; display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer;
    box-shadow: 0 6px 15px rgba(183, 110, 121, 0.2); transition: var(--transition-smooth);
}
.btn-primary:hover, .nav-btn:hover, .footer-cta:hover { 
    background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(183, 110, 121, 0.3); 
}
.nav-btn-mobile { display: none; }
.desktop-cta { display: block; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: transparent;
    border: none;
    gap: 6px;
    position: relative;
    z-index: 4000; /* MUST be above nav-menu */
}



.line { height: 2px; background-color: var(--text-dark); border-radius: 2px; transition: all 0.4s; }
.line-1 { width: 28px; } .line-2 { width: 20px; } .line-3 { width: 28px; }
body.nav-active .line-1 { transform: rotate(45deg) translate(5px, 6px); width: 26px; background: var(--primary); }
body.nav-active .line-2 { opacity: 0; transform: translateX(10px); }
body.nav-active .line-3 { transform: rotate(-45deg) translate(5px, -6px); width: 26px; background: var(--primary); }

/* --- 4. REFINED HERO SECTION (Fixed Alignment) --- */


/* --- 5. LOGISTICS BAR --- */
.logistics-section { margin-top: -50px; position: relative; z-index: 10; padding-bottom: var(--section-spacing); }
.logistics-bar {
    background: var(--white); border-radius: var(--border-radius-lg); padding: 30px 50px;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: var(--shadow-premium); border: 1px solid rgba(231, 193, 178, 0.3);
}
.logistic-item { display: flex; align-items: center; gap: 15px; }
.logistic-icon { font-size: 2rem; }
.logistic-text strong { display: block; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 2px; }
.logistic-text span { font-size: 0.9rem; color: var(--secondary); font-weight: 500; }
.divider-vertical { width: 1px; height: 40px; background: rgba(58, 46, 42, 0.1); }

/* --- 6. COMMON SECTIONS & GRIDS (Smaller Cards) --- */
.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-title { margin-bottom: 10px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card {
    text-align: center; padding: 25px 20px; transition: var(--transition-smooth); border-radius: var(--border-radius-md);
    background: transparent; border: 1px solid transparent;
}
.feature-card:hover { background: var(--white); border-color: rgba(231, 193, 178, 0.3); box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.card-icon-box { 
    width: 70px; height: 70px; background: var(--bg-cream-dark); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    transition: 0.3s;
}
.feature-card:hover .card-icon-box { background: var(--accent); }
.card-icon-box img { height: 35px; width: auto; }
.feature-card h3 { margin-bottom: 10px; color: var(--secondary); font-size: 1.2rem; }
.feature-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.5; }

/* --- 7. PREMIUM TESTIMONIALS (Smaller Cards) --- */
/* --- PREMIUM AESTHETIC TESTIMONIALS --- */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testi-card-premium {
    background: var(--white);
    padding: 60px 40px 50px;
    border-radius: 2px 40px 2px 40px; /* "Leaf" shape corners */
    box-shadow: 0 15px 40px rgba(231, 193, 178, 0.15); /* Soft peach shadow */
    position: relative;
    border: 1px solid rgba(183, 110, 121, 0.08); /* Very subtle rose border */
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hover "Lift" Effect */
.testi-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(183, 110, 121, 0.2); /* Deepen shadow */
    border-color: var(--accent);
}

/* Giant Decorative Quote Mark */
.testi-card-premium::before {
    content: "“";
    font-family: 'manrope', serif;
    font-size: 8rem;
    line-height: 1;
    color: var(--accent); /* Peach color */
    opacity: 0.25;
    position: absolute;
    top: -25px;
    left: 20px;
    z-index: 0;
    transition: transform 0.5s ease;
}

.testi-card-premium:hover::before {
    transform: rotate(-10deg) scale(1.1); /* Subtle animation on hover */
    opacity: 0.4;
}

/* Headline (The "Punchline") */
.testi-card-premium h3 {
    font-family: 'manrope', sans-serif;
    font-weight: 500;
    font-style: italic; /* Editorial style */
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    line-height: 1.35;
}

/* Body Text */
.testi-card-premium p {
    font-family: 'josefin sans', sans-serif;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    max-width: 90%;
}

/* Author Name Styling */
.testi-card-premium strong {
    display: block;
    color: var(--secondary); /* Sage Green for trust */
    font-family: 'josefin sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px; /* Wide spacing = Premium feel */
    
    /* The decorative line above the name */
    position: relative;
    padding-top: 20px;
}

.testi-card-premium strong::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary); /* Rose Accent Line */
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .testi-card-premium {
        padding: 50px 25px 40px;
        border-radius: 2px 30px 2px 30px;
    }
    .testi-card-premium h3 {
        font-size: 1.4rem;
    }
}

/* price */
/* --- LUXURY PRICING STYLES --- */
:root {
    --primary: #b76e79; /* Ammalaa Brand Rose Gold */
    --primary-glow: rgba(183, 110, 121, 0.3);
    --text-dark: #2d2a29;
    --text-light: #8a8481;
    --bg-white: #ffffff;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Base Card Style */
.price-card {
    background: var(--bg-white);
    padding: 60px 45px;
    border-radius: 40px;
    width: 100%;
    max-width: 420px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- PREMIUM CARD HIGHLIGHTS --- */
.price-card.premium-offer {
    border: 1px solid var(--primary);
    box-shadow: 0 30px 60px var(--primary-glow);
    transform: scale(1.05);
    z-index: 2;
}

.price-card.premium-offer:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 45px 90px var(--primary-glow);
}

/* --- STANDARD CARD DESIGN --- */
.standard-card {
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.standard-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    border-color: rgba(183, 110, 121, 0.1);
}

/* --- GLOWING ELEMENTS --- */
.save-badge-glow {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 0 0 rgba(183, 110, 121, 0.6);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% { box-shadow: 0 0 0 0 rgba(183, 110, 121, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(183, 110, 121, 0); }
    100% { box-shadow: 0 0 0 0 rgba(183, 110, 121, 0); }
}

/* --- TYPOGRAPHY --- */
.price-block {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 15px 0;
}

.amount {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4.8rem;
    font-weight: 600;
    letter-spacing: -3px;
    color: var(--text-dark);
}

.premium-offer .amount {
    color: var(--primary);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    opacity: 0.6;
}

.savings-highlight-pulse {
    background: rgba(183, 110, 121, 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
}

/* --- BUTTONS --- */
.btn-premium {
    background: var(--primary);
    color: white;
    padding: 20px;
    border-radius: 18px;
    display: block;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.3s;
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-standard-outline {
    border: 1.5px solid #e0e0e0;
    color: var(--text-dark);
    padding: 18px;
    border-radius: 18px;
    display: block;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.3s;
}

.btn-standard-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #fdfaf9;
}

/* --- MOBILE LOGIC --- */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .price-card {
        max-width: 100%;
        transform: scale(1) !important; /* Scale reset for vertical flow */
    }

    .mobile-first {
        order: 1; /* Early Bird comes first */
        border-width: 1.5px;
    }

    .mobile-second {
        order: 2; /* Standard comes second */
    }
}

.policy-disclaimer {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 40px;
    margin-bottom: 10px;
}
/* --- POLICY BOX --- */
/* --- PREMIUM POLICY CARD (New) --- */

.policy-container {
    max-width: 800px;
    margin: 80px auto 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(126, 156, 138, 0.15); /* Soft Sage Shadow */
    overflow: hidden;
    border: 1px solid rgba(126, 156, 138, 0.2);
    position: relative;
    text-align: left;
}

/* Header Area */
.policy-header {
    background: rgba(126, 156, 138, 0.1); /* Very light Sage */
    padding: 40px 40px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(126, 156, 138, 0.2);
}

.policy-header h3 {
    font-family: 'josefin sans', serif;
    color: var(--secondary); /* Sage Green */
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.policy-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Content Grid */
.policy-grid-content {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for readability */
    gap: 40px;
}

/* Individual Policy Items */
.policy-item h4 {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--accent); /* Peach Underline */
    display: inline-block;
    padding-bottom: 5px;
}

.policy-item p, .policy-item li {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.policy-item ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.policy-item li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.policy-item li::before {
    content: "•";
    color: var(--secondary); /* Green Bullet */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Highlight the Refund Section */
.highlight-item {
    background: #fffcfb; /* Very subtle warm tint */
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed var(--accent);
    grid-row: span 2; /* Takes up more vertical space */
}

/* Footer Contact Area */
.policy-footer {
    background: var(--text-dark); /* Dark Bottom Bar */
    padding: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.policy-footer p {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    transition: 0.3s;
}

.contact-link span {
    font-family: 'manrope', sans-serif;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-right: 5px;
}

.contact-link:hover {
    color: var(--white);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .policy-grid-content {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 30px;
        padding: 30px 20px;
    }
    
    .policy-header {
        padding: 30px 20px;
    }
    
    .highlight-item {
        grid-row: auto; /* Reset grid span */
    }
    
    .policy-footer {
        flex-direction: column;
        gap: 5px;
    }
}




/* --- 9. ACCORDION FAQ (Fixed) --- */
/* --- FAQ (VISIBLE & PREMIUM) --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(183,110,121,0.15);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.faq-item.faq-open {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span:first-child {
    font-family: 'manrope', sans-serif;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.faq-open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-light);
    line-height: 1.6;
}


/* --- 10. FOOTER --- */
/* --- PREMIUM COMPACT FOOTER (Aligned & Fixed) --- */

.site-footer {
    background: var(--text-dark); /* Dark Earth */
    color: var(--bg-cream);
    padding: 70px 0 30px;
    border-top: 4px solid var(--primary); /* Rose Accent Line */
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-desc {
    margin-top: 10px;
    max-width: 300px;
}


/* 1. LOGO AREA */
/* ===== CLEAN PREMIUM FOOTER LOGO FIX ===== */

.footer-logo-box {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 35px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    width: fit-content;
}

.footer-logo {
    height: 120px;  
    width: auto;
    display: block;
}


.footer-desc {
    color: rgba(255, 247, 243, 0.6);
    line-height: 1.6;
    max-width: 280px;
    font-weight: 300;
}

/* 2. HEADERS */
.footer-col h4 {
    color: var(--accent); /* Peach */
    font-family: 'manrope', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* 3. LINKS & TEXT */
.footer-col a:not(.footer-btn) {
    display: block;
    color: rgba(255, 247, 243, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-col a:not(.footer-btn):hover {
    color: var(--primary);
    padding-left: 5px;
}

/* 4. NEW CONTACT SECTION (Fixed) */
.contact-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 247, 243, 0.4); /* Muted label */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem !important; /* Larger, readable email */
    color: var(--bg-cream) !important;
    border-bottom: 1px solid rgba(255, 247, 243, 0.2);
    padding-bottom: 2px;
    display: inline-block;
    width: fit-content;
}

.email-link:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    padding-left: 0 !important; /* Disable slide for email */
}

/* 5. SHORTENED BUTTON */
.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--accent); /* Peach Border */
    color: var(--accent);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content; /* Only takes necessary width */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-btn:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-btn .icon {
    font-size: 1.1rem;
}

/* 6. BOTTOM BAR */
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .site-footer { padding: 50px 0 30px; }
    
    .footer-grid {
        grid-template-columns: 1fr; /* Stack vertically */
        text-align: center;
        gap: 40px;
    }
    
    /* Center aligns specifically for mobile */
    .footer-logo-box, .email-link, .footer-btn {
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-group {
        align-items: center; /* Centers the flex column */
    }
}

/* --- 11. ANIMATIONS --- */
.reveal, .reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active, .reveal-stagger > *.active { opacity: 1; transform: translateY(0); }

/* --- 12. RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {

    
    .logistics-bar { flex-direction: column; gap: 25px; padding: 25px; }
    .divider-vertical { width: 40px; height: 1px; }
    
    .grid-4, .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .pricing-container { flex-direction: column; }
    .price-card.premium-offer { transform: scale(1); order: 1; } .price-card.standard-offer { order: 2; }
}

@media (max-width: 1024px) {

    .site-header {
        padding: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .desktop-cta {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-cream);
        flex-direction: column;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 3500;
    }

    body.nav-active .nav-menu { right: 0; }
    body.nav-active { overflow: hidden; }

    .nav-inner { flex-direction: column; gap: 30px; text-align: center; }
    .nav-link { font-size: 1.5rem; font-family: 'Josefin Sans', sans-serif; }
    .nav-btn-mobile { display: inline-flex; padding: 15px 35px; font-size: 1rem; }

    

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo-wrapper { justify-content: center; }
    .footer-desc { margin: 0 auto; }
}




/* SPLIT SECTION */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }

.section-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}


/* FACILITATOR PREMIUM CARD */
.facilitator-card {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 60px;
align-items: center;
background: var(--white);
padding: 60px;
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-md);
}

.facilitator-image img {
width: 100%;
border-radius: var(--border-radius-lg);
}

.facilitator-content h2 {
margin-bottom: 20px;
color: var(--primary);
}

.facilitator-highlights {
margin-top: 25px;
list-style: none;
}

.facilitator-highlights li {
margin-bottom: 10px;
color: var(--secondary);
font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px){
.facilitator-card{
grid-template-columns:1fr;
padding:40px;
}
}

/*  */
/* =========================================
   PREMIUM WORKSHOP EXPERIENCE SECTION
========================================= */

.workshop-experience {
position: relative;
background: linear-gradient(
to bottom,
var(--bg-cream),
var(--bg-cream-dark)
);
overflow: hidden;
}

/* Soft background glow */
.workshop-experience::before {
content: "";
position: absolute;
width: 600px;
height: 600px;
background: radial-gradient(
circle,
rgba(231,193,178,0.25) 0%,
rgba(231,193,178,0) 70%
);
top: -150px;
right: -150px;
z-index: 0;
}

.experience-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
position: relative;
z-index: 2;
}

/* Card Base */
.experience-card {
background: var(--white);
padding: 50px;
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-md);
transition: var(--transition-smooth);
border: 1px solid rgba(183,110,121,0.15);
position: relative;
}

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

/* Left Card Accent Strip */
.experience-strip {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 6px;
background: var(--primary);
border-radius: 20px 0 0 20px;
}

.details-card h3 {
color: var(--primary);
margin-bottom: 25px;
}

.details-card ul {
list-style: none;
padding: 0;
}

.details-card li {
margin-bottom: 18px;
font-weight: 500;
color: var(--text-dark);
display: flex;
align-items: center;
gap: 10px;
}

.details-card li span {
font-size: 1.1rem;
}

/* Right Content Card */
.content-card h3 {
color: var(--secondary);
margin-bottom: 20px;
}

.content-card p {
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.7;
}

/* Highlight Pills */
.experience-highlights {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}

.highlight-box {
background: rgba(126,156,138,0.08);
border: 1px solid rgba(126,156,138,0.2);
padding: 14px 18px;
border-radius: 30px;
font-size: 0.9rem;
color: var(--secondary);
font-weight: 600;
transition: var(--transition-smooth);
}

.highlight-box:hover {
background: var(--accent);
color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
.experience-wrapper {
grid-template-columns: 1fr;
}

.experience-card {
padding: 35px;
}

.experience-highlights {
grid-template-columns: 1fr;
}
}


/*  
*
/

/* =========================================
   PREMIUM FACILITATOR EDITORIAL DESIGN
========================================= */

.facilitator-premium {
background: var(--bg-cream-dark);
position: relative;
overflow: hidden;
}

.facilitator-grid {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 80px;
align-items: center;
}

.facilitator-image-wrap {
position: relative;
}

.facilitator-image-wrap img {
width: 100%;
border-radius: 30px;
position: relative;
z-index: 2;
box-shadow: var(--shadow-premium);
}

/* Soft Rose Backdrop */
.image-backdrop {
position: absolute;
width: 100%;
height: 100%;
top: 20px;
left: -20px;
background: var(--accent);
border-radius: 30px;
z-index: 1;
}

.facilitator-content h2 {
color: var(--primary);
margin-bottom: 20px;
}

.lead-text {
font-size: 1.2rem;
color: var(--secondary);
margin-bottom: 20px;
font-weight: 500;
}

.facilitator-content p {
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.7;
}

/* --- UPDATED AESTHETIC CARDS (Meet Your Guide) --- */

.facilitator-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.facilitator-meta div {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(58, 46, 42, 0.03); /* Very subtle shadow */
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0); /* Invisible border initially */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    
    /* Flex alignment */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

/* Typography Upgrade */
.facilitator-meta strong {
    display: block;
    font-family: 'Josefin Sans', sans-serif; 
    /* Matching your headings */
    font-size: 1.5rem;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.facilitator-meta span {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Premium spacing */
}

/* --- INDIVIDUAL CARD STYLES (Using Palette) --- */

/* 1. Rose Card (Participants) */
.facilitator-meta div:nth-child(1) {
    border-bottom: 4px solid var(--primary);
}
.facilitator-meta div:nth-child(1) strong {
    color: var(--primary);
}
.facilitator-meta div:nth-child(1):hover {
    background: #fff0f3; /* Very light rose tint */
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(183, 110, 121, 0.2);
}

/* 2. Sage Card (Belief Work) */
.facilitator-meta div:nth-child(2) {
    border-bottom: 4px solid var(--secondary);
}
.facilitator-meta div:nth-child(2) strong {
    color: var(--secondary);
}
.facilitator-meta div:nth-child(2):hover {
    background: #f1f7f4; /* Very light sage tint */
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(126, 156, 138, 0.2);
}

/* 3. Peach Card (Safety) */
.facilitator-meta div:nth-child(3) {
    border-bottom: 4px solid var(--accent);
}
.facilitator-meta div:nth-child(3) strong {
    color: #cda293; /* Darker version of accent for readability */
}
.facilitator-meta div:nth-child(3):hover {
    background: #fff9f6; /* Very light peach tint */
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(231, 193, 178, 0.3);
}

/* Mobile Fix (Ensures they stack neatly on small screens) */
@media (max-width: 768px) {
    .facilitator-meta {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 15px;
    }
}

/* =========================================
   PREMIUM PHILOSOPHY DESIGN
========================================= */

.philosophy-premium {
background: linear-gradient(
to bottom,
var(--bg-cream),
var(--bg-cream-dark)
);
}

.philosophy-grid {
display: grid;
grid-template-columns: 1.3fr 1fr;
gap: 80px;
align-items: center;
}

.section-tag {
display: inline-block;
background: rgba(183,110,121,0.1);
color: var(--primary);
padding: 6px 14px;
border-radius: 20px;
font-size: 0.75rem;
letter-spacing: 1px;
margin-bottom: 20px;
text-transform: uppercase;
}

.section-tag.sage {
background: rgba(126,156,138,0.1);
color: var(--secondary);
}

.philosophy-quote {
font-family: 'Josefin Sans', sans-serif;
font-size: 1.6rem;
color: var(--primary);
margin: 20px 0 25px;
}

.philosophy-content p {
color: var(--text-light);
margin-bottom: 18px;
line-height: 1.7;
}

.philosophy-pill-row {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 25px;
}

.philosophy-pill-row span {
background: rgba(126,156,138,0.1);
border: 1px solid rgba(126,156,138,0.3);
color: var(--secondary);
padding: 8px 16px;
border-radius: 25px;
font-size: 0.85rem;
transition: var(--transition-smooth);
}

.philosophy-pill-row span:hover {
background: var(--accent);
color: var(--text-dark);
}

.philosophy-image-wrap {
position: relative;
}

.philosophy-image-wrap img {
width: 100%;
border-radius: 30px;
position: relative;
z-index: 2;
box-shadow: var(--shadow-md);
}

.image-backdrop.peach {
background: var(--primary);
top: 20px;
left: 20px;
}

/* Responsive */
@media (max-width: 1024px) {

.facilitator-grid,
.philosophy-grid {
grid-template-columns: 1fr;
gap: 50px;
}

.facilitator-meta {
grid-template-columns: 1fr;
}

.image-backdrop {
display: none;
}

}
/*  

*/

/* =========================================
   WHY SECTION SPACING REFINEMENT
========================================= */

.why-section {
background: var(--bg-cream);
}

.why-header {
margin-bottom: 40px;   /* Increased breathing */
}

.why-header h2 {
margin-bottom: 18px;   /* Space between title and subtitle */
}

.why-divider {
width: 80px;
height: 3px;
background: linear-gradient(
to right,
var(--primary),
var(--accent)
);
margin: 0 auto 60px auto;   /* Large breathing before cards */
border-radius: 3px;
}

.why-grid {
margin-top: 10px;
}

/* Improve feature card spacing */

.feature-card {
padding: 35px 25px;   /* More internal breathing */
transition: var(--transition-smooth);
}

.feature-card h3 {
margin-top: 15px;
margin-bottom: 12px;
}

.feature-card p {
line-height: 1.6;
}


/* =========================================
   RESPONSIVE STYLES (Paste at the bottom)
========================================= */

/* --- TABLET & SMALL LAPTOPS (Max Width: 1024px) --- */
@media (max-width: 1024px) {
    
    /* 1. Typography & Spacing */
    :root {
        --section-spacing: 80px; /* Reduce vertical spacing */
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }

    /* 2. Header & Navigation */
    .desktop-cta { display: none; } /* Hide "Register" button on header */
    
    .hamburger {
        display: flex; /* Show Hamburger */
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        gap: 6px;
        z-index: 5000;
        cursor: pointer;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        width: 100%;
        height: 100vh;
        background: var(--bg-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 3500;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    body.nav-active .nav-menu {
        right: 0; /* Slide in */
    }
    
    body.nav-active { overflow: hidden; } /* Prevent background scrolling */

    .nav-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-link {
        font-size: 1.5rem;
        font-family: 'Josefin Sans', sans-serif;
    }

    .nav-btn-mobile {
        display: inline-flex;
        padding: 15px 40px;
        font-size: 1.1rem;
        margin-top: 20px;
    }



    /* 4. Grids to Single Column */
    .grid-4, 
    .testimonial-grid, 
    .pricing-container,
    .facilitator-grid,
    .philosophy-grid,
    .experience-wrapper,
    .footer-grid {
        grid-template-columns: 1fr; /* Force single column */
        gap: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 5. Adjust Images in Grids */
    .facilitator-image-wrap,
    .philosophy-image-wrap {
        order: -1; /* Images on top */
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* 6. Pricing Specifics */
    .price-card.premium-offer { order: 1; transform: scale(1); }
    .price-card.standard-offer { order: 2; }
}

/* --- MOBILE PHONES (Max Width: 768px) --- */
@media (max-width: 768px) {

    /* 1. Global Spacing Reduction */
    :root {
        --section-spacing: 60px;
    }

    .container {
        padding: 0 20px;
    }

    /* 2. Typography */
    h1 { font-size: 2.4rem; line-height: 1.2; }
    h2 { font-size: 1.8rem; }
    p { font-size: 0.95rem; }


    /* 4. Experience Section */
    .experience-card { padding: 30px 20px; }
    .experience-highlights { grid-template-columns: 1fr; } /* Stack pills */

    /* 5. Why Workshop Cards */
    .feature-card { 
        padding: 20px; 
        border: 1px solid rgba(183,110,121,0.1); /* Add border for definition */
        background: white;
    }

    /* 6. Testimonials */
    .testi-card-premium { padding: 30px 20px; }
    .testi-card-premium::before { font-size: 3rem; top: 10px; left: 15px; }

    /* 7. Pricing */
    .price-card { padding: 40px 25px; }
    .amount { font-size: 2.8rem; }

    /* 8. Footer */
    /* 8. Footer */
.footer-grid {
    grid-template-columns: 1fr;   /* Force single column */
    text-align: center;
    gap: 50px;
}

.footer-logo-box {
    margin-left: auto;
    margin-right: auto;
}

.footer-desc {
    margin-left: auto;
    margin-right: auto;
}

}

/* --- MODAL OVERLAY STYLES --- */

/* --- PREMIUM MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 34, 31, 0.85); /* Dark background */
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 700px;
    border-radius: 20px;
    position: relative;
    max-height: 85vh; /* Prevents it from being too tall */
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.scrollable-content {
    overflow-y: auto; /* Allows scrolling inside the modal */
    padding: 30px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 10;
}

/*  */

/* --- PREMIUM MODAL STYLES --- */

.policy-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--secondary); /* Sage Green */
    text-decoration: none;
    border-bottom: 1px solid var(--secondary);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.policy-link:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Overlay */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(42, 34, 31, 0.6); /* Dark Earth transparent */
    backdrop-filter: blur(8px); /* Blur effect behind */
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* Modal Box */
.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    max-height: 90vh; /* Prevents being taller than screen */
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Scrollable Body */
.modal-body {
    padding: 30px;
    overflow-y: auto; /* Scroll inside if too long */
}

/* Header */
.modal-header {
    background: var(--bg-cream-dark);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}
.modal-header h3 { font-family: 'Josefin Sans', sans-serif; color: var(--text-dark); margin-bottom: 5px; }
.modal-header p { font-size: 0.85rem; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; }

/* Close Button */
.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    font-size: 2rem; color: var(--text-light);
    cursor: pointer; line-height: 1;
}

/* Policy Content */
.policy-notice {
    background: rgba(183, 110, 121, 0.1); /* Light Rose */
    color: var(--primary-dark);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.policy-row { margin-bottom: 25px; }
.policy-row h4 { font-size: 1.1rem; color: var(--secondary); margin-bottom: 10px; font-family: 'Josefin Sans', sans-serif; }
.policy-row p, .policy-row li { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }
.policy-row ul { list-style: none; padding-left: 0; }
.policy-row li { position: relative; padding-left: 15px; margin-bottom: 5px; }
.policy-row li::before { content: "•"; color: var(--accent); position: absolute; left: 0; }

/* Highlight Box */
.highlight-row {
    border: 1px dashed var(--secondary);
    padding: 15px;
    border-radius: 8px;
    background: #fafcfb;
}

/* Footer */
.modal-footer {
    padding: 20px;
    background: var(--text-dark);
    color: white;
    text-align: center;
    font-size: 0.9rem;
}
.modal-contact { color: var(--accent); text-decoration: none; margin-left: 10px; }

/*  */

/* --- REGISTRATION FORM STYLES --- */
.premium-form {
    background: var(--bg-cream);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(183, 110, 121, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(183, 110, 121, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 20px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .premium-form { padding: 30px 20px; }
}

/*  */

/* =========================================
   REFINED PREMIUM HERO SECTION (Consolidated)
========================================= */

.hero {
    position: relative;
    min-height: 115vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
    width: 100%;
    z-index: 2;
}

.hero-content {
    max-width: 580px;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(126,156,138,0.12);
    border: 1px solid rgba(126,156,138,0.25);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.hero-sub {
    margin: 20px 0 35px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 25px;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-visual img {
    max-height: 85vh;
    width: auto;
    object-fit: contain;
}

/* --- TABLET & MOBILE RESPONSIVE --- */

@media (max-width: 1024px) {
    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        position: absolute;
        bottom: 0;
        right: -5%;
        width: 60%;
        opacity: 0.8;
        z-index: 1;
        pointer-events: none;
    }

    .hero-visual img {
        max-height: 60vh;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 160px;
        min-height: 100vh;
        align-items: flex-start;
    }

    /* REMOVE SUB-TEXT PARA FOR CLEAN MOBILE VIEW */
    .hero-sub {
        display: none;
    }

    .hero-content {
        margin-top: 10px;
        width: 75%; /* More room for the heading */
        padding-left: 15px;
        z-index: 10;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 30px;
        color: var(--text-dark);
    }

    .hero-content h1 span {
        display: block;
        color: var(--primary);
        font-family: 'josefin sans', sans-serif;
        font-style: italic;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 0.9rem;
        border-radius: 30px;
        width: fit-content;
        box-shadow: var(--shadow-premium);
    }

    .hero-visual {
        width: 85%; /* Larger background presence */
        right: -15%; 
        bottom: -5px;
        z-index: 1;
    }

    .hero-visual img {
        max-height: 68vh;
        object-position: bottom right;
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(126, 156, 138, 0.12);
    border: 1px solid rgba(126, 156, 138, 0.25);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.85rem;
    margin-bottom: 25px;
    
    /* Crucial for the scroll effect */
    max-width: 220px;      /* Set a fixed width for the "window" */
    overflow: hidden;      /* Hide text that goes outside the box */
    white-space: nowrap;   /* Keep text on one line */
    position: relative;
}

.scrolling-text {
    display: inline-block;
    padding-left: 100%;    /* Start text from the right edge */
    animation: scroll-badge 10s linear infinite;
}

/* The Animation Loop */
@keyframes scroll-badge {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .hero-badge {
        max-width: 180px; /* Slightly smaller on mobile */
    }
}

/* Expired Offer Styles */
.expired-offer {
    opacity: 0.6;
    filter: grayscale(50%);
}

.expired-offer .btn-premium {
    background: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    pointer-events: none; /* Stops the click */
    box-shadow: none !important;
}

.expired-offer .save-badge-glow, 
.expired-offer .savings-highlight-pulse {
    animation: none !important; 
    background: #999999;
    color: #ffffff;
}

.expired-text {
    color: #d9534f !important; 
    font-weight: 600;
}