*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2153;
    --gold: #f5a623;
    --gold2: #d9901a;
    --light: #f4f5fa;
    --border: #e4e6ef;
    --dark: #111827;
    --text: #374151;
    --gray: #6b7280;
    --gray2: #9ca3af;
    --W: 1600px;
    --PX: 28px;
    --font: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: #fff;
    color: var(--dark);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: var(--W);
    margin: 0 auto;
    padding: 0 var(--PX);
}

/* TOP BAR */
#topbar {
    height: 72px;
    background: var(--navy);
}

#topbar .wrap,
#menubar .wrap {
    height: 100%;
    display: flex;
    align-items: center;
}

#topbar .wrap {
    justify-content: space-between;
}

.tb-logo,
.tb-right,
.tb-phone,
.ft-logo-inner,
.fcp,
.ft-office,
.wa-cta,
.wa-avg,
.tc-auth,
.cl,
.soc {
    display: flex;
    align-items: center;
}

.tb-logo {
    gap: 12px;
}

.tb-name {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
}

.tb-sep,
.ft-logo-sep {
    width: 1px;
    background: rgba(255, 255, 255, .28);
}

.tb-sep {
    height: 32px;
}

.tb-sub {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .62);
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
}

.tb-right {
    gap: 22px;
}

.tb-phone {
    gap: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .4px;
}

.tb-phone svg {
    width: 18px;
    height: 18px;
}

.tb-btn,
.h-btn,
.dfsub,
.mcta-btn {
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-family: var(--font);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: background .15s, color .15s, transform .2s;
}

.tb-btn {
    padding: 12px 26px;
    font-size: 13px;
}

.tb-btn:hover,
.dfsub:hover,
.wa-cta:hover {
    background: var(--gold2);
}

/* MENU BAR */
#menubar {
    height: 58px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
}

#menubar .wrap {
    justify-content: flex-start;
}

.nav-ul {
    width: 100%;
    height: 58px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-ul>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-ul>li>a {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .45px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: color .12s;
}

.nav-ul>li:first-child>a {
    padding-left: 0;
}

.nav-ul>li:last-child>a {
    padding-right: 0;
}

.nav-ul>li>a:hover {
    color: var(--navy);
}

.caret {
    font-size: 10px;
    color: var(--gray2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
           ENHANCED DROPDOWN — ONLY THIS BLOCK CHANGED
           ============================================ */
.dd-overlay {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav-ul>li:hover>.dd-overlay {
    display: block;
}

.dd-box {
    max-width: var(--W);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 320px;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    box-shadow: 0 12px 48px rgba(0, 0, 0, .13);
    overflow: hidden;
}

.dd-col {
    padding: 24px 26px;
    border-right: 1px solid var(--border);
}


.dd-col:last-of-type {
    border-right: none;
}

.dd-col h6 {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--gold);
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 16px !important;
}

.dd-col a {
    display: flex;
    align-items: center;
    gap: 0 !important;
    padding: 7px 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: .3px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background .12s, color .12s;
}

.dd-col a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d0d5e8;
    flex-shrink: 0;
    transition: background .12s;
    display: none !important;
    content: none !important;
}

.dd-col a::after {
    content: '›';
    margin-left: auto;
    font-size: 14px;
    color: #c0c8de;
    opacity: 0;
    transition: opacity .12s;
}

.dd-col a:hover {
    background: #f5f7ff;
    color: var(--navy);
}

.dd-col a:hover::before {
    background: var(--gold);
}

.dd-col a:hover::after {
    opacity: 1;
}

/* Right panel */
.dd-panel {
    background: #f8f9fc;
    padding: 24px 24px;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.dd-panel-head {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--navy);
}

/* Stats in one row */
.dd-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.dd-stat {
    background: #fff;
    border: 1px solid #e8eaf2;
    border-radius: 6px;
    padding: 8px 4px;
    text-align: center;
}

.dd-stat-num {
    font-size: 15px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.dd-stat-lbl {
    font-size: 8px;
    font-weight: 600;
    color: #7a8aaa;
    margin-top: 3px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* Tags */
.dd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.dd-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    background: #e8f0fe;
    padding: 4px 9px;
    border-radius: 20px;
    letter-spacing: .2px;
}

/* CTA button */
.dd-cta {
    display: block;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 11px 14px;
    border-radius: 5px;
    text-align: center;
    transition: background .15s;
    margin-top: auto;
}

.dd-cta:hover {
    background: var(--gold2);
    color: #fff;
}

/* ============================================
           END ENHANCED DROPDOWN
           ============================================ */

/* MOBILE MENU */
#mob.mob-overlay {
    display: block;
}

.mob-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, .58);
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
}

.mob-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mob-panel {
    width: min(88vw, 390px);
    height: 100%;
    background: #fff;
    transform: translateX(-105%);
    transition: transform .32s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 20px 0 60px rgba(0, 0, 0, .22);
}

.mob-overlay.show .mob-panel {
    transform: translateX(0);
}

.mob-hdr {
    background: var(--navy);
    min-height: 82px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mob-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.mob-logo-name {
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
}

.mob-logo-sep {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, .32);
    display: inline-block;
}

.mob-logo-sub {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.35;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
}

.mob-x {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
}

.mob-x:hover {
    background: rgba(255, 255, 255, .15);
    transform: rotate(90deg);
}

.mob-quick {
    padding: 16px;
    background: linear-gradient(135deg, rgba(26, 33, 83, .05), rgba(245, 166, 35, .08));
    border-bottom: 1px solid var(--border);
}

.mob-call-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(26, 33, 83, .10);
    border-radius: 16px;
    padding: 13px 14px;
    color: inherit;
    box-shadow: 0 10px 26px rgba(17, 24, 39, .06);
}

.mob-call-icon {
    width: 42px;
    height: 42px;
    background: rgba(245, 166, 35, .13);
    color: var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mob-call-icon svg {
    width: 20px;
    height: 20px;
}

.mob-call-card small {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 3px;
}

.mob-call-card strong {
    display: block;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .6px;
    color: var(--navy);
}

.mob-quote-btn {
    margin-top: 12px;
    min-height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #fff;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(245, 166, 35, .28);
}

.mob-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    background: #fff;
}

.mi {
    border: 0;
    margin-bottom: 8px;
}

.mi>a {
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 14px;
    background: #fff;
    color: var(--dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 18px rgba(17, 24, 39, .035);
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.mi>a:hover,
.mi.mo>a {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.marr {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(26, 33, 83, .08);
    color: var(--navy);
    font-size: 17px;
    line-height: 1;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.mi.mo .marr {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.msub {
    max-height: 0;
    margin: 0 8px;
    overflow: hidden;
    opacity: 0;
    transition: max-height .28s ease, opacity .2s ease, margin-top .2s ease;
}

.mi.mo .msub {
    max-height: 900px;
    margin-top: 8px;
    opacity: 1;
}

.msub h6,
.msub a {
    background: #f7f8fb;
}

.msub h6 {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    padding: 12px 14px 5px;
}

.msub a {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gray);
    padding: 9px 14px;
    text-transform: uppercase;
    letter-spacing: .35px;
    border-bottom: 1px solid rgba(17, 24, 39, .05);
}

.msub a:hover {
    color: var(--gold);
}

.msub a:last-child {
    border-radius: 0 0 12px 12px;
}

.mob-bottom {
    padding: 14px 16px 16px;
    border-top: 1px solid var(--border);
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mob-bottom-btn {
    min-height: 44px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-wa {
    background: #25D366;
    color: #fff;
}

.mob-call {
    background: var(--navy);
    color: #fff;
}

@media (max-width: 420px) {
    .mob-panel {
        width: 92vw;
    }

    .mob-logo {
        font-size: 22px;
    }

    .mob-call-card strong {
        font-size: 15px;
    }

    .mi>a {
        font-size: 12px;
    }
}

/* HERO */
#hero {
    background: var(--navy);
    overflow: hidden;
}

#hero .wrap {
    min-height: 540px;
    display: flex;
    align-items: center;
    position: relative;
}

.h-left {
    flex: 0 0 50%;
    padding: 85px 0;
    z-index: 2;
}

.h-ranked {
    font-size: clamp(48px, 4.2vw, 78px);
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 16px;
}

.h-title {
    font-size: clamp(44px, 4vw, 72px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.08;
    margin-bottom: 28px;
}

.h-desc {
    max-width: 590px;
    margin-bottom: 34px;
    font-size: 20px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.h-btn {
    display: inline-block;
    padding: 17px 34px;
    border: 2px solid var(--gold);
    font-size: 14px;
}

.h-btn:hover {
    background: transparent;
    color: var(--gold);
}

.h-right {
    flex: 0 0 50%;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.h-right svg {
    width: 400px;
    height: auto;
}

.girl-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* CONTENT SECTIONS */
#about,
#industries,
#services,
#testimonials,
#faq {
    padding: 90px 0;
}

#about,
#services,
#faq,
#footer {
    background: #fff;
}

#industries,
#testimonials,
#clients {
    background: var(--light);
}

#about .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.ab-left h2,
.sh h2 {
    font-size: clamp(34px, 2.4vw, 46px);
    font-weight: 800;
    color: var(--dark);
}

.ab-left h2 {
    margin-bottom: 16px;
}

.ab-left p,
.sh p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
}

.ab-left p {
    margin-bottom: 12px;
}

.ab-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vc {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 24px 26px;
}

.vc-ic {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vc-ic-blue {
    background: #e8f4ff;
}

.vc-ic-green {
    background: #e8fff2;
}

.vc-ic-red {
    background: #fff0f0;
}

.vc h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.vc p {
    font-size: 15.5px;
    color: var(--gray);
    line-height: 1.6;
}

.sh {
    text-align: center;
    margin-bottom: 44px;
}

.sh h2 {
    margin-bottom: 8px;
}

.sh p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
}

.ind-grid,
.svc-grid,
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ind-card,
.svc-card,
.tc {
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: box-shadow .2s, transform .2s;
}

.ind-card,
.tc {
    background: #fff;
}

.svc-card {
    background: var(--light);
}

.ind-card,
.svc-card {
    padding: 44px 28px;
    text-align: center;
}

.ind-card:hover,
.svc-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.ind-card .ico,
.svc-card .ico {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}

.ind-card h4,
.svc-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.ind-card p,
.svc-card p {
    font-size: 15.5px;
    color: var(--gray);
    line-height: 1.7;
}

.tc {
    padding: 30px;
}

.tc p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 18px;
}

.tc-auth {
    gap: 10px;
}

.tc-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.tc-info strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.tc-info span {
    font-size: 14px;
    color: var(--gray2);
}

/* FAQ */
#faq .wrap {
    max-width: var(--W);
}

.fi {
    border: 1px solid var(--border);
    border-radius: 5px;
    margin-bottom: 9px;
    overflow: hidden;
}

.fq {
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: #fff;
    user-select: none;
}

.fq:hover {
    background: var(--light);
}

.fi.open .fq {
    background: #e8ecf8;
    color: var(--navy);
    font-weight: 600;
}

.fq svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    transition: transform .2s;
}

.fi.open .fq svg {
    transform: rotate(180deg);
}

.fa {
    display: none;
    padding: 18px 24px 22px;
    font-size: 15.5px;
    color: var(--gray);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

.fi.open .fa {
    display: block;
}

/* CLIENTS MARQUEE */
#clients {
    background: var(--light);
    padding: 80px 0;
    overflow: hidden;
}

.clients-head {
    margin-bottom: 36px;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 4px 0;
}

.clients-marquee::before,
.clients-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--light), transparent);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--light), transparent);
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: clientsMarquee 28s linear infinite;
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

.cl {
    min-width: 190px;
    min-height: 86px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 22px;
    font-family: var(--font);
    font-weight: 800;
    font-size: 18px;
    color: var(--dark);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .035);
}

.cl-large {
    font-size: 22px;
    letter-spacing: 1px;
}

.cl-italic {
    font-size: 18px;
    font-style: italic;
}

.cl-dot {
    width: 14px;
    height: 14px;
    background: var(--dark);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.cl-circle {
    width: 18px;
    height: 18px;
    background: #555;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cl-badge {
    width: 19px;
    height: 19px;
    background: var(--dark);
    color: #fff;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@keyframes clientsMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    #clients {
        padding: 60px 0;
    }

    .clients-track {
        gap: 12px;
        animation-duration: 22s;
    }

    .cl {
        min-width: 155px;
        min-height: 70px;
        font-size: 15px;
        padding: 14px 16px;
    }

    .cl-large {
        font-size: 18px;
    }

    .clients-marquee::before,
    .clients-marquee::after {
        width: 60px;
    }
}

/* FOOTER */
#footer {
    border-top: 1px solid var(--border);
}

.ft-logo-row {
    text-align: center;
    padding: 36px 0 26px;
    position: relative;
}

.ft-logo-row::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
    height: 1px;
    background: var(--border);
    transform: translateX(-50%);
}

.ft-logo-inner {
    display: inline-flex;
    gap: 12px;
}

.ft-logo-name {
    font-size: 40px;
    font-weight: 900;
    color: var(--dark);
}

.ft-logo-sep {
    height: 34px;
    background: var(--border);
}

.ft-logo-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray2);
    line-height: 1.1;
    text-align: left;
}

.ft-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.5fr;
    gap: 36px;
    padding: 36px 0;
}

.fc h5 {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--dark);
    letter-spacing: 1.5px;
    margin-bottom: 13px;
}

.fc ul {
    list-style: none;
}

.fc ul li {
    margin-bottom: 9px;
}

.fc ul li a {
    font-size: 15px;
    color: var(--gray);
    transition: color .12s;
}

.fc ul li a:hover {
    color: var(--gold);
}

.fc-contact {
    margin-top: 18px;
}

.wa-block {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px;
}

.wa-block p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 11px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.wa-cta {
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: #fff;
    padding: 13px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    transition: background .15s;
}

.wa-cta svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    flex-shrink: 0;
}

.wa-avg {
    justify-content: center;
    gap: 3px;
    font-size: 10px;
    color: var(--gray2);
    text-align: center;
    margin-top: 8px;
}

.ft-socs {
    display: flex;
    gap: 7px;
    margin-top: 10px;
}

.soc {
    width: 30px;
    height: 30px;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--light);
    color: var(--gray);
    font-size: 12px;
    font-weight: 800;
    transition: all .15s;
}

.soc svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.soc-x {
    font-size: 13px;
    font-weight: 900;
}

.soc:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.ft-contact-full {
    background: #f5f6f8;
    border-top: 1px solid #e7e9ee;
    border-bottom: 1px solid #e7e9ee;
}

.ft-contact {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.fcp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.fcp-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #df3f4a;
    flex-shrink: 0;
}

.fcp-icon svg {
    width: 24px;
    height: 24px;
}

.fcp-text {
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2d3038;
}

.fcp-num {
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1a73e8;
}

.ft-offices {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
}

.ft-office {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #444852;
    white-space: nowrap;
}

.mini-flag {
    width: 18px;
    height: 12px;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}

.flag-india {
    background: linear-gradient(to bottom, #ff7a1a 0 33.33%, #ffffff 33.33% 66.66%, #138808 66.66% 100%);
}

.flag-uae {
    background: linear-gradient(to right, #d71920 0 28%, transparent 28%), linear-gradient(to bottom, #00732f 0 33.33%, #ffffff 33.33% 66.66%, #000000 66.66% 100%);
}

@media (max-width: 900px) {
    .ft-contact {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .fcp {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .fcp-text {
        font-size: 15px;
    }

    .fcp-num {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .ft-office {
        font-size: 12px;
        line-height: 1.4;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .fcp-num {
        width: 100%;
        padding-left: 38px;
        font-size: 21px;
    }
}

.ft-bottom-full {
    background: var(--navy);
}

.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 13px 0;
}

.ft-bottom p,
.ft-blinks a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ft-blinks {
    display: flex;
    flex-wrap: wrap;
}

.ft-blinks a {
    padding: 0 13px;
    border-right: 1px solid rgba(255, 255, 255, .2);
    transition: color .12s;
}

.ft-blinks a:last-child {
    border-right: none;
}

.ft-blinks a:hover {
    color: #fff;
}

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 8000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
    transition: transform .2s;
}

.wa-float:hover {
    transform: scale(1.1);
}

.wa-float svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

/* RESPONSIVE */
@media (max-width: 1440px) {
    :root {
        --W: 1320px;
        --PX: 26px;
    }

    .nav-ul>li>a {
        font-size: 12.5px;
        padding: 0 7px;
    }

    .h-ranked {
        font-size: clamp(42px, 4vw, 66px);
    }

    .h-title {
        font-size: clamp(38px, 3.8vw, 62px);
    }

    .h-desc {
        font-size: 18px;
    }

    .h-right svg {
        width: 360px;
    }
}

@media (max-width: 1024px) {
    :root {
        --PX: 24px;
    }

    #menubar .wrap {
        justify-content: space-between;
    }

    .nav-ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 900px) {

    #about .wrap,
    #hero .wrap {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    #about .wrap {
        gap: 36px;
    }

    .ind-grid,
    .svc-grid,
    .test-grid,
    .ft-cols {
        grid-template-columns: 1fr 1fr;
    }

    #hero .wrap {
        min-height: auto;
    }

    .h-left {
        width: 100%;
        flex: none;
        padding: 55px 0 20px;
    }

    .h-ranked {
        font-size: clamp(38px, 9vw, 58px);
    }

    .h-title {
        font-size: clamp(34px, 8vw, 54px);
    }

    .h-desc {
        font-size: 17px;
    }

    .h-right {
        width: 100%;
        flex: none;
        min-height: 300px;
    }

    .h-right svg {
        width: 320px;
    }

    .girl-wrap {
        position: relative;
        right: auto;
        bottom: auto;
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 600px) {
    :root {
        --PX: 18px;
    }

    #topbar {
        height: 58px;
        display: none;
    }

    .tb-name {
        font-size: 22px;
    }

    .tb-sub,
    .tb-right {
        display: none;
    }

    #menubar {
        height: 54px;
    }

    .h-left {
        padding: 42px 0 15px;
    }

    .h-ranked {
        font-size: 38px;
    }

    .h-title {
        font-size: 34px;
    }

    .h-desc {
        font-size: 16px;
    }

    .h-btn {
        font-size: 12px;
        padding: 14px 24px;
    }

    #about,
    #industries,
    #services,
    #testimonials,
    #faq {
        padding: 60px 0;
    }

    .ab-left h2,
    .sh h2 {
        font-size: 30px;
    }

    .ab-left p,
    .sh p {
        font-size: 15.5px;
    }

    .ind-grid,
    .svc-grid,
    .test-grid,
    .ft-cols {
        grid-template-columns: 1fr;
    }

    .ind-card,
    .svc-card,
    .tc {
        padding: 28px 20px;
    }

    .ft-contact,
    .ft-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .ft-offices {
        flex-direction: column;
        gap: 5px;
    }
}

/* MOBILE MENUBAR LOGO */
.mobile-menu-left {
    display: none;
    align-items: center;
    gap: 16px;
}

.mobile-bar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mbl-name {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--navy);
}

.mbl-sep {
    width: 1px;
    height: 28px;
    background: rgba(26, 33, 83, .25);
}

.mbl-sub {
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.4px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--gray2);
}

@media (max-width: 1024px) {
    .mobile-menu-left {
        display: flex;
    }

    #menubar .wrap {
        justify-content: space-between;
    }

    .mobile-menu-left {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .mobile-bar-logo {
        order: 1;
        margin-left: 0;
        margin-right: auto;
        justify-content: flex-start;
    }

    .hamburger {
        order: 2;
        margin-left: auto;
        margin-right: 0;
        display: flex;
    }
}

@media (max-width: 420px) {
    .mobile-menu-left {
        gap: 10px;
    }

    .mbl-name {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .mbl-sep {
        height: 24px;
    }

    .mbl-sub {
        font-size: 7px;
        letter-spacing: 1px;
    }
}

.mob-panel {
    margin-left: auto;
    margin-right: 0;
    transform: translateX(105%);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .22);
}

.mob-overlay.show .mob-panel {
    transform: translateX(0);
}

/* FINAL DROPDOWN SPACE FIX */
@media (min-width: 1025px) {
    .dd-box {
        width: min(calc(100vw - 56px), var(--W));
        display: grid !important;
        grid-template-columns: 340px 340px minmax(360px, 1fr) !important;
        align-items: stretch;
    }

    .dd-col {
        flex: unset !important;
        padding: 22px !important;
        border-right: 1px solid var(--border);
    }

    .dd-panel {
        flex: unset !important;
        min-width: 0 !important;
        padding: 22px 24px !important;
    }

    .dd-col a {
        width: 100%;
        min-height: 40px;
        background: #fbfcff;
        border: 1px solid #edf0f7;
        border-radius: 7px;
        padding: 8px 12px !important;
        margin-bottom: 7px;
        justify-content: flex-start;
    }

    .dd-col a::after {
        margin-left: 10px !important;
        opacity: 1;
    }

    .dd-col a:hover {
        background: #f3f6ff;
        border-color: #dfe5f5;
    }
}

@media (max-width: 1440px) and (min-width: 1025px) {
    .dd-box {
        grid-template-columns: 310px 310px minmax(330px, 1fr) !important;
    }
}

/* DROPDOWN INNER SPACE FIX - OUTER WIDTH SAME */
@media (min-width: 1025px) {
    .dd-box {
        max-width: var(--W);
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr 1fr 340px;
        align-items: stretch;
    }

    .dd-col {
        flex: unset !important;
        padding: 24px 28px;
        border-right: 1px solid var(--border);
    }

    .dd-panel {
        flex: unset !important;
        width: auto !important;
        padding: 24px 24px;
    }

    .dd-col a {
        width: 100%;
        min-height: 38px;
        justify-content: flex-start;
        padding: 8px 10px;
        margin-bottom: 5px;
        background: #fbfcff;
        border: 1px solid #edf0f7;
        border-radius: 7px;
    }

    .dd-col a::after {
        margin-left: 8px !important;
        opacity: 1;
    }

    .dd-col a:hover {
        background: #f3f6ff;
        border-color: #dfe5f5;
    }

    .dd-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .dd-stat {
        padding: 10px 8px;
    }

    .dd-tags {
        gap: 7px;
    }

    .dd-tag {
        padding: 5px 10px;
    }
}

.dd-text {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 5px;
}

/* DROPDOWN POINTS - CLEAN CHECK STYLE */
/* DROPDOWN POINTS - LINE WISE CLEAN STYLE */
.dd-points {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dd-points li {
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--dark);
}

.dd-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(245, 166, 35, .14);
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dd-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.dd-cta-row .dd-cta {
    margin-top: 0;
    padding: 11px 12px;
    font-size: 10.5px;
    white-space: nowrap;
}

.dd-cta-outline {
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--gold);
}

.dd-cta-outline:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

@media (max-width: 1200px) {
    .dd-cta-row {
        grid-template-columns: 1fr;
    }
}

/* HERO ENQUIRY FORM */
.hero-form-card {
    width: min(100%, 520px);
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
    position: relative;
    z-index: 2;
}

.hero-form-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 166, 35, .14);
    color: var(--gold);
    border: 1px solid rgba(245, 166, 35, .28);
    border-radius: 40px;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-form-card h3 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
}

.hero-form-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 20px;
}

.hero-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.hero-field label {
    display: block;
    font-size: 11px;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 6px;
}

.hero-field input:not([type="checkbox"]),
.hero-field select,
.hero-field textarea {
    width: 100%;
    border: 1px solid #e2e6f0;
    background: #f8f9fc;
    border-radius: 10px;
    padding: 13px 14px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--dark);
    outline: none;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.hero-field textarea {
    resize: none;
}

.hero-field input:not([type="checkbox"]):focus,
.hero-field select:focus,
.hero-field textarea:focus {
    background: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, .14);
}

.hero-submit-btn {
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 12px;
    background: var(--gold);
    color: #fff;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
}

.hero-submit-btn:hover {
    background: var(--gold2);
    transform: translateY(-1px);
}

.hero-form-note {
    text-align: center;
    font-size: 11.5px;
    color: var(--gray2);
    line-height: 1.5;
}

/* Hero form alignment */
#hero .h-right {
    align-items: center;
    justify-content: flex-end;
    padding: 50px 0;
}

/* Mobile responsive */
@media (max-width: 900px) {
    #hero .h-right {
        justify-content: center;
        padding: 20px 0 50px;
        min-height: auto;
    }

    .hero-form-card {
        width: 100%;
        max-width: 560px;
    }
}

@media (max-width: 600px) {
    .hero-form-card {
        padding: 22px;
        border-radius: 16px;
    }

    .hero-form-card h3 {
        font-size: 24px;
    }

    .hero-form-row {
        grid-template-columns: 1fr;
    }
}

/* ROOT HOME HERO IMAGE */
.rm-home-hero-visual {
    width: 100%;
    height: 540px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.rm-home-hero-img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 110%;
    object-fit: contain;
    object-position: right bottom;
    transform: translateY(45px);
}

/* Mobile */
@media (max-width: 900px) {
    .rm-home-hero-visual {
        height: 380px;
        justify-content: center;
    }

    .rm-home-hero-img {
        max-width: 460px;
        object-position: center bottom;
    }
}

@media (max-width: 600px) {
    .rm-home-hero-visual {
        height: 310px;
    }

    .rm-home-hero-img {
        max-width: 100%;
    }
}

/* HOME HERO IMAGE - FINAL CLEAN FIX */
#hero.home-hero-image {
    background: var(--navy);
    overflow: hidden;
}

#hero.home-hero-image .wrap {
    min-height: 540px;
    display: flex;
    align-items: stretch;
}

#hero.home-hero-image .h-left {
    flex: 0 0 50%;
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.home-hero-right {
    flex: 0 0 50%;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.home-hero-img-wrap {
    width: 100%;
    height: 540px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
}

.home-hero-person-img {
    display: block;
    width: auto;
    height: 540px;
    max-width: none;
    object-fit: contain;
    object-position: right bottom;
    margin: 0;
    padding: 0;
}

/* Mobile */
@media (max-width: 900px) {
    #hero.home-hero-image .wrap {
        min-height: auto;
        flex-direction: column;
    }

    #hero.home-hero-image .h-left {
        width: 100%;
        flex: none;
        padding: 55px 0 20px;
    }

    .home-hero-right {
        width: 100%;
        flex: none;
        min-height: 360px;
        justify-content: center;
    }

    .home-hero-img-wrap {
        height: 360px;
        justify-content: center;
    }

    .home-hero-person-img {
        height: 360px;
        object-position: center bottom;
    }
}

@media (max-width: 600px) {

    .home-hero-right,
    .home-hero-img-wrap {
        min-height: 300px;
        height: 300px;
    }

    .home-hero-person-img {
        height: 300px;
    }
}

/* HERO BUTTON WIDTH FIX */
#hero.home-hero-image .h-left {
    align-items: flex-start;
}

#hero.home-hero-image .h-btn {
    width: auto;
    max-width: max-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 17px 34px;
}

/* FACEBOOK MANAGEMENT PAGE SECTIONS */
.fb-section {
    padding: 90px 0;
    background: #fff;
}

.fb-light {
    background: var(--light);
}

.fb-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--gold);
}

.fb-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.fb-two-col h2,
.fb-center-head h2 {
    font-size: clamp(32px, 2.4vw, 46px);
    line-height: 1.15;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
}

.fb-two-col p,
.fb-center-head p,
.fb-card p,
.fb-package p,
.fb-process-grid p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.fb-center-head {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.fb-trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.fb-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    border-left: 1px solid var(--border);
}

.fb-trust-grid div {
    padding: 22px 14px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.fb-trust-grid strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
}

.fb-trust-grid span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 800;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.fb-problem-card,
.fb-card,
.fb-package,
.fb-process-grid>div {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .04);
}

.fb-problem-card h3,
.fb-card h3,
.fb-package h3,
.fb-process-grid h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 10px;
}

.fb-problem-card ul,
.fb-package ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.fb-problem-card li,
.fb-package li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text);
}

.fb-problem-card li::before,
.fb-package li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 900;
}

.fb-card-grid,
.fb-process-grid,
.fb-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fb-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.fb-card:hover,
.fb-package:hover,
.fb-process-grid>div:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(17, 24, 39, .08);
}

.fb-btn,
.fb-package a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    background: var(--gold);
    color: #fff;
    border-radius: 6px;
    padding: 14px 22px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.fb-btn:hover,
.fb-package a:hover {
    background: var(--gold2);
}

.fb-benefit-list,
.fb-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fb-benefit-list div,
.fb-check-grid div {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.fb-benefit-list div::before,
.fb-check-grid div::before {
    content: "✓";
    color: var(--gold);
    font-weight: 900;
    margin-right: 8px;
}

.fb-pill-grid,
.fb-sample-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.fb-pill-grid span,
.fb-sample-grid div {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    box-shadow: 0 8px 22px rgba(17, 24, 39, .04);
}

.fb-process-grid span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    align-items: center;
    justify-content: center;
    background: rgba(245, 166, 35, .14);
    color: var(--gold);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}

.fb-package.featured {
    border-color: var(--gold);
    box-shadow: 0 18px 45px rgba(245, 166, 35, .14);
}

@media (max-width: 900px) {
    .fb-section {
        padding: 60px 0;
    }

    .fb-two-col,
    .fb-card-grid,
    .fb-process-grid,
    .fb-package-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .fb-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fb-benefit-list,
    .fb-check-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .fb-trust-grid {
        grid-template-columns: 1fr;
    }

    .fb-two-col h2,
    .fb-center-head h2 {
        font-size: 30px;
    }
}

/* SERVICE HERO BACKGROUND - DARK PREMIUM LOOK */
#hero.service-hero-bg {
    position: relative;
    background:
        linear-gradient(90deg,
            rgba(26, 33, 83, .96) 0%,
            rgba(26, 33, 83, .90) 45%,
            rgba(26, 33, 83, .72) 100%),
        var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

#hero.service-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 35%, rgba(245, 166, 35, .12), transparent 32%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .22));
    z-index: 0;
    pointer-events: none;
}

#hero.service-hero-bg .wrap {
    position: relative;
    z-index: 2;
}

#hero.service-hero-bg .h-ranked {
    color: var(--gold);
    text-shadow: 0 8px 28px rgba(0, 0, 0, .25);
}

#hero.service-hero-bg .h-title {
    color: #fff;
    text-shadow: 0 12px 34px rgba(0, 0, 0, .32);
}

#hero.service-hero-bg .h-desc {
    color: rgba(255, 255, 255, .82);
}

#hero.service-hero-bg .hero-form-card {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .38);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .30);
}

/* FACEBOOK OVERVIEW SECTION */
.fb-overview-sec {
    background:
        linear-gradient(135deg, #f7f8fc 0%, #ffffff 55%, #f4f5fa 100%);
    position: relative;
    overflow: hidden;
}

.fb-overview-sec::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    top: -120px;
    background: rgba(245, 166, 35, .12);
    border-radius: 50%;
}

.fb-overview-box {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.fb-overview-left h2 {
    font-size: clamp(34px, 2.6vw, 50px);
    line-height: 1.12;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 18px;
}

.fb-overview-left p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 14px;
}

.fb-overview-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.fb-overview-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 14px 36px rgba(17, 24, 39, .06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.fb-overview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 166, 35, .45);
    box-shadow: 0 22px 48px rgba(17, 24, 39, .10);
}

.fb-overview-card span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 166, 35, .14);
    color: var(--gold);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.fb-overview-card h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
}

.fb-overview-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--gray);
}

@media (max-width: 900px) {
    .fb-overview-box {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .fb-overview-right {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .fb-overview-right {
        grid-template-columns: 1fr;
    }

    .fb-overview-card {
        padding: 22px;
    }
}
@media (max-width: 767px) {
	.home-hero-right {
		display: none !important;
	}
}
/* ===== Lead form: success modal + error toast ===== */
.hero-success-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 32, .6);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.hero-success-box {
    background: #fff;
    max-width: 420px;
    width: 100%;
    border-radius: 16px;
    padding: 38px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    animation: heroPop .25s ease;
}
@keyframes heroPop {
    from { transform: translateY(12px) scale(.96); opacity: 0; }
    to   { transform: none; opacity: 1; }
}
.hero-success-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    font-size: 38px;
    line-height: 68px;
    font-weight: 700;
}
.hero-success-box h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #000080;
}
.hero-success-box p {
    margin: 0 0 22px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}
.hero-success-box button {
    background: #000080;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.hero-success-box button:hover { background: #1a7de8; }

.hero-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    background: #b91c1c;
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    transform: translateY(140%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
}
.hero-toast.show { transform: none; opacity: 1; }
.hero-toast strong { display: block; font-size: 14px; margin-bottom: 2px; }
.hero-toast span { font-size: 13px; opacity: .95; }

.lead-submit-btn[disabled] { opacity: .65; cursor: not-allowed; }

@media (max-width: 600px) {
    .hero-toast { left: 16px; right: 16px; max-width: none; bottom: 16px; }
}

/* ===== Success modal actions + WhatsApp + char-count states ===== */
.hero-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4px;
}
.hero-modal-btn {
    display: inline-block;
    border: 0;
    border-radius: 8px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    background: #000080;
    color: #fff;
    transition: background .2s;
}
.hero-modal-btn:hover { background: #1a7de8; }
.hero-wa-btn {
    background: #25d366;
}
.hero-wa-btn:hover { background: #1eb858; }

.hero-char-count.limit-near { color: #d97706 !important; }
.hero-char-count.limit-full { color: #dc3545 !important; }

/* ===== Form + mobile layout hotfix: 2026-06-23 ===== */
.hero-human-check-field {
    margin-top: -2px;
}

.hero-human-check {
    width: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    min-height: 48px;
    padding: 12px 14px;
    background: #f8f9fc;
    border: 1px solid #e2e6f0;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 !important;
}

.hero-human-check input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    margin: 0 !important;
    padding: 0 !important;
    accent-color: var(--gold);
    cursor: pointer;
}

.hero-human-check span {
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.3;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .8px;
}

.hero-success-modal {
    background: rgba(15, 23, 42, .52);
    backdrop-filter: blur(3px);
}

.hero-success-box {
    max-width: 430px;
    border-radius: 20px;
}

.hero-success-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 28px;
    border: 0;
    border-radius: 8px;
    background: #000080;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}

.hero-modal-btn:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-1px);
}

.hero-wa-btn,
.hero-wa-btn:hover {
    background: #22c55e;
    color: #fff;
}

@media (max-width: 1024px) {
    #menubar {
        position: relative !important;
        top: auto !important;
        z-index: 50 !important;
    }

    #menubar .wrap {
        justify-content: space-between !important;
    }

    .nav-ul {
        display: none !important;
    }

    .mobile-menu-left {
        display: flex !important;
        width: 100% !important;
    }

    .hamburger {
        display: flex !important;
    }

    .dd-overlay {
        display: none !important;
    }
}

@media (max-width: 900px) {
    #hero.service-hero-bg {
        overflow: visible;
    }

    #hero.service-hero-bg .wrap,
    #hero .wrap {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    #hero .h-left {
        padding: 42px 0 12px;
    }

    #hero .h-right {
        width: 100%;
        min-height: auto;
        padding: 14px 0 42px;
        justify-content: center;
    }

    .hero-form-card {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    :root {
        --PX: 18px;
    }

    .hero-form-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .hero-field input:not([type="checkbox"]),
    .hero-field select,
    .hero-field textarea {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 14px;
    }

    .hero-success-modal {
        padding: 16px;
    }

    .hero-success-box {
        max-width: 100%;
        padding: 32px 20px;
        border-radius: 18px;
    }

    .hero-success-actions {
        gap: 10px;
    }

    .hero-modal-btn {
        flex: 1 1 140px;
        padding: 12px 18px;
    }
}

