/* =====================================================================
   LEGACY DEVELOPERS — AAKASH PALIYA
   White + Light Sky Blue  |  Airy Premium Theme
   ===================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    background-color: var(--white);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background: rgba(196, 145, 28, 0.16);
    color: var(--ink);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #F5F8FF;
}

::-webkit-scrollbar-thumb {
    background: rgba(196, 145, 28, 0.38);
}

::-webkit-scrollbar-thumb:hover {
    background: #C4911C;
}

/* ── TOKENS ────────────────────────────────────────────────────────── */
:root {
    /* Backgrounds */
    --white: #FFFFFF;
    --off-white: #F5F8FF;
    --sky-bg: #EBF3FF;
    --sky-card: #F0F6FF;

    /* Light blue palette */
    --blue: #5B9BD5;
    --blue-light: #7AB5E8;
    --blue-bright: #3A8FD4;
    --blue-dim: rgba(91, 155, 213, 0.10);
    --blue-border: rgba(91, 155, 213, 0.25);
    --blue-glow: rgba(91, 155, 213, 0.06);

    /* Gold — logo */
    --gold: #C4911C;
    --gold-light: #B07D1E;
    --gold-bright: #8C600F;
    --gold-border: rgba(176, 125, 30, 0.30);

    /* Text */
    --ink: #1A2340;
    --ink-soft: #354870;
    --ink-mute: rgba(26, 35, 64, 0.55);
    --border-dim: rgba(26, 35, 64, 0.07);

    --wa-green: #128C55;

    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --display: 'Yeseva One', Georgia, serif;
    --script: 'Dancing Script', cursive;

    --section-gap: 130px;
    --container-w: 1160px;
    --nav-h: 76px;

    --shadow-card: 0 20px 60px rgba(26, 35, 64, 0.12);
    --shadow-sm: 0 4px 20px rgba(26, 35, 64, 0.08);
}

/* ── SCROLL REVEAL ─────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal-delay-3 {
    transition-delay: 0.36s;
}

.reveal-delay-4 {
    transition-delay: 0.48s;
}

/* ── CONTAINER ─────────────────────────────────────────────────────── */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 40px;
}

/* ── NAVBAR ────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border-dim);
    box-shadow: 0 2px 20px rgba(26, 35, 64, 0.07);
}

.nav-inner {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.logo-firm {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.07em;
    color: var(--gold-light);
    line-height: 1;
    transition: color 0.3s;
}

.logo-by {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    line-height: 1.2;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-name-ap {
    font-family: var(--script);
    font-style: normal;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--blue-bright);
    line-height: 1;
    transition: color 0.3s;
}

.nav-logo:hover .logo-firm {
    color: var(--gold-bright);
}

.nav-logo:hover .logo-by {
    color: var(--ink-mute);
}

.nav-logo:hover .logo-name-ap {
    color: var(--blue);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--wa-green);
    padding: 10px 22px;
    border: 1px solid rgba(18, 140, 85, 0.30);
    transition: background 0.28s, color 0.28s, border-color 0.28s;
    animation: waPulse 3s ease infinite;
}

.nav-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--wa-green);
    color: #fff;
    border-color: var(--wa-green);
}

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: flex;
    align-items: center;
    background-color: var(--white);
    background-image:
        radial-gradient(ellipse at 72% 52%, rgba(91, 155, 213, 0.11) 0%, transparent 52%),
        radial-gradient(ellipse at 6% 88%, rgba(196, 145, 28, 0.07) 0%, transparent 38%),
        repeating-linear-gradient(-55deg,
            transparent,
            transparent 48px,
            rgba(26, 35, 64, 0.014) 48px,
            rgba(26, 35, 64, 0.014) 49px);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 96px 40px;
    display: flex;
    align-items: center;
    gap: 88px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    order: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-name {
    font-family: var(--display);
    font-size: clamp(50px, 7.2vw, 86px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 10px;
}

.hero-sub {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 24px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 48px;
}

.hero-location svg {
    width: 13px;
    height: 13px;
    color: var(--gold);
    flex-shrink: 0;
}

.tagline-wrap {
    min-height: 52px;
    display: flex;
    align-items: center;
    margin-bottom: 46px;
    padding-left: 20px;
    border-left: 2px solid var(--gold-border);
    position: relative;
}

.tagline-wrap::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: 40%;
    background: var(--gold);
}

.tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 400;
    color: var(--ink-soft);
    line-height: 1.45;
    transition: opacity 0.45s ease;
}

.tagline.fading {
    opacity: 0;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(26, 35, 64, 0.18);
    color: var(--ink-soft);
    background: transparent;
    transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
}

.social-btn svg {
    width: 17px;
    height: 17px;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn:active {
    transform: scale(0.90);
    transition-duration: 0.08s;
}

.social-btn.wa:hover {
    border-color: var(--wa-green);
    background: var(--wa-green);
    color: #fff;
}

.social-btn.ig:hover {
    border-color: #E1306C;
    background: #E1306C;
    color: #fff;
}

.social-btn.fb:hover {
    border-color: #1877F2;
    background: #1877F2;
    color: #fff;
}

.social-btn.yt:hover {
    border-color: #FF0000;
    background: #FF0000;
    color: #fff;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: transparent;
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 17px 42px;
    border: 1.5px solid var(--gold);
    transition: background 0.32s, color 0.32s, border-color 0.32s;
    position: relative;
    overflow: hidden;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.40), transparent);
    transform: skewX(-12deg);
    pointer-events: none;
}

.cta-btn:hover::after {
    animation: btnShimmer 0.65s ease forwards;
}

.cta-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.cta-btn:hover svg {
    transform: translateX(5px);
    animation: arrowBounce 0.6s ease infinite alternate;
}

.cta-btn:active {
    transform: scale(0.97);
    transition-duration: 0.08s;
}

.hero-photo {
    flex: 0 0 auto;
    order: 2;
    position: relative;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-photo::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(91, 155, 213, 0.18) 0%,
            rgba(91, 155, 213, 0.06) 44%,
            transparent 70%);
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.photo-frame {
    position: relative;
    display: inline-block;
}

.photo-frame img {
    position: relative;
    z-index: 1;
    width: 400px;
    height: auto;
    display: block;
    filter: drop-shadow(0 28px 52px rgba(26, 35, 64, 0.22));
}

.hero-cursor-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 155, 213, 0.10) 0%, transparent 65%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    will-change: left, top;
}

/* ── SHARED SECTIONS ───────────────────────────────────────────────── */
.section {
    padding: var(--section-gap) 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 72px;
}

.section-intro::before {
    content: '◆';
    display: block;
    font-size: 7px;
    color: var(--gold);
    margin-bottom: 18px;
    letter-spacing: 0.3em;
    opacity: 0.6;
}

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 9px;
}

.eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 1.5px;
    background: var(--gold);
    opacity: 0.65;
}

.section-title {
    font-family: var(--display);
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.10;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.section-sub {
    font-size: 15px;
    font-weight: 400;
    color: var(--ink-soft);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.80;
}

/* ── LANDMARKS ─────────────────────────────────────────────────────── */
.landmarks-section {
    background-color: var(--sky-bg);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border-dim);
}

.landmark-card {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--sky-card);
    cursor: pointer;
    text-decoration: none;
    outline-offset: 4px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.landmark-card:hover {
    transform: scale(1.014);
    z-index: 2;
    box-shadow: var(--shadow-card), 0 0 0 1.5px var(--blue-border);
}

.landmark-card:focus-visible {
    outline: 1.5px solid var(--blue);
}

.landmark-card::before,
.landmark-card::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.landmark-card::before {
    top: 16px;
    left: 16px;
    border-top: 1.5px solid var(--gold);
    border-left: 1.5px solid var(--gold);
    transform: translate(-8px, -8px);
}

.landmark-card::after {
    top: 16px;
    right: 16px;
    border-top: 1.5px solid var(--gold);
    border-right: 1.5px solid var(--gold);
    transform: translate(8px, -8px);
}

.landmark-card:hover::before,
.landmark-card:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

.card-img {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
    filter: brightness(1.0) saturate(1.08);
}

.landmark-card:hover .card-img img {
    transform: scale(1.07);
    filter: brightness(0.78) saturate(0.86);
}

.card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 28px 28px;
    background: linear-gradient(to top,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 52%,
            rgba(240, 246, 255, 0.72) 72%,
            transparent 100%);
    color: var(--ink);
    transition: background 0.4s ease;
}

.landmark-card:hover .card-body {
    background: linear-gradient(to top,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 60%,
            rgba(235, 243, 255, 0.80) 78%,
            transparent 100%);
}

.card-body h3 {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--ink);
}

.card-body p {
    font-size: 14px;
    font-weight: 400;
    color: var(--ink-soft);
    margin-bottom: 16px;
    line-height: 1.6;
}

.wa-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    background: rgba(18, 140, 85, 0.08);
    color: var(--wa-green);
    border: 1.5px solid rgba(18, 140, 85, 0.45);
    padding: 7px 16px;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.wa-chip svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.landmark-card:hover .wa-chip {
    background: var(--wa-green);
    color: #fff;
    border-color: var(--wa-green);
}

/* ── STATS ─────────────────────────────────────────────────────────── */
.stats-section {
    background-color: #1A3A6E;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 80px, rgba(255, 255, 255, 0.015) 80px, rgba(255, 255, 255, 0.015) 81px);
    padding: 110px 0;
    position: relative;
}

.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(91, 155, 213, 0.45) 25%, rgba(91, 155, 213, 0.45) 75%, transparent 100%);
}

.stats-section::before {
    top: 0;
}

.stats-section::after {
    bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.38s, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7AB5E8, transparent);
    transform: translateX(-50%);
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.stat-item:last-child::after {
    display: none;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.25);
}

.stat-item:hover::before {
    width: 72%;
}

.stat-value {
    font-family: var(--display);
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 400;
    color: #EDCB78;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
    text-shadow: 0 0 55px rgba(237, 203, 120, 0.50);
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(235, 243, 255, 0.55);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.stat-item.visible .stat-label {
    opacity: 1;
    transform: translateY(0);
}

.stat-item.visible:nth-child(1) .stat-label {
    transition-delay: 0.38s;
}

.stat-item.visible:nth-child(2) .stat-label {
    transition-delay: 0.50s;
}

.stat-item.visible:nth-child(3) .stat-label {
    transition-delay: 0.62s;
}

.stat-item.visible:nth-child(4) .stat-label {
    transition-delay: 0.74s;
}

/* ── FOOTER ────────────────────────────────────────────────────────── */
.footer {
    background: var(--off-white);
    border-top: 2px solid rgba(196, 145, 28, 0.28);
    padding: 56px 0;
}

.footer-inner {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-badge {
    background: rgba(255, 255, 255, 0.97);
    padding: 7px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--gold-border);
    transition: box-shadow 0.3s;
}

.footer-brand:hover .footer-logo-badge {
    box-shadow: 0 0 0 2px var(--gold-border);
}

.footer-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-firm {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--gold-light);
    transition: color 0.3s;
}

.footer-agent {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.footer-brand:hover .footer-firm {
    color: var(--gold-bright);
}

.footer-brand:hover .footer-agent {
    color: var(--ink);
}

.footer p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--ink-mute);
}

.footer-copy {
    font-size: 12px !important;
    letter-spacing: 0.04em;
    color: var(--ink-mute);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.25s;
}

.footer-contact-item:hover {
    color: var(--ink);
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: var(--gold);
    fill: none;
}

.footer-city {
    font-size: 12px !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ── SERVICES STRIP ────────────────────────────────────────────────── */
.services-strip {
    background: var(--white);
    border-top: 2px solid rgba(196, 145, 28, 0.22);
    border-bottom: 1px solid var(--border-dim);
}

.services-list {
    list-style: none;
    max-width: var(--container-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 32px;
    border-right: 1px solid var(--border-dim);
    transition: background 0.28s ease;
    cursor: default;
}

.service-item:last-child {
    border-right: none;
}

.service-item:hover {
    background: var(--sky-bg);
    box-shadow: inset 3px 0 0 var(--gold);
}

.service-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 145, 28, 0.07);
    color: var(--gold);
    border-radius: 0;
    transition: background 0.28s;
}

.service-item:hover .service-icon {
    background: rgba(196, 145, 28, 0.13);
}

.service-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.service-name {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.service-desc {
    font-size: 12px;
    font-weight: 400;
    color: var(--ink-mute);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

/* ── KEYFRAMES ─────────────────────────────────────────────────────── */
@keyframes orbitRing {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(18, 140, 85, 0.32);
    }

    65% {
        box-shadow: 0 0 0 10px rgba(18, 140, 85, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(18, 140, 85, 0);
    }
}

@keyframes btnShimmer {
    0% {
        left: -120%;
    }

    100% {
        left: 160%;
    }
}

@keyframes arrowBounce {
    from {
        transform: translateX(4px);
    }

    to {
        transform: translateX(9px);
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes statPop {
    from {
        transform: scale(0.75);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.stat-item.visible .stat-value {
    animation: statPop 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stat-item.visible:nth-child(1) .stat-value {
    animation-delay: 0.08s;
}

.stat-item.visible:nth-child(2) .stat-value {
    animation-delay: 0.20s;
}

.stat-item.visible:nth-child(3) .stat-value {
    animation-delay: 0.32s;
}

.stat-item.visible:nth-child(4) .stat-value {
    animation-delay: 0.44s;
}

/* ── FLOATING WA BUTTON ─────────────────────────────────────────────── */
.wa-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--wa-green);
    color: #fff;
    box-shadow: 0 8px 32px rgba(18, 140, 85, 0.45);
    animation: waPulse 2.5s ease infinite;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s;
}

.wa-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 14px 44px rgba(18, 140, 85, 0.60);
    animation: none;
}

.wa-fab svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    :root {
        --section-gap: 96px;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item:nth-child(2) {
        border-right: none;
    }

    .service-item:nth-child(1),
    .service-item:nth-child(2) {
        border-bottom: 1px solid var(--border-dim);
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-inner {
        flex-direction: column;
        padding: 80px 40px 72px;
        gap: 64px;
        text-align: center;
    }

    .hero-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-photo {
        order: 1;
        animation: none;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-location {
        justify-content: center;
    }

    .tagline-wrap {
        border-left: none;
        border-top: 2px solid var(--gold-border);
        padding-left: 0;
        padding-top: 20px;
        justify-content: center;
        text-align: center;
    }

    .tagline-wrap::before {
        display: none;
    }

    .social-row {
        justify-content: center;
    }

    .photo-frame img {
        width: 300px;
        height: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item::after {
        display: none;
    }

    .footer-inner {
        justify-content: center;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }
}

@media (max-width: 620px) {
    :root {
        --section-gap: 80px;
        --nav-h: 66px;
    }

    .services-list {
        grid-template-columns: 1fr 1fr;
    }

    .service-item {
        padding: 20px 16px;
        gap: 12px;
    }

    .service-desc {
        display: none;
    }

    .wa-fab {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .wa-fab svg {
        width: 24px;
        height: 24px;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .logo-firm {
        font-size: 16px;
    }

    .logo-by {
        display: none;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        padding: 9px 13px;
    }

    .hero-inner {
        padding: 64px 20px 60px;
        gap: 48px;
    }

    .photo-frame img {
        width: 240px;
        height: auto;
    }

    .container {
        padding: 0 20px;
    }

    .landmarks-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .card-img {
        height: 240px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 44px 24px;
    }

    .section-intro {
        margin-bottom: 52px;
    }
}

@media (max-width: 380px) {
    .hero-inner {
        padding: 56px 16px 52px;
    }

    .container {
        padding: 0 16px;
    }

    .photo-frame img {
        width: 190px;
        height: auto;
    }
}