/* ═══════════════════════════════════════════════════════════
   CSS VARIABLES & DESIGN SYSTEM
   ------------------------------------------------------------------
   Editing notes for whoever jumped in:
   - Tokens live here so components don't go rogue.
   - Drop new rules under the matching banner (RESET, UTILITIES, etc.)
     so nobody has to play style-sheet hide and seek.
   - Use CSS variables instead of raw hex; rebrands hurt less that way.
   ═══════════════════════════════════════════════════════════ */
:root {
    /* Colors: navy + gold with backup singers. */
    --navy-900: #001a33;
    --navy-800: #002244;
    --navy-700: #003366;
    --navy-600: #0d4a7a;
    --navy-100: #e6eef5;
    --navy-50: #f4f8fb;

    --gold-600: #a3833a;
    --gold-500: #c5a059;
    --gold-400: #d4b77a;
    --gold-300: #e6d3a3;
    --gold-100: #faf6ed;

    --white: #ffffff;
    --gray-900: #1a1a1a;
    --gray-700: #444444;
    --gray-600: #555555;
    --gray-400: #888888;
    --gray-200: #e0e0e0;
    --gray-100: #f5f5f5;

    --success: #2e7d32;
    --success-light: #e8f5e9;

    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0,26,51,0.08);
    --shadow-md: 0 4px 12px rgba(0,26,51,0.1);
    --shadow-lg: 0 8px 30px rgba(0,26,51,0.12);
    --shadow-xl: 0 20px 50px rgba(0,26,51,0.15);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASELINE STYLES
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy-700);
    line-height: 1.2;
    font-weight: 400;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p { margin-bottom: var(--space-md); }

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }

/* ═══════════════════════════════════════════════════════════
   UTILITIES (EVERYDAY HELPERS)
   ═══════════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn--primary {
    background: var(--navy-700);
    color: var(--white);
    border-color: var(--navy-700);
}

.btn--primary:hover {
    background: var(--navy-800);
    border-color: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: transparent;
    color: var(--navy-700);
    border-color: var(--navy-700);
}

.btn--secondary:hover {
    background: var(--navy-700);
    color: var(--white);
}

.btn--accent {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
}

.btn--accent:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    gap: var(--space-xl);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    flex-shrink: 0;
}

.header__logo-img {
    height: 55px;
    width: auto;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.header__logo-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--navy-700);
}

.header__logo-name span {
    color: var(--gold-500);
}

.header__logo-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.header__nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-700);
    padding: var(--space-sm) 0;
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width var(--transition-base);
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--navy-700);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

/* Services dropdown */
.header__nav-dropdown {
    position: relative;
}

.header__nav-link--dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header__nav-link--dropdown svg {
    transition: transform var(--transition-fast);
}

.header__nav-dropdown:hover .header__nav-link--dropdown svg {
    transform: rotate(180deg);
}

.header__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: var(--space-sm) 0;
    z-index: 1000;
    list-style: none;
}

.header__nav-dropdown:hover .header__dropdown-menu {
    display: block;
}

.header__dropdown-menu li {
    list-style: none;
}

.header__dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.header__dropdown-menu a:hover {
    background: var(--navy-50);
    color: var(--navy-700);
}

.header__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-xs);
}

/* Desktop: keep the phone as a plain link, not a cosplaying button. */
.header__phone {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-700);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
}

.header__phone svg {
    width: 14px;
    height: 14px;
    color: var(--gold-500);
}

/* Mobile call button: icon-only circle for quick taps. */
.header__mobile-call {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--gold-500);
    color: var(--navy-900);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    flex-shrink: 0;
}

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

.header__mobile-call span {
    display: none;
}

/* Hide the mobile-only wrapper once screens get wide. */
.header__right {
    display: none;
}

.header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--space-sm);
    cursor: pointer;
    color: var(--navy-700);
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.header__mobile-toggle svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Mobile header layout: squeeze things down and hide the extras. */
@media (max-width: 768px) {
    .header__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--space-md);
    }

    .header__cta {
        display: none;
    }

    .header__mobile-call {
        display: flex;
    }

    .header__mobile-toggle {
        display: flex;
    }

    /* Herd the call button and hamburger together on the right. */
    .header__right {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION (THE HOOK)
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    padding: var(--space-lg) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--navy-50) 0%, var(--white) 50%, var(--gold-100) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(197,160,89,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    border: 1px solid var(--gold-300);
    padding: var(--space-sm) var(--space-md);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-600);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero__title {
    margin-bottom: var(--space-lg);
    color: var(--navy-800);
}

.hero__title span {
    color: var(--gold-500);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    max-width: 540px;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    color: var(--gray-700);
}

.hero__feature-icon {
    width: 22px;
    height: 22px;
    background: var(--success-light);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__feature-icon svg {
    width: 12px;
    height: 12px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    max-width: 380px;
    text-align: center;
    margin-bottom: 80px;
}

.hero__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-700), var(--gold-500));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero__card-icon {
    width: 64px;
    height: 64px;
    background: var(--navy-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--navy-700);
}

.hero__card-icon svg {
    width: 32px;
    height: 32px;
}

.hero__card h3 {
    margin-bottom: var(--space-sm);
}

.hero__card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.hero__testimonial {
    position: absolute;
    bottom: -60px;
    left: -40px;
    background: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--gold-500);
    max-width: 280px;
    z-index: 10;
}

.hero__testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--gold-500);
    margin-bottom: var(--space-xs);
}

.hero__testimonial-stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.hero__testimonial-text {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: var(--space-xs);
}

.hero__testimonial-author {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR (RECEIPTS)
   ═══════════════════════════════════════════════════════════ */
.trust-bar {
    background: var(--navy-700);
    padding: var(--space-lg) 0;
}

.trust-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2xl);
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-bar__item svg {
    width: 20px;
    height: 20px;
    color: var(--gold-400);
}

/* ═══════════════════════════════════════════════════════════
   INTRO SECTION
   ═══════════════════════════════════════════════════════════ */
.intro {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.intro__inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.intro__divider::before,
.intro__divider::after {
    content: '';
    width: 80px;
    height: 1px;
    background: var(--gold-500);
}

.intro__divider svg {
    width: 24px;
    height: 24px;
    color: var(--gold-500);
    fill: currentColor;
}

.intro h2 {
    margin-bottom: var(--space-xl);
}

.intro p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS / STEPS SECTION
   ═══════════════════════════════════════════════════════════ */
.process {
    padding: var(--space-4xl) 0;
    background: var(--navy-50);
}

.process__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.process__header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
}

/* Connecting line between the process cards. */
.process__grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--gold-300);
    z-index: 0;
}

.process__card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.process__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-400);
}

.process__number {
    width: 56px;
    height: 56px;
    background: var(--navy-700);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    box-shadow: 0 4px 12px rgba(0,51,102,0.3);
    border: 3px solid var(--white);
    outline: 2px solid var(--navy-700);
}

.process__card h3 {
    margin-bottom: var(--space-md);
}

.process__card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION (THE MENU)
   ═══════════════════════════════════════════════════════════ */
.services {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.services__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.services__header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-400);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    background: var(--gold-100);
    color: var(--gold-600);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.service-card__icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
    color: var(--navy-700);
    font-size: 0.9rem;
    margin-top: var(--space-md);
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card__link svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   CTA / CONTACT SECTION (RAISE YOUR HAND)
   ═══════════════════════════════════════════════════════════ */
.cta-section {
    padding: var(--space-4xl) 0;
    background: var(--navy-50);
}

.cta-section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.cta-section__header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.cta-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
}

.contact-form {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy-700);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--navy-700);
    box-shadow: 0 0 0 3px rgba(0,51,102,0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-style: italic;
    margin-top: var(--space-md);
}

.contact-info {
    background: linear-gradient(145deg, var(--navy-700) 0%, var(--navy-800) 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(197,160,89,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info__header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    position: relative;
}

.contact-info__header h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.contact-info__status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255,255,255,0.1);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info__status-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197,160,89,0.6); }
    50% { box-shadow: 0 0 0 6px rgba(197,160,89,0); }
}

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: relative;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-info__icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-400);
}

.contact-info__icon svg {
    width: 20px;
    height: 20px;
}

.contact-info__text strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold-400);
    margin-bottom: var(--space-xs);
}

.contact-info__text span,
.contact-info__text a {
    font-size: 1rem;
    color: var(--white);
}

.contact-info__text a:hover {
    color: var(--gold-300);
}

/* ═══════════════════════════════════════════════════════════
   CONTENT PAGES (STANDARD LAYOUTS)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--navy-50) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: var(--space-md);
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    padding: var(--space-4xl) 0;
}

.content-section {
    margin-bottom: var(--space-3xl);
}

.content-section h2 {
    margin-bottom: var(--space-lg);
}

.content-section h3 {
    margin-bottom: var(--space-md);
    margin-top: var(--space-xl);
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    list-style: disc;
    margin-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-section li {
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-2xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-400);
}

.blog-card__content {
    padding: var(--space-2xl);
}

.blog-card__date {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: var(--space-sm);
}

.blog-card h3 {
    margin-bottom: var(--space-md);
}

.blog-card h3 a {
    color: var(--navy-700);
}

.blog-card h3 a:hover {
    color: var(--gold-500);
}

.blog-card__excerpt {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
    color: var(--navy-700);
    font-size: 0.9rem;
}

.blog-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.blog-card:hover .blog-card__link svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.7);
    padding-top: var(--space-4xl);
    font-size: 0.9rem;
    border-top: 4px solid var(--gold-500);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer__brand h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.footer__brand p {
    margin-bottom: var(--space-lg);
    max-width: 280px;
    line-height: 1.7;
}

.footer__socials {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__col h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

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

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer__contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold-400);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Compliance section: the obligatory legal wall of text. */
.footer__compliance {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-lg);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.footer__compliance p {
    margin-bottom: var(--space-sm);
}

.footer__compliance p:last-child {
    margin-bottom: 0;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-xl);
    font-size: 0.8rem;
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer__bottom-links a {
    color: rgba(255,255,255,0.6);
}

.footer__bottom-links a:hover {
    color: var(--gold-400);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .hero__visual {
        order: -1;
    }

    .hero__testimonial {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: var(--space-lg);
        max-width: 100%;
    }

    .process__grid,
    .services__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .process__grid::before {
        display: none;
    }

    .cta-section__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }

    .header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-200);
        z-index: 999;
    }

    .header__nav--active {
        display: flex;
    }

    .header__nav--active .header__nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--space-md);
    }

    .header__nav--active .header__nav-link {
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
        display: block;
    }

    /* Mobile dropdown: always visible, no hover */
    .header__nav--active .header__dropdown-menu {
        display: block;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--navy-50);
        border-radius: var(--radius-sm);
        margin: var(--space-xs) 0 var(--space-sm) var(--space-md);
        padding: var(--space-xs) 0;
        min-width: 0;
    }

    .header__nav--active .header__dropdown-menu a {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.85rem;
    }

    .header__nav--active .header__nav-link--dropdown svg {
        transform: rotate(180deg);
    }

    .hero {
        padding: var(--space-2xl) 0 var(--space-3xl) 0;
        text-align: center;
    }

    .hero::before {
        display: none;
    }

    .hero__badge {
        margin-bottom: var(--space-md);
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__features {
        justify-content: center;
    }

    .hero__actions {
        justify-content: center;
    }

    /* Hero tweaks for small screens. */
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero__visual {
        order: 0;
        flex-direction: column;
        align-items: center;
    }

    .hero__card {
        max-width: 100%;
        margin-bottom: 0;
        padding: var(--space-xl);
    }

    .hero__testimonial {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: var(--space-lg);
        transform: none;
    }

    .trust-bar__inner {
        gap: var(--space-lg);
    }

    .trust-bar__item {
        font-size: 0.8rem;
    }

    .intro__divider::before,
    .intro__divider::after {
        width: 50px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand p {
        max-width: 100%;
    }

    .footer__socials {
        justify-content: center;
    }

    .footer__contact-item {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }
}

/* Staff profile layout. */
.staff-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-3xl);
    align-items: start;
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--gray-200);
}

.staff-profile__image {
    position: relative;
}

.staff-profile__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    outline: 1px solid var(--gray-200);
}

.staff-profile__image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.staff-profile__content h2 {
    margin-bottom: var(--space-xs);
    font-size: 2rem;
}

.staff-profile__title {
    color: var(--gold-600);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gold-400);
    display: inline-block;
}

.staff-profile__content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .staff-profile {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .staff-profile__image {
        max-width: 260px;
        margin: 0 auto;
    }

    .staff-profile__title {
        display: block;
    }

    .staff-profile__content p {
        text-align: left;
    }
}

/* Staff grid: three cards — Mary featured, then two support staff. */
.staff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.staff-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.staff-card:hover {
    box-shadow: var(--shadow-md);
}

.staff-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--navy-50) 0%, var(--white) 100%);
    border: 2px solid var(--gold-400);
}

.staff-card--featured .staff-card__image {
    position: relative;
}

.staff-card--featured .staff-card__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    outline: 1px solid var(--gray-200);
}

.staff-card--featured .staff-card__image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.staff-card--featured .staff-card__content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.staff-card--featured .staff-card__title {
    color: var(--gold-600);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gold-400);
    display: inline-block;
}

.staff-card--featured .staff-card__content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Non-featured staff cards */
.staff-card:not(.staff-card--featured) {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
}

.staff-card:not(.staff-card--featured) .staff-card__image {
    width: 160px;
    height: 160px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--navy-100);
}

.staff-card:not(.staff-card--featured) .staff-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-card:not(.staff-card--featured) h2 {
    font-size: 1.4rem;
    margin-bottom: var(--space-xs);
}

.staff-card__title {
    color: var(--gold-600);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.staff-card:not(.staff-card--featured) .staff-card__content p:last-child {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .staff-card--featured {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .staff-card--featured .staff-card__image {
        max-width: 220px;
        margin: 0 auto;
    }

    .staff-card--featured .staff-card__title {
        display: block;
    }

    .staff-card--featured .staff-card__content p {
        text-align: left;
    }
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS SECTION
   ═══════════════════════════════════════════════════════════ */
.reviews {
    padding: var(--space-4xl) 0;
    background: var(--navy-50);
}

.reviews__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.reviews__header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.reviews__card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.reviews__stars {
    display: flex;
    gap: 2px;
    color: var(--gold-500);
    margin-bottom: var(--space-md);
}

.reviews__stars svg {
    width: 18px;
    height: 18px;
}

.reviews__text {
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.reviews__author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════════
   CARRIER PARTNERS SECTION
   ═══════════════════════════════════════════════════════════ */
.carrier-partners {
    padding: var(--space-4xl) 0 calc(var(--space-4xl) + var(--space-xl));
    background: #faf8f5;
    overflow: hidden;
}

.carrier-partners__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.carrier-partners__header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* Infinite scrolling marquee */
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carrier-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carrier-marquee::before,
.carrier-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.carrier-marquee::before {
    left: 0;
    background: linear-gradient(to right, #faf8f5, transparent);
}

.carrier-marquee::after {
    right: 0;
    background: linear-gradient(to left, #faf8f5, transparent);
}

.carrier-marquee__track {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
}

.carrier-marquee:hover .carrier-marquee__track {
    animation-play-state: paused;
}

.carrier-marquee__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 var(--space-sm);
}

.carrier-marquee__item img {
    height: 52px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.carrier-marquee__item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .carrier-marquee__item img {
        height: 40px;
        max-width: 120px;
    }

    .carrier-marquee__track {
        gap: var(--space-2xl);
        animation-duration: 35s;
    }

    .carrier-marquee::before,
    .carrier-marquee::after {
        width: 40px;
    }
}

/* ═══════════════════════════════════════════════════════════
   POSTCARDS FROM THE ROAD SECTION
   ═══════════════════════════════════════════════════════════ */
.postcards {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--navy-50) 0%, var(--gold-100) 100%);
}

.postcards__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.postcards__content h2 {
    margin-bottom: var(--space-md);
}

.postcards__content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.postcards__placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-4xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-200);
    text-align: center;
}

.postcards__placeholder-image p {
    color: var(--gray-400);
    font-style: italic;
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE GRID
   ═══════════════════════════════════════════════════════════ */
.contact-page__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-page__info h2 {
    margin-bottom: var(--space-xl);
}

.contact-page__info h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.contact-page__info ul {
    list-style: disc;
    margin-left: var(--space-xl);
}

.contact-page__info li {
    margin-bottom: var(--space-sm);
}

@media (max-width: 1024px) {
    .reviews__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .postcards__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-page__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   ADDITIONAL STYLES - Add to end of src/css/style.css
   ═══════════════════════════════════════════════════════════ */

/* Hero broker card styles. */
.hero__broker-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    max-width: 340px;
    text-align: center;
    margin-bottom: 80px;
    overflow: hidden;
}

.hero__broker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-700), var(--gold-500));
}

.hero__broker-image {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto var(--space-lg);
}

.hero__broker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(0,51,102,0.15);
}

.hero__broker-image::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--gold-500) 100%);
    border-radius: 50%;
    z-index: -1;
}

.hero__broker-info {
    margin-bottom: var(--space-lg);
}

.hero__broker-info h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.5rem;
}

.hero__broker-info p {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.hero__broker-license {
    display: inline-block;
    background: var(--navy-100);
    color: var(--navy-700);
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

/* Staff profile layout (services/staff). */
.staff-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-3xl);
    align-items: start;
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--gray-200);
}

.staff-profile__image {
    position: relative;
}

.staff-profile__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    outline: 1px solid var(--gray-200);
}

.staff-profile__image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.staff-profile__content h2 {
    margin-bottom: var(--space-xs);
    font-size: 2rem;
}

.staff-profile__title {
    color: var(--gold-600);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gold-400);
    display: inline-block;
}

.staff-profile__content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Responsive tweaks for broker and staff cards. */
@media (max-width: 768px) {
    .hero__broker-card {
        max-width: 100%;
        margin-bottom: 0;
        padding: var(--space-lg);
    }

    .hero__broker-image {
        width: 120px;
        height: 120px;
    }

    .staff-profile {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .staff-profile__image {
        max-width: 260px;
        margin: 0 auto;
    }

    .staff-profile__title {
        display: block;
    }

    .staff-profile__content p {
        text-align: left;
    }
}
