:root {
    /* Empire Navy + Gold palette - matched with logo */
    --navy-900: #0a1f3d;
    --navy-800: #112a4d;
    --navy-700: #1a3666;
    --gold-500: #c9a449;
    --gold-400: #d4b766;
    --gold-300: #e6d28f;
    --gold-100: #f7efd6;

    --cream:    #faf7f1;
    --cream-2:  #f3ede0;
    --white:    #ffffff;
    --grey-50:  #f8f9fb;
    --grey-100: #eef0f4;
    --grey-200: #dde1e8;
    --grey-400: #8a94a6;
    --grey-600: #4a5468;
    --grey-800: #1f2937;

    --shadow-sm: 0 4px 12px rgba(10,31,61,0.06);
    --shadow-md: 0 12px 32px rgba(10,31,61,0.08);
    --shadow-lg: 0 24px 60px rgba(10,31,61,0.12);
    --shadow-gold: 0 20px 50px rgba(201,164,73,0.25);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--grey-800);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── PROGRESS BAR ─── */
#progress {
    position: fixed; top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    z-index: 10000;
    transition: width 0.1s;
    box-shadow: 0 0 12px rgba(201,164,73,0.5);
}

/* ─── TOP STRIP ─── */
.top-strip {
    background: var(--navy-900);
    color: var(--white);
    padding: 0.65rem 0;
    font-size: 0.82rem;
}
.top-strip-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.top-left, .top-right {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}
.top-left a, .top-right a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
    font-weight: 400;
}
.top-left a:hover, .top-right a:hover { color: var(--gold-400); }
.top-strip svg { width: 14px; height: 14px; stroke: var(--gold-400); }
.top-socials { display: flex; gap: 0.7rem; }
.top-socials a {
    width: 26px; height: 26px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
}
.top-socials a:hover { background: var(--gold-500); border-color: var(--gold-500); }
.top-socials svg { width: 12px; height: 12px; stroke: var(--white); }

/* ─── NAVBAR ─── */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 5%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img { height: 42px; }
.nav-menu {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}
.nav-menu a {
    color: var(--grey-800);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.25s;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold-500);
    transition: width 0.3s ease;
}
.nav-menu a:hover { color: var(--navy-900); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.active { color: var(--navy-900); }
.nav-menu a.active::after { width: 100%; }
.nav-cta {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900) !important;
    padding: 0.85rem 1.8rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.35s ease !important;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(201,164,73,0.3);
    border: 1.5px solid var(--gold-500);
}
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy-900);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}
.nav-cta > * { position: relative; z-index: 1; }
.nav-cta:hover {
    color: var(--gold-400) !important;
    box-shadow: 0 10px 28px rgba(10,31,61,0.35);
    transform: translateY(-2px);
}
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta::after { display: none !important; }
.nav-cta svg { width: 14px; height: 14px; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 26px; height: 2px;
    background: var(--navy-900);
    transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: calc(100vh - 124px);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 5% 5rem;
    max-width: 1320px;
    margin: 0 auto;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,164,73,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero-text {
    position: relative;
    z-index: 2;
    animation: slideRight 1s ease both;
}
@keyframes slideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold-100);
    color: var(--navy-900);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}
.hero-eyebrow svg { width: 16px; height: 16px; stroke: var(--gold-500); }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--navy-900);
    margin-bottom: 1.4rem;
    letter-spacing: -0.02em;
}
.hero h1 .underline-gold {
    position: relative;
    display: inline-block;
    color: var(--navy-900);
}
.hero h1 .underline-gold::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    width: 100%;
    height: 0.18em;
    background: var(--gold-400);
    z-index: -1;
    opacity: 0.55;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-500);
    font-weight: 600;
}
.hero-desc {
    font-size: 1.08rem;
    color: var(--grey-600);
    line-height: 1.75;
    margin-bottom: 2.2rem;
    max-width: 560px;
}
.hero-stats-row {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
}
.hs-item .hs-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1;
}
.hs-item .hs-num span { color: var(--gold-500); }
.hs-item .hs-lbl {
    font-size: 0.78rem;
    color: var(--grey-600);
    margin-top: 0.3rem;
    font-weight: 500;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2rem;
}
.btn-primary {
    background: var(--navy-900);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}
.btn-primary:hover { color: var(--navy-900); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
    background: var(--white);
    border: 2px solid var(--gold-500);
    color: var(--navy-900);
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(201,164,73,0.18);
}
.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}
.btn-secondary > * { position: relative; z-index: 1; }
.btn-secondary:hover {
    color: var(--navy-900);
    border-color: var(--gold-400);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201,164,73,0.35);
}
.btn-secondary:hover::before { transform: translateY(0); }
.btn-secondary .phone-pulse-wrap {
    width: 32px;
    height: 32px;
    background: var(--gold-100);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: btnPhonePulse 2s infinite;
}
.btn-secondary:hover .phone-pulse-wrap { background: var(--white); }
@keyframes btnPhonePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(201,164,73,0.5); }
    50% { box-shadow: 0 0 0 8px rgba(201,164,73,0); }
}
.btn-secondary .phone-pulse-wrap svg { width: 14px; height: 14px; stroke: var(--gold-500); }
.btn-secondary:hover .phone-pulse-wrap svg { stroke: var(--navy-900); }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.trust-avatars {
    display: flex;
}
.trust-avatars span {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: linear-gradient(135deg, var(--navy-700), var(--gold-500));
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: 0.85rem; color: var(--grey-600); }
.trust-text strong { color: var(--navy-900); }

/* HERO VISUAL */
.hero-visual {
    position: relative;
    z-index: 1;
    animation: slideLeft 1s 0.2s ease both;
    min-height: 500px;
}
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
.hero-img-main {
    width: 100%;
    height: 580px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.hero-img-deco {
    position: absolute;
    top: -25px; right: -25px;
    width: 100%; height: 580px;
    border: 3px solid var(--gold-500);
    border-radius: 12px;
    z-index: -1;
}

/* Floating cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 1.1rem 1.4rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    z-index: 2;
}
.fc-1 {
    top: 30px; left: -40px;
    animation: floatY 4s ease-in-out infinite;
}
.fc-2 {
    bottom: 60px; left: -50px;
    animation: floatY 4s 1s ease-in-out infinite;
}
.fc-3 {
    bottom: 30px; right: -30px;
    animation: floatY 4s 2s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.fc-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--gold-100);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-icon svg { width: 22px; height: 22px; stroke: var(--gold-500); }
.fc-text { font-size: 0.82rem; }
.fc-text strong { display: block; color: var(--navy-900); font-size: 0.9rem; font-weight: 700; }
.fc-text span { color: var(--grey-600); font-size: 0.75rem; }

/* ─── TRUST BAND ─── */
.trust-band {
    background: var(--navy-900);
    padding: 2rem 5%;
    position: relative;
    overflow: hidden;
}
.trust-band-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.trust-title {
    color: var(--gold-300);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.trust-logos {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}
.trust-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.04em;
    transition: color 0.3s;
}
.trust-logo:hover { color: var(--gold-300); }

/* ─── SECTION COMMONS ─── */
.section {
    padding: 6rem 5%;
    position: relative;
}
.container {
    max-width: 1320px;
    margin: 0 auto;
}
.section-head {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 1rem;
}
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold-400);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.section-title em {
    font-style: italic;
    color: var(--gold-500);
}
.section-sub {
    font-size: 1.05rem;
    color: var(--grey-600);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }

/* ─── ABOUT ─── */
.about {
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-img {
    width: 100%;
    height: 560px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}
.about-img-2 {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    height: 280px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}
.about-experience-badge {
    position: absolute;
    top: 30px; left: -40px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-experience-badge::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid var(--gold-500);
    border-radius: 7px;
    pointer-events: none;
}
.aeb-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
}
.aeb-text {
    font-size: 0.78rem;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.3rem;
    font-weight: 500;
}

.about-content .section-eyebrow { margin-left: 0; }
.about-content .section-eyebrow::before { display: none; }
.about-content .section-title { text-align: left; }
.about-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    color: var(--gold-500);
    margin-bottom: 1.5rem;
}
.about-text {
    color: var(--grey-600);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin: 2rem 0;
}
.af-card {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: var(--grey-50);
    border-left: 3px solid var(--gold-500);
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.af-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.af-card-icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
}
.af-card-icon svg { width: 22px; height: 22px; stroke: var(--gold-500); }
.af-card strong { color: var(--navy-900); display: block; margin-bottom: 0.2rem; font-size: 0.95rem; font-weight: 600; }
.af-card span { font-size: 0.84rem; color: var(--grey-600); line-height: 1.5; }

.about-signature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--grey-200);
}
.sig-img {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-700), var(--gold-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
}
.sig-info strong { display: block; color: var(--navy-900); font-size: 1rem; }
.sig-info span { color: var(--grey-600); font-size: 0.85rem; }

/* ─── SERVICES ─── */
.services {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
    position: relative;
    overflow: hidden;
}
.services::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,164,73,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.services::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(10,31,61,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.8rem 2.2rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s, background 0.5s;
    border: 1px solid rgba(201,164,73,0.15);
    box-shadow: 0 8px 30px rgba(10,31,61,0.06);
    cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
    z-index: 2;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 60px rgba(10,31,61,0.25);
    border-color: var(--gold-500);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover .sc-title { color: var(--white); }
.service-card:hover .sc-desc { color: rgba(255,255,255,0.75); }
.service-card:hover .sc-link { color: var(--gold-400); }
.service-card:hover .sc-num { color: rgba(255,255,255,0.08); }

.sc-num {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    font-style: italic;
    color: rgba(201,164,73,0.18);
    line-height: 1;
    transition: color 0.5s;
    z-index: 1;
    letter-spacing: -0.04em;
}
.sc-icon-wrap {
    width: 78px; height: 78px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold-100), var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(201,164,73,0.25);
}
.sc-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 21px;
    border: 1px solid var(--gold-500);
    opacity: 0;
    transition: opacity 0.4s;
}
.service-card:hover .sc-icon-wrap {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 12px 30px rgba(201,164,73,0.5);
}
.service-card:hover .sc-icon-wrap::after { opacity: 0.6; }
.service-card:hover .sc-icon-wrap svg { stroke: var(--navy-900); transform: rotate(8deg); }
.sc-icon-wrap svg {
    width: 38px; height: 38px;
    stroke: var(--navy-900);
    stroke-width: 1.6;
    transition: stroke 0.5s, transform 0.5s;
}
.sc-tag {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 0.6rem;
    transition: color 0.5s;
}
.service-card:hover .sc-tag { color: var(--gold-300); }
.sc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: color 0.5s;
}
.sc-desc {
    color: var(--grey-600);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
    transition: color 0.5s;
}
.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-900);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: gap 0.3s, color 0.5s;
    padding-top: 1rem;
    border-top: 1px solid rgba(201,164,73,0.2);
}
.service-card:hover .sc-link { border-top-color: rgba(201,164,73,0.4); }
.sc-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
.service-card:hover .sc-link { gap: 0.9rem; }
.service-card:hover .sc-link svg { transform: translateX(4px); }

/* Services Bottom CTA */
.services-cta {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
    border-radius: 18px;
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10,31,61,0.18);
}
.services-cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,164,73,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.services-cta::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(201,164,73,0.25);
    border-radius: 13px;
    pointer-events: none;
}
.services-cta > * { position: relative; z-index: 1; }
.services-cta-icon {
    width: 70px; height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(201,164,73,0.4);
}
.services-cta-icon svg { width: 32px; height: 32px; stroke: var(--navy-900); stroke-width: 2; }
.services-cta-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}
.services-cta-text p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin: 0;
}
.services-cta-text strong { color: var(--gold-400); font-weight: 600; }
.services-cta-btn {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    padding: 1rem 1.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.services-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s;
}
.services-cta-btn > * { position: relative; z-index: 1; }
.services-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,164,73,0.5); }
.services-cta-btn:hover::before { transform: translateY(0); }
.services-cta-btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.services-cta-btn:hover svg { transform: translateX(4px); }

.services-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}
.sb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(201,164,73,0.3);
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy-900);
    box-shadow: 0 4px 14px rgba(201,164,73,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.sb:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,164,73,0.2); }
.sb span { font-size: 0.95rem; }

/* ─── WHY CHOOSE US ─── */
.why {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}
.why-visual {
    position: relative;
}
.why-img {
    width: 100%;
    height: 560px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}
.why-stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 2rem;
    border-top: 4px solid var(--gold-500);
}
.wsc-item .wsc-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1;
}
.wsc-item .wsc-num span { color: var(--gold-500); }
.wsc-item .wsc-lbl {
    font-size: 0.78rem;
    color: var(--grey-600);
    margin-top: 0.4rem;
    font-weight: 500;
}
.wsc-divider {
    width: 1px;
    background: var(--grey-200);
}

.why-content .section-eyebrow { margin-left: 0; }
.why-content .section-eyebrow::before { display: none; }
.why-content .section-title { text-align: left; margin-bottom: 1rem; }
.why-content > .section-sub {
    text-align: left;
    margin: 0 0 2.5rem 0;
    max-width: none;
}

.why-list {
    display: grid;
    gap: 1.3rem;
}
.why-item {
    display: flex;
    gap: 1.3rem;
    padding: 1.4rem;
    background: var(--grey-50);
    border-radius: 10px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.why-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold-500);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}
.why-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}
.why-item:hover::before { transform: scaleY(1); }
.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-500);
    flex-shrink: 0;
    width: 50px;
    line-height: 1;
}
.why-item-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.4rem;
}
.why-item-content p {
    font-size: 0.88rem;
    color: var(--grey-600);
    line-height: 1.65;
}

/* ─── HOW IT WORKS ─── */
.how {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.how::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,164,73,0.1) 0%, transparent 70%);
}
.how::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,164,73,0.08) 0%, transparent 70%);
}
.how .section-title { color: var(--white); }
.how .section-sub { color: rgba(255,255,255,0.7); }
.how .section-eyebrow { color: var(--gold-400); }
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.how-step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 2.5rem 1.8rem 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}
.how-step:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--gold-500);
    transform: translateY(-8px);
}
.hs-step-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--gold-500);
    color: var(--navy-900);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.hs-step-badge::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--navy-900);
    border-radius: 50%;
}
.hs-icon {
    width: 76px; height: 76px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold-100), var(--white));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hs-icon::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold-500), transparent);
    z-index: -1;
}
.how-step:hover .hs-icon {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    transform: rotate(-6deg) scale(1.05);
}
.hs-icon svg { width: 32px; height: 32px; stroke: var(--navy-900); stroke-width: 1.8; }
.hs-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--white);
}
.hs-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
}
.hs-arrow {
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), var(--gold-500));
    opacity: 0.5;
    z-index: 1;
}
.hs-arrow::after {
    content: '';
    position: absolute;
    right: -2px; top: -4px;
    width: 0; height: 0;
    border-left: 8px solid var(--gold-500);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ─── CONTACT CTA ─── */
.contact-cta {
    background: var(--cream);
    padding: 6rem 5%;
    position: relative;
}
.cta-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,164,73,0.15) 0%, transparent 70%);
}
.cta-card::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201,164,73,0.3);
    border-radius: 16px;
    pointer-events: none;
}
.cta-text { position: relative; z-index: 1; }
.cta-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.cta-text h3 em { font-style: italic; color: var(--gold-400); }
.cta-text p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin-bottom: 0;
}
.cta-phone {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,164,73,0.3);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}
.cta-phone-label {
    font-size: 0.78rem;
    color: var(--gold-400);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.cta-phone-label svg { width: 16px; height: 16px; stroke: var(--gold-400); }
.cta-phone-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
}
.cta-phone-number:hover { color: var(--gold-400); }
.cta-phone-avail {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.live-dot {
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: livePulse 2s infinite;
}
@keyframes livePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
    50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: 100px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 25rem;
    color: var(--gold-100);
    line-height: 0.8;
    opacity: 0.5;
    pointer-events: none;
    font-weight: 700;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.testi-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}
.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-300);
}
.testi-stars {
    color: var(--gold-500);
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
}
.testi-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--grey-800);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
}
.testi-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold-300);
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--grey-100);
}
.testi-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-700), var(--gold-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}
.testi-author-info strong {
    display: block;
    color: var(--navy-900);
    font-weight: 600;
}
.testi-author-info span {
    color: var(--grey-600);
    font-size: 0.83rem;
}

/* ─── CONTACT ─── */
.contact {
    background: var(--cream);
    padding: 6rem 5%;
}
.contact-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}
.contact-info .section-eyebrow { margin-left: 0; }
.contact-info .section-eyebrow::before { display: none; }
.contact-info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}
.contact-info > p {
    color: var(--grey-600);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}
.contact-blocks { display: grid; gap: 1.2rem; }
.contact-block {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    align-items: flex-start;
    border: 1px solid var(--grey-100);
    transition: all 0.3s;
}
.contact-block:hover {
    border-color: var(--gold-300);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}
.cb-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: var(--gold-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cb-icon svg { width: 22px; height: 22px; stroke: var(--gold-500); }
.cb-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 0.3rem;
}
.cb-value {
    color: var(--navy-900);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}
.cb-value a { color: inherit; transition: color 0.3s; }
.cb-value a:hover { color: var(--gold-500); }

/* FORM */
.contact-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
}
.cf-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}
.cf-sub {
    color: var(--grey-600);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.form-group {
    margin-bottom: 1.2rem;
    position: relative;
}
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid var(--grey-200);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--navy-900);
    background: var(--white);
    outline: none;
    transition: all 0.25s;
    -webkit-appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a1f3d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(201,164,73,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}
.btn-submit {
    width: 100%;
    background: var(--navy-900);
    color: var(--white);
    padding: 1.1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}
.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    transform: translateY(100%);
    transition: transform 0.4s;
    z-index: 0;
}
.btn-submit:hover {
    color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-submit:hover::before { transform: translateY(0); }
.btn-submit span, .btn-submit svg { position: relative; z-index: 1; }
.btn-submit svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn-submit:hover svg { transform: translateX(4px); }
.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--grey-400);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.form-note svg { width: 14px; height: 14px; stroke: var(--gold-500); }
.form-success {
    display: none;
    background: rgba(74,222,128,0.1);
    border: 1.5px solid #4ade80;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: #15803d;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--navy-900);
    color: var(--white);
    padding: 5rem 5% 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,164,73,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.footer-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}
.footer-brand img {
    height: 50px;
    margin-bottom: 1.3rem;
    filter: brightness(1.1);
}
.footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 320px;
}
.footer-socials { display: flex; gap: 0.7rem; }
.footer-socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.footer-socials a:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
    transform: translateY(-3px);
}
.footer-socials svg { width: 16px; height: 16px; stroke: var(--white); }
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 2px;
    background: var(--gold-500);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    transition: color 0.25s, padding 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-col a::before {
    content: '→';
    color: var(--gold-500);
    opacity: 0;
    transition: opacity 0.3s, margin 0.3s;
    margin-right: -10px;
}
.footer-col a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-col a:hover::before { opacity: 1; margin-right: 0; }

.footer-contact-list { list-style: none; }
.footer-contact-list li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    align-items: flex-start;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-contact-list svg {
    width: 16px; height: 16px;
    stroke: var(--gold-400);
    flex-shrink: 0;
    margin-top: 4px;
}
.footer-contact-list a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer-contact-list a:hover { color: var(--gold-400); }

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}
.bddevs-link {
    color: var(--gold-400);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}
.bddevs-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold-400);
    transition: width 0.3s;
}
.bddevs-link:hover { color: var(--gold-300); }
.bddevs-link:hover::after { width: 100%; }
.footer-links {
    display: flex;
    gap: 2rem;
}
.footer-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-400); }

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--navy-900);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
    border: 2px solid var(--gold-500);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}
.scroll-top svg { width: 18px; height: 18px; }

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    z-index: 998;
    animation: livePulse 2s infinite;
    transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

.req-bn{
    padding: 0.6rem 1rem !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; gap: 3rem; padding-top: 3rem; }
    .hero-visual { max-width: 500px; margin: 0 auto; }
    .about-grid, .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .services-cta { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; gap: 1.5rem; }
    .services-cta-icon { margin: 0 auto; }
    .services-cta-btn { justify-self: center; }
    .how-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .hs-arrow { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .cta-card { grid-template-columns: 1fr; padding: 3rem 2rem; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .why-stats-card { right: 50%; transform: translateX(50%); bottom: -20px; }
    .about-img-2 { right: 0; }
    .about-experience-badge { left: 0; }
}
@media (max-width: 768px) {
    .top-strip { font-size: 0.78rem; }
    .top-left { gap: 1.2rem; }
    .top-strip-inner { justify-content: center; }
    .top-right { display: none; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 5%;
        box-shadow: var(--shadow-md);
        gap: 1rem;
        align-items: stretch;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { padding: 0.7rem 0; }
    .hamburger { display: flex; }
    .nav-cta { text-align: center; }
    .hero-stats-row { flex-wrap: wrap; gap: 1.5rem; }
    .section { padding: 4.5rem 5%; }
    .services-grid, .testi-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 2rem 1.5rem; }
    .cta-card { padding: 2.5rem 1.5rem; }
    .cta-text h3 { font-size: 1.8rem; }
    .floating-card { display: none; }
    .hero-img-deco { display: none; }
    .about-img-2 { display: none; }
    .why-stats-card { position: static; transform: none; margin-top: -2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .wa-float, .scroll-top { width: 48px; height: 48px; bottom: 20px; }
    .wa-float { left: 20px; }
    .scroll-top { right: 20px; }
}
