* ===========================
   GLOBAL THEME
=========================== */
*{box-sizing:border-box;}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#05070a;
    color:white;
}

/* Container */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   HEADER
=========================== */
header{
    background:#070b10;
    padding:10px 0;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Logo */
.logo-wrap{
    display:flex;
    gap:10px;
    align-items:center;
}
.logo-wrap img{height:90px;}
.logo-text{
    font-weight:700;
    font-size:18px;
    letter-spacing:.5px;
}

/* Navigation */
.nav-links{
    display:flex;
    gap:22px;
}
.nav-links a{
    color:#e0e0e0;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    text-transform:uppercase;
    position:relative;
}
.nav-links a::after{
    content:"";
    width:0;
    height:2px;
    background:#00e5ff;
    position:absolute;
    left:0;
    bottom:-5px;
    transition:.3s;
}
.nav-links a:hover::after{width:100%;}

/* Mobile Toggle */
.nav-toggle{
    display:none;
    background:none;
    border:none;
    width:32px;
    height:28px;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
}
.nav-toggle span{
    height:3px;
    background:white;
    border-radius:10px;
}
.nav-toggle.active span:nth-child(1){transform:translateY(7px)rotate(45deg);}
.nav-toggle.active span:nth-child(2){opacity:0;}
.nav-toggle.active span:nth-child(3){transform:translateY(-7px)rotate(-45deg);}

/* ===========================
   HERO SECTION (NEON)
=========================== */


/* NEON GLOW LAYER */

/* ===========================
   HERO SECTION – TRUE NEON
=========================== */
.hero{
    position:relative;
    height:520px;
    background:url("/assets/img/banner.png") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

/* NEON LIGHT LAYER (REAL GLOW) */
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("assets/img/banner.png") center/cover no-repeat;
    filter: blur(40px) brightness(1.8);
    opacity:0.55;
    transform: scale(1.15);
    animation: neonGlow 5s ease-in-out infinite alternate;
    z-index:0;
}

/* DARK OVERLAY FOR TEXT READABILITY */
.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:1;
}

/* CENTER GLASS CARD */
.hero-inner{
    position:relative;
    z-index:2;
    max-width:780px;
    padding:44px 50px;
    text-align:center;

    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(12px);

    border-radius:20px;
    box-shadow:
        0 0 40px rgba(0,229,255,0.35),
        0 30px 80px rgba(0,0,0,0.8);
}

/* NEON TITLE */
.hero h1{
    font-size:42px;
    font-weight:900;
    color:#eaffff;
    margin-bottom:14px;

    text-shadow:
        0 0 8px rgba(0,229,255,0.9),
        0 0 22px rgba(0,229,255,0.6),
        0 0 40px rgba(0,229,255,0.4);

    animation:titleGlow 2.5s ease-in-out infinite alternate;
}

/* SUBTITLE */
.subtitle{
    font-size:17px;
    margin:18px auto 30px;
    color:#d8feff;
}

/* CTA */
.btn{
    background:#00e5ff;
    padding:14px 32px;
    border-radius:999px;
    font-weight:bold;
    border:none;
    cursor:pointer;
    box-shadow:0 0 20px rgba(0,229,255,.6);
}

/* ANIMATIONS */
@keyframes neonGlow{
    from{
        opacity:0.45;
        filter:blur(36px) brightness(1.4);
    }
    to{
        opacity:0.75;
        filter:blur(46px) brightness(2);
    }
}

@keyframes titleGlow{
    from{
        text-shadow:
            0 0 8px rgba(0,229,255,0.6),

.hero::before{
    content:"";
    position:absolute;
    inset:-20%;
    background:url("assets/img/banner.png") center/cover no-repeat;
    filter:blur(32px) brightness(1.6);
    opacity:.45;
    animation:neonPulse 4s ease-in-out infinite alternate;
    z-index:1;
}

/* Glass Card */
.hero-inner{
    position:relative;
    z-index:2;
    max-width:760px;
    margin:auto;
    padding:40px 46px;
    background:radial-gradient(circle at center,
        rgba(0,0,0,.75),
        rgba(0,0,0,.35)
    );
    border-radius:18px;
    backdrop-filter:blur(10px);
    box-shadow:
        0 0 60px rgba(0,229,255,.25),
        0 30px 80px rgba(0,0,0,.65);
}

/* Heading Neon */
.hero h1{
    font-size:42px;
    font-weight:900;
    margin-bottom:14px;
    color:#eaffff;
    animation:glow 2.5s ease-in-out infinite alternate;
}

/* Glow Animation */
@keyframes glow{
    from{
        text-shadow:
            0 0 6px rgba(0,229,255,.6),
            0 0 14px rgba(0,229,255,.35);
    }
    to{
        text-shadow:
            0 0 14px rgba(0,250,255,.95),
            0 0 34px rgba(0,250,255,.6);
    }
}

/* Banner Pulse */
@keyframes neonPulse{
    from{
        opacity:.35;
        filter:blur(28px) brightness(1.2);
    }
    to{
        opacity:.65;
        filter:blur(36px) brightness(1.6);
    }
}

/* Subtitle */
.subtitle{
    font-size:17px;
    margin:auto;
    white-space:nowrap;
    border-right:3px solid #00e5ff;
    overflow:hidden;
    animation:typing 4s steps(40,end), blink .8s infinite;
}

@keyframes typing{from{width:0;}to{width:100%;}}
@keyframes blink{50%{border-color:transparent;}}

/* CTA */
.btn{
    background:#00e5ff;
    padding:13px 28px;
    border:none;
    border-radius:999px;
    font-weight:bold;
    cursor:pointer;
}
.btn:hover{background:#00c8df;}

/* ===========================
   SECTIONS
=========================== */
section{padding:70px 0;}
section h2{
    font-size:30px;
    text-align:center;
}

/* ===========================
   SERVICES
=========================== */
.services{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}
.card{
    background:#11141b;
    padding:24px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.05);
    transition:.3s ease;
    box-shadow:0 18px 40px rgba(0,0,0,0.35);
}

.card:hover{
    transform:translateY(-6px) scale(1.03);
    border-color:#00e5ff;
    box-shadow:
        0 0 25px rgba(0,229,255,0.35),
        0 25px 60px rgba(0,0,0,0.6);
}


/* ===========================
   FOOTER
=========================== */
footer{
    background:#070b10;
    text-align:center;
    padding:18px;
    font-size:13px;
    color:#b0b0b0;
    border-top:1px solid rgba(255,255,255,.05);
}

/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:992px){
    .services{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:768px){
    .nav-toggle{display:flex;}
    .nav-links{
        display:none;
        position:absolute;
        top:60px;
        left:0;
        right:0;
        flex-direction:column;
        background:#070b10;
    }
    .nav-links.open{display:flex;}
    .services{grid-template-columns:1fr;}
    .hero h1{font-size:28px;}
}
/* ===========================
   POPUP MODAL - MATCHING DARK THEME
=========================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #11141b;
    border-radius: 18px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 
        0 0 40px rgba(0, 229, 255, 0.25),
        0 30px 80px rgba(0, 0, 0, 0.8);
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.modal-title {
    font-size: 26px;
    color: #eaffff;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    color: #00e5ff;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close-modal:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
}

.highlight-price {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 150, 255, 0.15));
    color: #00e5ff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
    font-weight: 900;
    font-size: 32px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(0, 229, 255, 0.2),
        inset 0 0 20px rgba(0, 229, 255, 0.1);
    animation: pricePulse 3s ease-in-out infinite alternate;
}

@keyframes pricePulse {
    from {
        box-shadow: 
            0 0 20px rgba(0, 229, 255, 0.2),
            inset 0 0 20px rgba(0, 229, 255, 0.1);
    }
    to {
        box-shadow: 
            0 0 30px rgba(0, 229, 255, 0.4),
            inset 0 0 25px rgba(0, 229, 255, 0.15);
    }
}

.offer-details {
    margin-bottom: 25px;
    color: #d0d0d0;
}

.offer-details p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.offer-details ul {
    margin: 15px 0 15px 20px;
    padding: 0;
}

.offer-details li {
    margin-bottom: 8px;
    color: #c0c0c0;
}

.terms-section {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 13px;
    color: #a0a0a0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.terms-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 14px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.modal-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    flex: 1;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #00e5ff, #0099ff);
    color: #000;
}

.modal-btn-primary:hover {
    background: linear-gradient(135deg, #00c8df, #0088dd);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.modal-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.4);
}
