/* ================= ROOT ================= */
:root{
--bg:#0b0f1a;
--card:rgba(255,255,255,0.05);
--accent:#00d4ff;
--accent2:#00ffa3;
--accent3:#ff0080;
--text:#ffffff;
--muted:#9aa6b2;
}

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

body{
font-family: 'Inter', sans-serif;
background:var(--bg);
color:var(--text);
line-height:1.6;
}

/* ================= SCROLLBAR ================= */
::-webkit-scrollbar{
width:8px;
}
::-webkit-scrollbar-thumb{
background:linear-gradient(#00d4ff,#00ffa3);
border-radius:10px;
}

/* ================= BUTTONS ================= */
.btn-primary{
background:linear-gradient(90deg,#00d4ff,#00ffa3);
color:#021018;
border:none;
border-radius:14px;
padding:12px 20px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 0 25px rgba(0,212,255,.4);
}

/* ================= CARDS ================= */
.card{
background:var(--card);
backdrop-filter:blur(20px);
padding:20px;
border-radius:15px;
margin-bottom:20px;
box-shadow:0 10px 30px rgba(0,0,0,.3);
transition: all 0.4s cubic-bezier(.25,.8,.25,1);
cursor:pointer;
position:relative;
overflow:hidden;
}

.card::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.15),
transparent
);
transition:0.6s;
}

.card:hover::before{
left:100%;
}

.card:hover{
transform:translateY(-8px) scale(1.03);
box-shadow:0 25px 50px rgba(0,0,0,.6),
0 0 25px rgba(0,212,255,.25);
}

/* ================= KPI GRID ================= */
.kpi-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

/* ================= KPI CARD ================= */
.kpi-card{
background:var(--card);
backdrop-filter:blur(20px);
padding:20px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.3);
transition: all 0.4s cubic-bezier(.25,.8,.25,1);
cursor:pointer;
position:relative;
overflow:hidden;
}

.kpi-card::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.15),
transparent
);
transition:0.6s;
}

.kpi-card:hover::before{
left:100%;
}

.kpi-card:hover{
transform:translateY(-8px) scale(1.03);
box-shadow:0 25px 50px rgba(0,0,0,.6),
0 0 25px rgba(0,212,255,.25);
}

.counter{
font-size:30px;
font-weight:800;
margin-top:10px;
}

/* ================= INPUT ================= */
input, textarea, select{
width:100%;
padding:14px;
border-radius:12px;
border:1px solid rgba(255,255,255,.08);
background:rgba(255,255,255,.05);
color:#fff;
outline:none;
}

/* ================= TABLE ================= */
table{
width:100%;
border-collapse:collapse;
}

th,td{
padding:12px;
border-bottom:1px solid rgba(255,255,255,.08);
}

th{
color:#00d4ff;
text-transform:uppercase;
font-size:12px;
}

/* ================= MODAL ================= */
.modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.7);
justify-content:center;
align-items:center;
z-index:1000;
}

.modal.active{
display:flex;
}

.modal-content{
background:var(--card);
padding:20px;
border-radius:15px;
width:400px;
}

/* ================= ALERT ================= */
.alert{
padding:14px;
border-radius:10px;
margin-bottom:15px;
}

.alert.success{
background:rgba(0,255,163,.15);
color:#00ffa3;
}

.alert.danger{
background:rgba(255,0,80,.15);
color:#ff4d6d;
}

/* ================= ANIMATION ================= */
.fade-in{
animation:fadeIn .6s ease;
}

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

/* ================= FLOATING BUTTONS ================= */
.floating{
position:fixed;
bottom:20px;
right:20px;
display:flex;
flex-direction:column;
gap:10px;
z-index:999;
}

.floating a{
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#fff;
text-decoration:none;
box-shadow:0 0 20px rgba(0,0,0,.5);
transition:.3s;
}

.whatsapp{
background:#25D366;
}

.chat{
background:#00d4ff;
}

.floating a:hover{
transform:scale(1.1);
}

/* ================= HERO (FRONTEND) ================= */
.hero{
padding:100px 20px;
text-align:center;
background:
radial-gradient(circle at 30% 30%,rgba(0,212,255,.2),transparent),
radial-gradient(circle at 70% 20%,rgba(0,255,163,.2),transparent);
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
color:var(--muted);
max-width:700px;
margin:auto;
}

/* ================= FOOTER ================= */
footer{
padding:20px;
text-align:center;
color:#aaa;
}
/* ================= GLOBAL FIXES ================= */
html{
    scroll-behavior:smooth;
}

body{
    background:#070b14;
    color:#fff;
    overflow-x:hidden;
}

a{
    color:inherit;
}

img{
    max-width:100%;
}

/* ================= HEADER FIX ================= */
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.header-inner{
    width:min(1280px,92%);
    margin:0 auto;
    height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.logo img{
    width:150px;
    height:auto;
    display:block;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-menu a{
    color:#555b66;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:15px;
    font-weight:800;
    transition:.25s;
}

.nav-menu a:hover{
    color:#00a9d6;
}

.nav-actions .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border-radius:16px;
    padding:14px 24px;
    color:#061018;
    background:linear-gradient(135deg,#00d4ff,#00ffa3);
    font-weight:900;
    box-shadow:0 12px 30px rgba(0,212,255,.24);
}

.menu-toggle{
    display:none;
    border:none;
    background:rgba(0,0,0,.06);
    width:44px;
    height:44px;
    border-radius:12px;
    font-size:24px;
    cursor:pointer;
}

main{
    padding-top:92px;
}

/* ================= FLOATING BUTTONS FIX ================= */
.floating{
    position:fixed;
    right:28px;
    bottom:26px;
    z-index:9998;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.floating a{
    width:64px;
    height:64px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:28px;
    color:#fff;
    box-shadow:0 18px 40px rgba(0,0,0,.35);
    transition:.3s;
}

.floating a:hover{
    transform:translateY(-6px) scale(1.05);
}

.floating .whatsapp{
    background:#25d366;
}

.floating .chat{
    background:#00cfff;
}

/* ================= CHAT BOX FIX ================= */
.chat-box{
    position:fixed;
    right:110px;
    bottom:26px;
    width:340px;
    max-width:calc(100vw - 40px);
    background:#111827;
    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;
    overflow:hidden;
    z-index:9997;
    box-shadow:0 25px 70px rgba(0,0,0,.55);
    display:none;
}

.chat-box.active{
    display:block;
}

.chat-header{
    padding:16px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:linear-gradient(135deg,#00d4ff,#00ffa3);
    color:#061018;
    font-weight:900;
}

.chat-close{
    cursor:pointer;
    font-size:22px;
}

.chat-body{
    padding:20px;
    color:#e7f7ff;
}

.chat-footer{
    display:flex;
    gap:8px;
    padding:14px;
    border-top:1px solid rgba(255,255,255,.08);
}

.chat-footer input{
    flex:1;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.06);
    color:#fff;
    padding:12px;
}

.chat-footer button{
    border:none;
    border-radius:14px;
    padding:0 16px;
    font-weight:900;
    background:#00ffa3;
    color:#061018;
}

/* ================= FOOTER FIX ================= */
.site-footer{
    background:#070b14;
    color:#c8d2dc;
    padding:80px 0 30px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
    width:min(1180px,92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:34px;
}

.footer-brand img{
    width:160px;
    margin-bottom:18px;
}

.footer-brand p{
    color:#9aa6b2;
    line-height:1.8;
}

.footer-col h4{
    color:#fff;
    margin-bottom:16px;
}

.footer-col a,
.footer-col span{
    display:block;
    color:#9aa6b2;
    text-decoration:none;
    margin-bottom:10px;
}

.footer-col a:hover{
    color:#00d4ff;
}

.footer-bottom{
    width:min(1180px,92%);
    margin:40px auto 0;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom a{
    color:#00d4ff;
    text-decoration:none;
    margin-left:16px;
}

/* ================= KINEXA-LIKE LIGHT SECTIONS ================= */
.trust-strip,
.projects-section,
.faq-section{
    background:#f7f8fa;
}

.trust-strip,
.projects-section,
.faq-section,
.trust-strip h2,
.projects-section h2,
.faq-section h2{
    color:#101828;
}

/* ================= MOBILE FIX ================= */
@media(max-width:900px){
    .header-inner{
        height:auto;
        padding:16px 0;
        align-items:flex-start;
    }

    .nav-menu{
        position:absolute;
        left:0;
        top:76px;
        width:100%;
        display:none;
        flex-direction:column;
        gap:0;
        background:#fff;
        padding:16px 22px;
        border-bottom:1px solid rgba(0,0,0,.08);
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu a{
        width:100%;
        padding:14px 0;
    }

    .menu-toggle{
        display:block;
    }

    .nav-actions{
        display:none;
    }

    main{
        padding-top:76px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .chat-box{
        right:20px;
        bottom:110px;
    }
}
/* ================= PREMIUM HEADER ================= */
.premium-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(22px);
    border-bottom:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.header-inner{
    width:min(1280px,92%);
    margin:0 auto;
    height:88px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.logo img{
    width:155px;
    display:block;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-menu a{
    color:#59606b;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:800;
    transition:.25s;
}

.nav-menu a:hover{
    color:#00a9d6;
}

.book-call-open{
    border:none;
    cursor:pointer;
}

.menu-toggle{
    display:none;
    border:none;
    background:rgba(0,0,0,.06);
    width:44px;
    height:44px;
    border-radius:12px;
    font-size:24px;
    cursor:pointer;
}

main{
    padding-top:88px;
}

/* ================= BOOKING MODAL ================= */
.booking-modal{
    position:fixed;
    inset:0;
    z-index:10000;
    display:none;
}

.booking-modal.active{
    display:block;
}

.booking-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(2,6,14,.82);
    backdrop-filter:blur(16px);
}

.booking-modal-card{
    position:relative;
    z-index:2;
    width:min(1120px,94%);
    max-height:92vh;
    overflow:auto;
    margin:4vh auto;
    border-radius:32px;
    background:
        radial-gradient(circle at 20% 10%,rgba(0,212,255,.16),transparent 30%),
        radial-gradient(circle at 90% 20%,rgba(0,255,163,.12),transparent 30%),
        linear-gradient(145deg,#111827,#080d18);
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 40px 110px rgba(0,0,0,.72);
}

.booking-close{
    position:absolute;
    top:18px;
    right:18px;
    z-index:5;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    color:#fff;
    font-size:26px;
    cursor:pointer;
}

.booking-modal-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
}

.booking-left{
    padding:44px;
    border-right:1px solid rgba(255,255,255,.08);
}

.booking-brand{
    width:78px;
    height:78px;
    border-radius:22px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    box-shadow:0 0 30px rgba(0,212,255,.22);
}

.booking-brand img{
    width:58px;
    height:58px;
    object-fit:contain;
}

.booking-left h2{
    font-size:clamp(34px,4vw,54px);
    line-height:1.05;
    margin:0 0 18px;
}

.booking-left p{
    color:#aeb9c6;
    line-height:1.8;
}

.booking-info-list{
    display:grid;
    gap:13px;
    margin:28px 0;
}

.booking-info-list span{
    padding:14px 16px;
    border-radius:16px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.08);
    color:#eafaff;
    font-weight:800;
}

.booking-note{
    padding:16px;
    border-radius:18px;
    background:rgba(0,255,163,.1);
    color:#baffdf;
    border:1px solid rgba(0,255,163,.22);
    font-size:14px;
    line-height:1.6;
}

.booking-right{
    padding:44px;
}

.booking-calendar-box,
.booking-slots-box{
    padding:22px;
    border-radius:24px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:20px;
}

.booking-calendar-head,
.booking-slot-head{
    display:flex;
    justify-content:space-between;
    gap:16px;
    margin-bottom:18px;
}

.booking-calendar-head strong,
.booking-slot-head strong{
    font-size:20px;
}

.booking-calendar-head span,
.booking-slot-head span{
    color:#aeb9c6;
}

.booking-weekdays,
.booking-days{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:10px;
}

.booking-weekdays span{
    text-align:center;
    color:#9fb0be;
    font-size:12px;
    font-weight:900;
}

.booking-day-modal{
    height:48px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,.09);
    background:rgba(255,255,255,.07);
    color:#fff;
    font-weight:900;
    cursor:pointer;
    transition:.25s;
}

.booking-day-modal:hover,
.booking-day-modal.active{
    background:linear-gradient(135deg,#00d4ff,#00ffa3);
    color:#061018;
    box-shadow:0 0 22px rgba(0,212,255,.28);
}

.booking-slots{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
    gap:10px;
}

.booking-slot{
    padding:14px 10px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,.09);
    background:rgba(255,255,255,.07);
    color:#fff;
    font-weight:900;
    cursor:pointer;
    transition:.25s;
}

.booking-slot:hover,
.booking-slot.active{
    background:linear-gradient(135deg,#00d4ff,#00ffa3);
    color:#061018;
}

.booking-slot.booked{
    opacity:.35;
    cursor:not-allowed;
    background:rgba(255,255,255,.04);
    text-decoration:line-through;
}

.booking-form{
    display:grid;
    gap:14px;
}

.booking-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.booking-form input,
.booking-form textarea{
    width:100%;
    border-radius:15px;
    border:1px solid rgba(255,255,255,.09);
    background:rgba(255,255,255,.055);
    color:#fff;
    padding:15px;
    outline:none;
}

.booking-submit{
    width:100%;
    justify-content:center;
}

.booking-response{
    margin:0;
    color:#00ffa3;
    font-weight:800;
    text-align:center;
}

/* ================= MOBILE ================= */
@media(max-width:900px){
    .header-inner{
        height:76px;
    }

    .nav-menu{
        position:absolute;
        top:76px;
        left:0;
        width:100%;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:18px 24px;
        background:#fff;
        border-bottom:1px solid rgba(0,0,0,.08);
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu a{
        width:100%;
        padding:14px 0;
    }

    .nav-actions{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    main{
        padding-top:76px;
    }

    .booking-modal-grid{
        grid-template-columns:1fr;
    }

    .booking-left{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .booking-left,
    .booking-right{
        padding:28px;
    }

    .booking-form-grid{
        grid-template-columns:1fr;
    }
}
/* ================= REMOVE OLD FLOATING ICONS ================= */
.floating,
.chat-box{
    display:none !important;
}

/* ================= FINAL FLOATING ICON FIX ================= */
.gt-floating-icons{
    position:fixed !important;
    right:28px !important;
    bottom:28px !important;
    z-index:9998 !important;
    display:flex !important;
    flex-direction:column !important;
    gap:16px !important;
}

.gt-float{
    width:64px !important;
    height:64px !important;
    border-radius:22px !important;
    position:relative !important;
}

.gt-chat-open{
    background:linear-gradient(135deg,#00d4ff,#00ffa3) !important;
}

.gt-whatsapp{
    background:#25D366 !important;
}