/* ===========================
   POWER FIT - Premium Stylesheet
   Inspired by FastFit EMS × Brand Red
   =========================== */

/* --- CSS Variables --- */
:root {
    --brand-red: #DD3032;
    --brand-red-dark: #B02426;
    --brand-red-glow: rgba(221, 48, 50, 0.3);
    --brand-red-glow-strong: rgba(221, 48, 50, 0.6);
    --bg-primary: #000000;
    --bg-secondary: #0A0A0A;
    --bg-card: #111111;
    --bg-card-hover: #1A1A1A;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(221, 48, 50, 0.5);
    --text-primary: #FFFFFF;
    --text-secondary: #A9ABB3;
    --text-muted: #666666;
    --font-family: 'Alexandria', sans-serif;
    
    --gradient-red: linear-gradient(135deg, #DD3032 0%, #A01D1E 100%);
    --gradient-text: linear-gradient(135deg, #FF4444 0%, #DD3032 50%, #FF6B6B 100%);
    --gradient-blue: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
    
    --shadow-glow: 0 8px 32px var(--brand-red-glow);
    --shadow-card: 0 10px 30px rgba(0,0,0,0.5);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --z-nav: 1000;
    --z-dropdown: 900;
    --z-modal: 1100;
    --z-social: 100;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--brand-red);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ff4444;
}

/* Page Transition */
body {
    transition: opacity 0.4s ease;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader-logo-container {
    position: relative;
    width: 150px;
    height: 150px;
}
.preloader-logo-outline {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.2);
}
.preloader-logo-fill-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    overflow: hidden;
    animation: fillUp 1.5s ease-in-out forwards;
    animation-delay: 0.2s;
}
.preloader-logo-filled {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    object-fit: contain;
}
@keyframes fillUp {
    0% { height: 0%; }
    100% { height: 100%; }
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 0.5em;
    color: var(--text-primary);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: opacity 0.4s ease-in-out;
}

img, video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Utility Classes --- */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding: 0.2em 0;
    line-height: 1.6;
}

.gradient-text-blue {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding: 0.2em 0;
    line-height: 1.6;
}

.section { padding: 120px 0; position: relative; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(221, 48, 50, 0.08);
    border: 1px solid rgba(221, 48, 50, 0.2);
    border-radius: var(--radius-full);
}

.tag-light {
    color: #00D4FF;
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.8;
    padding: 10px 0;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.title-white { color: white; }

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.9;
    margin-bottom: 32px;
}

.text-light { color: rgba(255,255,255,0.75); }

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
    border-color: var(--brand-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-primary .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(-5px);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.05);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* --- Floating Social Sidebar --- */
.social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: var(--z-social);
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    background: rgba(17,17,17,0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: white;
    border-color: var(--brand-red);
    background: var(--brand-red);
    transform: scale(1.15);
    box-shadow: var(--shadow-glow);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: var(--z-nav);
    padding: 16px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { flex-shrink: 0; }

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-accent { color: var(--brand-red); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1025px) {
    .nav-links-right {
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }
    .nav-links-left {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
}

.site-logo {
    height: 48px; /* Slightly smaller to accommodate subtext */
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.nav-logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: var(--transition-smooth);
}

.nav-logo-wrapper:hover {
    transform: scale(1.02);
}

/* PC Layout: Stacked logo text below shield */
@media (min-width: 1025px) {
    .nav-logo-wrapper {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        margin-top: 5px;
    }
    .site-logo {
        height: 52px;
    }
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* On mobile, keep them row aligned next to logo */
@media (max-width: 1024px) {
    .nav-logo-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    .logo-text-group {
        align-items: flex-start;
    }
}

.logo-title {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.power-text {
    color: #e5e5e5; /* silver/white */
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.fit-text {
    color: #DD3032; /* brand red */
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.logo-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 2px;
}

.ems-text {
    font-size: 0.65rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2.5px;
    line-height: 1;
}

.sub-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #DD3032, transparent);
    min-width: 12px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    background: var(--gradient-red);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}



/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    align-items: center;
    background: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 6px 6px 6px 12px;
    z-index: 1001;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}

.mobile-menu-btn .menu-text {
    font-weight: 800;
    color: black;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.mobile-menu-btn .menu-icon-box {
    background: #111;
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mobile-menu-btn .menu-icon-box i {
    font-size: 14px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.mobile-menu-btn.active .menu-icon-box {
    background: var(--accent-color);
}
.mobile-menu-btn.active .menu-icon-box i {
    transform: rotate(135deg);
}


/* Hide navbar content when mobile menu is active to prevent overlapping */
.navbar.menu-open .nav-container > *:not(.mobile-menu-btn) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    background: #0e0f13 !important; /* Solid premium dark background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 1000 !important; /* Force on top of all page content */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.35s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.mobile-link:hover, .mobile-link.active { color: white; }

.mobile-cta {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: var(--gradient-red);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    margin-top: 16px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed overflow: hidden to prevent cropping */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden; /* Keep background overflow hidden */
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(30%);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.8) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge, .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-red);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.8;
    margin-bottom: 24px;
    letter-spacing: -1px;
    padding: 10px 0; /* Add padding to prevent any internal clipping */
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.9;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Social Icons */
.hero-socials {
    margin: 30px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.hero-social-icon {
    color: white;
    font-size: 28px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.hero-social-icon:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px var(--brand-red-glow);
}

/* Start Here Section */
.start-here-section {
    background: var(--bg-primary);
    text-align: center;
    padding: 80px 0;
}

/* Contact WhatsApp Section */
.contact-whatsapp-section {
    background: #000000;
    color: white;
    text-align: center;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #12D164;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.whatsapp-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #12D164;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #12D164;
}
.whatsapp-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.whatsapp-highlight {
    color: #12D164;
}
.contact-whatsapp-section .section-text {
    color: #8b998f;
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 35px;
    line-height: 1.6;
}
.btn-whatsapp-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #12D164;
    color: #030805;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 45px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(18, 209, 100, 0.25);
    text-decoration: none;
}
.btn-whatsapp-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(18, 209, 100, 0.4);
    background-color: #15e06d;
    color: #030805;
}
.btn-whatsapp-new i {
    font-size: 1.4rem;
}
@media (max-width: 768px) {
    .whatsapp-title {
        font-size: 2.2rem;
    }
    .btn-whatsapp-new {
        width: 100%;
        max-width: 300px;
        padding: 14px 30px;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--brand-red);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 18px; }
}

/* --- Stats Marquee --- */
.stats-marquee {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
     /* Ensure consistent direction for marquee animation */
}

.marquee-track { overflow: hidden; }

.marquee-content {
    display: flex;
    gap: 48px;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-red);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-separator {
    color: var(--brand-red);
    opacity: 0.4;
    font-size: 0.7rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- About Preview (Split Layout) --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content { max-width: 560px; }

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: rgba(221,48,50,0.06);
    border: 1px solid rgba(221,48,50,0.15);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.feature-tag i { color: var(--brand-red); font-size: 0.75rem; }

.split-media { position: relative; }

.media-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-media-frame {
    height: 450px;
}

.about-media-frame .media-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Grayscale Image Effect */
.media-img, .page-hero-bg img, .hero-bg-img, .service-img, .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.media-img:hover, .page-hero-bg img:hover, .hero-bg-img:hover, .service-img:hover, .image-wrapper img:hover {
    filter: grayscale(0%);
}

.media-frame:hover .media-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.media-accent {
    position: absolute;
    bottom: -20px;
    inset-inline-end: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-red);
    opacity: 0.2;
    filter: blur(40px);
}

/* --- Stats Grid --- */
.stats-section { background: var(--bg-secondary); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 48px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-red);
    opacity: 0;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.stat-card:hover::before { opacity: 1; }

.stat-card-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--brand-red);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card-unit {
    font-size: 1rem;
    color: var(--brand-red);
    font-weight: 600;
}

.stat-card-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.6;
}

/* --- Services Grid --- */
.services-section { background: var(--bg-primary); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    text-align: center;
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(221,48,50,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::after { opacity: 1; }

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(221,48,50,0.08);
    border: 1px solid rgba(221,48,50,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-red);
    margin: 0 auto 24px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: var(--brand-red);
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    gap: 14px;
}

/* --- Cryo Preview --- */
.cryo-preview {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cryo-bg {
    position: absolute;
    inset: 0;
}

.cryo-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: grayscale(60%);
}

.cryo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}

.cryo-content { position: relative; z-index: 2; }

.cryo-text { max-width: 600px; }

.cryo-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cryo-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cryo-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.cryo-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- CTA Section --- */
.cta-section { padding: 80px 0; }

.cta-box {
    text-align: center;
    padding: 80px 40px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--brand-red-glow) 0%, transparent 50%);
    animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
    position: relative;
}

/* --- Footer --- */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 350px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    color: white;
    border-color: var(--brand-red);
    background: var(--brand-red);
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-link {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-link:hover { color: var(--brand-red); }

.footer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-info i { color: var(--brand-red); font-size: 0.8rem; width: 16px; }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* --- Animations --- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-down {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeDown 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Reveal */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(50px); }
.reveal-right { transform: translateX(-50px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
}

.hero-slide {
    display: none;
    animation: slideIn 0.8s ease;
}

.hero-slide.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.slider-dot.active {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: scale(1.2);
}

/* --- Goals Grid --- */
.goals-section { background: var(--bg-secondary); }

.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.goal-card {
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.goal-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.goal-card:hover::before { transform: scaleX(1); }

.goal-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(221,48,50,0.08);
    border: 1px solid rgba(221,48,50,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--brand-red);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.goal-card:hover .goal-icon {
    background: var(--brand-red);
    color: white;
    transform: scale(1.1);
}

.goal-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 16px;
    left: 20px;
    line-height: 1;
    pointer-events: none;
}

.goal-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.goal-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Cryo Benefits Grid --- */
.cryo-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.cryo-benefit-card {
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,212,255,0.1);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.cryo-benefit-card:hover {
    border-color: rgba(0,212,255,0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,212,255,0.1);
}

.cryo-benefit-card i {
    font-size: 1.3rem;
    color: #00D4FF;
    margin-bottom: 12px;
    display: block;
}

.cryo-benefit-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.cryo-benefit-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- WhatsApp Button --- */
.whatsapp-icon {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
}

.btn-whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.btn-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

/* --- CTA Buttons --- */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* --- Section Footer --- */
.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .split-layout { grid-template-columns: 1fr; gap: 48px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .goals-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .social-sidebar { display: none; }
    .cryo-text { max-width: 100%; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .goals-grid { grid-template-columns: 1fr; }
    .cryo-stats { gap: 20px; }
    .cryo-overlay { background: rgba(0,0,0,0.85); }
    .cryo-benefits-grid { grid-template-columns: 1fr; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-lg { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* --- Floating Scroll Button --- */
.floating-scroll {
    position: fixed;
    bottom: 30px;
    inset-inline-end: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(22, 23, 27, 0.8);
    border: 1px solid rgba(227, 24, 55, 0.4);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.floating-scroll.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-scroll:hover {
    background: var(--brand-red);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(227, 24, 55, 0.4);
    border-color: var(--brand-red);
}

.floating-scroll.is-bottom {
    background: var(--brand-red);
    color: white;
    border-color: var(--brand-red);
}

/* --- Language Switcher --- */
.lang-switch {
    display: flex;
    align-items: center;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-family);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.lang-btn:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
}

.lang-btn i {
    font-size: 1rem;
}

@media (max-width: 480px) {
    .cta-box { padding: 48px 24px; }
}


/* Responsive Image & Layout Fixes */
@media (max-width: 768px) {
    .section {
        padding: 60px 0 !important;
    }
    .hero-title {
        font-size: 40px !important;
    }
    .section-title {
        font-size: 32px !important;
    }
    .media-frame {
        height: 300px !important;
        width: 100% !important;
        margin-top: 20px;
    }
    .split-layout {
        flex-direction: column !important;
    }
    .split-content {
        padding-inline-end: 0 !important;
    }
}
@media (max-width: 480px) {
    .section {
        padding: 40px 0 !important;
    }
    .hero-title {
        font-size: 32px !important;
    }
    .section-title {
        font-size: 28px !important;
    }
    .media-frame {
        height: 250px !important;
    }
    /* Fix hero socials overflow & centering on mobile */
    .hero-socials {
        gap: 12px !important;
        margin: 20px 0 30px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .hero-social-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 20px !important;
    }
}


/* Pricing Section Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular {
    border-color: var(--brand-red);
    box-shadow: 0 10px 30px rgba(221, 48, 50, 0.15);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(221, 48, 50, 0.03) 100%);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    inset-inline-start: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.popular-badge {
    color: var(--brand-red);
}

.pricing-header {
    margin-top: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 20px;
}

.package-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.free-tag {
    font-size: 0.85rem;
    color: var(--brand-red);
    font-weight: 700;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.discounted-price {
    font-size: 2.1rem;
    font-weight: 900;
    color: white;
}

.discounted-price .currency {
    font-size: 0.95rem;
    font-weight: 700;
    margin-inline-start: 4px;
}

.pricing-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li i {
    color: var(--brand-red);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}


/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Always bottom left */
    background: var(--brand-red);
    color: white !important;
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--brand-red-glow);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    background: #ff3e41;
    box-shadow: 0 8px 25px rgba(221, 48, 50, 0.5);
}

.floating-whatsapp i {
    font-size: 1.25rem;
}

.floating-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    box-shadow: 0 0 0 0 rgba(221, 48, 50, 0.6);
    animation: whatsappPulse 2s infinite;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(221, 48, 50, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(221, 48, 50, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(221, 48, 50, 0);
    }
}


/* --- Vertical Background Video Frame --- */
.video-frame {
    position: relative;
    background: #000;
    width: 100%; /* Prevent width collapse inside flex container */
    max-width: 280px; /* Smartphone ratio on desktop */
    height: 500px !important;
    margin: 0 auto;
    border: 1px solid rgba(18, 209, 100, 0.15);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}
.media-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}
.media-video-overlay {
    position: absolute;
    inset: 0;
    /* Blend the top and bottom of the video frame into the dark page background */
    background: linear-gradient(to bottom, 
        rgba(3, 8, 5, 0.6) 0%, 
        rgba(3, 8, 5, 0) 25%, 
        rgba(3, 8, 5, 0) 75%, 
        rgba(3, 8, 5, 0.9) 100%
    );
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 768px) {
    .video-frame {
        max-width: 250px;
        height: 440px !important;
        margin-top: 30px;
    }
}


/* ============ PROMO POPUP STYLES ============ */
.promo-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.promo-popup.active {
    opacity: 1;
    visibility: visible;
}

.promo-popup-content {
    position: relative;
    max-width: 450px;
    width: 85%;
    background-color: #111111;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(221, 48, 50, 0.2);
    box-shadow: 0 20px 50px rgba(221, 48, 50, 0.25);
    overflow: visible;
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-popup.active .promo-popup-content {
    transform: scale(1);
}

.promo-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    background-color: var(--brand-red);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--brand-red-glow-strong);
    transition: all 0.2s ease;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .promo-popup-close {
    right: auto;
    left: -15px;
}

.promo-popup-close:hover {
    background-color: #ff4444;
    transform: scale(1.1);
}

.promo-popup-link {
    display: block;
    width: 100%;
    height: 100%;
}

.promo-popup-link img {
    display: block;
    width: 100%;
    height: auto;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    object-fit: contain;
}

.promo-popup-cta-wrapper {
    padding: 15px 20px 20px;
    background-color: #111111;
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* --- Video Section Floating Cards --- */
.video-info-card {
    position: absolute;
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(221, 48, 50, 0.25);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 15px rgba(221, 48, 50, 0.1);
    text-align: center;
    z-index: 3;
    transition: all 0.3s ease;
    animation: floatAnimation 4s ease-in-out infinite;
}
.video-info-card.card-left {
    left: 8%;
    top: 25%;
    animation-delay: 0s;
}
.video-info-card.card-right {
    right: 8%;
    top: 35%;
    animation-delay: 2s;
}
.video-info-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 6px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.video-info-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}
.video-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
    box-shadow: 0 15px 40px rgba(221, 48, 50, 0.4);
}
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@media (max-width: 1024px) {
    .video-info-card {
        display: none;
    }
}
