/* =========================================================
   AD ENTERPRISES — Premium Agency CSS  (Clean Build)
   ========================================================= */

/* ── GOOGLE FONTS loaded in HTML ───────────────────────── */

/* ── DESIGN TOKENS ────────────────────────────────────── */
:root {
    /* Colour palette */
    --c-bg:           #04060e;
    --c-bg2:          #070a14;
    --c-green:        #00f28a;
    --c-green-d:      #00b866;
    --c-blue:         #1a6eff;
    --c-orange:       #ff7a00;
    --c-text:         #c8d3e8;
    --c-muted:        #6a7a99;

    /* Glass */
    --glass-bg:       rgba(255,255,255,.045);
    --glass-border:   rgba(255,255,255,.09);
    --glass-shadow:   0 8px 40px rgba(0,0,0,.45);
    --blur:           blur(16px);

    /* Typography */
    --font-head:      'Syne', sans-serif;
    --font-body:      'Inter', sans-serif;

    /* Layout */
    --container:      1100px;
    --pad-section:    96px 0;
    --radius:         14px;
    --ease:           cubic-bezier(.25,1,.5,1);
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img  { display: block; width: 100%; height: 100%; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── CONTAINER ────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── UTILITY ──────────────────────────────────────────── */
.section-pad   { padding: var(--pad-section); }
.bg-dark2      { background: var(--c-bg2); }
.text-center   { text-align: center; }
.w-full        { width: 100%; }

.gradient-text {
    background: linear-gradient(135deg, var(--c-green), var(--c-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius);
}

/* ── SECTION LABELS ───────────────────────────────────── */
.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--c-green);
    margin-bottom: 10px;
}
.sec-tag::before {
    content: '';
    display: inline-block;
    width: 22px; height: 2px;
    background: var(--c-green);
}

.sec-head { margin-bottom: 48px; }
.sec-head h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}
.sec-head p {
    font-size: clamp(.9rem, 1.2vw, 1rem);
    color: var(--c-muted);
    max-width: 460px;
    line-height: 1.7;
}
.sec-head.text-center h2,
.sec-head.text-center p { margin-left: auto; margin-right: auto; text-align: center; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 600;
    transition: all .3s var(--ease);
    white-space: nowrap;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--c-blue), var(--c-green));
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,242,138,.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,242,138,.4); }

.btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.2);
    color: #fff;
    backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--c-green); background: rgba(0,242,138,.08); transform: translateY(-3px); }

.btn-wa  { background: #25d366; color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.3); }
.btn-wa:hover { transform: translateY(-3px); background: #1eb355; }

.btn-neon {
    background: transparent;
    color: var(--c-green);
    border: 1.5px solid var(--c-green);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 600;
    transition: all .3s var(--ease);
}
.btn-neon:hover { background: var(--c-green); color: #000; }

/* ── BROCHURE BUTTON ────────────────────────────────────── */
.brochure-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #00ffb4, #00c3ff);
    text-decoration: none;
    overflow: hidden;
    animation: brochureFloat 3s ease-in-out infinite;
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
    letter-spacing: .3px;
}
.brochure-btn i { font-size: 1rem; flex-shrink: 0; }
.brochure-btn .btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
    transform: translateX(-120%);
    animation: brochureShine 2.8s ease-in-out infinite;
    pointer-events: none;
}
.brochure-btn:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 0 28px rgba(0,255,180,.7), 0 6px 24px rgba(0,195,255,.5);
    animation-play-state: paused;
}
.brochure-btn::after {
    content: '';
    position: absolute;
    width: 0; height: 0;
    background: rgba(255,255,255,.4);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: width .45s ease, height .45s ease, opacity .45s ease;
    opacity: 0;
    pointer-events: none;
}
.brochure-btn:active::after { width: 220px; height: 220px; opacity: 0; }
@keyframes brochureFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}
@keyframes brochureShine {
    0%   { transform: translateX(-120%); }
    60%  { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

/* ── LOADER ───────────────────────────────────────────── */
#loader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--c-bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .6s var(--ease), visibility .6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner  { text-align: center; }
.loader-logo   { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; }
.loader-logo span {
    background: linear-gradient(135deg, var(--c-green), var(--c-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoPulse 1.5s ease-in-out infinite alternate;
}
@keyframes logoPulse {
    from { filter: drop-shadow(0 0 8px var(--c-green)); }
    to   { filter: drop-shadow(0 0 24px var(--c-blue)); }
}
.loader-bar  { width: 180px; height: 2px; background: rgba(255,255,255,.1); border-radius: 4px; margin: 0 auto 14px; overflow: hidden; }
.loader-fill { height: 100%; background: linear-gradient(90deg, var(--c-green), var(--c-blue)); width: 0; animation: loadFill 1.2s var(--ease) forwards; }
@keyframes loadFill { to { width: 100%; } }
.loader-inner p { font-size: .82rem; color: var(--c-muted); letter-spacing: 2px; }

/* ── CUSTOM CURSOR (desktop only) ────────────────────── */
#cursor-dot, #cursor-ring {
    position: fixed; pointer-events: none;
    z-index: 9999; border-radius: 50%;
    transform: translate(-50%,-50%);
}
#cursor-dot  { width: 7px; height: 7px; background: var(--c-green); top: 0; left: 0; }
#cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(0,242,138,.5); top: 0; left: 0; transition: width .2s, height .2s, border-color .2s; }

/* ── NAVBAR ───────────────────────────────────────────── */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 900;
    padding: 20px 0;
    transition: padding .4s var(--ease), background .4s, box-shadow .4s;
}
#navbar.scrolled {
    padding: 12px 0;
    background: rgba(4,6,14,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.nav-inner {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    margin-right: auto;
    flex-shrink: 0;
}
.logo-ad  { color: var(--c-green); }
.logo-ent { color: #fff; }
.nav-logo-img { width: 34px; height: 34px; object-fit: cover; border-radius: 8px; margin-right: 10px; flex-shrink: 0; }

.nav-links {
    display: flex; gap: 4px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--glass-border);
    padding: 5px 6px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}
.nav-item {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--c-text);
    transition: all .3s var(--ease);
}
.nav-item:hover, .nav-item.active {
    background: rgba(0,242,138,.12);
    color: var(--c-green);
}
.nav-cta { flex-shrink: 0; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .35s var(--ease);
}

/* ── MOBILE DRAWER ────────────────────────────────────── */
.mobile-drawer {
    position: fixed; top: 0; right: -320px;
    width: 300px; height: 100vh;
    z-index: 1001;
    background: rgba(7,10,20,.97);
    backdrop-filter: blur(24px);
    border-left: 1px solid var(--glass-border);
    display: flex; flex-direction: column; justify-content: center;
    padding: 60px 36px;
    transition: right .45s var(--ease);
}
.mobile-drawer.open { right: 0; }

.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 1000;
    opacity: 0; visibility: hidden;
    transition: .4s;
    backdrop-filter: blur(4px);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer-close {
    position: absolute; top: 20px; right: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff; width: 38px; height: 38px;
    border-radius: 50%; font-size: .95rem;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s; cursor: pointer;
}
.drawer-close:hover { background: var(--c-green); color: #000; }

.drawer-brand { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; margin-bottom: 36px; }

.drawer-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 36px; }
.drawer-link {
    display: block; padding: 11px 14px;
    border-radius: 10px; font-size: 1.1rem; font-weight: 600;
    transition: all .3s var(--ease);
}
.drawer-link:hover { background: rgba(0,242,138,.1); color: var(--c-green); padding-left: 22px; }

.drawer-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25d366; color: #fff;
    padding: 13px 22px; border-radius: 50px; font-weight: 600;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;          /* clip anything that escapes */
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-bg-layer {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    will-change: transform;
}
.hero-layer-1 {
    background-image: url('https://images.unsplash.com/photo-1555529733-0e67056058e3?auto=format&fit=crop&w=1920&q=80');
    transform: scale(1.08);
    filter: brightness(.3) saturate(.8);
    z-index: 1;
}
.hero-layer-2 {
    background: linear-gradient(135deg, rgba(0,20,50,.85) 0%, rgba(4,6,14,.9) 55%, rgba(0,50,20,.4) 100%);
    z-index: 2;
}
.hero-grain {
    position: absolute; inset: 0; z-index: 3;
    opacity: .35; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 2; animation: orbFloat 8s ease-in-out infinite alternate; }
.orb-green { width: 440px; height: 440px; background: radial-gradient(circle, rgba(0,242,138,.15), transparent 70%); top: -80px; right: 8%; }
.orb-blue  { width: 360px; height: 360px; background: radial-gradient(circle, rgba(26,110,255,.12), transparent 70%); bottom: 0; left: 4%; animation-delay: -4s; }
@keyframes orbFloat { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-36px) scale(1.07); } }

/* Hero content — flex child MUST have min-width:0 to prevent overflow */
.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text-col {
    max-width: 520px;
    width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-image-col {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-slider-card {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero-slider-card:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 25px rgba(0,255,180,0.2);
}

.slider-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slider-img.active {
    opacity: 1;
    z-index: 2;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(0,242,138,.08);
    border: 1px solid rgba(0,242,138,.2);
    padding: 7px 16px; border-radius: 50px;
    font-size: .78rem; font-weight: 500; color: var(--c-green);
    margin-bottom: 22px;
}
.badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--c-green);
    box-shadow: 0 0 8px var(--c-green);
    animation: blink 1.5s infinite;
}
@keyframes blink { 50% { opacity: .3; } }

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.14;
    color: #fff;
    margin-bottom: 18px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}
.hero-title .line { display: block; overflow-wrap: break-word; }
.hero-title .line + .line { margin-top: 3px; }

.hero-sub {
    font-size: clamp(.88rem, 1.4vw, 1rem);
    color: var(--c-text);
    max-width: 400px;
    margin-bottom: 28px;
    line-height: 1.75;
    opacity: .85;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hstat { text-align: left; }
.hstat span:first-child { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; }
.hstat span:nth-child(2) { font-size: clamp(1.2rem, 2.5vw, 1.7rem); color: var(--c-green); font-weight: 700; }
.hstat small { display: block; font-size: .7rem; color: var(--c-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.hstat-div { width: 1px; height: 38px; background: var(--glass-border); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Scroll cue */
.hero-scroll-cue {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 7px;
    color: rgba(255,255,255,.45); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.22); border-radius: 12px; position: relative; }
.scroll-wheel {
    width: 3px; height: 7px; background: var(--c-green); border-radius: 2px;
    position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
    animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 0%{top:7px;opacity:1} 100%{top:23px;opacity:0} }

/* Hero ticker ribbon */
.hero-ribbon {
    position: absolute; bottom: 0; left: 0; width: 100%;
    z-index: 5;
    background: rgba(0,242,138,.07);
    border-top: 1px solid rgba(0,242,138,.13);
    padding: 11px 0; overflow: hidden;
}
.ribbon-track { display: flex; gap: 36px; white-space: nowrap; animation: ribbon 28s linear infinite; }
.ribbon-track span { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--c-green); }
.ribbon-track .ribbon-sep { color: rgba(0,242,138,.4); }
@keyframes ribbon { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION DIVIDER ──────────────────────────────────── */
.sec-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(0,242,138,.3), rgba(26,110,255,.3), transparent); }

/* ── ABOUT ────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.about-visuals {
    display: grid;
    grid-template-columns: 5fr 4fr;
    grid-template-rows: 240px 240px;
    gap: 16px;
}
.about-img-main { grid-column: 1; grid-row: 1 / span 2; overflow: hidden; position: relative; background: rgba(0,0,0,0.4); border-radius: var(--radius); }
.about-img-main img { object-fit: cover; width: 100%; height: 100%; transition: transform .8s var(--ease); }
.about-img-main:hover img { transform: scale(1.03); }
.img-glow { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,242,138,.06)); pointer-events: none; }
.about-img-accent { grid-column: 2; grid-row: 1; overflow: hidden; border-radius: var(--radius); background: #fff; display: flex; align-items: center; justify-content: center; padding: 20px; }
.about-img-accent img { object-fit: contain; width: 100%; height: 100%; transition: transform .8s var(--ease); }
.about-img-accent:hover img { transform: scale(1.03); }

.exp-badge {
    grid-column: 2; grid-row: 2;
    background: linear-gradient(135deg, var(--c-green), var(--c-blue));
    border-radius: var(--radius);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 14px;
    box-shadow: 0 0 28px rgba(0,242,138,.3);
}
.exp-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.exp-num span { font-size: 1.6rem; }
.exp-label { font-size: .76rem; font-weight: 600; color: rgba(255,255,255,.85); margin-top: 5px; }

.about-text h2 {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800; color: #fff;
    line-height: 1.2; margin-bottom: 12px;
}
.lead-text { font-size: .97rem; color: var(--c-text); line-height: 1.75; margin-bottom: 10px; }
.about-text > p { font-size: .92rem; color: var(--c-muted); line-height: 1.75; }

.about-stats { display: flex; gap: 12px; margin: 28px 0; }
.astat { flex: 1; padding: 18px 14px; text-align: center; border-radius: 12px; }
.astat span:first-child { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--c-green); }
.astat span:nth-child(2) { font-size: 1.4rem; color: var(--c-green); }
.astat small { display: block; font-size: .72rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

/* Timeline */
.timeline { margin-top: 12px; }
.tl-item { display: grid; grid-template-columns: 50px 14px 1fr; gap: 0 14px; margin-bottom: 20px; align-items: start; position: relative; }
.tl-item::after { content:''; position:absolute; left:57px; top:16px; bottom:-8px; width:1px; background: var(--glass-border); }
.tl-item:last-child::after { display:none; }
.tl-year { font-family: var(--font-head); font-size: .8rem; font-weight: 700; color: var(--c-green); padding-top:2px; text-align: right; }
.tl-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--c-bg2); border: 2px solid var(--c-green); margin-top: 4px; position: relative; z-index: 1; }
.tl-dot-active { background: var(--c-green); box-shadow: 0 0 12px var(--c-green); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100%{box-shadow:0 0 8px var(--c-green)} 50%{box-shadow:0 0 18px var(--c-green)} }
.tl-text strong { display:block; color:#fff; font-size:.88rem; font-weight:600; margin-bottom:2px; }
.tl-text p { font-size:.8rem; color: var(--c-muted); margin:0; }

/* ── SERVICES ─────────────────────────────────────────── */
.services-duet { display: flex; flex-direction: column; gap: 52px; }
.svc-cat-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px; padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}
.svc-cat-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: rgba(0,242,138,.1); border: 1px solid rgba(0,242,138,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem; color: var(--c-green); flex-shrink: 0;
}
.svc-cat-icon-blue { background: rgba(26,110,255,.1); border-color: rgba(26,110,255,.2); color: var(--c-blue); }
.svc-cat-header h3 { font-family: var(--font-head); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; color: #fff; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
    padding: 26px 22px;
    position: relative; overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
    cursor: default;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(0,0,0,.5); border-color: rgba(0,242,138,.28); }

/* Banner Style Overrides */
.svc-card.banner-style {
    padding: 0;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.svc-card.banner-style:hover {
    transform: perspective(1000px) rotateX(3deg) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 25px rgba(0,255,180,0.2);
    border-color: rgba(0,242,138,.28);
}
.svc-category:nth-child(2) .svc-card.banner-style:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 25px rgba(26,110,255,0.2);
    border-color: rgba(26,110,255,.28);
}
.svc-card-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform .6s var(--ease);
}
.svc-card.banner-style:hover .svc-card-bg {
    transform: scale(1.08);
}
.svc-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}
.svc-tag-corner {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
    color: #fff; font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 4px 10px; border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.15);
}
.svc-tag-indoor {
    border-color: rgba(26,110,255,0.3);
}
.svc-card-content {
    position: relative; z-index: 2;
    padding: 26px 22px;
    display: flex; flex-direction: column; align-items: flex-start;
}

.svc-num { position: absolute; top: 18px; right: 20px; font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; color: rgba(255,255,255,.04); line-height: 1; z-index: 2; }
.svc-card.banner-style .svc-num { color: rgba(255,255,255,0.15); font-size: 3rem; top: 16px; right: 16px; }

.svc-ico {
    width: 50px; height: 50px; border-radius: 12px;
    background: rgba(0,242,138,.1); border: 1px solid rgba(0,242,138,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; color: var(--c-green);
    margin-bottom: 20px; transition: transform .4s var(--ease);
}
.svc-card.banner-style .svc-ico {
    width: 42px; height: 42px; font-size: 1.05rem; margin-bottom: 14px;
    background: rgba(0,242,138,.2); border-color: rgba(0,242,138,.4);
    backdrop-filter: blur(4px); color: #fff;
}
.svc-ico-blue { background: rgba(26,110,255,.1); border-color: rgba(26,110,255,.2); color: var(--c-blue); }
.svc-card.banner-style .svc-ico-blue {
    background: rgba(26,110,255,.2); border-color: rgba(26,110,255,.4); color: #fff;
}
.svc-card:hover .svc-ico { transform: scale(1.1) rotate(-5deg); }

.svc-card h4 { font-family: var(--font-head); font-size: .98rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.35; }
.svc-card.banner-style h4 {
    font-size: 1.15rem; margin-bottom: 6px;
    text-shadow: 0 0 8px rgba(0,255,180,0.4);
}
.svc-category:nth-child(2) .svc-card.banner-style h4 {
    text-shadow: 0 0 8px rgba(26,110,255,0.4);
}

.svc-card p  { font-size: .84rem; color: var(--c-muted); line-height: 1.7; margin: 0; }
.svc-card.banner-style p {
    color: #e2e8f0; line-height: 1.5; font-size: 0.8rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.svc-arrow { display: inline-flex; align-items: center; color: var(--c-green); font-size: .88rem; margin-top: 16px; opacity: 0; transform: translateX(-8px); transition: all .3s var(--ease); }
.svc-card.banner-style .svc-arrow { margin-top: 12px; }
.svc-category:nth-child(2) .svc-card.banner-style .svc-arrow { color: var(--c-blue); }
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }
.card-glow {
    position: absolute; bottom: -55px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 100px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,242,138,.22), transparent 70%);
    filter: blur(18px); opacity: 0; transition: opacity .4s; pointer-events: none;
}
.card-glow-blue { background: radial-gradient(circle, rgba(26,110,255,.22), transparent 70%); }
.svc-card:hover .card-glow { opacity: 1; }


/* ── FEATURED BANNER ──────────────────────────────────── */
.featured-banner { position: relative; min-height: 380px; display: flex; align-items: center; padding: 60px 0; overflow: hidden; }
.fb-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 8s linear; }
.featured-banner:hover .fb-bg { transform: scale(1); }
.fb-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(4,6,14,.93) 0%, rgba(4,6,14,.65) 55%, rgba(4,6,14,.2) 100%); }
.fb-content { position: relative; z-index: 2; max-width: 500px; }
.fb-tag { display: inline-block; background: var(--c-green); color: #000; padding: 5px 14px; border-radius: 50px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.fb-content h2 { font-family: var(--font-head); font-size: clamp(1.3rem, 2.2vw, 2rem); font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 10px; }
.fb-content p  { font-size: .9rem; color: var(--c-text); margin-bottom: 22px; opacity:.85; max-width: 360px; line-height: 1.65; }

/* ── PORTFOLIO ────────────────────────────────────────── */
.pf-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.pf-btn {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    color: var(--c-text); padding: 9px 22px; border-radius: 50px;
    font-size: .86rem; font-weight: 500; transition: all .3s var(--ease);
}
.pf-btn:hover, .pf-btn.active {
    background: var(--c-green); border-color: var(--c-green);
    color: #000; font-weight: 700; box-shadow: 0 4px 18px rgba(0,242,138,.3);
}
.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 230px;
    gap: 12px;
}
.pf-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; }
.pf-item img { transition: transform .7s var(--ease); width:100%; height:100%; object-fit:cover; }
.pf-item:hover img { transform: scale(1.07); }
.pf-large { grid-column: span 2; grid-row: span 2; }
.pf-tall  { grid-row: span 2; }
.pf-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(4,6,14,.95) 0%, rgba(4,6,14,.15) 60%, transparent);
    display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
    padding: 20px; opacity: 0; transition: opacity .4s var(--ease);
}
.pf-item:hover .pf-overlay { opacity: 1; }
.pf-cat { display: inline-block; background: rgba(0,242,138,.15); border: 1px solid rgba(0,242,138,.3); color: var(--c-green); padding: 4px 11px; border-radius: 50px; font-size: .72rem; font-weight: 600; margin-bottom: 7px; }
.pf-overlay h3 { color: #fff; font-family: var(--font-head); font-size: .95rem; font-weight: 700; flex: 1; }
.pf-zoom {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: #fff; width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s var(--ease); align-self: flex-end; flex-shrink: 0;
}
.pf-zoom:hover { background: var(--c-green); color: #000; border-color: var(--c-green); }
.pf-item.hidden { display: none; }

/* ── CATEGORY STRIPS ──────────────────────────────────── */
.cat-strip { position: relative; height: 400px; display: flex; align-items: center; overflow: hidden; margin-bottom: 3px; }
.cat-strip-img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 8s linear; }
.cat-strip:hover .cat-strip-img { transform: scale(1); }
.cat-strip-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,6,14,.92) 0%, rgba(4,6,14,.72) 45%, rgba(4,6,14,.2) 100%); }
.cat-strip-rev .cat-strip-overlay { background: linear-gradient(270deg, rgba(4,6,14,.92) 0%, rgba(4,6,14,.72) 45%, rgba(4,6,14,.2) 100%); }
.cat-strip-content { position: relative; z-index: 2; max-width: 420px; }
.cat-strip-rev .cat-strip-content { margin-left: auto; text-align: right; }
.cat-strip-tag { display: inline-block; font-size:.7rem; font-weight:700; letter-spacing:3px; text-transform:uppercase; color: var(--c-orange); margin-bottom: 10px; }
.cat-strip-content h2 { font-family: var(--font-head); font-size: clamp(1.3rem, 2.2vw, 2rem); font-weight:800; color:#fff; line-height:1.22; margin-bottom:10px; }
.cat-strip-content p  { font-size:.88rem; color:var(--c-text); margin-bottom:16px; opacity:.85; line-height: 1.7; max-width: 360px; }

/* ── INFRASTRUCTURE ───────────────────────────────────── */
.infra-scroll-container { width: 100vw; margin-left: calc(-50vw + 50%); overflow-x: hidden; padding: 40px 0; margin-top: 20px; display: flex; justify-content: center; }
.infra-scroll-track { display: flex; gap: 24px; padding: 0 5vw; width: max-content; will-change: transform; flex-shrink: 0; }
.infra-card { width: 650px; height: 420px; display: flex; flex-direction: column; border-radius: 20px; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s, opacity .6s; padding: 24px; background: var(--c-bg2); }
.infra-card.scroll-anim { opacity: 0.3; transform: scale(0.9); }
.infra-card.scroll-anim.in-view { opacity: 1; transform: scale(1); }
.infra-card.scroll-anim.in-view:hover { transform: scale(1.05) !important; box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 25px rgba(0,255,180,0.2); border-color: rgba(0,242,138,.28); z-index: 10; }
.infra-card:hover { transform: scale(1.05) !important; box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 25px rgba(0,255,180,0.2); border-color: rgba(0,242,138,.28); z-index: 10; }
.infra-img { flex: 1; position: relative; border-radius: 14px; overflow: hidden; background: rgba(0,0,0,0.6); margin-bottom: 24px; }
.infra-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .7s var(--ease); }
.infra-card:hover .infra-img img { transform: scale(1.07); }
.infra-badge { position: absolute; top: 12px; left: 12px; background: rgba(0,242,138,.14); border: 1px solid rgba(0,242,138,.28); color: var(--c-green); font-size: .68rem; font-weight: 700; letter-spacing: 1px; padding: 4px 11px; border-radius: 50px; z-index: 2; backdrop-filter: blur(4px); }
.infra-body { flex-shrink: 0; padding: 0 8px; }
.infra-body h4 { color: #fff; font-weight: 700; font-size: 1.25rem; margin-bottom: 10px; line-height: 1.35; text-shadow: 0 0 8px rgba(0,255,180,0.4); }
.infra-body p  { font-size: 0.95rem; color: #e2e8f0; line-height: 1.6; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── CLIENTS GRID ─────────────────────────────────────── */
.clients-section { padding: var(--pad-section); overflow: hidden; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 48px;
}

/* Active focus effect: dim unhovered cards */
.clients-grid:hover .client-card {
    opacity: 0.6;
    filter: grayscale(0.4) brightness(0.8);
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px 18px;
    border-radius: var(--radius);
    cursor: default;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Lighter dark glass + baseline subtle glow */
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(0, 255, 180, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 180, 0.15);
}

.client-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,255,180,.05), rgba(0,180,255,.05));
    opacity: 0;
    transition: opacity .3s ease;
}

.client-card:hover { 
    transform: scale(1.08) translateY(-5px); 
    border-color: rgba(0, 255, 180, 0.5); 
    box-shadow: 0 0 35px rgba(0, 255, 180, 0.5); 
    opacity: 1 !important;
    filter: none !important;
    z-index: 2;
}
.client-card:hover::before { opacity: 1; }

.client-logo-wrap {
    width: 100%; height: 64px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

.client-logo-wrap img {
    max-width: 110px; max-height: 52px;
    width: auto; height: auto;
    object-fit: contain;
    /* Improved brightness by default as requested */
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
}

.client-card:hover .client-logo-wrap img {
    /* Hover pulse & slight float */
    filter: brightness(1.3) contrast(1.1) drop-shadow(0 0 8px rgba(0, 255, 180, 0.3));
    transform: translateY(-3px);
}

.client-logo-fallback {
    width: 100%; height: 100%;
    align-items: center; justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
}
.client-card:hover .client-logo-fallback { 
    opacity: 1; 
    filter: drop-shadow(0 0 6px rgba(0,255,180,0.3));
    transform: translateY(-2px);
}

.client-name {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-muted);
    transition: color .35s;
}
.client-card:hover .client-name { color: var(--c-green); }



/* ── CONTACT ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; margin-bottom: 28px; align-items: start; }
.contact-info { padding: 32px 28px; }
.contact-info h3 { font-family: var(--font-head); font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.25; }
.contact-info > p { color: var(--c-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 26px; }
.ci-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 26px; }
.ci-item { display: flex; align-items: flex-start; gap: 15px; }
.ci-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(0,242,138,.08); border: 1px solid rgba(0,242,138,.15); display: flex; align-items: center; justify-content: center; font-size: .95rem; color: var(--c-green); flex-shrink: 0; }
.ci-item h5 { color: #fff; font-size: .88rem; font-weight: 600; margin-bottom: 2px; }
.ci-item p  { color: var(--c-muted); font-size: .83rem; margin: 0; line-height: 1.5; }
.ci-social { display: flex; gap: 8px; margin-bottom: 26px; }
.ci-soc-btn { width: 38px; height: 38px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .88rem; transition: all .3s var(--ease); }
.ci-soc-btn:hover { background: var(--c-green); color: #000; transform: translateY(-3px); border-color: var(--c-green); }
.ci-quick-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Contact form */
.contact-form-wrap { padding: 32px 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-field label { font-size: .78rem; font-weight: 600; color: var(--c-muted); text-transform: uppercase; letter-spacing: 1px; }
.form-field input,
.form-field textarea,
.form-field select {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px; padding: 12px 16px;
    color: #fff; font-size: .93rem; outline: none;
    transition: border-color .3s, box-shadow .3s, background .3s;
    -webkit-appearance: none;
}
.form-field select { background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%236a7a99' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-field select option { background: var(--c-bg2); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--c-green); box-shadow: 0 0 0 3px rgba(0,242,138,.1); background: rgba(0,242,138,.03); }
.form-field textarea { resize: vertical; min-height: 110px; }
#submitBtn { margin-top: 6px; }
.map-wrap { overflow: hidden; border-radius: var(--radius); }
.map-wrap iframe { display: block; border-radius: var(--radius); }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer { background: var(--c-bg2); border-top: 1px solid var(--glass-border); }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 36px;
    padding: 64px 0 48px;
}
.ft-logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.ft-brand > p { color: var(--c-muted); font-size: .86rem; margin-bottom: 22px; line-height: 1.65; }
.ft-social { display: flex; gap: 8px; }
.ft-social a { width: 36px; height: 36px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .88rem; transition: all .3s var(--ease); }
.ft-social a:hover { background: var(--c-green); color: #000; transform: translateY(-3px); }
.ft-col h5 { color: #fff; font-weight: 700; font-size: .86rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.ft-col ul { display: flex; flex-direction: column; gap: 9px; }
.ft-col a { color: var(--c-muted); font-size: .86rem; transition: all .3s; }
.ft-col a:hover { color: var(--c-green); padding-left: 5px; }
.ft-subscribe { display: flex; gap: 7px; margin: 14px 0 18px; }
.ft-subscribe input { flex: 1; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 8px; padding: 9px 13px; color: #fff; outline: none; font-size: .85rem; }
.btn-neon-sm { background: var(--c-green); color: #000; border: none; padding: 9px 13px; border-radius: 8px; font-size: .88rem; transition: all .3s; cursor: pointer; }
.btn-neon-sm:hover { background: var(--c-green-d); }
.ft-contact-mini p { font-size: .8rem; color: var(--c-muted); margin-bottom: 5px; }
.ft-contact-mini i { color: var(--c-green); margin-right: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-top: 1px solid var(--glass-border); font-size: .8rem; color: var(--c-muted); }
.heart { color: var(--c-green); }

/* ── IMAGE MODAL ──────────────────────────────────────── */
#imageModal { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,.9); backdrop-filter: blur(16px); align-items: center; justify-content: center; flex-direction: column; }
#imageModal.open { display: flex; }
.modal-img-wrap { max-width: 90vw; max-height: 80vh; display: flex; align-items: center; justify-content: center; }
#modalImg { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 10px; box-shadow: 0 0 80px rgba(0,0,0,.8); animation: modalZoom .3s var(--ease); }
@keyframes modalZoom { from{transform:scale(.9);opacity:0} to{transform:scale(1);opacity:1} }
.modal-caption { color: #fff; font-size: .95rem; margin-top: 14px; text-align: center; }
.modal-close-btn { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all .3s; cursor: pointer; }
.modal-close-btn:hover { background: var(--c-green); color: #000; }
.modal-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all .3s; cursor: pointer; }
.modal-nav:hover { background: var(--c-green); color: #000; }
.modal-prev { left: 16px; }
.modal-next { right: 16px; }

/* ── FLOATING BUTTONS ─────────────────────────────────── */
.fab-wa { position: fixed; bottom: 28px; right: 28px; z-index: 800; width: 54px; height: 54px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; box-shadow: 0 6px 22px rgba(37,211,102,.4); transition: transform .3s var(--ease), box-shadow .3s; }
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(37,211,102,.6); }
.fab-wa-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25d366; animation: waPulse 2s ease-out infinite; }
@keyframes waPulse { 0%{opacity:.8;transform:scale(1)} 100%{opacity:0;transform:scale(1.65)} }

.fab-top { position: fixed; bottom: 96px; right: 28px; z-index: 800; width: 44px; height: 44px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border); color: #fff; font-size: .95rem; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .4s var(--ease); cursor: pointer; }
.fab-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-top:hover { background: var(--c-green); color: #000; }

/* ── REVEAL ANIMATIONS ────────────────────────────────── */
[data-reveal] { opacity: 0; transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="left"]  { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(0.5) translateY(30px); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].revealed { opacity: 1 !important; transform: none !important; }

/* Hero elements — animated in via JS after loader */
.hero [data-reveal] { opacity: 1; transform: none; transition: opacity .9s ease, transform .9s ease; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────────────────────── */

/* ── TABLET (≤ 1024px) ────────────────────────────────── */
@media (max-width: 1024px) {
    :root { --pad-section: 80px 0; }

    .pf-grid  { grid-template-columns: repeat(2,1fr); grid-auto-rows: 210px; }
    .pf-large { grid-column: span 2; }
    .pf-tall  { grid-row: auto; }
    .infra-grid { grid-template-columns: repeat(2,1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    .orb-green  { width: 320px; height: 320px; }
    .orb-blue   { width: 260px; height: 260px; }
}

/* ── MOBILE LANDSCAPE / SMALL TABLET (≤ 768px) ───────── */
@media (max-width: 768px) {
    :root { --pad-section: 64px 0; }

    /* Navbar */
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .hero { min-height: 100svh; padding-top: 70px; padding-bottom: 60px; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: clamp(1.7rem, 6vw, 2.8rem); max-width: 100%; }
    .hero-sub  { max-width: 100%; font-size: .9rem; }
    .hero-stats { gap: 14px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .brochure-btn { width: 100%; justify-content: center; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-visuals { 
        display: grid;
        grid-template-columns: 5fr 4fr;
        grid-template-rows: 180px 180px;
        gap: 12px;
        margin-top: 10px;
    }
    .about-text h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }

    /* Services */
    .svc-grid { grid-template-columns: 1fr 1fr; }

    /* Featured banner */
    .featured-banner { min-height: 280px; padding: 44px 0; }
    .fb-content h2 { font-size: clamp(1.2rem, 4.5vw, 1.7rem); }
    .fb-content p  { max-width: 100%; }

    /* Portfolio */
    .pf-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }

    /* Category strips */
    .cat-strip { height: 320px; }
    .cat-strip-content { max-width: 100%; }
    .cat-strip-content h2 { font-size: clamp(1.3rem, 5vw, 1.9rem); }

    /* Clients */
    .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info, .contact-form-wrap { padding: 24px 20px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ── MOBILE PORTRAIT (≤ 480px) ───────────────────────── */
@media (max-width: 480px) {
    :root { --pad-section: 52px 0; }
    .container { padding: 0 18px; }

    /* Hero — absolute floor to prevent overflow on any phone */
    .hero-title { font-size: clamp(1.35rem, 7vw, 2rem); max-width: 100%; }
    .hero-sub   { font-size: .86rem; max-width: 92%; }
    .hstat-div  { display: none; }
    .hstat span:first-child { font-size: 1.4rem; }
    .hero-scroll-cue { display: none; }
    .hero-ribbon { display: none; }

    /* Services */
    .svc-grid { grid-template-columns: 1fr; }

    /* Portfolio */
    .pf-grid  { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .pf-large, .pf-tall { grid-column: auto; grid-row: auto; }

    /* Infrastructure */
    .infra-grid { grid-template-columns: 1fr; }

    /* Category strips */
    .cat-strip { height: 260px; }

    /* Clients */
    .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 28px; }
    .client-logo-wrap { height: 52px; }
    .client-logo-wrap img { max-width: 90px; max-height: 42px; }

    /* Contact */
    .ci-quick-actions { flex-direction: column; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 24px; }

    /* Buttons full-width on mobile */
    .ci-quick-actions .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   HELP BOT — FLOATING FAQ CHATBOT (OVERLAY ONLY)
   Does NOT modify or override any existing layout rules.
══════════════════════════════════════════════════════════ */

/* ── Floating FAB Button ────────────────────────────────── */
.helpbot-fab {
    position: fixed;
    bottom: 96px;          /* sits above WhatsApp button */
    right: 28px;
    z-index: 9900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f28a 0%, #1a6eff 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 180, 0.4), 0 8px 24px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: helpbotFloat 3.5s ease-in-out infinite, helpbotGlow 3s ease-in-out infinite;
    color: #fff;
    outline: none;
}

.helpbot-fab svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.helpbot-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 0 32px rgba(0, 255, 180, 0.65), 0 12px 30px rgba(0,0,0,0.5);
    animation: none;
}

.helpbot-fab:hover svg {
    transform: rotate(-8deg) scale(1.1);
}

@keyframes helpbotFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

@keyframes helpbotGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0,255,180,0.4), 0 8px 24px rgba(0,0,0,0.4); }
    50%       { box-shadow: 0 0 36px rgba(0,255,180,0.7), 0 8px 28px rgba(0,0,0,0.45); }
}

/* Pulse ring */
.helpbot-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(0, 242, 138, 0.5);
    animation: helpbotPulse 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes helpbotPulse {
    0%   { opacity: 0.85; transform: scale(1); }
    100% { opacity: 0;    transform: scale(1.7); }
}

/* Tooltip label */
.helpbot-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(10, 15, 28, 0.92);
    border: 1px solid rgba(0, 242, 138, 0.25);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(8px);
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.helpbot-fab:hover .helpbot-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ── Chat Window ────────────────────────────────────────── */
.helpbot-window {
    position: fixed;
    bottom: 166px;          /* above the FAB */
    right: 28px;
    z-index: 9800;
    width: 340px;
    max-height: 520px;
    border-radius: 20px;
    background: rgba(8, 14, 30, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(0, 242, 138, 0.18);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255,255,255,0.04),
        inset 0 1px 0 rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                visibility 0.35s ease,
                transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.helpbot-window.helpbot-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* ── Header ─────────────────────────────────────────────── */
.helpbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(0,242,138,0.12) 0%, rgba(26,110,255,0.1) 100%);
    border-bottom: 1px solid rgba(0, 242, 138, 0.12);
    flex-shrink: 0;
}

.helpbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.helpbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f28a 0%, #1a6eff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(0, 242, 138, 0.4);
}

.helpbot-avatar svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.helpbot-name {
    color: #fff;
    font-family: var(--font-head, 'Syne', sans-serif);
    font-weight: 700;
    font-size: 0.95rem;
}

.helpbot-status {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
}

.helpbot-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00f28a;
    display: inline-block;
    box-shadow: 0 0 6px #00f28a;
    animation: helpbotStatusPulse 2s ease-in-out infinite;
}

@keyframes helpbotStatusPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.helpbot-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.helpbot-close svg {
    width: 14px;
    height: 14px;
}

.helpbot-close:hover {
    background: rgba(255, 80, 80, 0.2);
    border-color: rgba(255, 80, 80, 0.35);
    color: #ff5050;
    transform: rotate(90deg);
}

/* ── Messages Area ──────────────────────────────────────── */
.helpbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
    min-height: 0;
}

.helpbot-messages::-webkit-scrollbar { width: 4px; }
.helpbot-messages::-webkit-scrollbar-track { background: transparent; }
.helpbot-messages::-webkit-scrollbar-thumb { background: rgba(0, 242, 138, 0.25); border-radius: 4px; }

/* Message bubbles */
.helpbot-msg {
    max-width: 82%;
    animation: msgSlideIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes msgSlideIn {
    from { opacity: 0; transform: translateY(12px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.helpbot-msg.bot {
    align-self: flex-start;
}

.helpbot-msg.user {
    align-self: flex-end;
}

.helpbot-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.84rem;
    line-height: 1.6;
    word-break: break-word;
}

.helpbot-msg.bot .helpbot-bubble {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 6px;
}

.helpbot-msg.user .helpbot-bubble {
    background: linear-gradient(135deg, rgba(0,242,138,0.22) 0%, rgba(26,110,255,0.18) 100%);
    border: 1px solid rgba(0, 242, 138, 0.25);
    color: #fff;
    border-bottom-right-radius: 6px;
}

.helpbot-msg-time {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    margin-top: 3px;
    padding: 0 4px;
}

.helpbot-msg.user .helpbot-msg-time {
    text-align: right;
}

/* Typing indicator */
.helpbot-typing .helpbot-bubble {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
}

.helpbot-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 242, 138, 0.7);
    animation: helpbotDot 1.2s ease-in-out infinite;
}

.helpbot-dot:nth-child(2) { animation-delay: 0.2s; }
.helpbot-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes helpbotDot {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40%            { transform: scale(1.2); opacity: 1; }
}

/* ── Quick Suggestion Buttons ───────────────────────────── */
.helpbot-quick-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 10px 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.helpbot-quick {
    background: rgba(0, 242, 138, 0.08);
    border: 1px solid rgba(0, 242, 138, 0.22);
    color: rgba(255,255,255,0.8);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.helpbot-quick:hover {
    background: rgba(0, 242, 138, 0.18);
    border-color: rgba(0, 242, 138, 0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 242, 138, 0.2);
}

/* ── Input Area ─────────────────────────────────────────── */
.helpbot-input-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.helpbot-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 9px 16px;
    color: #fff;
    font-size: 0.84rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: inherit;
}

.helpbot-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.helpbot-input:focus {
    border-color: rgba(0, 242, 138, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 242, 138, 0.1);
}

.helpbot-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f28a, #1a6eff);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 242, 138, 0.3);
}

.helpbot-send-btn svg {
    width: 16px;
    height: 16px;
}

.helpbot-send-btn:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(0, 242, 138, 0.5);
}

/* ── Mobile Responsive ──────────────────────────────────── */
@media (max-width: 480px) {
    .helpbot-fab {
        bottom: 90px;
        right: 16px;
        width: 54px;
        height: 54px;
    }

    .helpbot-fab svg {
        width: 22px;
        height: 22px;
    }

    .helpbot-window {
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        max-height: 82vh;
        border-radius: 20px 20px 0 0;
        border-bottom: none;
        transform-origin: bottom center;
    }

    .helpbot-tooltip { display: none; }
}