/* ========================================
   East Kentucky Eye Care — Stylesheet
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --navy-900: #0a1628;
    --navy-800: #1a2d47;
    --navy-700: #1a3a5c;
    --navy-600: #234b73;
    --navy-500: #2d5f8f;
    --navy-100: #d4e2f0;
    --navy-50:  #eaf2fa;

    --gold-600: #a8842a;
    --gold-500: #c8a45a;
    --gold-400: #d4b76a;
    --gold-300: #e0c97a;
    --gold-200: #f0e0a0;
    --gold-100: #faf3dc;

    --neutral-900: #0f1923;
    --neutral-800: #1a2734;
    --neutral-700: #2d3f50;
    --neutral-600: #4a5f73;
    --neutral-500: #6b8299;
    --neutral-400: #8fa3b5;
    --neutral-300: #b4c4d3;
    --neutral-200: #d5e0ea;
    --neutral-100: #eaf0f5;
    --neutral-50:  #f4f7fa;
    --neutral-25:  #f9fafb;
    --white: #ffffff;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06), 0 1px 2px rgba(10, 22, 40, 0.04);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.08), 0 2px 4px rgba(10, 22, 40, 0.04);
    --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.12), 0 4px 12px rgba(10, 22, 40, 0.06);
    --shadow-xl: 0 24px 60px rgba(10, 22, 40, 0.16), 0 8px 20px rgba(10, 22, 40, 0.08);

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.text-gold {
    color: var(--gold-500);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold-500);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy-800);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-600);
    max-width: 560px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

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

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

.btn--outline {
    background: transparent;
    color: var(--navy-700);
    border: 2px solid var(--navy-200);
}

.btn--outline:hover {
    border-color: var(--navy-700);
    background: var(--navy-50);
    transform: translateY(-2px);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    border: 2px solid var(--gold-500);
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--white {
    background: var(--white);
    color: var(--navy-800);
    border: 2px solid var(--white);
}

.btn--white:hover {
    background: var(--neutral-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-100);
    transition: all var(--transition-base);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-800);
}

.nav__logo-icon {
    color: var(--navy-700);
}

.nav__logo-accent {
    color: var(--gold-500);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-600);
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav__link:hover {
    color: var(--navy-700);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: var(--navy-700);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.nav__cta:hover {
    background: var(--navy-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy-800);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--navy-800);
    padding: 8px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy-800);
    padding: 12px 0;
    transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--gold-500);
}

.mobile-menu__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--navy-700);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--neutral-25) 0%, var(--navy-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 164, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 58, 92, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy-700);
    background: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy-900);
    margin-bottom: 24px;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.hero__trust-item svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* Hero Image */
.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/720;
}

.hero__image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-500);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.4;
}

.hero__floating-card {
    position: absolute;
    bottom: 32px;
    left: -32px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hero__floating-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    border-radius: var(--radius-md);
    color: var(--white);
}

.hero__floating-card-text {
    display: flex;
    flex-direction: column;
}

.hero__floating-card-number {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero__floating-card-value {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-800);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neutral-400);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 1;
}

.hero__scroll svg {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* --- Services Section --- */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-50);
    border-radius: var(--radius-md);
    color: var(--navy-700);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
    background: var(--navy-700);
    color: var(--white);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--neutral-600);
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background: var(--neutral-50);
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__image-col {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560/640;
}

.about__image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 320/240;
}

.about__experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about__experience-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-400);
    margin-bottom: 4px;
}

.about__experience-text {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.9;
}

.about__content-col .section-label {
    padding-left: 32px;
}

.about__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 16px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy-700);
}

.about__highlight svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* --- Insurance Section --- */
.insurance {
    padding: 100px 0;
    background: var(--white);
}

.insurance__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.insurance__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 32px;
}

.insurance__list {
    display: grid;
    gap: 14px;
    margin-bottom: 36px;
}

.insurance__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy-700);
}

.insurance__list svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

.insurance__visual {
    position: relative;
    min-height: 400px;
}

.insurance__card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.insurance__card:first-child {
    top: 0;
    right: 0;
    width: 280px;
    padding: 32px;
    border: 1px solid var(--neutral-100);
}

.insurance__card--secondary {
    bottom: 20px;
    left: 0;
    width: 240px;
    padding: 28px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
    border: none;
}

.insurance__card--secondary .insurance__card-label {
    color: var(--white);
}

.insurance__card--secondary .insurance__card-sublabel {
    color: rgba(255, 255, 255, 0.7);
}

.insurance__card--secondary .insurance__card-inner svg {
    color: var(--gold-400);
}

.insurance__card-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insurance__card-inner svg {
    color: var(--navy-700);
}

.insurance__card-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-800);
}

.insurance__card-sublabel {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.5;
}

/* --- Contact Section --- */
.contact {
    padding: 100px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 164, 90, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact .section-label {
    color: var(--gold-400);
}

.contact .section-title {
    color: var(--white);
}

.contact__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact__detail:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 164, 90, 0.3);
    transform: translateX(4px);
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 90, 0.15);
    border-radius: var(--radius-sm);
    color: var(--gold-400);
    flex-shrink: 0;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
}

/* Contact Form */
.contact__form-col {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    margin-bottom: 28px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy-700);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--neutral-800);
    background: var(--neutral-50);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form__input::placeholder {
    color: var(--neutral-400);
}

.form__input:focus {
    border-color: var(--gold-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.15);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b8299' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-sm);
    margin-top: 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #166534;
}

.form__success.show {
    display: flex;
}

.form__success svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* --- Map Strip --- */
.map-strip {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
}

.map-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.map-strip__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.25;
}

.map-strip__text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.map-strip__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.map-strip__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-strip__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 500/300;
}

/* --- Footer --- */
.footer {
    background: var(--navy-900);
    padding: 64px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-accent {
    color: var(--gold-400);
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 300px;
}

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

.footer__link-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link-title {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 4px;
}

.footer__link-col a,
.footer__link-col span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-fast);
    line-height: 1.6;
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

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

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

/* --- Scroll Animations --- */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }

    .hero__floating-card {
        left: -16px;
        bottom: 24px;
    }

    .about__image-secondary {
        right: -20px;
        bottom: -20px;
    }

    .about__experience-badge {
        left: -10px;
        top: -10px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insurance__inner {
        gap: 48px;
    }
}

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

    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }

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

    .hero__image {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero__floating-card {
        left: 16px;
        bottom: 16px;
    }

    .hero__scroll {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .services {
        padding: 80px 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .about {
        padding: 80px 0;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image-col {
        max-width: 480px;
        margin: 0 auto;
    }

    .about__image-secondary {
        right: 0;
        bottom: -24px;
    }

    .about__highlights {
        grid-template-columns: 1fr;
    }

    .insurance {
        padding: 80px 0;
    }

    .insurance__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .insurance__visual {
        order: -1;
        min-height: 280px;
    }

    .insurance__card:first-child {
        width: 240px;
        right: 0;
    }

    .insurance__card--secondary {
        width: 200px;
        left: 0;
    }

    .contact {
        padding: 80px 0;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-col {
        padding: 28px;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .map-strip {
        padding: 60px 0;
    }

    .map-strip__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .map-strip__actions {
        flex-direction: column;
    }

    .map-strip__actions .btn {
        justify-content: center;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2rem;
    }

    .hero__trust {
        flex-direction: column;
        gap: 12px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about__image-secondary {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 16px;
    }

    .about__experience-badge {
        position: relative;
        left: 0;
        top: 0;
        display: inline-block;
        margin-bottom: 16px;
    }

    .insurance__visual {
        min-height: 200px;
    }

    .insurance__card:first-child {
        width: 200px;
    }

    .insurance__card--secondary {
        width: 180px;
    }

    .footer__links {
        grid-template-columns: 1fr;
    }
}
