/* ============================================
   UIHC-Family Care Center — Stylesheet
   Deep Navy + Warm Gold | Vibrant Geometric
   ============================================ */

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

:root {
    --navy-deep: #0A1F44;
    --navy-mid: #132D5E;
    --navy-light: #1E3D7A;
    --gold: #D4A843;
    --gold-light: #E8C572;
    --gold-dark: #B8912E;
    --white: #FFFFFF;
    --off-white: #F8F6F0;
    --cream: #FDF9F0;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --accent-coral: #E8735A;
    --accent-teal: #2DB5A8;
    --accent-lavender: #8B7EC8;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.08);
    --shadow-md: 0 8px 30px rgba(10, 31, 68, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 31, 68, 0.15);
    --shadow-gold: 0 8px 30px rgba(212, 168, 67, 0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy-deep);
}

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

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

ul {
    list-style: none;
}

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

/* --- Background Decorative Shapes --- */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.04;
}

.shape--circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gold);
    top: -200px;
    right: -150px;
}

.shape--circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--accent-teal);
    bottom: 10%;
    left: -100px;
}

.shape--square-1 {
    width: 200px;
    height: 200px;
    background: var(--accent-coral);
    top: 40%;
    right: 5%;
    transform: rotate(45deg);
}

.shape--triangle-1 {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid var(--accent-lavender);
    top: 60%;
    left: 3%;
    opacity: 0.03;
}

.shape--dot-grid {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--navy-deep) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    top: 25%;
    left: 8%;
    opacity: 0.06;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 31, 68, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo__mark {
    width: 40px;
    height: 40px;
    background: var(--navy-deep);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

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

.logo__name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
}

.logo__sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--navy-deep);
    background: rgba(10, 31, 68, 0.05);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--navy-deep);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-left: 8px;
}

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy-deep);
    border-radius: 2px;
    transition: var(--transition);
}

.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);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0A1F44 0%, #132D5E 40%, #1E3D7A 70%, #2A4F94 100%);
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212, 168, 67, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(45, 181, 168, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 60% 90%, rgba(232, 115, 90, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__geo {
    position: absolute;
}

.hero__geo--circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 67, 0.12);
    top: -100px;
    right: -100px;
}

.hero__geo--ring {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid rgba(212, 168, 67, 0.08);
    bottom: 5%;
    left: -50px;
}

.hero__geo--dots {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(212, 168, 67, 0.3) 2px, transparent 2px);
    background-size: 10px 10px;
    top: 20%;
    right: 15%;
}

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

.hero__content {
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.hero__title {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero__title--accent {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero__stats {
    display: flex;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat--divider {
    padding-left: 32px;
    border-left: 2px solid rgba(212, 168, 67, 0.3);
}

.stat__number {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

.stat__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

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

.hero__image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 520/640;
    background: var(--navy-mid);
}

.hero__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero__floating-card--top {
    top: 12%;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}

.hero__floating-card--bottom {
    bottom: 15%;
    right: -30px;
    animation: float 4s ease-in-out infinite 2s;
}

.floating-card__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.floating-card__label {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.floating-card__value {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-deep);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--gold {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

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

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-dark);
    margin-bottom: 14px;
    position: relative;
}

.section-header__eyebrow::before,
.section-header__eyebrow::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 10px;
    opacity: 0.5;
}

.section-header__eyebrow--dark {
    color: var(--gold-light);
}

.section-header__eyebrow--dark::before,
.section-header__eyebrow--dark::after {
    background: var(--gold-light);
}

.section-header__title {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

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

.section-header__subtitle {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- Services --- */
.services {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--off-white);
}

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

.service-card {
    position: relative;
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10, 31, 68, 0.06);
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--navy-deep);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

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

.service-card--accent {
    background: var(--navy-deep);
    border-color: transparent;
    grid-column: span 1;
}

.service-card--accent::before {
    background: var(--gold);
}

.service-card--accent:hover {
    box-shadow: 0 20px 60px rgba(10, 31, 68, 0.3);
}

.service-card__accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.service-card__icon-wrap {
    margin-bottom: 20px;
}

.service-card--accent .service-card__icon {
    background: rgba(212, 168, 67, 0.15);
    color: var(--gold-light);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.06) 0%, rgba(10, 31, 68, 0.12) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--navy-deep);
    color: var(--gold);
    transform: scale(1.05);
}

.service-card--accent:hover .service-card__icon {
    background: rgba(212, 168, 67, 0.25);
    color: var(--gold-light);
}

.service-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card--accent .service-card__title {
    color: var(--white);
}

.service-card__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

.service-card--accent .service-card__desc {
    color: rgba(255, 255, 255, 0.65);
}

/* --- About --- */
.about {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--navy-deep);
    overflow: hidden;
}

.about__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.about__shape {
    position: absolute;
    border-radius: 50%;
}

.about__shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.about__shape--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 181, 168, 0.06) 0%, transparent 70%);
    bottom: -80px;
    left: 10%;
}

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

.about__image-stack {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 480/560;
    background: var(--navy-mid);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about__experience-badge {
    position: absolute;
    bottom: 24px;
    left: -16px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-badge__number {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy-deep);
    line-height: 1;
}

.experience-badge__text {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about__content-col {
    position: relative;
    z-index: 1;
}

.about__content-col .section-header__eyebrow {
    text-align: left;
}

.about__content-col .section-header__eyebrow::before {
    display: none;
}

.about__body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

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

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.about__feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Insurance --- */
.insurance {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
    overflow: hidden;
}

.insurance::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.06);
    pointer-events: none;
}

.insurance::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(45, 181, 168, 0.05);
    pointer-events: none;
}

.insurance__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.insurance__content {
    flex: 1;
    max-width: 600px;
}

.insurance__text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: 16px;
}

.insurance__actions {
    flex-shrink: 0;
}

/* --- Contact --- */
.contact {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--off-white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.06) 0%, rgba(10, 31, 68, 0.12) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact__detail-value {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-deep);
    line-height: 1.5;
}

.contact__detail-value a {
    transition: var(--transition);
}

.contact__detail-value a:hover {
    color: var(--gold-dark);
}

/* Contact Form */
.contact__form-col {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 31, 68, 0.06);
}

.contact__form-title {
    font-size: 24px;
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--gray-400);
}

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

.form__privacy {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 16px;
}

/* Success State */
.contact__form-success {
    text-align: center;
    padding: 40px 20px;
}

.success__icon {
    margin-bottom: 20px;
}

.success__title {
    font-size: 24px;
    margin-bottom: 12px;
}

.success__text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* --- Footer --- */
.footer {
    background: var(--navy-deep);
    position: relative;
    z-index: 1;
}

.footer__map {
    filter: grayscale(0.3) brightness(0.85);
    opacity: 0.8;
}

.footer__map iframe {
    border-radius: 0;
}

.footer__inner {
    padding: 60px 24px 32px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer__tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

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

.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer__legal {
    text-align: right;
}

.footer__legal p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

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

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__inner {
        gap: 40px;
    }
    
    .hero__floating-card--top {
        left: -10px;
    }
    
    .hero__floating-card--bottom {
        right: -10px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__list,
    .nav__cta {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav.open .nav__list {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 1000;
    }
    
    .nav.open .nav__list .nav__link {
        font-size: 24px;
        padding: 16px 24px;
    }
    
    .nav.open .nav__cta {
        display: flex;
        font-size: 18px;
        margin-left: 0;
        margin-top: 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero__subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero__floating-card--top {
        left: 0;
        top: 5%;
    }
    
    .hero__floating-card--bottom {
        right: 0;
        bottom: 10%;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .service-card--accent {
        grid-column: span 1;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
    }
    
    .about__image-stack {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about__content-col .section-header__eyebrow {
        text-align: center;
    }
    
    .about__content-col .section-header__eyebrow::before {
        display: inline-block;
    }
    
    .about__content-col .section-header__title {
        text-align: center;
    }
    
    .about__body {
        text-align: center;
    }
    
    .about__features {
        justify-items: center;
    }
    
    .insurance__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__legal {
        text-align: center;
    }
    
    .footer__tagline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__title {
        font-size: 36px;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .stat--divider {
        padding-left: 0;
        border-left: none;
        padding-top: 16px;
        border-top: 2px solid rgba(212, 168, 67, 0.3);
    }
    
    .contact__form-col {
        padding: 24px;
    }
    
    .about__experience-badge {
        left: 0;
        bottom: 16px;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
}
