/* ═══════════════════════════════════════════
   THE CROWNS GROUP — SHARED STYLESHEET
   ═══════════════════════════════════════════ */

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

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-light: #f7f7f7;
    --gray-mid: #e2e2e2;
    --gray-text: #777777;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--black);
    height: 76px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: border-color 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-svg { width: 46px; height: 40px; flex-shrink: 0; }

.logo-wordmark {
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.5;
}

.logo-wordmark small {
    display: block;
    font-size: 9px;
    letter-spacing: 3.5px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.8;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:hover { color: var(--white); }

.nav-links a.active { color: var(--white); }

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--white);
}

.nav-cta {
    background: var(--white);
    color: var(--black);
    padding: 11px 28px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
    border: 1px solid var(--white);
}

.nav-cta:hover {
    background: transparent;
    color: var(--white);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}

/* ─── HERO (home) ─── */
.hero {
    min-height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    padding: 110px 6% 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-ring {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.hero-bg-ring:nth-child(1) { width: 700px; height: 700px; top: -20%; right: -15%; }
.hero-bg-ring:nth-child(2) { width: 450px; height: 450px; top: 10%; right: 5%; }
.hero-bg-ring:nth-child(3) { width: 200px; height: 200px; bottom: 15%; right: 20%; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 32px;
}

.hero-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 7.5vw, 96px);
    color: var(--white);
    line-height: 1.04;
    font-weight: 900;
    margin-bottom: 28px;
}

.hero h1 em {
    font-style: italic;
    color: rgba(255,255,255,0.38);
}

.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 50px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ─── PAGE BANNER (interior pages) ─── */
.page-banner {
    background: var(--black);
    padding: 160px 6% 96px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner-watermark {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 300px;
    font-weight: 900;
    color: rgba(255,255,255,0.022);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

.page-banner .eyebrow {
    display: inline-flex;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
    position: relative;
}

.page-banner .eyebrow::before { background: rgba(255,255,255,0.3); }

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 76px);
    color: var(--white);
    line-height: 1.08;
    font-weight: 700;
    position: relative;
}

.page-banner h1 em { font-style: italic; color: rgba(255,255,255,0.38); }

.page-banner p {
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    margin: 22px auto 0;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 300;
    position: relative;
}

.breadcrumb {
    margin-top: 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    position: relative;
}

.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.25s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 10px; opacity: 0.4; }

/* ─── BUTTONS ─── */
.btn-white {
    background: var(--white);
    color: var(--black);
    padding: 16px 38px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--white);
    transition: background 0.25s, color 0.25s;
    cursor: pointer;
    display: inline-block;
}

.btn-white:hover { background: #ddd; }

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 38px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.25);
    transition: border-color 0.25s, background 0.25s;
    cursor: pointer;
    display: inline-block;
}

.btn-outline:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.04);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    padding: 16px 38px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--black);
    transition: background 0.25s, color 0.25s;
    cursor: pointer;
    display: inline-block;
}

.btn-dark:hover { background: transparent; color: var(--black); }

.hero-scroll-hint {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.25);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-bar {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ─── TRUST BAR ─── */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-bottom: 1px solid var(--gray-mid);
}

.trust-item {
    padding: 44px 28px;
    text-align: center;
    border-right: 1px solid var(--gray-mid);
}

.trust-item:last-child { border-right: none; }

.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--black);
    display: block;
    line-height: 1;
}

.trust-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-top: 8px;
    display: block;
}

/* ─── SECTION COMMON ─── */
.section { padding: 110px 6%; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gray-text);
}

.eyebrow-light { color: rgba(255,255,255,0.35); }
.eyebrow-light::before { background: rgba(255,255,255,0.25); }

.heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--black);
}

.heading-light { color: var(--white); }

/* ─── SERVICES ─── */
.services-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
}

.services-head p {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--gray-mid);
    border: 1px solid var(--gray-mid);
    gap: 1px;
}

.service-card {
    background: var(--white);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    transition: background 0.35s;
    cursor: default;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--black);
    transition: width 0.4s ease;
}

.service-card:hover { background: var(--black); }
.service-card:hover::after { width: 100%; }
.service-card:hover .svc-icon { filter: invert(1); }
.service-card:hover .svc-name { color: var(--white); }
.service-card:hover .svc-desc { color: rgba(255,255,255,0.45); }
.service-card:hover .svc-arrow { color: rgba(255,255,255,0.4); opacity: 1; }

.svc-icon {
    font-size: 30px;
    margin-bottom: 26px;
    display: block;
    transition: filter 0.35s;
}

.svc-name {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 14px;
    transition: color 0.35s;
}

.svc-desc {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--gray-text);
    transition: color 0.35s;
}

.svc-arrow {
    position: absolute;
    bottom: 24px;
    right: 26px;
    font-size: 22px;
    opacity: 0.15;
    color: var(--black);
    transition: all 0.35s;
}

/* ─── PROCESS ─── */
.process-section { background: var(--black); }

.process-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
    flex-wrap: wrap;
    gap: 24px;
}

.process-head p {
    max-width: 340px;
    font-size: 15px;
    color: rgba(255,255,255,0.42);
    line-height: 1.75;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255,255,255,0.08);
}

.step {
    padding: 64px 52px;
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

.step:last-child { border-right: none; }

.step-bg-num {
    font-family: 'Playfair Display', serif;
    font-size: 130px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: -10px;
    right: -10px;
    line-height: 1;
    pointer-events: none;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.step-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.step-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.42);
    line-height: 1.85;
}

/* ─── LOCATIONS ─── */
.loc-section { background: var(--gray-light); }

.loc-head { text-align: center; margin-bottom: 64px; }
.loc-head .eyebrow { justify-content: center; display: inline-flex; }

.loc-head p {
    max-width: 520px;
    margin: 20px auto 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-text);
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--gray-mid);
    border: 1px solid var(--gray-mid);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
}

.loc-card {
    background: var(--white);
    padding: 38px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
}

.loc-card:hover { background: var(--black); }
.loc-card:hover .loc-pin { filter: grayscale(1) brightness(4); transform: translateY(-4px); }
.loc-card:hover .loc-name { color: var(--white); }
.loc-card:hover .loc-tag { color: rgba(255,255,255,0.4); }

.loc-pin {
    font-size: 22px;
    display: block;
    margin-bottom: 14px;
    transition: transform 0.3s, filter 0.3s;
}

.loc-name {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    transition: color 0.3s;
}

.loc-tag {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-top: 7px;
    transition: color 0.3s;
}

.loc-foot {
    text-align: center;
    margin-top: 44px;
    font-size: 14px;
    color: var(--gray-text);
}

.loc-foot strong { color: var(--black); font-weight: 700; }

/* ─── WHY US ─── */
.why-section { background: var(--white); }

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.why-copy p {
    margin-top: 24px;
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.8;
    max-width: 400px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-point {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: var(--gray-light);
    padding: 26px 28px;
    border-left: 3px solid var(--black);
    transition: transform 0.3s;
}

.why-point:hover { transform: translateX(8px); }

.wp-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

.wp-title {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.wp-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.65;
}

/* ─── FAQ ─── */
.faq-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: start;
}

.faq-item { border-bottom: 1px solid var(--gray-mid); }

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    gap: 16px;
    transition: color 0.25s;
}

.faq-btn:hover { color: var(--gray-text); }

.faq-icon {
    width: 30px;
    height: 30px;
    border: 1px solid var(--gray-mid);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s;
}

.faq-item.open .faq-icon {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-body p {
    padding-bottom: 28px;
    font-size: 14px;
    line-height: 1.85;
    color: var(--gray-text);
}

.faq-item.open .faq-body { max-height: 250px; }

/* ─── REVIEWS / TESTIMONIALS ─── */
.reviews-section { background: var(--white); }

.reviews-head { text-align: center; margin-bottom: 30px; }
.reviews-head .eyebrow { justify-content: center; display: inline-flex; }

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 28px auto 60px;
    flex-wrap: wrap;
}

.rs-score {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    color: var(--black);
}

.rs-stars { font-size: 20px; letter-spacing: 3px; color: var(--black); }

.rs-meta {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-text);
    border-left: 1px solid var(--gray-mid);
    padding-left: 16px;
}

.rs-meta strong { color: var(--black); font-weight: 700; }

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

.review-card {
    border: 1px solid var(--gray-mid);
    padding: 38px 34px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--white);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.review-stars {
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 20px;
}

.review-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: #333;
    flex-grow: 1;
    margin-bottom: 26px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid var(--gray-mid);
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.review-name {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: 0.5px;
}

.review-meta {
    font-size: 11px;
    color: var(--gray-text);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-text);
}

.google-g {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: var(--black);
    font-size: 13px;
}

/* ─── CTA BAND ─── */
.cta-section {
    background: var(--black);
    padding: 120px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-watermark {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 380px;
    font-weight: 900;
    color: rgba(255,255,255,0.018);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5.5vw, 70px);
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 22px;
    position: relative;
}

.cta-section h2 em { font-style: italic; color: rgba(255,255,255,0.35); }

.cta-section > p {
    color: rgba(255,255,255,0.45);
    font-size: 16px;
    max-width: 460px;
    margin: 0 auto 48px;
    line-height: 1.75;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.cta-contacts {
    margin-top: 64px;
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 56px;
    position: relative;
}

.cta-contact-item { text-align: center; }
.cta-contact-item .ci-icon { font-size: 20px; display: block; margin-bottom: 12px; }

.cta-contact-item .ci-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    display: block;
    margin-bottom: 6px;
}

.cta-contact-item .ci-value {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* ─── CONTACT FORM ─── */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.contact-info-block { margin-top: 30px; display: flex; flex-direction: column; gap: 28px; }

.ci-row { display: flex; gap: 20px; align-items: flex-start; }
.ci-row .ci-ic { font-size: 22px; flex-shrink: 0; }
.ci-row .ci-t {
    font-family: 'Raleway', sans-serif;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gray-text); margin-bottom: 5px;
}
.ci-row .ci-v { font-size: 16px; color: var(--black); font-weight: 600; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.field input, .field select, .field textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid var(--gray-mid);
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--black);
    transition: border-color 0.25s;
}

.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--black);
}

.field textarea { resize: vertical; min-height: 130px; }

/* ─── FOOTER ─── */
footer { background: #050505; padding: 80px 6% 36px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 36px;
}

.footer-brand-name {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
}

.footer-brand-sub {
    font-size: 9px;
    letter-spacing: 3px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

.footer-desc {
    margin-top: 22px;
    font-size: 13px;
    color: rgba(255,255,255,0.38);
    line-height: 1.85;
    max-width: 260px;
}

.footer-col-title {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-bottom: 26px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links a {
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.25s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.22);
    flex-wrap: wrap;
    gap: 10px;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .trust-bar { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: none; }

    .services-grid { grid-template-columns: 1fr 1fr; }
    .loc-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

    .why-inner { grid-template-columns: 1fr; gap: 50px; }
    .faq-inner { grid-template-columns: 1fr; gap: 50px; }
    .contact-inner { grid-template-columns: 1fr; gap: 50px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .loc-grid { grid-template-columns: 1fr 1fr; }
    .trust-bar { grid-template-columns: 1fr 1fr; }
    .contact-form .row2 { grid-template-columns: 1fr; }
}
