/* ─── TOKENS ─────────────────────────────────── */
:root {
    --gold: #C9971A;
    --gold-lt: #F0BC3A;
    --gold-pale: #FDF6E3;
    --navy: #08152B;
    --navy-mid: #102040;
    --navy-lt: #1A3560;
    --cream: #F9F6EF;
    --white: #FFFFFF;
    --ink: #1A1A2E;
    --muted: #6C7A8D;
    --border: #E4DDD0;

    --ff-display: 'Cormorant Garamond', serif;
    --ff-body: 'Outfit', sans-serif;

    --r-card: 18px;
    --r-btn: 10px;
    --trans: 0.3s ease;
}

/* ─── RESET ──────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ff-body);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ─── SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ─── NAV ────────────────────────────────────── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(8, 21, 43, 0.97);
    backdrop-filter: blur(16px);
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    border-bottom: 1px solid rgba(201, 151, 26, 0.18);
    transition: height var(--trans), box-shadow var(--trans);
}

#nav.scrolled {
    height: 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.nav-logo-badge {
    width: 42px;
    height: 42px;
    background: linear-gradient(134deg, var(--gold), var(--gold-lt));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.5px;
}

.nav-logo-txt .brand {
    font-family: var(--ff-display);
    font-size: 19px;
    color: #fff;
    letter-spacing: .3px;
}

.nav-logo-txt .sub {
    font-size: 9.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--trans);
}

.nav-links a:hover {
    color: var(--gold-lt);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--navy) !important;
    padding: 10px 22px;
    border-radius: var(--r-btn);
    font-weight: 700 !important;
    font-size: 13px !important;
    box-shadow: 0 4px 16px rgba(201, 151, 26, .35);
    transition: transform var(--trans), box-shadow var(--trans);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 151, 26, .5);
}

/* hamburger */
.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.ham span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--trans);
}

.ham.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ham.open span:nth-child(2) {
    opacity: 0;
}

.ham.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(8, 21, 43, 0.99);
    padding: 24px 6%;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid rgba(201, 151, 26, .2);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.mobile-menu .mob-cta {
    color: var(--navy) !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    text-align: center;
    padding: 14px;
    border-radius: var(--r-btn);
    border: none;
    font-weight: 700;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: 130px 6% 80px;
    position: relative;
    overflow: hidden;
}

/* Background image with overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(0.5);
    z-index: 1;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(ellipse 55% 70% at 85% 45%, rgba(201, 151, 26, .09) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 15% 75%, rgba(26, 53, 96, .7) 0%, transparent 55%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background-image:
        linear-gradient(rgba(201, 151, 26, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 151, 26, .035) 1px, transparent 1px);
    background-size: 64px 64px;
}

/* animated orbiting circle */
.hero-orb {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 580px;
    height: 580px;
    border-radius: 50%;
    border: 1px solid rgba(201, 151, 26, .12);
    animation: spin 40s linear infinite;
    z-index: 2;
}

.hero-orb::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border-radius: 50%;
    border: 1px solid rgba(201, 151, 26, .08);
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-inner {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 151, 26, .12);
    border: 1px solid rgba(201, 151, 26, .3);
    color: var(--gold-lt);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold-lt);
    border-radius: 50%;
    animation: blink 1.6s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-lt);
}

.hero-desc {
    font-size: 16.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 36px;
    max-width: 540px;
}

.btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--navy);
    padding: 15px 32px;
    border-radius: var(--r-btn);
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(201, 151, 26, .38);
    transition: transform var(--trans), box-shadow var(--trans);
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 151, 26, .55);
}

.btn-ghost {
    border: 1.5px solid rgba(201, 151, 26, .45);
    color: var(--gold-lt);
    padding: 15px 32px;
    border-radius: var(--r-btn);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--trans);
    display: inline-block;
}

.btn-ghost:hover {
    background: rgba(201, 151, 26, .1);
    border-color: var(--gold-lt);
}

/* stats card col */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 151, 26, .18);
    border-radius: 16px;
    padding: 24px 28px;
    transition: transform var(--trans);
}

.stat-card:hover {
    transform: translateX(-5px);
}

.stat-num {
    font-family: var(--ff-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-lt);
    line-height: 1;
}

.stat-lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .5);
    margin-top: 6px;
}

/* hero scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .35);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 5;
}

.scroll-cue-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, transparent, rgba(201, 151, 26, .6));
    animation: lineGrow 1.8s ease-in-out infinite;
}

@keyframes lineGrow {

    0%,
    100% {
        opacity: .3;
        height: 30px
    }

    50% {
        opacity: 1;
        height: 50px
    }
}

/* ─── MARQUEE ─────────────────────────────────── */
.marquee-wrap {
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    overflow: hidden;
    padding: 13px 0;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll-x 28s linear infinite;
}

.marquee-item {
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0 36px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-item::after {
    content: '◆';
    font-size: 7px;
}

@keyframes scroll-x {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ─── SECTION COMMON ─────────────────────────── */
.sec {
    padding: 80px 6%;
}

.sec-alt {
    background: var(--white);
}

.sec-dark {
    background: var(--navy);
}

.sec-cream {
    background: var(--cream);
}

.sec-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.sec-dark .sec-label {
    color: var(--gold-lt);
}

h2 {
    font-family: var(--ff-display);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--ink);
}

.sec-dark h2 {
    color: #fff;
}

.sec-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 14px;
}

.sec-dark .sec-sub {
    color: rgba(255, 255, 255, .55);
}

.center {
    text-align: center;
}

.center h2,
.center .sec-sub {
    margin-left: auto;
    margin-right: auto;
}

.center .sec-sub {
    max-width: 520px;
}

/* divider */
.divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    border-radius: 2px;
    margin: 20px 0 0;
}

.center .divider {
    margin: 20px auto 0;
}

/* ─── ABOUT ──────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-visual {
    background: linear-gradient(135deg, rgba(16, 32, 64, 0.9), rgba(26, 53, 96, 0.9)), url('../images/lead-gen.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-content: center;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 70% 30%, rgba(201, 151, 26, .13), transparent 65%);
    pointer-events: none;
}

.about-bg-text {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: var(--ff-display);
    font-size: 140px;
    font-weight: 700;
    color: rgba(201, 151, 26, .07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.av-box {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 151, 26, .18);
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform var(--trans);
}

.av-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .1);
}

.av-box .av-icon {
    font-size: 34px;
    margin-bottom: 10px;
}

.av-box p {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
}

.about-text .sec-sub {
    margin-top: 0;
}

.about-points {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ap-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ap-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ap-text strong {
    display: block;
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: 3px;
}

.ap-text span {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5;
}

/* ─── SERVICES ───────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
    cursor: default;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans);
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(8, 21, 43, .1);
    border-color: rgba(201, 151, 26, .3);
}

.svc-card:hover::after {
    transform: scaleX(1);
}

.svc-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 18px;
}

.svc-icon {
    font-size: 38px;
    margin-bottom: 16px;
}

.svc-card h3 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.svc-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── PROCESS ────────────────────────────────── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    margin-top: 60px;
}

.proc-step {
    padding: 40px 30px;
    border-right: 1px solid rgba(201, 151, 26, .15);
    position: relative;
    transition: background var(--trans);
}

.proc-step:last-child {
    border-right: none;
}

.proc-step:hover {
    background: rgba(201, 151, 26, .05);
}

.proc-num {
    font-family: var(--ff-display);
    font-size: 60px;
    font-weight: 700;
    color: rgba(201, 151, 26, .18);
    line-height: 1;
    margin-bottom: 16px;
}

.proc-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-lt);
    margin-bottom: 10px;
}

.proc-step p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
}

/* ─── FOR WHOM ───────────────────────────────── */
.whom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 56px;
}

.whom-card {
    border-radius: 22px;
    padding: 50px 44px;
    position: relative;
    overflow: hidden;
    transition: transform var(--trans);
}

.whom-card:hover {
    transform: translateY(-6px);
}

.whom-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
}

.whom-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
}

.whom-card .wc-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.whom-dark .wc-tag {
    color: var(--gold-lt);
}

.whom-gold .wc-tag {
    color: var(--navy-mid);
}

.whom-card h3 {
    font-family: var(--ff-display);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 28px;
}

.whom-dark h3 {
    color: #fff;
}

.whom-gold h3 {
    color: var(--navy);
}

.whom-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 34px;
}

.whom-list li {
    font-size: 14.5px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.whom-dark .whom-list li {
    color: rgba(255, 255, 255, .75);
}

.whom-gold .whom-list li {
    color: var(--navy-mid);
}

.whom-list li::before {
    content: '→';
    font-weight: 700;
    flex-shrink: 0;
}

.whom-dark .whom-list li::before {
    color: var(--gold-lt);
}

.whom-gold .whom-list li::before {
    color: var(--navy);
    opacity: .6;
}

.btn-whom-dark {
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--navy);
    padding: 13px 26px;
    border-radius: var(--r-btn);
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: transform var(--trans);
}

.btn-whom-dark:hover {
    transform: translateY(-2px);
}

.btn-whom-gold {
    background: var(--navy);
    color: var(--gold-lt);
    padding: 13px 26px;
    border-radius: var(--r-btn);
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: transform var(--trans);
}

.btn-whom-gold:hover {
    transform: translateY(-2px);
}

/* ─── TESTIMONIALS ───────────────────────────── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
    margin-top: 56px;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    padding: 34px;
    transition: box-shadow var(--trans), border-color var(--trans);
}

.testi-card:hover {
    box-shadow: 0 16px 48px rgba(201, 151, 26, .1);
    border-color: rgba(201, 151, 26, .25);
}

.testi-stars {
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testi-card blockquote {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 22px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-lt);
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.testi-role {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* ─── CTA BANNER ─────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
    text-align: center;
    padding: 100px 6%;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 80% at 50% 50%, rgba(201, 151, 26, .1), transparent 65%);
    pointer-events: none;
}

.cta-banner h2 {
    color: #fff;
    position: relative;
}

.cta-banner .sec-sub {
    position: relative;
    max-width: 500px;
    margin: 16px auto 40px;
}

.cta-btn-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ─── CONTACT ────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: start;
}

.ci h2 {
    margin-bottom: 16px;
}

.ci-desc {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 36px;
}

.ci-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ci-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ci-icon-box {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ci-row strong {
    display: block;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--muted);
    margin-bottom: 4px;
}

.ci-row span {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--ink);
}

/* form panel */
.form-panel {
    background: var(--navy);
    border-radius: 22px;
    padding: 46px 42px;
}

.form-panel h3 {
    font-family: var(--ff-display);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fg {
    margin-bottom: 18px;
}

.fg label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 8px;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(201, 151, 26, .22);
    border-radius: 9px;
    padding: 13px 15px;
    color: #fff;
    font-size: 15px;
    font-family: var(--ff-body);
    outline: none;
    transition: border-color var(--trans);
    -webkit-appearance: none;
    appearance: none;
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: rgba(255, 255, 255, .3);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--gold-lt);
}

.fg select option {
    background: var(--navy-mid);
}

.fg textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--navy);
    border: none;
    border-radius: var(--r-btn);
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--ff-body);
    letter-spacing: .3px;
    transition: transform var(--trans), box-shadow var(--trans);
    margin-top: 4px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(201, 151, 26, .45);
}

/* success msg */
.success-msg {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-msg .check {
    font-size: 56px;
    margin-bottom: 16px;
}

.success-msg h4 {
    font-family: var(--ff-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-lt);
    margin-bottom: 10px;
}

.success-msg p {
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
    background: #040E1C;
    padding: 64px 6% 28px;
    color: rgba(255, 255, 255, .5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 52px;
}

.fb-logo {
    margin-bottom: 18px;
}

.fb-desc {
    font-size: 14px;
    line-height: 1.75;
    max-width: 250px;
}

.fc h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #fff;
    margin-bottom: 18px;
}

.fc ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fc ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    transition: color var(--trans);
}

.fc ul li a:hover {
    color: var(--gold-lt);
}

.footer-bot {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

.footer-bot a {
    color: var(--gold);
}

/* ─── REVEAL ANIMATIONS ──────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 130px;
    }

    .hero-orb {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .whom-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:768px) {
    .sec {
        padding: 72px 5%;
    }

    .hero {
        padding: 110px 5% 70px;
    }

    .nav-links {
        display: none;
    }

    .ham {
        display: flex;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .proc-step {
        border-right: none;
        border-bottom: 1px solid rgba(201, 151, 26, .15);
    }

    .proc-step:last-child {
        border-bottom: none;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .form-panel {
        padding: 34px 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bot {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width:500px) {
    .whom-card {
        padding: 36px 26px;
    }

    .about-visual {
        grid-template-columns: 1fr 1fr;
    }
}

/* ─── PREMIUM CHAT BOX SYSTEM ──────────────── */
/* ─── PREMIUM CHAT & WHATSAPP SYSTEM ──────────────── */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10001;
    font-family: 'Outfit', sans-serif;
}

/* Chat Bot Toggle (Right Side) */
.chat-toggle {
    width: 65px;
    height: 65px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(8, 21, 43, 0.4);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(201, 151, 26, 0.3);
    position: relative;
    font-size: 28px;
}

.chat-toggle:hover {
    transform: scale(1.1) rotate(-5deg);
    background: #0d254d;
}

/* WhatsApp Direct (Left Side) */
.wa-direct {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 10001;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-decoration: none !important;
}

.wa-direct:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Common Pulses */
.chat-toggle::before,
.wa-direct::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    animation: chat-ping 2s infinite;
}

.chat-toggle::before {
    border: 2px solid var(--gold);
}

.wa-direct::before {
    border: 2px solid #25d366;
}

@keyframes chat-ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 350px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Header */
.chat-header {
    background: var(--navy);
    padding: 24px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.agent-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}

.agent-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.agent-info span {
    font-size: 12px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
}

/* Body & Messages */
.chat-body {
    padding: 24px 20px;
    background: #f8fafc;
    height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-body::-webkit-scrollbar {
    width: 5px;
}

.chat-body::-webkit-scrollbar-track {
    background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.msg-bubble {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 85%;
    position: relative;
    animation: msg-slide 0.2s ease;
}

@keyframes msg-slide {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.msg-bot {
    background: white;
    color: var(--navy);
    border-radius: 16px 16px 16px 4px;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.msg-user {
    background: var(--navy);
    color: white;
    border-radius: 16px 16px 4px 16px;
    align-self: flex-end;
    box-shadow: 0 4px 12px rgba(8, 21, 43, 0.15);
}

.msg-time {
    font-size: 10px;
    opacity: 0.5;
    margin-top: 5px;
    display: block;
    text-align: right;
}

.typing {
    font-size: 12px;
    color: var(--navy);
    opacity: 0.6;
    padding: 12px 16px;
    display: none;
}

/* Footer */
.chat-footer {
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
}

.chat-input {
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    border: none;
    background: #f1f5f9;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    outline: none;
}

.chat-send {
    background: #25d366;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.chat-send:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .wa-direct {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-toggle {
        width: 55px;
        height: 55px;
    }

    .chat-window {
        bottom: 75px;
        width: calc(100vw - 40px);
        right: 0;
    }
}

/* Final Styles EOF */