/* Global Tokens moved to base.css */
/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}



.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title span {
    color: var(--accent-primary);
}

/* Header/Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75); /* Increased slightly for better visibility */
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
}

header .container {
    width: 95%;
    max-width: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Nav Logo - Standard Size */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.header-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .header-logo {
        height: 36px;
    }
}

/* Desktop Only: Move logo right */
@media (min-width: 769px) {
    .logo {
        margin-left: 100px; /* Shifted even further right as requested */
    }
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.lang-btn.active,
.lang-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* brand-logo-hero removed (moved to components.css for modularity) */


/* Inner Page Big Logo */
.brand-logo-inner {
    display: block;
    width: 200px;
    /* User requested 200px */
    height: auto;
    margin: 30px auto; /* Professional breathing room */
    padding: 0;
    position: relative;
    z-index: 10;
}

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

.nav-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.cta-link {
    color: var(--accent-primary);
    font-weight: 700;
}

/* Specific Highlight for Online Coaching Link */
.nav-links a[data-i18n="nav_coaching"] {
    color: var(--accent-primary) !important;
}

/* Hamburger for Mobile - Hidden by default */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    /* Mobile Header Adjustments */
    header {
        padding: 1.0rem 0; /* Balanced comfortable size */
    }

    .logo {
        font-size: 0.85rem !important;
    }

    .lang-btn {
        padding: 1px 4px !important;
        font-size: 9px !important;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 83px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(15px);
        width: 220px; /* Slimmer width */
        height: auto;
        max-height: calc(100dvh - 160px); /* Ensured gap from bottom buttons */
        overflow-y: auto;
        padding: 1.25rem 1.25rem; /* Reduced padding */
        text-align: left;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px 0 0 20px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0.15rem 0; /* Tightened margin */
        width: 100%;
    }

    .nav-links a {
        font-size: 0.95rem; /* Slightly smaller font */
        display: block;
        padding: 8px 0; /* Reduced padding */
    }

    .mobile-lang-switcher {
        display: block !important;
        margin-top: auto;
        /* Push to bottom if space permits */
    }

    .desktop-lang-switcher {
        display: none !important;
    }
}

/* Sections */
.section-padding {
    padding: var(--spacing-xl) 0;
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -3rem;
    margin-bottom: var(--spacing-lg);
}

/* Philosophy Section V2 */
.philosophy-v2 {
    background-color: var(--bg-primary);
    overflow: hidden;
}

.section-padding-lg {
    padding: 100px 0;
}

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

.philosophy-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.philosophy-pill .heart-icon {
    font-size: 0.9rem;
}

.philosophy-pill span:not(.heart-icon) {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-primary);
    text-transform: uppercase;
}

.phil-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: #fff;
}

.phil-title span {
    display: block;
    font-family: 'Playfair Display', serif; /* Or similar serif if available, fallback to italic Outfit */
    font-style: italic;
    font-weight: 400;
    color: var(--accent-primary);
    margin-top: 5px;
}

.phil-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 440px;
    line-height: 1.6;
}

.philosophy-details-card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3.5rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote-icon {
    width: 45px;
    height: 45px;
    color: var(--accent-primary);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.phil-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.phil-para {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.phil-main-quote {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.4;
    color: #fff;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0.5rem 0;
}

.phil-para-strong {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.8;
}

.phil-welcome {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-align: center;
    margin-top: 2rem;
    letter-spacing: 0.5px;
}

.quote-icon-footer {
    width: 45px;
    height: 45px;
    color: var(--accent-primary);
    opacity: 0.6;
    position: absolute;
    bottom: 0.2rem;
    right: 1.2rem;
}

@media (max-width: 991px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .phil-title {
        font-size: 3.5rem;
    }

    .philosophy-details-card {
        padding: 2.5rem 2rem;
    }
    
    .phil-main-quote {
        font-size: 1.6rem;
    }
}


/* Hero */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    /* Header offset */
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--accent-primary);
    display: block;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* Philosophy */
.philosophy {
    padding-top: 2rem;
    /* Reduce gap */
}

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

.philosophy-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.philosophy-card h3 {
    color: var(--accent-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.service-card {
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Text Shadow for contrast over BG images */
.currency-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    outline: none;
    width: auto !important;
}

.currency-select:hover {
    border-color: var(--accent-primary);
}

.service-card h3,
.service-card .price,
.service-card .service-desc,
.service-card .service-features li,
.service-card .popular-tag {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}


.service-card.featured {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card.vip {
    border: 2px solid #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

.service-card.vip h3,
.service-card.vip .btn-outline {
    color: #FFD700 !important;
    border-color: #FFD700;
}



.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-primary);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-bottom-left-radius: 8px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    min-height: 3rem;
}

.service-features {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0;
}

.service-features li {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: "✓";
    color: var(--accent-primary);
    font-weight: bold;
}

/* =========================================
   HOLISTIC BENEFITS CARDS
   ========================================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: #0a0e14; /* Dark refined background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 182, 255, 0.3);
}

.benefit-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(56, 182, 255, 0.08); /* Faint blue bg */
    border-radius: 50%; /* Circle like screenshot */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon-wrapper svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    stroke-width: 2;
}

.benefit-card h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* =========================================
   INTERACTIVE COACH CAROUSEL (SINGLE VIEW)
   ========================================= */
.coach-carousel-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    /* Critically prevents CSS Grid expanding to fit the massive flex track */
    position: relative;
    /* Container loses padding to restore picture to absolute 100% original width */
}

.coach-carousel-viewport {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    /* Strongly masks adjacent pictures from rendering outside frame */
    border-radius: 8px;
    /* Original border style */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Original rich shadow */
}

.coach-carousel-track {
    display: flex;
    gap: 0;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    /* Force Hardware Acceleration for 60fps Mobile Swipe */
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.coach-carousel-track:active {
    cursor: grabbing;
}

.coach-card {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    /* JS strictly enforces 100% boundary width */
}

.coach-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    pointer-events: none;
    /* Prevent ghost dragging */
}

/* Minimalist Out-Of-Frame Arrows */
.coach-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    font-size: 14px;
    /* Ultra small per user request */
    padding: 10px;
    z-index: 10;
    transition: color 0.3s ease;
}

.coach-btn:hover {
    color: var(--accent-primary);
}

.coach-btn.prev {
    left: -35px;
    /* Pushed cleanly into the parent grid gap */
}

.coach-btn.next {
    right: -35px;
    /* Pushed cleanly into the parent grid gap */
}

@media (max-width: 900px) {
    .coach-btn.prev {
        left: -18px;
        /* Pushed to merge into the mobile screen boundary padding perfectly */
    }

    .coach-btn.next {
        right: -18px;
        /* Pushed to merge into the mobile screen boundary padding perfectly */
    }

    .coach-btn {
        font-size: 10px;
        /* Microscopic on mobile to strictly save space out of frame */
        padding: 5px;
    }
}

/* About Page Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

    .about-text {
        text-align: center;
    }

    .creds ul {
        list-style-position: inside;
        /* Helps centered bullets */
    }

    .coach-instagram-wrapper {
        justify-content: center !important;
    }
}

/* Coach Instagram Button */
.coach-instagram-wrapper {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.coach-instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.coach-instagram-btn:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    background: rgba(56, 182, 255, 0.05);
    /* Very light blue background tint */
    transform: translateY(-2px) scale(1.02);
    /* Slight lift and pop */
    box-shadow: 0 4px 15px var(--accent-glow);
    /* Sky blue glow */
}

.coach-instagram-btn img {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .coach-instagram-btn {
        gap: 6px;
        font-size: 0.8rem;
        padding: 2px 10px;
    }

    .coach-instagram-btn img {
        width: 20px;
        height: 20px;
    }
}

/* Transformations */
.transformation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns as requested */
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
    .transformation-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

.trans-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    overflow: hidden;
}

.trans-img-placeholder {
    height: 300px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.trans-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 12px;
    border-left: 3px solid var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.trans-info {
    padding: 1rem;
    text-align: center;
}

.center-btn {
    text-align: center;
    margin-top: 2rem;
}

/* Authority */
.authority-content {
    text-align: center;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cert-org {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    letter-spacing: 2px;
}

.cert-title {
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Animations (Restored) */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Social Buttons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    /* Gap between icons */
    margin: 2rem auto;
    /* Gap between content and icons */
}

.social-btn {
    display: block;
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.social-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.social-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}



footer {
    padding-bottom: 2rem;
    color: var(--text-secondary);
    /* Make text grey */
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Inline Icons */
/* Inline Icons */
.everfit-icon {
    display: inline-block;
    /* Ensure it stays on line */
    height: 1.3em;
    /* Slightly bigger as requested */
    width: auto;
    vertical-align: -5px;
    /* Adjusted alignment for new 1.3em size */
    margin: 0 4px;
    /* Space on both sides */
}

/* Everfit VIP App Badge Style */
.everfit-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem auto 1.5rem auto;
    padding: 10px 0;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
}

.everfit-badge:hover {
    transform: translateY(-2px);
}

.everfit-badge .everfit-icon {
    height: 5em;
    vertical-align: middle;
    margin: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* App Showcase Section */
.app-showcase {
    background: var(--bg-secondary);
    overflow: hidden;
    padding-top: 2rem;
    /* Reduced from default section-padding to close gap */
    padding-bottom: 4rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Give text a bit more space */
    gap: 3rem;
    align-items: center;
}

.showcase-img {
    text-align: center;
}

.showcase-img img {
    max-width: 80%;
    height: auto;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
    border-radius: 20px;
}

.showcase-img img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Professional Video Integration */
.video-container {
    position: relative;
    max-width: 100%;
    /* No hardcoded padding-bottom so it matches the video's natural height */
    background: transparent; /* Clean look */
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(56, 182, 255, 0.15); /* Subtle blue glow */
    border: 1px solid rgba(56, 182, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg); /* Slight premium tilt */
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    cursor: pointer;
    line-height: 0; /* Remove gap beneath video element */
}

@media (max-width: 768px) {
    .video-container {
        transform: none !important; /* Disable tilt for better visibility and performance */
        box-shadow: 0 5px 20px rgba(56, 182, 255, 0.2);
        border-radius: 8px;
    }
    
    .play-button-wrapper {
        width: 65px !important;
        height: 65px !important;
        border-width: 2px !important;
    }
    
    .play-icon {
        width: 32px !important;
        height: 32px !important;
        margin-left: 4px !important;
    }
}

.video-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 15px 50px rgba(56, 182, 255, 0.25);
}

.video-container video {
    width: 100%;
    height: auto;
    max-height: 80vh; /* Prevent it from being taller than the screen on mobile */
    border: 0;
    object-fit: contain; /* Prevents any cropping! */
    border-radius: 12px;
}

/* Custom Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(56, 182, 255, 0.45); /* Vivid Solid Fitness Sky Blue frosted tint */
    border: 1.5px solid rgba(255, 255, 255, 0.4); /* Crisp edge */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.play-button-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: var(--accent-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    filter: blur(20px); /* Soft neon backglow */
}

/* Continuous pulsating ripple */
.play-button-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-primary);
    opacity: 0;
    animation: playRipple 2.5s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

@keyframes playRipple {
    0% { transform: scale(1); opacity: 0.6; }
    50% { opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

.video-container:hover .play-button-wrapper {
    transform: scale(1.1);
    background: rgba(56, 182, 255, 0.7); /* Deep vivid sky blue on hover */
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff; 
}

.video-container:hover .play-button-wrapper::before {
    opacity: 0.5; /* Activate the soft blue glow behind button */
    transform: scale(1.2);
}

.play-icon {
    width: 36px;
    height: 36px;
    margin-left: 4px; /* Visual centering for triangle */
    transition: color 0.4s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.showcase-points {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

/* Transformations Preview */
.transformations-preview {
    padding-top: 2rem;
}

/* Special Statement */
.statement-box {
    margin: 3rem auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.special-statement {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin: 0;
}

/* Language Switcher Dropdown */
.lang-switcher {
    position: relative;
    margin-left: 2rem;
    display: inline-block;
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-trigger:hover {
    border-color: var(--accent-primary);
    background: rgba(56, 182, 255, 0.05);
}

.lang-globe {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

.lang-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 100px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.lang-switcher:hover .lang-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    text-align: left;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(56, 182, 255, 0.1);
    color: var(--accent-primary);
}

.lang-option.active {
    color: var(--accent-primary);
    font-weight: 700;
}

/* RTL Adjustments */
html[lang="ar"] .lang-dropdown-content {
    right: auto;
    left: 0;
}

html[lang="ar"] .lang-option {
    text-align: right;
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
    }
    
    .lang-dropdown-content {
        left: 50%;
        right: auto;
        transform: translate(-50%, 10px);
    }
    
    .lang-switcher:hover .lang-dropdown-content {
        transform: translate(-50%, 0);
    }
}


/* RTL Support for Arabic */
html[lang="ar"] {
    direction: rtl;
    text-align: right;
}

html[lang="ar"] .nav-links li {
    margin-left: 0;
    margin-right: 2rem;
}

html[lang="ar"] .lang-switcher {
    margin-left: 0;
    margin-right: 20px;
}

html[lang="ar"] .service-features {
    text-align: right;
}

html[lang="ar"] .service-features li,
html[lang="ar"] .creds-list li {
    padding-left: 0;
    padding-right: 1.5rem;
}

html[lang="ar"] .service-features li::before,
html[lang="ar"] .creds-list li::before {
    left: auto;
    right: 0;
}

html[lang="ar"] .popular-tag {
    right: auto;
    left: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 8px;
}

/* Intro Text Style - The "Clear Message" */
.showcase-intro {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    border-left: 0;
    padding: 0;
    background: none;
}

/* Standard Item Style - "Attractive element" */
.showcase-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    /* Minimal padding */
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: none;
    /* Remove old background */
    border: none;
    /* Remove old border */
    transform: none;
    /* Reset transform */
}

.showcase-item::before {
    content: "✔";
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.5;
    text-shadow: 0 0 10px rgba(56, 182, 255, 0.4);
    /* Glow effect on check */
}

.showcase-item:hover {
    background: none;
    transform: translateX(5px);
}

/* CTA Item Style - "Creative & Special" */
.showcase-cta {
    margin-top: 1.5rem;
    position: relative;
    padding: 1rem 0;
    font-size: 1.2rem;
    /* Larger */
    font-weight: 700;
    color: #fff;
    text-align: left;
    /* Align with text */
    background: none;
    box-shadow: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

.showcase-cta::before {
    content: "⚡";
    /* Electric bolt for impact */
    margin-right: 0.8rem;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 5px var(--accent-primary));
}

.showcase-cta strong {
    color: var(--accent-primary);
}

.showcase-cta:hover {
    transform: translateX(5px);
    background: none;
    border-color: var(--accent-primary);
}

.showcase-cta .everfit-icon {
    height: 3.5em; 
    vertical-align: middle;
    margin: 0 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-primary);
    text-decoration: none;
    cursor: pointer;
}

/* Make images clickable */
/* Protect Client Images (No Click, No Download) */
.trans-card img {
    pointer-events: none;
    /* Disables right-click menu & clicking */
    user-select: none;
    /* Disables highlighting */
    -webkit-user-drag: none;
    /* Disables dragging */
    touch-action: none;
    /* Disables touch gestures */
}

/* Removed hover brightness effect */

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showcase-item {
        text-align: left;
    }

    .showcase-img {
        display: flex;
        justify-content: center;
        gap: 15px;
        /* Space between phones */
        align-items: center;
    }

    .showcase-img img {
        transform: rotate(0);
        max-width: 45%;
        /* Fit two side-by-side */
        height: auto;
        margin-bottom: 2rem;
    }
}

/* Floating WhatsApp Button */
/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 9999;
    transition: all 0.3s ease;
    display: block;
    animation: slideInCorner 1s ease-out 0.5s backwards;
}

.floating-start-now {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 9999;
    transition: all 0.3s ease;
    display: none;
    /* hidden by default, shown by JS */
    animation: slideInCorner 1s ease-out 0.6s backwards;
}

@keyframes slideInCorner {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* FINAL OVERRIDES */
/* =========================================
   HORIZONTAL CAROUSEL ANIMATION
   ========================================= */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* CSS Variables for JS to read if needed, or just media queries */
}

/* Navigation Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    font-size: 16px;
    /* Very small on PC */
    padding: 10px;
    z-index: 10;
    transition: color 0.3s ease;
}

.carousel-btn:hover {
    color: var(--accent-primary);
    background: transparent;
    box-shadow: none;
}

.carousel-btn.prev {
    left: -25px;
    /* Sit outside the actual viewport entirely */
}

.carousel-btn.next {
    right: -25px;
}

@media (max-width: 768px) {
    .carousel-btn.prev {
        left: -15px;
    }

    .carousel-btn.next {
        right: -15px;
    }

    .carousel-btn {
        padding: 5px;
        font-size: 12px;
        /* Even smaller on mobile */
    }
}

.carousel-track {
    display: flex;
    gap: 20px;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    /* Force Hardware Acceleration for 60fps Mobile Swipe */
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-card {
    position: relative;
    flex-shrink: 0;
    /* Width is injected by JS to perfectly fit 3, 2, or 1 based on container */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
    aspect-ratio: 4 / 5;
    cursor: pointer;
}

.carousel-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.carousel-label {
    position: absolute;
    bottom: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.carousel-label.left {
    left: 15px;
}

.carousel-label.right {
    right: 15px;
}

/* =========================================
   DEDICATED TRANSFORMATIONS PAGE GRID
   ========================================= */
.full-transformation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Force exactly 2 side by side */
    gap: 15px;
}

.trans-card-full {
    background: #15181d;
    /* Slightly lighter than pure black to show boundaries */
    border-radius: 8px;
    overflow: hidden;
    /* User requested uncropped images for the standalone page */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.trans-card-full img {
    width: 100%;
    height: auto;
    /* Natural scale */
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .full-transformation-grid {
        grid-template-columns: 1fr;
        /* Stack on bare minimum mobile if 2 is too tight */
        gap: 20px;
    }
}

/* Ensure hover effect works on ALL cards regardless of other classes */
.service-card {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 10px 30px rgba(56, 182, 255, 0.15) !important;
    border-color: var(--accent-primary) !important;
    z-index: 10;
}

/* Contact Form Premium Style */
.contact-form {
    background: rgba(10, 10, 10, 0.8);
    /* Dark semi-transparent */
    padding: 3rem;
    border-radius: 24px;
    /* Rounded corners */
    border: 1px solid rgba(56, 182, 255, 0.2);
    /* Very fine blue border */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    /* Deep shadow */
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.contact-form:focus-within {
    border-color: rgba(56, 182, 255, 0.5);
    box-shadow: 0 20px 60px rgba(56, 182, 255, 0.1);
    transition: var(--transition-smooth);
}

.floating-whatsapp img,
.floating-start-now img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}

@media (hover: hover) {

    .floating-whatsapp:hover img,
    .floating-start-now:hover img {
        filter: drop-shadow(0 4px 15px rgba(56, 182, 255, 0.4));
    }

    .floating-whatsapp:hover,
    .floating-start-now:hover {
        transform: translateY(-2px) scale(1.1);
    }
}

/* Coaching Hero */
.coaching-hero-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-bottom: 4rem;
    overflow: visible;
}

.hero-phone {
    flex: 1;
    min-width: 0;
}

.hero-phone img {
    height: 480px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Left Phone Default */
.hero-phone.left {
    text-align: right;
}

.hero-phone.left img {
    transform: translateX(110px);
    margin-top: 0;
}

/* Right Phone Default */
.hero-phone.right {
    text-align: left;
}

.hero-phone.right img {
    transform: none;
    margin-top: 0;
}

.hero-center-content {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-top: -2rem;
}

.coaching-hero-title {
    animation-delay: 0.1s;
    margin-bottom: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    display: block;
    width: 100%;
    text-align: center;
}

/* Responsive Coaching Hero */
@media (max-width: 1024px) {
    .hero-phone img {
        height: 400px;
    }

    .coaching-hero-title {
        font-size: 3rem;
    }

    .hero-center-content {
        flex: 0 0 350px;
    }
}

@media (max-width: 900px) {
    .coaching-hero-layout {
        display: grid;
        grid-template-areas:
            "title title"
            "left right";
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        align-items: center;
    }

    .hero-center-content {
        grid-area: title;
        margin-top: 0;
        margin-bottom: 2rem;
        width: 100%;
    }

    .hero-phone {
        width: 100%;
    }

    .hero-phone.left {
        grid-area: left;
        text-align: right !important; /* Push phone towards the center */
        padding-right: 5px;
    }

    .hero-phone.right {
        grid-area: right;
        text-align: left !important; /* Push phone towards the center */
        padding-left: 5px;
    }

    .hero-phone img {
        height: 260px; /* Keep exact same size as requested! */
    }

    .hero-phone.left img {
        transform: translateX(25px) !important; /* Slightly stronger nudge to the right */
    }

    .hero-phone.right img {
        transform: none !important;
    }
}

/* Intl-Tel-Input Dark Styling */
.iti {
    width: 100%;
    color: #000;
    /* Flag text color */
}

/* Input field */
.iti__tel-input {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-subtle) !important;
    color: var(--text-primary) !important;
    padding-left: 90px !important;
    /* Make room for flag */
}

/* Dropdown list */
.iti__country-list {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

/* Dropdown items */
.iti__country {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.iti__country:hover,
.iti__country.iti__highlight {
    background-color: var(--accent-primary);
    color: #fff;
}

/* Separate dial code text */
.iti__selected-dial-code {
    color: var(--text-secondary);
}

/* VIP Card Hover Exception */
.service-card.vip:hover {
    border-color: #FFD700 !important;
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.3) !important;
}

/* Currency Switcher Styling */
.currency-select {
    background: rgba(0, 0, 0, 0.5) url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat right 0.5rem center;
    background-size: 0.6em;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff !important;
    /* Force visible text */
    padding: 0.3rem 1.5rem 0.3rem 0.5rem;
    /* Extra padding right for arrow */
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.currency-select:hover,
.currency-select:focus {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.currency-select option {
    background-color: #000;
    /* Solid black for options */
    color: #fff;
}

/* Custom Highlight for 6-Month Card */
.highlight-blue {
    border: 1px solid var(--accent-primary) !important;
    /* Fine blue edge always visible */
    transition: all 0.3s ease;
}

.highlight-blue:hover {
    box-shadow: 0 0 35px rgba(56, 182, 255, 0.4) !important;
    /* Shining blue glow only on hover */
}

/* --- SPA UI FIXES & ENHANCEMENTS --- */
html {
    scroll-behavior: smooth;
}

/* Prevent Image Crop for Transformations Grid */
.trans-card-auto {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    aspect-ratio: 1 / 1.15;
    /* Standardized height */
}

.trans-card-auto img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Prevents cropping! */
    pointer-events: none;
    user-select: none;
}

/* Form Styles from removed contact.html */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* --- IntlTelInput Overrides for Form --- */
.iti {
    width: 100%;
    margin-bottom: 0;
}

.iti__dropdown-content {
    max-height: 220px !important;
    max-width: 260px !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    border: 1px solid var(--border-subtle) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

.iti__country-list {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    z-index: 100 !important;
    max-height: 170px !important;
    width: 260px !important;
    min-width: 200px !important;
    white-space: normal !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: none !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    font-size: 0.85rem !important;
}

.iti__country {
    padding: 8px 10px !important;
}

/* Custom Scrollbar for Country List */
.iti__country-list::-webkit-scrollbar {
    width: 6px;
}

.iti__country-list::-webkit-scrollbar-track {
    background: transparent;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.iti__country.iti__highlight {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.iti__selected-dial-code {
    color: var(--text-primary) !important;
}

.iti__country {
    white-space: nowrap !important;
}

.iti__country-name,
.iti__dial-code {
    white-space: normal !important;
    color: var(--text-primary) !important;
}

.iti__search-input {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 16px !important;
}

.iti__selected-flag {
    background-color: transparent !important;
}

.iti input,
.iti input[type=tel] {
    padding-left: 90px !important;
}

/* Header & Mobile Switches */
@media (max-width: 768px) {
    .desktop-lang-switcher {
        display: none !important;
    }

    .mobile-lang-switcher {
        display: flex !important;
        width: 100%;
        padding: 15px 0 25px 0;
        margin-top: 10px;
        justify-content: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-lang-switcher .lang-switcher {
        display: flex;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        padding: 3px;
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        gap: 3px;
    }

    .mobile-lang-switcher .lang-btn {
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.6);
        min-width: 40px;
        height: 28px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 0.65rem;
        font-weight: 600;
        transition: all 0.3s ease;
        padding: 0 8px;
        text-transform: uppercase;
    }

    .mobile-lang-switcher .lang-btn.active {
        background: var(--accent-primary);
        color: #000; /* High contrast for active selection */
        box-shadow: 0 4px 15px var(--accent-glow);
    }

    .mobile-lang-switcher .lang-btn:hover:not(.active) {
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
    }

    .lang-switcher {
        margin-left: 0;
        justify-content: center;
    }

    /* logo overrides removed - using components.css */


    /* Miniature Country Dropdown on Mobile */
    .iti__dropdown-content {
        max-width: 220px !important;
        max-height: 180px !important;
        left: 0 !important;
    }

    .iti__country-list {
        width: 220px !important;
        min-width: 180px !important;
        max-height: 130px !important;
        font-size: 0.75rem !important;
    }

    .iti__country {
        padding: 6px 8px !important;
    }
}

@media (min-width: 769px) {
    .mobile-lang-switcher {
        display: none !important;
    }
}

/* --- Intl-Tel-Input v26 Dark Theme Overrides --- */
.iti__dropdown-content {
    background-color: var(--bg-primary) !important;
    border: 1px solid var(--border-subtle) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    border-radius: 4px;
    padding: 0 !important;
}

.iti__search-input {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border: none !important;
    border-bottom: 1px solid var(--border-subtle) !important;
    border-radius: 4px 4px 0 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.iti__search-input:focus {
    border-bottom-color: var(--accent-primary) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Remove default plugin/browser focus rings on the wrapper itself */
.iti__dropdown-content:focus,
.iti__dropdown-content:focus-within,
.iti__search-input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--border-subtle) !important;
}

.iti__country {
    color: var(--text-primary) !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.iti__country-name,
.iti__dial-code {
    color: var(--text-primary) !important;
}

/* Divider line between search and list */
.iti__country-list {
    background-color: var(--bg-primary) !important;
    border-top: none !important;
    /* Rely on search input bottom border instead */
}

/* CHECKOUT PAGE STYLES */
.checkout-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.checkout-form-container {
    flex: 1;
    min-width: 300px;
}

.checkout-card-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.subscribe-btn {
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(56, 182, 255, 0.6) !important;
}

@media (max-width: 768px) {
    .checkout-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .checkout-card-container {
        order: -1;
        /* Puts the card above the form on mobile */
        position: static;
    }
}

@media (max-width: 768px) {
    /* hero overrides removed - using components.css */

}

/* Custom WebKit Scrollbar */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* RTL Arrow Direction Flip for Arabic */
[dir="rtl"] .coach-btn,
[dir="rtl"] .carousel-btn {
    transform: scaleX(-1);
}

/* =========================================
/* JOURNEY / HOW IT WORKS SECTION
/* ========================================= */
#journey {
    position: relative;
    background: none;
    /* Ready for user background */
    overflow: hidden;
}

.journey-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 180px;
    margin-bottom: 150px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Background Dashed Line */
.journey-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
    z-index: 1;
    transform: translateY(-50%);
}

.journey-step {
    position: relative;
    z-index: 2;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Step Box Connector */
.step-number {
    width: 35px;
    height: 35px;
    background: var(--accent-primary);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(56, 182, 255, 0.5);
    font-size: 1.2rem;
}

/* Text Container Styling */
.step-content {
    position: absolute;
    width: 220px;
    text-align: left;
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #fff;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Alternating Positions */
.step-bottom .step-content {
    top: 55px;
    /* Push text down */
    left: 50%;
    transform: translateX(-20%);
}

.step-top .step-content {
    bottom: 55px;
    /* Push text up */
    left: 50%;
    transform: translateX(-20%);
}

/* Mobile Responsiveness - Vertical Stack */
@media (max-width: 900px) {
    .journey-timeline {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 50px;
        margin-bottom: 50px;
        gap: 40px;
    }

    .journey-timeline::before {
        top: 0;
        bottom: 0;
        left: 17px;
        /* Align with boxes */
        width: 1px;
        height: auto;
        border-top: none;
        border-left: 2px dashed rgba(255, 255, 255, 0.2);
        transform: none;
    }

    .journey-step {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
    }

    .step-number {
        flex-shrink: 0;
        margin-right: 20px;
    }

    .step-content {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        padding-top: 5px;
    }
}

/* =========================================
   PROFESSIONAL FOOTER (REFERENCE: SST)
   ========================================= */
footer {
    background: linear-gradient(rgba(0, 0, 0, 0.91), rgba(0, 0, 0, 0.91)), url('../img/service_bg_elite.jpg') no-repeat center center/cover; /* Refined balance of darkness */
    padding: 80px 0 50px;
    color: #fff;
    border-top: 2px solid rgba(56, 182, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem; /* Reduced to close gap */
    display: inline-block;
}

.footer-brand .footer-logo span {
    color: var(--accent-primary);
}

.footer-brand-img {
    max-width: 250px; 
    height: auto;
    display: block;
    margin-bottom: 0; /* Removed to close gap */
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3)); /* Clean depth */
}

.footer-logo:hover .footer-brand-img {
    transform: scale(1.05); /* Slight interactive bump */
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

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

.footer-social-row a {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social-row a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-social-row img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1); /* Minimal white silhouette */
}

.footer-col h4 {
    color: var(--accent-primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-contact-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
}

.footer-contact-info p {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .footer-grid {
        gap: 3rem;
    }
}

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

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social-row {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 3rem;
    }
}

/* RTL Support */
[dir="rtl"] .footer-brand p {
    text-align: right;
}

[dir="rtl"] .footer-brand .footer-logo {
    text-align: right;
}

@media (max-width: 768px) {
    [dir="rtl"] .footer-grid {
        text-align: center;
    }
    [dir="rtl"] .footer-brand p {
        text-align: center;
    }
}
