/* ===============================================
   LOAY HESHAM FITNESS - DARK MASCULINE THEME
   João Melo Behance Style Inspired
   =============================================== */

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

:root {
    /* NEW BRAND Color Palette - Dr. Loay Hesham Fitness */
    --bg-primary: #151515;         /* Brand Black - Main background */
    --bg-dark: #151515;            /* Brand Black - Dark sections */
    --bg-darker: #0a0a0a;          /* Deeper black for contrast */
    --bg-card: #1e291e;            /* Brand Green - Card backgrounds */
    --bg-secondary: #1e291e;       /* Brand Green - Secondary backgrounds */
    
    --accent-primary: #bcad8b;     /* Brand Beige - Primary accent/CTA */
    --accent-secondary: #1e291e;   /* Brand Green - Secondary accent */
    --accent-beige: #bcad8b;       /* Brand Beige */
    --accent-green: #1e291e;       /* Brand Green */
    --accent-cream: #f0ebdf;       /* Brand Cream White */
    
    --text-primary: #f0ebdf;       /* Brand Cream White - Primary text */
    --text-secondary: #bcad8b;     /* Brand Beige - Secondary text */
    --text-muted: #9a8d73;         /* Darker beige - Muted text */
    
    --glow-beige: rgba(188, 173, 139, 0.4);
    --glow-green: rgba(30, 41, 30, 0.5);
    --glow-cream: rgba(240, 235, 223, 0.3);
    
    /* Legacy color mappings for compatibility */
    --accent-red: #bcad8b;         /* Map to beige */
    --accent-orange: #bcad8b;      /* Map to beige */
    --accent-yellow: #bcad8b;      /* Map to beige */
    --accent-teal: #bcad8b;        /* Map to beige */
    --accent-blue: #1e291e;        /* Map to green */
    --glow-red: rgba(188, 173, 139, 0.4);
    --glow-orange: rgba(188, 173, 139, 0.4);
    --glow-yellow: rgba(188, 173, 139, 0.4);
    --glow-teal: rgba(188, 173, 139, 0.4);
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-display: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(12, 12, 12, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(250, 60, 60, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 40px;
}

.logo-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
}

.lang-toggle {
    background: transparent;
    border: 2px solid var(--text-secondary);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* Ensure single line display on all views */
}

.lang-toggle:hover {
    border-color: var(--accent-teal);
    transform: translateY(-2px);
}

.lang-active {
    color: var(--accent-teal);
    font-weight: 600;
}

.lang-divider {
    color: var(--text-muted);
    margin: 0 8px;
}

.lang-inactive {
    color: var(--text-secondary);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

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

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-orange);
}

/* Cart Icon in Navigation */
.nav-link-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px !important;
}

.nav-link-cart i {
    font-size: 18px;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 968px) {
    /* Enable hamburger menu on tablet and mobile */
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(12, 12, 12, 0.98);
        padding: 30px;
        gap: 25px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    
    .logo {
        gap: 8px; /* Tighter gap on mobile (was 15px) */
    }
    
    .logo-text {
        display: block; /* Show on mobile with smaller styling */
        font-size: 14px; /* Smaller than desktop (20px) */
        letter-spacing: 1px; /* Tighter than desktop (2px) */
        white-space: nowrap; /* Prevent wrapping */
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar.scrolled {
        padding: 8px 0;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 12, 12, 0.7) 0%,
        rgba(12, 12, 12, 0.85) 50%,
        rgba(12, 12, 12, 0.95) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 160px 20px 0 20px; /* Increased padding to account for fixed navbar (~150px) */
}

.hero-logo {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.warrior-emblem {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInDown 1s ease-out;
    position: relative;
}

.warrior-logo {
    width: 200px;
    height: 200px;
    position: relative;
    animation: heroLogoFloat 4s ease-in-out infinite;
}

.warrior-shield {
    width: auto;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.warrior-text {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    color: white;
    letter-spacing: -3px;
    text-shadow: 
        0 0 20px var(--glow-yellow),
        0 0 40px var(--glow-orange),
        0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.warrior-text-logo {
    width: 360px;
    height: 360px;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 30px var(--glow-yellow)) drop-shadow(0 0 60px var(--glow-orange));
    position: relative;
}

.warrior-swords {
    display: none; /* Hide swords on all devices */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sword {
    position: absolute;
    width: 4px;
    height: 120px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(200, 200, 200, 0.8) 50%,
        rgba(150, 150, 150, 0.6) 100%);
    top: 50%;
    left: 50%;
    transform-origin: center;
    box-shadow: 0 0 10px var(--glow-orange);
}

.sword::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -8px;
    width: 20px;
    height: 15px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    box-shadow: 0 0 8px var(--glow-yellow);
}

.sword-left {
    transform: translate(-50%, -50%) rotate(-45deg) translateX(-60px);
}

.sword-right {
    transform: translate(-50%, -50%) rotate(45deg) translateX(60px);
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 30px var(--glow-orange));
    }
    50% {
        transform: translateY(-10px) scale(1.05);
        filter: drop-shadow(0 0 50px var(--glow-yellow));
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 80px);
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-line-1,
.title-line-2 {
    display: block;
    animation: fadeInUp 1s ease-out;
}

.title-line-2 {
    animation-delay: 0.2s;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 18px 40px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    color: var(--text-primary);
    box-shadow: 0 0 30px var(--glow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 40px var(--glow-red);
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-secondary:hover {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: 0 5px 30px var(--glow-teal);
}

.btn-icon {
    font-size: 20px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--accent-teal);
    font-size: 18px;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-teal);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { top: 10px; opacity: 1; }
    50% { top: 25px; opacity: 0.5; }
}

/* ===== BRAND CODE ===== */
.brand-code {
    background: var(--bg-darker);
    padding: 60px 0;
    border-top: 1px solid rgba(250, 60, 60, 0.2);
    border-bottom: 1px solid rgba(250, 60, 60, 0.2);
}

.brand-code-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.code-word {
    font-family: var(--font-display);
    font-size: clamp(30px, 5vw, 60px);
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out forwards;
}

.code-word[data-word="1"] { animation-delay: 0.2s; }
.code-word[data-word="2"] { animation-delay: 0.4s; }
.code-word[data-word="3"] { animation-delay: 0.6s; }

.code-divider {
    color: var(--accent-red);
    font-size: 40px;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--bg-card);
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-teal);
    box-shadow: 0 10px 40px rgba(0, 216, 214, 0.2);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 50px;
    color: var(--accent-red);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== POSITIONING ===== */
.positioning {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.positioning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 100px,
        rgba(250, 60, 60, 0.03) 100px,
        rgba(250, 60, 60, 0.03) 101px
    );
}

.positioning-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.positioning-text {
    font-family: var(--font-display);
    font-size: clamp(30px, 5vw, 55px);
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.positioning-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    font-style: italic;
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Section header for About section */
.about .section-header {
    position: relative;
    background: transparent;
    padding: 30px 0;
    margin-bottom: 40px;
    z-index: 80;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* Section header for Packages section */
.packages .section-header {
    position: relative;
    background: transparent;
    padding: 30px 0;
    margin-bottom: 40px;
    z-index: 80;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* Section header for Tools section */
.tools .section-header {
    position: relative;
    background: transparent;
    padding: 30px 0;
    margin-bottom: 40px;
    z-index: 80;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* Section header for FAQs section */
.faqs .section-header {
    position: relative;
    background: transparent;
    padding: 30px 0;
    margin-bottom: 40px;
    z-index: 80;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(35px, 6vw, 60px);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--accent-red);
    margin: 0 auto 20px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    align-items: start;
}

/* Left Side - Visual */
.about-visual {
    position: sticky;
    top: 120px;
}

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

.coach-photo {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.1) brightness(0.95);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(12, 12, 12, 0.8) 0%,
        transparent 50%
    );
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--accent-red);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(250, 60, 60, 0.5);
    z-index: 10;
}

.image-badge i {
    font-size: 20px;
}

/* Right Side - Story */
.about-story {
    padding: 20px 0;
    max-width: 650px;
}

.greeting-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(250, 60, 60, 0.1);
    border: 2px solid var(--accent-red);
    padding: 10px 22px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
}

.wave-emoji {
    font-size: 22px;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    40% { transform: rotate(0deg); }
}

.greeting-text {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.coach-tagline {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.5vw, 32px);
    line-height: 1.4;
    margin-bottom: 25px;
    color: var(--accent-teal);
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--accent-red);
    max-width: 620px;
}

/* Read More Button */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.1), rgba(0, 216, 214, 0.1));
    border: 2px solid var(--accent-teal);
    border-radius: 50px;
    color: var(--accent-teal);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.2), rgba(0, 216, 214, 0.2));
    border-color: var(--accent-red);
    color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(250, 60, 60, 0.3);
}

.btn-read-more i:first-child {
    font-size: 16px;
}

.btn-read-more i:last-child {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-read-more:hover i:last-child {
    transform: translateY(2px);
}

.story-block {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent-red);
    padding: 22px 26px;
    margin-bottom: 35px;
    border-radius: 0 10px 10px 0;
    max-width: 620px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.story-block p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: 15px;
}

.story-block p:last-child {
    margin-bottom: 0;
}

.story-block strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Content Boxes */
.credentials-box,
.method-box,
.expectations-box {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 22px 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    max-width: 620px;
}

.credentials-box:hover,
.method-box:hover,
.expectations-box:hover {
    border-color: var(--accent-teal);
    transform: translateX(5px);
    box-shadow: 0 10px 40px rgba(0, 216, 214, 0.1);
}

.box-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.credentials-list,
.method-list,
.expectations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credentials-list li,
.method-list li,
.expectations-list li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
    font-size: 14.5px;
}

.credentials-list li:last-child,
.method-list li:last-child,
.expectations-list li:last-child {
    margin-bottom: 0;
}

.credentials-list li i,
.method-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-teal);
    font-size: 18px;
}

.expectations-list li {
    padding-left: 25px;
}

.expectations-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-teal);
    font-size: 18px;
    font-weight: 700;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.1), rgba(0, 216, 214, 0.1));
    border: 2px solid var(--accent-red);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    margin: 30px 0;
    max-width: 620px;
}

.cta-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-cta .btn {
    font-size: 16px;
    padding: 18px 45px;
}

/* Coach Quote */
.coach-quote {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--accent-teal);
    padding: 22px 25px;
    border-radius: 0 10px 10px 0;
    margin-top: 30px;
    position: relative;
    max-width: 620px;
}

.coach-quote i {
    color: var(--accent-red);
    font-size: 26px;
    opacity: 0.3;
    margin-bottom: 12px;
}

.coach-quote p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.quote-author {
    display: block;
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PACKAGES ===== */
.packages {
    padding: var(--section-padding);
    background: var(--bg-darker);
}

/* Currency Toggle */
.currency-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.currency-label {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.currency-buttons {
    display: flex;
    gap: 10px;
    background: var(--bg-card);
    padding: 5px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.currency-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-btn:hover {
    color: var(--text-primary);
}

.currency-btn.active {
    background: var(--accent-teal);
    color: var(--bg-dark);
    box-shadow: 0 2px 15px rgba(0, 216, 214, 0.4);
}

/* Location Indicator */
.location-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(255, 99, 72, 0.15), rgba(255, 165, 2, 0.15));
    border: 2px solid var(--accent-orange);
    border-radius: 50px;
    color: var(--accent-orange);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: slideInDown 0.5s ease;
    transition: opacity 0.5s ease;
}

.location-indicator i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

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

/* Package Selection Guide */
.package-guide {
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.05), rgba(0, 216, 214, 0.05));
    border: 2px solid rgba(250, 60, 60, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
}

.guide-title {
    font-family: var(--font-display);
    font-size: 28px;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.guide-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.guide-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.guide-standard {
    border-color: rgba(29, 209, 161, 0.3);
}

.guide-standard:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 10px 30px var(--glow-teal);
}

.guide-premium {
    border-color: var(--accent-orange);
}

.guide-premium:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 30px var(--glow-orange);
}

.guide-elite {
    border-color: rgba(250, 60, 60, 0.3);
}

.guide-elite:hover {
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(250, 60, 60, 0.4);
}

.guide-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.guide-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--accent-teal);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.guide-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.guide-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.guide-result {
    background: rgba(0, 216, 214, 0.1);
    border-left: 3px solid var(--accent-teal);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.6;
}

.guide-result strong {
    color: var(--accent-teal);
}

.guide-note {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 200, 87, 0.1);
    border: 2px solid rgba(255, 200, 87, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    font-size: 14px;
    color: var(--text-secondary);
}

.guide-note i {
    font-size: 24px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.guide-note strong {
    color: var(--text-primary);
}

/* Package Includes List */
.package-includes-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--bg-card);
    border: 2px solid rgba(0, 216, 214, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.include-item:hover {
    border-color: var(--accent-teal);
    transform: translateX(5px);
    box-shadow: 0 5px 20px var(--glow-teal);
}

.include-item i {
    font-size: 24px;
    color: var(--accent-teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.include-item span {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Center the third package card on second row */
.package-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.package-starter {
    border-color: rgba(29, 209, 161, 0.3);
}

.package-starter:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 20px 60px var(--glow-teal);
}

.package-focused {
    border-color: var(--accent-orange);
    box-shadow: 0 0 40px var(--glow-orange);
    transform: scale(1.05);
}

.package-focused:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 20px 80px var(--glow-yellow);
}

.package-elite {
    border-color: rgba(95, 39, 205, 0.3);
}

.package-elite:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 20px 60px rgba(95, 39, 205, 0.4);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 216, 214, 0.5);
}

.package-icon {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.package-header h3 {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.package-goal {
    font-size: 13px;
    color: var(--accent-teal);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
}

.currency-symbol {
    font-size: 20px;
    color: var(--text-secondary);
}

.amount {
    font-family: var(--font-display);
    font-size: 50px;
    color: var(--accent-red);
    transition: all 0.3s ease;
}

.period {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Pricing Options Grid */
.pricing-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-option {
    text-align: center;
    padding: 15px 10px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.pricing-option:hover {
    border-color: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(29, 209, 161, 0.2);
}

.pricing-option.pricing-unavailable {
    opacity: 0.4;
    cursor: not-allowed;
}

.pricing-option.pricing-unavailable:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.pricing-option.elite-bonus {
    border-color: rgba(250, 60, 60, 0.3);
}

.pricing-option.elite-bonus:hover {
    border-color: var(--accent-red);
    box-shadow: 0 5px 20px rgba(250, 60, 60, 0.3);
}

.pricing-option .duration {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-option .price-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pricing-option .price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.pricing-option .price-current .currency-symbol {
    font-size: 14px;
    color: var(--accent-teal);
}

.pricing-option .price-current .amount {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--accent-red);
    font-weight: 700;
}

.pricing-option .price-original {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-size: 11px;
    color: var(--text-muted);
}

.pricing-option .price-original .was-text {
    font-size: 10px;
}

.pricing-option .price-original .currency-symbol {
    font-size: 10px;
}

.pricing-option .price-original .amount-old {
    text-decoration: line-through;
    font-size: 13px;
}

.pricing-option .price-unavailable {
    font-size: 36px;
    color: var(--text-muted);
    font-weight: 300;
}

.pricing-option .freeze-bonus {
    margin-top: 8px;
    font-size: 10px;
    color: var(--accent-orange);
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(250, 60, 60, 0.1);
    padding: 4px 8px;
    border-radius: 5px;
    display: inline-block;
}

/* Add to Cart Button in Pricing Options */
.btn-add-to-cart {
    width: 100%;
    margin-top: 15px;
    padding: 10px 15px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 112, 0, 0.4);
}

.btn-add-to-cart i {
    font-size: 14px;
}

.pricing-option.pricing-unavailable .btn-add-to-cart {
    display: none;
}

.package-features-list {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-label {
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

.feature-value {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}

.feature-value i.fa-check {
    color: var(--accent-teal);
    margin-right: 5px;
}

.feature-value i.fa-times {
    color: var(--text-muted);
}

.feature-partial {
    color: #FFA500;
}

.feature-no {
    color: var(--text-muted);
}

.bonus-row {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 15px;
    border-bottom: none;
}

.bonus-row .feature-label {
    font-weight: 700;
    color: var(--accent-red);
}

.bonus-row .feature-value {
    color: var(--accent-teal);
}

.btn-package {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.btn-elite {
    background: linear-gradient(90deg, var(--accent-red), #d63333);
    color: var(--text-primary);
}

.btn-elite:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(250, 60, 60, 0.6);
}

/* Package FAQ */
.package-faq {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(250, 60, 60, 0.2);
}

.faq-title {
    font-family: var(--font-display);
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 216, 214, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 17px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-question {
    background: transparent !important;
    opacity: 0.6;
    pointer-events: auto;
}

.faq-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 216, 214, 0.1);
    border-radius: 10px;
}

.faq-text {
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    color: var(--accent-teal);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, margin-top 0.4s ease;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 10px 30px 30px 85px;
    margin-top: 0;
    display: block;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.faq-answer ul li::before {
    content: "→";
    position: absolute;
    left: -15px;
    color: var(--accent-teal);
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Final CTA Banner */
.package-final-cta {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.15), rgba(0, 216, 214, 0.15));
    border: 2px solid var(--accent-red);
    border-radius: 20px;
    padding: 60px 40px;
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.final-cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    font-size: 18px;
    padding: 20px 50px;
}

/* ===== TOOLS ===== */
.tools {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

/* Tools Page - Standalone page styling */
.tools-page {
    padding-top: 180px; /* Space for fixed navbar */
    min-height: 100vh;
}

/* Featured Tool Container */
.featured-tool-container {
    background: linear-gradient(135deg, rgba(0, 216, 214, 0.05), rgba(250, 60, 60, 0.05));
    border: 2px solid rgba(0, 216, 214, 0.2);
    border-radius: 25px;
    padding: 50px 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.featured-tool-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 216, 214, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.featured-tool-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.featured-tool-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--accent-teal);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-tool-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Other Tools Header */
.other-tools-header {
    text-align: center;
    margin: 60px 0 40px;
}

.other-tools-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.other-tools-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-red));
}

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

.tool-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-teal);
    box-shadow: 0 10px 40px rgba(0, 216, 214, 0.2);
}

.tool-icon {
    font-size: 60px;
    text-align: center;
    margin: 30px 0 20px;
}

.tool-header {
    text-align: center;
    padding: 0 30px 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.tool-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--accent-teal);
}

.tool-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.tool-body {
    padding: 30px;
    flex-grow: 1;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.input-half {
    margin-bottom: 0;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-darker);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: rgba(0, 216, 214, 0.05);
}

.btn-tool {
    width: 100%;
    background: var(--accent-teal);
    color: var(--bg-dark);
    margin-top: 10px;
    font-weight: 700;
}

.btn-tool:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 216, 214, 0.4);
}

.tool-result {
    margin-top: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.1), rgba(0, 216, 214, 0.1));
    border: 2px solid var(--accent-red);
    border-radius: 12px;
    text-align: center;
    display: none;
}

.tool-result.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tool-result strong {
    font-size: 28px;
    color: var(--accent-red);
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.tool-bonus {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--accent-teal);
    border-radius: 8px;
}

.tool-bonus p {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

.tool-cta {
    padding: 20px 30px 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.btn-tool-cta {
    width: 100%;
    background: var(--accent-red);
    color: var(--text-primary);
}

.btn-tool-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(250, 60, 60, 0.4);
}

/* Additional Tools */
.tools-additional {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.download-card,
.macro-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.download-card:hover,
.macro-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.download-icon,
.macro-icon {
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.download-content h3,
.macro-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--accent-orange);
}

.download-content p,
.macro-card > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-download {
    flex: 1;
    min-width: 140px;
    background: var(--accent-teal);
    color: var(--bg-dark);
    font-weight: 700;
    text-decoration: none;
    justify-content: center;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 216, 214, 0.4);
}

.download-upsell {
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.download-upsell p {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.btn-upsell {
    background: linear-gradient(90deg, var(--accent-red), #d63333);
    color: var(--text-primary);
}

.btn-upsell:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(250, 60, 60, 0.4);
}

/* Macro Calculator */
.macro-inputs {
    margin-bottom: 25px;
}

.macro-inputs .input-group {
    margin-bottom: 15px;
}

.macro-result {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.macro-result.show {
    opacity: 1;
    transform: translateY(0);
}

.macro-tips {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 165, 2, 0.05);
    border: 2px solid var(--accent-yellow);
    border-radius: 12px;
}

.macro-tips h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--accent-yellow);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.macro-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.macro-tips li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 0;
    margin-bottom: 8px;
}

.macro-tips li:last-child {
    margin-bottom: 0;
}

.macro-tips strong {
    color: var(--accent-orange);
}

.macro-cta {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.macro-cta .btn {
    min-width: 250px;
}

/* ===== TESTIMONIALS - MIXED FORMAT ===== */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.testimonials .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Quote Carousel Strip */
.quote-carousel {
    margin: 60px 0;
    overflow: hidden;
    background: linear-gradient(90deg, var(--bg-card) 0%, rgba(250, 60, 60, 0.05) 50%, var(--bg-card) 100%);
    padding: 40px 0;
    position: relative;
}

.quote-track {
    display: flex;
    gap: 40px;
    animation: quoteScroll 30s linear infinite;
    width: max-content;
}

@keyframes quoteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.quote-slide {
    min-width: 400px;
    padding: 0 20px;
}

.quote-content {
    text-align: center;
}

.quote-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 60px;
    color: var(--accent-red);
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.quote-author {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mixed Format Grid */
.testimonials-mixed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.testimonial-block {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-block:hover {
    transform: translateY(-10px);
    border-color: var(--accent-teal);
    box-shadow: 0 20px 60px rgba(0, 216, 214, 0.2);
}

/* Before/After Block */
.before-after-block {
    padding: 0;
}

.before-after-images {
    display: flex;
    position: relative;
}

.ba-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

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

.ba-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 8px;
    z-index: 2;
}

.ba-image.after .ba-label {
    background: var(--accent-teal);
}

.ba-caption {
    padding: 30px;
}

.ba-caption h4 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--accent-red);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.ba-caption p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.ba-author {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Results Metrics Block (replaces before/after until assets available) */
.results-metrics-block {
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.05), rgba(0, 216, 214, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}

.results-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.results-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-red), #d63333);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.results-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.results-location {
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 1px;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.metric-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-teal);
    transform: translateY(-2px);
}

.metric-icon {
    font-size: 32px;
    line-height: 1;
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-teal);
    line-height: 1;
}

.metric-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-quote {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--accent-red);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
}

.results-quote p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

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

.star-rating {
    color: #FFD700;
    font-size: 20px;
    letter-spacing: 3px;
}

.verified-badge {
    color: var(--accent-teal);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* WhatsApp Block */
.whatsapp-block {
    background: #0a0a0a;
    padding: 0;
}

.whatsapp-header {
    background: #1f1f1f;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wa-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.wa-info {
    display: flex;
    flex-direction: column;
}

.wa-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

.wa-status {
    font-size: 13px;
    color: #25D366;
}

.wa-icon {
    width: 24px;
    height: 24px;
    color: #25D366;
}

.whatsapp-messages {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(to bottom, #0a0a0a, #0f0f0f);
}

.wa-message {
    max-width: 75%;
    padding: 12px 18px;
    border-radius: 12px;
    position: relative;
    animation: messageSlide 0.3s ease;
}

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

.wa-message.received {
    align-self: flex-start;
    background: #1f1f1f;
    border-bottom-left-radius: 4px;
}

.wa-message.sent {
    align-self: flex-end;
    background: #005c4b;
    border-bottom-right-radius: 4px;
}

.wa-message p {
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 5px;
}

.wa-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    display: block;
}

/* Video Block */
.video-block {
    padding: 0;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.1) 0%, rgba(0, 216, 214, 0.1) 100%), 
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=800&h=600&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.video-placeholder:hover {
    transform: scale(1.05);
}

.play-icon {
    width: 80px;
    height: 80px;
    color: var(--accent-red);
    filter: drop-shadow(0 4px 20px rgba(250, 60, 60, 0.5));
    transition: all 0.3s ease;
    z-index: 2;
}

.video-placeholder:hover .play-icon {
    transform: scale(1.2);
    color: var(--text-primary);
}

.video-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.video-duration {
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

.video-caption {
    padding: 30px;
}

.video-caption h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.video-caption p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.video-author {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quote Photo Block */
.quote-photo-block {
    padding: 0;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.3);
}

.quote-photo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
}

.quote-large {
    font-size: 26px;
    font-weight: 500;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.quote-rating {
    font-size: 24px;
    color: var(--accent-red);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.quote-meta {
    display: block;
    color: var(--text-secondary);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Before/After Gallery Section */
.ba-gallery-section {
    margin: 80px 0 60px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 50px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.ba-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ba-gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.ba-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 216, 214, 0.3);
}

.ba-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.4s ease;
}

.ba-gallery-item:hover .ba-gallery-img {
    filter: grayscale(0%);
}

.ba-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

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

.ba-result {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-red);
    letter-spacing: 1px;
}

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.1) 0%, rgba(0, 216, 214, 0.1) 100%);
    border-radius: 20px;
    margin-top: 60px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 56px);
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.testimonials-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 20px 50px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.testimonials-cta .cta-button:hover {
    background: var(--accent-teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 216, 214, 0.4);
}

.testimonials-cta .whatsapp-icon {
    width: 28px;
    height: 28px;
}

/* ===== SMART CHATBOT ASSISTANT ===== */

/* Chatbot Container */
.chatbot-container {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 1000;
}

/* Chatbot Toggle Button */
.chatbot-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-teal));
    border: none;
    box-shadow: 0 8px 30px rgba(0, 216, 214, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    animation: chatbotPulse 2s ease-in-out infinite;
}

@keyframes chatbotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(0, 216, 214, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 216, 214, 0.6);
    }
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

.chatbot-toggle i {
    font-size: 28px;
    color: var(--text-primary);
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    border: 3px solid var(--bg-dark);
    animation: badgeBounce 1s ease-in-out infinite;
}

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

/* Chatbot Window */
.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 600px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: chatbotSlideIn 0.3s ease;
}

.chatbot-window.active {
    display: flex;
}

@keyframes chatbotSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Chatbot Header */
.chatbot-header {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-teal));
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.chatbot-avatar i {
    font-size: 20px;
    color: var(--text-primary);
}

.chatbot-header-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00FF00;
    animation: statusBlink 2s ease-in-out infinite;
}

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

.chatbot-close {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-close i {
    font-size: 16px;
    color: var(--text-primary);
}

/* Chatbot Messages Area */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 400px;
    background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--accent-teal);
    border-radius: 10px;
}

.chatbot-message {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    animation: messageSlideIn 0.3s ease;
}

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

.chatbot-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar i {
    font-size: 16px;
    color: var(--text-primary);
}

.chatbot-message.user .message-avatar {
    background: rgba(255, 255, 255, 0.1);
}

.message-bubble {
    max-width: 70%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 12px 16px;
    position: relative;
}

.chatbot-message.bot .message-bubble {
    border-bottom-left-radius: 4px;
}

.chatbot-message.user .message-bubble {
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.2), rgba(0, 216, 214, 0.2));
    border: 1px solid rgba(0, 216, 214, 0.3);
    border-bottom-right-radius: 4px;
}

.message-bubble p {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.message-time {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Chatbot Options */
.chatbot-options {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
}

.option-button {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.option-button:last-child {
    margin-bottom: 0;
}

.option-button:hover {
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.2), rgba(0, 216, 214, 0.2));
    border-color: var(--accent-teal);
    transform: translateX(5px);
}

.option-button i {
    font-size: 18px;
    color: var(--accent-teal);
}

/* FAQ Section */
.chatbot-faq {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
}

.faq-toggle {
    width: 100%;
    background: var(--accent-red);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.faq-toggle:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

.faq-menu {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 10px;
}

.faq-item {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    margin-bottom: 5px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    background: rgba(0, 216, 214, 0.1);
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Chatbot Input */
.chatbot-input {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: rgba(0, 216, 214, 0.1);
}

.chatbot-send {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-red);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-send:hover {
    background: var(--accent-teal);
    transform: scale(1.1);
}

.chatbot-send i {
    font-size: 16px;
    color: var(--text-primary);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 10px 0;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-teal);
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Package Recommendation Card */
.package-recommendation {
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.1), rgba(0, 216, 214, 0.1));
    border: 2px solid var(--accent-teal);
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
}

.package-recommendation h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--accent-teal);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.package-recommendation p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.package-recommendation .btn-package {
    width: 100%;
    background: var(--accent-red);
    color: var(--text-primary);
    border: none;
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-recommendation .btn-package:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

/* ===== TRANSFORMATION SIMULATOR ===== */
.transformation-simulator {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.transformation-simulator::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 216, 214, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Simulator Tabs */
.simulator-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 20px 40px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tab-btn i {
    font-size: 20px;
}

.tab-btn:hover {
    border-color: var(--accent-teal);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 216, 214, 0.3);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-teal));
    border-color: var(--accent-teal);
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 216, 214, 0.4);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

/* Simulator Grid */
.simulator-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Input Panel */
.simulator-input-panel,
.cost-input-panel {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.simulator-input-panel::before,
.cost-input-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-teal));
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input,
.input-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: rgba(0, 216, 214, 0.1);
    box-shadow: 0 0 20px rgba(0, 216, 214, 0.2);
}

.btn-simulate,
.btn-calculate-cost {
    width: 100%;
    background: var(--accent-red);
    color: var(--text-primary);
    border: none;
    padding: 18px 30px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    box-shadow: 0 6px 25px rgba(250, 60, 60, 0.4);
}

.btn-simulate:hover,
.btn-calculate-cost:hover {
    background: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 216, 214, 0.5);
}

/* Output Panel */
.simulator-output-panel,
.cost-output-panel {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

/* Prediction Summary */
.prediction-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.summary-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-stat:hover {
    border-color: var(--accent-teal);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 216, 214, 0.2);
}

.summary-stat i {
    font-size: 36px;
    color: var(--accent-red);
    margin-bottom: 15px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

/* Chart Container */
.chart-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

/* Comparison Box */
.comparison-box {
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.1), rgba(0, 216, 214, 0.1));
    border: 2px solid var(--accent-teal);
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.comparison-box i {
    font-size: 32px;
    color: var(--accent-teal);
}

.comparison-box p {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Milestone Tracker */
.milestone-tracker {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
}

.milestone-tracker h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.milestones-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-red);
    transition: all 0.3s ease;
}

.milestone-item:hover {
    background: rgba(0, 216, 214, 0.1);
    border-left-color: var(--accent-teal);
    transform: translateX(5px);
}

.milestone-week {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-teal);
    min-width: 80px;
}

.milestone-weight {
    color: var(--text-primary);
    font-size: 16px;
}

/* Body Type Selector */
.body-type-selector {
    text-align: center;
    margin: 40px 0;
}

.body-type-description {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 20px 0 40px;
}

.body-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.body-type-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.body-type-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 216, 214, 0.3);
}

.body-type-card.selected {
    border-color: var(--accent-red);
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.1), rgba(0, 216, 214, 0.1));
}

.body-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body-type-icon i {
    font-size: 36px;
    color: var(--text-primary);
}

.body-type-card h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.body-type-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-select-type {
    background: var(--accent-red);
    color: var(--text-primary);
    border: none;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-type:hover {
    background: var(--accent-teal);
    transform: scale(1.05);
}

/* Body Type Results */
.body-type-results {
    margin-top: 50px;
}

.results-title {
    font-family: var(--font-heading);
    font-size: 32px;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.results-title span {
    color: var(--accent-teal);
}

.results-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 40px;
}

.transformation-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.transformation-example-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.transformation-example-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 216, 214, 0.3);
}

.example-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.2), rgba(0, 216, 214, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-result-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}

.example-content {
    padding: 25px;
}

.example-content h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.example-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Body Type Insights */
.body-type-insights {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.body-type-insights h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.insight-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.insight-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--accent-teal);
}

.insight-item i {
    font-size: 24px;
    color: var(--accent-teal);
    margin-top: 5px;
}

.insight-text {
    flex: 1;
}

.insight-text h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.insight-text p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Cost Calculator */
/* TDEE Calculator (replaces cost calculator) */
.tdee-calculator-grid,
.cost-calculator-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.tdee-input-panel {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.panel-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.btn-calculate-tdee {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-red), #d63333);
    color: var(--text-primary);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-calculate-tdee:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(250, 60, 60, 0.4);
}

.btn-calculate-tdee i {
    margin-right: 10px;
}

.tdee-output-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tdee-results {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.tdee-main-result {
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.15), rgba(0, 216, 214, 0.15));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.result-icon {
    font-size: 60px;
    line-height: 1;
}

.result-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.result-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-value {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--accent-teal);
    line-height: 1;
}

.result-unit {
    font-size: 16px;
    color: var(--text-muted);
}

.tdee-goal-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.goal-result {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.goal-icon {
    font-size: 32px;
}

.goal-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.goal-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.goal-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.goal-note {
    font-size: 11px;
    color: var(--text-muted);
}

.bmr-section {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
}

.bmr-section h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.bmr-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.bmr-explanation {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.macro-recommendations {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
}

.macro-recommendations h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.macro-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.macro-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.macro-name {
    font-weight: 600;
    color: var(--text-secondary);
}

.macro-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.macro-cals {
    font-size: 12px;
    color: var(--text-muted);
}

.tdee-tips {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
}

.tdee-tips h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.tdee-tips ul {
    list-style: none;
    padding: 0;
}

.tdee-tips li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.tdee-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
}

.cost-calculator-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.cost-breakdown {
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.1), rgba(0, 216, 214, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-item.highlight {
    background: rgba(0, 216, 214, 0.1);
    padding: 25px 30px;
    margin: 20px -30px;
    border-radius: 15px;
    border: 2px solid var(--accent-teal);
}

.cost-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.cost-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.cost-item.highlight .cost-value {
    color: var(--accent-teal);
    font-size: 42px;
}

/* Cost Comparison */
.cost-comparison {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.cost-comparison h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 16px;
}

.comparison-item.waste {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.comparison-item.investment {
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.2), rgba(0, 216, 214, 0.2));
    border: 2px solid var(--accent-teal);
    color: var(--text-primary);
}

.comparison-item i {
    font-size: 24px;
}

.comparison-item.waste i {
    color: var(--text-muted);
}

.comparison-item.investment i {
    color: var(--accent-red);
}

/* ROI Section */
.roi-section {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.roi-section h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
}

.roi-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.roi-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 4px solid var(--accent-red);
    transition: all 0.3s ease;
}

.roi-item:hover {
    background: rgba(0, 216, 214, 0.1);
    border-left-color: var(--accent-teal);
    transform: translateX(5px);
}

.roi-item i {
    font-size: 24px;
    color: var(--accent-teal);
}

.roi-item span {
    color: var(--text-primary);
    font-size: 15px;
}

.roi-conclusion {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    padding: 30px;
    background: rgba(0, 216, 214, 0.1);
    border-radius: 15px;
    border: 2px solid var(--accent-teal);
}

.roi-conclusion strong {
    color: var(--accent-teal);
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}

/* Simulator CTA */
.simulator-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.1), rgba(0, 216, 214, 0.1));
    border-radius: 20px;
    margin-top: 60px;
}

.simulator-cta h3 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.simulator-cta p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.btn-simulator-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 22px 50px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(250, 60, 60, 0.4);
}

.btn-simulator-cta:hover {
    background: var(--accent-teal);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 216, 214, 0.5);
}

/* ===== SCARCITY & URGENCY SYSTEM ===== */

/* Urgency Banner - Next Batch Countdown */
/* Seasonal Badge */
.seasonal-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(250, 60, 60, 0.2);
    border: 2px solid var(--accent-red);
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 40px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 60, 60, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(250, 60, 60, 0);
    }
}

.seasonal-badge i {
    font-size: 18px;
    color: var(--accent-red);
}

.seasonal-badge span {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* Limited Spots Counter */
.spots-counter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.spots-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, var(--glow-orange) 0%, transparent 50%);
    pointer-events: none;
}

.spots-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.spots-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.spots-icon {
    font-size: 32px;
    color: var(--accent-orange);
    animation: userPulse 2s ease-in-out infinite;
}

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

.spots-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 42px);
    letter-spacing: 2px;
    color: var(--text-primary);
}

.spots-visual {
    background: var(--bg-card);
    border: 2px solid rgba(250, 60, 60, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.spots-progress-container {
    position: relative;
    margin-bottom: 40px;
}

.spots-markers {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.spot-marker {
    flex: 1;
    height: 60px;
    border-radius: 10px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.spot-marker.filled {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
    box-shadow: 0 4px 20px var(--glow-orange);
    animation: fillPulse 2s ease-in-out infinite;
}

@keyframes fillPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.spot-marker.filled::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.spot-marker.empty {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.spots-progress-bar {
    height: 8px;
    background: var(--accent-red);
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 2px 10px rgba(250, 60, 60, 0.5);
}

.spots-counter-display {
    margin-top: 30px;
}

.spots-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.spots-taken {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(250, 60, 60, 0.5);
    animation: numberCount 2s ease;
}

@keyframes numberCount {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.spots-divider {
    font-size: 48px;
    color: var(--text-secondary);
    font-weight: 300;
}

.spots-total {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--text-secondary);
    line-height: 1;
}

.spots-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.spots-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(250, 60, 60, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
}

.spots-urgency i {
    font-size: 20px;
    color: var(--accent-red);
    animation: warningBlink 1.5s ease-in-out infinite;
}

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

.spots-urgency p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.spots-urgency strong {
    color: var(--accent-red);
    font-weight: 700;
}

.spots-cta {
    display: inline-block;
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 20px 50px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(250, 60, 60, 0.4);
}

.spots-cta:hover {
    background: var(--accent-teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 216, 214, 0.5);
}

/* Recent Activity Feed */
.activity-feed {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
}

.activity-notification {
    background: var(--bg-card);
    border: 2px solid rgba(0, 216, 214, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    animation: slideInLeft 0.5s ease, slideOutLeft 0.5s ease 4.5s;
    cursor: pointer;
    transition: all 0.3s ease;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.activity-notification:hover {
    transform: translateX(5px);
    border-color: var(--accent-teal);
}

.activity-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-text {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.activity-text strong {
    color: var(--accent-teal);
    font-weight: 600;
}

.activity-time {
    color: var(--text-muted);
    font-size: 12px;
}

.activity-icon {
    font-size: 20px;
    color: var(--accent-teal);
}

/* ===== FAQs SECTION ===== */
.faqs {
    padding: var(--section-padding);
    background: var(--bg-darker);
    position: relative;
    z-index: 1;
    isolation: isolate;
}

/* Ensure no decorative elements overlap FAQ content */
.faqs::before,
.faqs::after {
    z-index: -1 !important;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.faq-item:hover {
    border-color: rgba(255, 99, 72, 0.3);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--accent-orange);
    box-shadow: 0 5px 20px rgba(255, 99, 72, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 99, 72, 0.05);
}

.faq-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: var(--accent-orange);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 5;
}

.faq-answer strong {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Override any global decorative elements within FAQ section */
.faqs * {
    position: relative;
}

.faqs .faq-item {
    background: var(--bg-card) !important;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(255, 99, 72, 0.1), rgba(255, 165, 2, 0.1));
    border: 2px solid var(--accent-orange);
    border-radius: 20px;
}

.faq-cta h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.faq-cta .btn {
    font-size: 18px;
    padding: 18px 40px;
}

/* Responsive FAQs */
@media (max-width: 768px) {
    .faqs .section-subtitle {
        margin-bottom: 40px !important; /* Add space between subtitle and first FAQ */
    }
    
    .faqs .section-header {
        margin-bottom: 50px !important; /* Extra space for section header */
    }
    
    .faq-grid {
        gap: 20px;
        padding: 0 10px;
        margin-top: 50px !important; /* Force spacing above FAQ grid */
    }
    
    .faq-question {
        padding: 20px;
        gap: 12px;
        font-size: 16px;
    }
    
    .faq-icon {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
    
    .faq-text {
        font-size: 15px;
    }
    
    .faq-toggle {
        font-size: 24px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 55px;
    }
    
    .faq-answer p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .faq-cta {
        padding: 40px 20px;
    }
    
    .faq-cta h3 {
        font-size: 26px;
    }
    
    .faq-cta p {
        font-size: 16px;
    }
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--bg-dark);
    text-align: center;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 70px);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.contact-subtitle {
    color: var(--text-secondary);
    font-size: 20px;
    margin-bottom: 50px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-contact {
    min-width: 280px;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 216, 214, 0.2);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-info-card a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin: 8px 0;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--accent-teal);
    transform: translateX(5px);
}

/* Payment Methods Section */
.payment-methods-section {
    margin: 60px 0 40px 0;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.05), rgba(0, 216, 214, 0.05));
    border: 2px solid rgba(250, 60, 60, 0.2);
    border-radius: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.payment-title {
    font-family: var(--font-display);
    font-size: 32px;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.payment-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.payment-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.payment-egypt {
    border-color: rgba(29, 209, 161, 0.3);
}

.payment-egypt:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 10px 30px var(--glow-teal);
}

.payment-international {
    border-color: var(--accent-orange);
}

.payment-international:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 30px var(--glow-orange);
}

.payment-ksa {
    border-color: rgba(250, 60, 60, 0.3);
}

.payment-ksa:hover {
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(250, 60, 60, 0.4);
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.payment-flag {
    font-size: 32px;
}

.payment-header h4 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--accent-teal);
    letter-spacing: 1px;
    margin: 0;
}

.payment-method {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.payment-method:last-child {
    margin-bottom: 0;
}

.payment-method-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.payment-method-header i {
    color: var(--accent-teal);
    font-size: 20px;
}

.payment-method-header strong {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.payment-details {
    padding-left: 30px;
}

.payment-number {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: var(--accent-red);
    font-weight: 700;
    margin: 8px 0;
    letter-spacing: 1px;
}

.payment-name {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 5px 0;
    font-style: italic;
}

.payment-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-teal);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.payment-link:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

.payment-link i {
    font-size: 12px;
}

.payment-contact {
    margin: 0;
}

.payment-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.payment-whatsapp-link:hover {
    color: #25D366;
}

.payment-whatsapp-link i {
    color: #25D366;
    font-size: 16px;
}

/* Bank Transfer Details */
.payment-bank-transfer {
    background: rgba(250, 60, 60, 0.05);
    border: 1px solid rgba(250, 60, 60, 0.2);
}

.payment-bank-details {
    padding-left: 0;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 15px;
    min-height: 40px;
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-label {
    font-size: 13px;
    color: var(--text-secondary);
    min-width: 120px;
    text-align: right;
    white-space: nowrap;
    padding-top: 2px;
}

.bank-value {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    text-align: left;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
}

.bank-iban {
    color: var(--accent-red);
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow-x: auto;
    line-height: 1.4;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    padding: 2px 0;
}

/* Scrollbar styling for IBAN and bank values */
.bank-iban::-webkit-scrollbar,
.bank-value::-webkit-scrollbar {
    height: 4px;
}

.bank-iban::-webkit-scrollbar-track,
.bank-value::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.bank-iban::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 2px;
}

.bank-value::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.bank-iban::-webkit-scrollbar-thumb:hover,
.bank-value::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Bank Details Toggle Button */
.bank-details-toggle {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-red), rgba(250, 60, 60, 0.8));
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.bank-details-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(250, 60, 60, 0.4);
    background: linear-gradient(135deg, rgba(250, 60, 60, 0.9), var(--accent-red));
}

.bank-details-toggle:active {
    transform: translateY(0);
}

.bank-details-toggle i {
    font-size: 16px;
}

.bank-details-toggle .toggle-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

/* Bank Details Content Animation */
.payment-bank-details {
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.payment-bank-details[style*="display: block"] {
    opacity: 1;
}

/* Payment Security Note */
.payment-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 200, 87, 0.1);
    border: 2px solid rgba(255, 200, 87, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 30px;
}

.payment-note i {
    font-size: 24px;
    color: var(--accent-yellow);
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-note p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.payment-note strong {
    color: var(--text-primary);
}

.payment-note a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 600;
}

.payment-note a:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
    transform: translateY(-5px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    padding: 40px 0;
    border-top: 1px solid rgba(250, 60, 60, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    overflow: hidden;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-icon:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.footer-logo p {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 16px;
}

.footer-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-text p {
    margin-bottom: 5px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.7);
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-card);
    padding: 15px 20px;
    border-radius: 10px;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-tooltip p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    /* Tablet navigation adjustments */
    
    /* AGGRESSIVE SPACE SAVING - Shift everything left */
    
    /* Smaller logo on tablet */
    .logo-icon {
        width: 80px;
        height: 80px;
    }
    
    .logo-icon img {
        width: 80px;
        height: 80px;
    }
    
    /* Reduce all gaps dramatically */
    .logo {
        gap: 10px; /* Was 15px */
        margin-right: 20px; /* Was 30px */
    }
    
    .nav-menu {
        gap: 15px; /* Was 20px */
    }
    
    .nav-right {
        gap: 15px; /* Was 20px */
    }
    
    /* Smaller text */
    .logo-text {
        font-size: 16px; /* Was 20px */
        letter-spacing: 1px; /* Was 2px */
    }
    
    .nav-link {
        font-size: 11px; /* Was 12px */
        letter-spacing: 0.5px;
    }
    
    /* Smaller language toggle */
    .lang-toggle {
        padding: 6px 15px; /* Was 8px 20px */
        font-size: 12px; /* Was 14px */
    }
    
    /* Reduce navbar padding */
    .navbar {
        padding: 12px 0; /* Was 15px */
    }
    
    .navbar.scrolled {
        padding: 8px 0; /* Was 10px */
    }
    
    /* Tablet adjustments */
    .hero-logo {
        margin-bottom: 20px;
    }
    
    .warrior-text-logo {
        width: 280px;
        height: 280px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        position: relative;
        top: 0;
    }
    
    .about .section-header,
    .packages .section-header,
    .tools .section-header,
    .faqs .section-header {
        position: relative; /* Changed from sticky */
        top: auto; /* Remove top positioning */
        padding: 20px 0;
        margin-bottom: 40px; /* Add spacing below header */
    }
    
    .section-title {
        font-size: clamp(28px, 5vw, 45px);
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .coach-photo {
        height: 450px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .package-focused {
        transform: scale(1);
    }
    
    .package-focused:hover {
        transform: scale(1.02) translateY(-10px);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    /* Chatbot Mobile Responsive */
    .chatbot-container {
        bottom: 80px;
        right: 15px;
    }
    
    .chatbot-toggle {
        width: 60px;
        height: 60px;
    }
    
    .chatbot-window {
        width: calc(100vw - 30px);
        max-width: 380px;
        max-height: 500px;
    }
    
    .chatbot-messages {
        max-height: 300px;
    }
    
    /* Simulator Mobile Responsive */
    .simulator-tabs {
        flex-direction: column;
        gap: 15px;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .simulator-grid,
    .cost-calculator-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .prediction-summary {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .body-type-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .transformation-examples-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .insight-content,
    .roi-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero {
        min-height: 600px;
        align-items: flex-start; /* Align content to top on mobile */
    }
    
    .hero-content {
        padding: 160px 20px 0 20px; /* Increased for fixed navbar */
        margin-top: 0; /* Reset any top margin */
    }
    
    .hero-logo {
        margin-bottom: 20px;
    }
    
    .warrior-logo {
        width: 300px; /* Doubled from 150px */
        height: 300px;
    }
    
    /* Adjust logo size on mobile - DOUBLED for maximum impact */
    .warrior-text-logo {
        width: 400px; /* Doubled from 200px */
        height: 400px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        padding: 16px 20px; /* Reduced horizontal padding for mobile */
        font-size: 14px;
        white-space: normal; /* Allow text wrapping on mobile */
        text-align: center;
        letter-spacing: 1px; /* Reduced letter spacing */
    }
    
    .trust-bar {
        gap: 20px;
    }
    
    .trust-item {
        font-size: 12px;
    }
    
    .brand-code-text {
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid,
    .tools-additional {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials Mobile Responsive */
    .quote-slide {
        min-width: 300px;
    }
    
    .quote-text {
        font-size: 16px;
    }
    
    .testimonials-mixed-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-teal) transparent;
    }
    
    .testimonials-mixed-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .testimonials-mixed-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }
    
    .testimonials-mixed-grid::-webkit-scrollbar-thumb {
        background: var(--accent-teal);
        border-radius: 10px;
    }
    
    .testimonial-block {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
    .before-after-images {
        flex-direction: column;
    }
    
    .ba-image {
        aspect-ratio: 4/5;
    }
    
    .ba-caption h4 {
        font-size: 24px;
    }
    
    .quote-large {
        font-size: 20px;
    }
    
    .ba-gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-red) transparent;
    }
    
    .ba-gallery-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .ba-gallery-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }
    
    .ba-gallery-grid::-webkit-scrollbar-thumb {
        background: var(--accent-red);
        border-radius: 10px;
    }
    
    .ba-gallery-item {
        flex: 0 0 70%;
        scroll-snap-align: center;
    }
    
    .ba-result {
        font-size: 24px;
    }
    
    .testimonials-cta {
        padding: 50px 30px;
    }
    
    .testimonials-cta .cta-button {
        padding: 16px 40px;
        font-size: 16px;
        width: 100%;
    }
    
    .input-row {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .btn-download {
        width: 100%;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-contact {
        min-width: auto;
    }
    
    /* Tool Section Buttons - Mobile Optimization */
    .btn-tool,
    .btn-tool-cta,
    .btn-secondary {
        padding: 14px 20px !important;
        font-size: 13px !important;
        white-space: normal !important;
        line-height: 1.4;
        min-height: 48px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .btn-tool i,
    .btn-tool-cta i,
    .btn-secondary i {
        font-size: 14px;
        margin-right: 6px;
    }
    
    /* Tool Cards - Mobile Padding */
    .tool-card,
    .download-card,
    .macro-card {
        padding: 25px 20px !important;
    }
    
    .tool-card h3,
    .download-card h3,
    .macro-card h3 {
        font-size: 18px !important;
    }
    
    /* Tool Headings - Mobile Text Optimization */
    .featured-tool-title {
        font-size: 20px !important;
        letter-spacing: 0.5px !important;
        line-height: 1.3;
        padding: 0 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .panel-title {
        font-size: 18px !important;
        letter-spacing: 0.5px !important;
        line-height: 1.3;
        padding: 0 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .featured-tool-subtitle,
    .panel-subtitle {
        font-size: 13px !important;
        line-height: 1.5;
        padding: 0 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* TDEE Calculator Container - Mobile Optimization */
    .featured-tool-container {
        padding: 25px 15px !important;
        margin-bottom: 40px;
    }
    
    .featured-tool-header {
        margin-bottom: 25px;
    }
    
    .tdee-calculator-grid,
    .cost-calculator-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
        margin-top: 25px;
    }
    
    .tdee-input-panel {
        padding: 20px 15px !important;
    }
    
    .input-row {
        grid-template-columns: 1fr !important;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .input-group {
        margin-bottom: 15px !important;
    }
    
    .input-group input,
    .input-group select {
        padding: 12px 15px !important;
        font-size: 14px;
    }
    
    .btn-calculate-tdee {
        padding: 14px 10px !important;
        font-size: 13px !important;
        letter-spacing: 0.5px !important;
        margin-top: 5px;
    }
    
    /* TDEE Output Panels - Mobile Optimization */
    .tdee-output-panel {
        gap: 20px;
    }
    
    .tdee-main-result {
        padding: 20px 12px !important;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .result-icon {
        font-size: 40px;
    }
    
    .result-value {
        font-size: 36px !important;
    }
    
    .result-label,
    .result-unit {
        font-size: 13px !important;
    }
    
    .tdee-goal-results {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .goal-result {
        padding: 15px 12px !important;
        gap: 12px;
    }
    
    .goal-icon {
        font-size: 24px;
    }
    
    .goal-value {
        font-size: 24px !important;
    }
    
    .goal-label {
        font-size: 11px !important;
    }
    
    .goal-note {
        font-size: 10px !important;
    }
    
    .bmr-section,
    .macro-recommendations,
    .tdee-tips {
        padding: 15px 12px !important;
    }
    
    .bmr-section h4,
    .macro-recommendations h4,
    .tdee-tips h4 {
        font-size: 16px !important;
        margin-bottom: 12px;
    }
    
    .bmr-value {
        font-size: 20px !important;
    }
    
    .bmr-explanation {
        font-size: 12px !important;
    }
    
    .macro-item {
        padding: 12px 10px !important;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .macro-value {
        font-size: 20px !important;
    }
    
    .macro-name,
    .macro-cals {
        font-size: 11px !important;
    }
    
    .tdee-tips li {
        padding: 10px 0 10px 20px;
        font-size: 12px !important;
    }
    
    /* Read More Button - Mobile */
    .btn-read-more {
        padding: 10px 18px;
        font-size: 12px;
        gap: 8px;
    }
    
    .btn-read-more i:first-child {
        font-size: 14px;
    }
    
    .btn-read-more i:last-child {
        font-size: 10px;
    }
    
    /* Mobile section headers - no sticky positioning */
    .about .section-header,
    .packages .section-header,
    .tools .section-header,
    .faqs .section-header {
        padding: 20px 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    
    .seasonal-badge {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .seasonal-badge span {
        font-size: 11px;
    }
    
    .spots-counter {
        padding: 60px 0;
    }
    
    .spots-visual {
        padding: 30px 20px;
    }
    
    .spots-markers {
        gap: 10px;
    }
    
    .spot-marker {
        height: 50px;
    }
    
    .spot-marker.filled::after {
        font-size: 20px;
    }
    
    .spots-taken,
    .spots-total {
        font-size: 56px;
    }
    
    .spots-label {
        font-size: 12px;
    }
    
    .spots-cta {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .activity-feed {
        left: 15px;
        right: 15px;
        max-width: none;
        bottom: 80px;
    }
    
    .activity-notification {
        padding: 12px 15px;
    }
    
    .activity-avatar {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .activity-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 12px; /* Even smaller on very small screens */
        letter-spacing: 0.5px; /* Very tight spacing */
    }
    
    .lang-toggle {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .coach-photo {
        height: 350px;
    }
    
    .greeting-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .wave-emoji {
        font-size: 20px;
    }
    
    .coach-tagline {
        font-size: 22px;
        padding-left: 15px;
    }
    
    .story-block {
        padding: 20px;
    }
    
    .credentials-box,
    .method-box,
    .expectations-box {
        padding: 20px;
    }
    
    .box-title {
        font-size: 16px;
    }
    
    .credentials-list li,
    .method-list li {
        font-size: 14px;
        padding-left: 30px;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
    
    .cta-question {
        font-size: 16px;
    }
    
    .about-cta .btn {
        font-size: 14px;
        padding: 16px 30px;
        width: 100%;
    }
    
    .currency-toggle {
        flex-direction: column;
        gap: 15px;
    }
    
    .currency-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .currency-btn {
        width: 100%;
    }
    
    .package-card {
        padding: 25px 20px;
    }
    
    .package-header h3 {
        font-size: 22px;
    }
    
    .package-goal {
        font-size: 12px;
    }
    
    .amount {
        font-size: 40px;
    }
    
    .feature-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .feature-value {
        text-align: left;
    }
    
    .package-guide {
        padding: 25px 20px;
    }
    
    .guide-title {
        font-size: 20px;
    }
    
    .guide-intro {
        font-size: 14px;
    }
    
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guide-card {
        padding: 20px;
    }
    
    .guide-card h4 {
        font-size: 15px;
    }
    
    .guide-card ul li {
        font-size: 13px;
    }
    
    .guide-result {
        font-size: 12px;
    }
    
    .guide-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .guide-note i {
        font-size: 28px;
    }
    
    .package-includes-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .include-item {
        padding: 15px;
    }
    
    .include-item i {
        font-size: 20px;
    }
    
    .include-item span {
        font-size: 14px;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }
    
    .pricing-option {
        padding: 12px 8px;
    }
    
    .pricing-option .price-current .amount {
        font-size: 24px;
    }
    
    .pricing-option .freeze-bonus {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .payment-methods-section {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }
    
    .payment-title {
        font-size: 24px;
    }
    
    .payment-subtitle {
        font-size: 14px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-card {
        padding: 25px 20px;
    }
    
    .payment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .payment-flag {
        font-size: 28px;
    }
    
    .payment-header h4 {
        font-size: 18px;
    }
    
    .payment-method {
        padding: 15px;
    }
    
    .payment-method-header {
        font-size: 14px;
    }
    
    .payment-details {
        padding-left: 0;
    }
    
    .payment-number {
        font-size: 16px;
    }
    
    .bank-detail-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 10px;
        gap: 5px;
    }
    
    .bank-label {
        text-align: left;
        min-width: auto;
        font-size: 12px;
    }
    
    .bank-value {
        font-size: 13px;
        white-space: nowrap;
        overflow-x: auto;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    
    .bank-iban {
        font-size: 13px;
        letter-spacing: 0.5px;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .payment-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .payment-note i {
        font-size: 28px;
    }
    
    .payment-note p {
        font-size: 13px;
    }
    
    .bank-details-toggle {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .bank-details-toggle i {
        font-size: 14px;
    }
    
    .faq-answer {
        padding-left: 0;
    }
}

/* ========================================
   NOTIFICATION SYSTEM
   ======================================== */

.notification-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.notification {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification i {
    font-size: 20px;
    flex-shrink: 0;
}

.notification span {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.4;
}

.notification-success {
    border-color: var(--accent-teal);
}

.notification-success i {
    color: var(--accent-teal);
}

.notification-warning {
    border-color: var(--accent-orange);
}

.notification-warning i {
    color: var(--accent-orange);
}

.notification-error {
    border-color: var(--accent-red);
}

.notification-error i {
    color: var(--accent-red);
}

.notification-info {
    border-color: rgba(0, 216, 214, 0.5);
}

.notification-info i {
    color: var(--accent-teal);
}

@media (max-width: 768px) {
    .notification-container {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification {
        padding: 12px 15px;
    }
    
    .notification i {
        font-size: 18px;
    }
    
    .notification span {
        font-size: 13px;
    }
}
    
    .package-final-cta {
        padding: 40px 25px;
    }
    
    .btn-large {
        font-size: 14px;
        padding: 16px 30px;
        width: 100%;
    }
}