/* === CSS VARIABLES & RESET === */
:root {
    --bg-dark: #050507; 
    --bg-card: rgba(0, 100, 255, 0.04); 
    --accent-blue: #00d2ff; 
    --accent-purple: #0044ff; 
    --text-main: #ffffff;
    --text-muted: #a0aab2;
    --glass-border: rgba(0, 210, 255, 0.12); 
    --gradient-primary: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    --font-main: 'Montserrat', sans-serif;
}

*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

img {
    max-width: 100%;
    height: auto;
}

html, body { 
    width: 100%;
    overflow-x: hidden; 
}

html { 
    scroll-behavior: smooth; 
}

body { 
    font-family: var(--font-main); 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    position: relative; 
}

/* === FUTURISTIC ANIMATED BACKGROUND === */
.futuristic-bg {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -3; 
    background: #02040a; 
    overflow: hidden;
}

.orb {
    position: absolute; 
    border-radius: 50%; 
    filter: blur(80px); 
    opacity: 0.4; 
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 400px; 
    height: 400px; 
    background: var(--accent-blue); 
    top: -10%; 
    left: -10%; 
    animation-duration: 25s;
}

.orb-2 {
    width: 500px; 
    height: 500px; 
    background: var(--accent-purple); 
    bottom: -20%; 
    right: -10%; 
    animation-duration: 28s; 
    animation-delay: -5s;
}

.orb-3 {
    width: 300px; 
    height: 300px; 
    background: #001133; 
    top: 40%; 
    left: 50%; 
    animation-duration: 22s; 
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 50px) scale(1.2); }
    100% { transform: translate(-50px, 100px) scale(0.9); }
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { 
    font-family: var(--font-main); 
    font-weight: 800; 
    line-height: 1.2; 
    letter-spacing: 1px; 
}

p { 
    color: var(--text-muted); 
    line-height: 1.7; 
    margin-bottom: 1rem; 
    font-size: 1.05rem; 
    font-weight: 400; 
}

.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 6rem 0; 
    position: relative; 
    z-index: 1; 
}

.text-center { 
    text-align: center; 
}

.gradient-text { 
    background: var(--gradient-primary); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* === BUTTONS === */
.btn { 
    padding: 14px 34px; 
    border-radius: 40px; 
    font-weight: 700; 
    text-decoration: none; 
    display: inline-block; 
    transition: all 0.3s ease; 
    border: none; 
    cursor: pointer; 
    letter-spacing: 1px; 
    font-size: 0.95rem; 
    text-transform: uppercase; 
}

.btn-primary { 
    background: var(--gradient-primary); 
    color: white; 
    box-shadow: 0 4px 20px rgba(0, 210, 255, 0.4); 
}

.btn-primary:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 8px 30px rgba(0, 210, 255, 0.6); 
}

.btn-secondary { 
    background: rgba(255,255,255,0.05); 
    color: white; 
    border: 1px solid rgba(255,255,255,0.2); 
    backdrop-filter: blur(10px); 
}

.btn-secondary:hover { 
    background: rgba(255,255,255,0.1); 
    transform: translateY(-3px); 
    border-color: var(--accent-blue); 
}

/* === GLASSMORPHISM === */
.glass { 
    background: var(--bg-card); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px); 
    border: 1px solid var(--glass-border); 
    border-radius: 24px; 
    padding: 2.5rem; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative; 
    overflow: hidden; 
}

.glass:hover { 
    border-color: rgba(0, 210, 255, 0.4); 
    transform: translateY(-10px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), inset 0 0 20px rgba(0, 162, 255, 0.05); 
}

/* === SCROLL ANIMATIONS === */
.fade-up { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}

.fade-up.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* === NAVBAR === */
nav { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    padding: 0.2rem 5%; 
    z-index: 1000; 
    transition: all 0.5s ease-in-out; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

nav.scrolled { 
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none; 
}

.nav-logo img { 
    height: 135px; 
    width: auto; 
    object-fit: contain; 
    transition: transform 0.3s; 
}

.nav-logo:hover img { 
    transform: scale(1.05); 
}

/* === HAMBURGER MENU === */
.nav-right {
    position: relative;
}

.menu-toggle {
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--accent-blue);
}

.nav-menu {
    position: absolute;
    top: 130%; 
    right: 0;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.nav-menu a:hover {
    background: rgba(0, 210, 255, 0.1);
    color: var(--accent-blue);
    padding-left: 28px; 
}

/* === HERO SECTION === */
.hero { 
    position: relative; 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 140px 5% 0 5%; 
    overflow: hidden; 
}

.hero-bg { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    z-index: -2; 
    opacity: 0.15; 
    mix-blend-mode: luminosity; 
}

.hero h1 { 
    font-size: clamp(2.5rem, 7vw, 5.5rem); 
    margin-bottom: 1.5rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

.hero p { 
    font-size: 1.2rem; 
    max-width: 750px; 
    margin: 0 auto 2.5rem auto; 
    color: #e2e8f0; 
    font-weight: 500; 
}

.hero-btns { 
    display: flex; 
    gap: 1.5rem; 
    justify-content: center; 
}

.scroll-indicator { 
    position: absolute; 
    bottom: 40px; 
    left: 50%; 
    transform: translateX(-50%); 
    animation: bounce 2s infinite; 
    color: white; 
    font-size: 1.5rem; 
    opacity: 0.5; 
}

@keyframes bounce { 
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); } 
    40% { transform: translateY(-15px) translateX(-50%); } 
    60% { transform: translateY(-7px) translateX(-50%); } 
}

/* === TRUST MARQUEE === */
.trust-strip { 
    background: rgba(0, 0, 0, 0.3); 
    backdrop-filter: blur(10px); 
    border-top: 1px solid rgba(255,255,255,0.05); 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    padding: 2rem 0; 
    overflow: hidden; 
    white-space: nowrap; 
    position: relative; 
    z-index: 2; 
}

.marquee { 
    display: inline-block; 
    animation: scrollMarquee 25s linear infinite; 
}

.marquee span { 
    font-size: 1rem; 
    font-weight: 700; 
    margin: 0 3rem; 
    color: #8892b0; 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
}

@keyframes scrollMarquee { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

/* === ABOUT & SERVICES SECTION === */
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 5rem; 
    align-items: center; 
    text-align: center; 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem; 
    margin-top: 2.5rem; 
    width: 100%; 
    max-width: 800px; 
}

.stat-item h3 { 
    font-size: 3rem; 
    background: var(--gradient-primary); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    display: inline-block; 
    letter-spacing: -1px; 
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem; 
    margin-top: 4rem; 
}

.service-icon { 
    font-size: 3.5rem; 
    background: var(--gradient-primary); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    margin-bottom: 1.5rem; 
    display: inline-block; 
}

.services-grid h3 { 
    margin-bottom: 1rem; 
    font-size: 1.5rem; 
}

/* === PROCESS TIMELINE === */
.timeline { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    margin-top: 5rem; 
    position: relative; 
}

.timeline::before { 
    content: ''; 
    position: absolute; 
    top: 30px; 
    left: 0; 
    width: 100%; 
    height: 2px; 
    background: rgba(255,255,255,0.1); 
    z-index: -1; 
}

.step { 
    width: calc(20% - 1rem); 
    text-align: center; 
}

.step-num { 
    width: 60px; 
    height: 60px; 
    background: var(--bg-dark); 
    border: 2px solid var(--accent-blue); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 1.5rem auto; 
    font-size: 1.5rem; 
    font-weight: 800; 
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4); 
}

.step h4 { 
    margin-bottom: 0.5rem; 
    font-size: 1.2rem; 
}

/* === NEW VIDEO MARQUEE PORTFOLIO === */
.video-marquee {
    width: 100%;
    overflow-x: auto; 
    overflow-y: hidden;
    white-space: nowrap;
    position: relative;
    padding: 3rem 0;
    margin-top: 1rem;
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
}

.video-marquee::-webkit-scrollbar {
    display: none;
}

.video-track {
    display: inline-flex;
    gap: 20px;
    padding: 0 20px; 
}

.marquee-video {
    height: 320px;
    width: 180px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    flex-shrink: 0; 
}

.marquee-video:hover {
    transform: scale(1.05);
    border-color: var(--accent-blue);
    z-index: 10;
}

/* === PRICING === */
.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
    margin-top: 4rem; 
    align-items: center; 
}

.price-card { 
    text-align: left; 
    overflow: visible; 
}

.price-card.popular { 
    border: 1px solid var(--accent-blue); 
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.15); 
    transform: scale(1.05); 
}

.price-card.popular:hover { 
    transform: scale(1.05) translateY(-10px); 
}

.price-card h3 { 
    font-size: 1.8rem; 
    margin-bottom: 0.5rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.price { 
    font-size: 3.5rem; 
    font-weight: 800; 
    margin: 1rem 0; 
    color: white; 
    letter-spacing: -2px; 
}

.price span { 
    font-size: 1.2rem; 
    color: var(--text-muted); 
    font-weight: 500; 
    letter-spacing: 0; 
}

.price-features { 
    list-style: none; 
    margin: 2rem 0; 
}

.price-features li { 
    margin-bottom: 1rem; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 1.05rem; 
    font-weight: 500; 
}

.price-features li i { 
    color: var(--accent-blue); 
    font-size: 1.2rem; 
}

.popular-badge { 
    position: absolute; 
    top: -18px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: var(--gradient-primary); 
    padding: 8px 24px; 
    border-radius: 30px; 
    font-size: 0.85rem; 
    font-weight: 800; 
    color: white; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4); 
    z-index: 10; 
    white-space: nowrap; 
}

/* === MODALS & FORMS === */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(5, 5, 7, 0.8); 
    backdrop-filter: blur(8px); 
    overflow-y: auto; 
}

.modal-content { 
    margin: 5vh auto; 
    width: 90%; 
    max-width: 600px; 
    padding: 3rem; 
} 

.video-popup {
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-modal-content {
    width: 90%;
    max-width: 400px; 
    position: relative;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

#popupVideoPlayer {
    width: 100%;
    max-height: 85vh;
    border-radius: 16px;
    outline: none;
    display: block;
    background: black;
}

.video-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    z-index: 2001;
}

.close-btn { 
    position: absolute; 
    top: 20px; 
    right: 30px; 
    color: var(--text-muted); 
    font-size: 30px; 
    cursor: pointer; 
    transition: 0.3s; 
}

.close-btn:hover { 
    color: var(--accent-blue); 
}

.custom-form { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-top: 1.5rem; 
}

.checkbox-container { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding: 15px 20px; 
    background: rgba(255,255,255,0.02); 
    border: 1px solid var(--glass-border); 
    border-radius: 12px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
}

.checkbox-container:hover { 
    border-color: var(--accent-blue); 
    background: rgba(0, 210, 255, 0.05); 
}

.service-checkbox { 
    width: 18px; 
    height: 18px; 
    accent-color: var(--accent-blue); 
    cursor: pointer; 
}

.total-price-display { 
    margin-top: 2rem; 
    padding-top: 1.5rem; 
    border-top: 1px solid var(--glass-border); 
    text-align: center; 
}

/* === FORM INPUT STYLES === */
.input-group { 
    margin-bottom: 1.2rem; 
    text-align: left; 
}

.input-group label { 
    display: block; 
    margin-bottom: 8px; 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    font-weight: 500; 
}

.input-group input, 
.input-group select { 
    width: 100%; 
    padding: 14px 20px; 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid var(--glass-border); 
    border-radius: 12px; 
    color: white; 
    font-family: var(--font-main); 
    outline: none; 
    transition: 0.3s; 
    appearance: none;
}

.input-group select option { 
    background: var(--bg-dark); 
    color: white; 
}

.input-group input:focus, 
.input-group select:focus { 
    border-color: var(--accent-blue); 
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2); 
}

/* === CTA SECTION === */
.cta-section { 
    background: var(--gradient-primary); 
    padding: 7rem 5%; 
    text-align: center; 
    border-radius: 30px; 
    margin: 6rem auto; 
    max-width: 1200px; 
    position: relative; 
    overflow: hidden; 
    box-shadow: 0 20px 50px rgba(0, 68, 255, 0.3); 
}

.cta-section::before { 
    content: ''; 
    position: absolute; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%; 
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%); 
    animation: rotate 20s linear infinite; 
    z-index: 1; 
    pointer-events: none; 
}

@keyframes rotate { 
    100% { transform: rotate(360deg); } 
}

.cta-section h2 { 
    color: white; 
    margin-bottom: 2.5rem; 
    position: relative; 
    z-index: 2; 
    font-size: clamp(2rem, 4.5vw, 3.5rem); 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
}

.cta-section .btn:hover { 
    background: var(--bg-dark); 
    color: white; 
}

/* === FOOTER === */
.footer-line { 
    height: 1px; 
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent); 
    margin-bottom: 4rem; 
    position: relative; 
    z-index: 1;
}

footer { 
    padding: 0 5% 3rem 5%; 
    text-align: left; 
    position: relative; 
    z-index: 1; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 3rem; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.footer-grid h4 {
    margin-bottom: 1.5rem; 
    font-size: 1.2rem;
    color: white;
}

.footer-logo img { 
    height: 147px; 
    width: auto; 
    margin-bottom: 1.5rem; 
}

.footer-grid p {
    margin-bottom: 1.5rem; 
}

.footer-links { 
    list-style: none; 
}

.footer-links li { 
    margin-bottom: 1rem; 
}

.footer-links a { 
    color: var(--text-muted); 
    text-decoration: none; 
    transition: color 0.3s; 
    font-size: 1.05rem; 
    font-weight: 500; 
}

.footer-links a:hover { 
    color: var(--accent-blue); 
}

.social-icons {
    display: flex;
    gap: 1.2rem; 
}

.social-icons a { 
    color: white; 
    font-size: 1.5rem; 
    transition: all 0.3s; 
    display: inline-block; 
}

.social-icons a:hover { 
    color: var(--accent-blue); 
    transform: translateY(-3px); 
}

.copyright { 
    text-align: center; 
    margin-top: 4rem; 
    padding-top: 2rem; 
    border-top: 1px solid var(--glass-border); 
    color: var(--text-muted); 
    font-weight: 400;
}

/* FLOATING WHATSAPP */
.whatsapp-float { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    background: #25d366; 
    color: white; 
    width: 65px; 
    height: 65px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 2.2rem; 
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); 
    z-index: 1000; 
    transition: transform 0.3s; 
    text-decoration: none; 
}

.whatsapp-float:hover { 
    transform: scale(1.15); 
}

/* === RESPONSIVE / MOBILE TWEAKS === */
@media (max-width: 768px) {
    nav { 
        justify-content: center; 
    }
    
    .nav-logo { 
        margin: 0 auto; 
        transform: translateX(-2%); 
    }
    
    .nav-right { 
        position: absolute; 
        right: 5%; 
    }

    .hero {
        padding: 0 5%;
        align-items: flex-start; 
    }

    .hero .container {
        padding-top: 160px; 
    }

    h1 { 
        letter-spacing: 0px; 
    }
    
    .timeline { 
        flex-direction: column; 
        padding-left: 30px; 
    }
    
    .timeline::before { 
        left: 30px; 
        top: 0; 
        height: 100%; 
        width: 2px; 
    }
    
    .step { 
        width: 100%; 
        display: flex; 
        align-items: flex-start; 
        text-align: left; 
        margin-bottom: 3rem; 
        gap: 1.5rem; 
    }
    
    .step-num { 
        margin: 0; 
        flex-shrink: 0; 
    }
    
    .price-card.popular { 
        transform: scale(1); 
    }
    
    .price-card.popular:hover { 
        transform: translateY(-5px); 
    }
    
    .hero-btns { 
        flex-direction: column; 
        gap: 1rem; 
    }
    
    .stats-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .marquee-video {
        height: 280px;
        width: 157px;
    }
}
