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

:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;

    --cream-50: #fefdf8;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --cream-300: #fde68a;
    --cream-400: #fcd34d;
    --cream-500: #f59e0b;

    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
    --shadow-emerald: 0 8px 32px rgba(5,150,105,0.2);
    --shadow-cream: 0 8px 32px rgba(245,158,11,0.15);

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background-color: var(--cream-50);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ===== Background Blobs ===== */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.bg-blob--1 {
    width: 600px;
    height: 600px;
    background: var(--emerald-200);
    top: -200px;
    right: -150px;
}

.bg-blob--2 {
    width: 400px;
    height: 400px;
    background: var(--cream-300);
    bottom: 20%;
    left: -100px;
}

.bg-blob--3 {
    width: 300px;
    height: 300px;
    background: var(--emerald-100);
    bottom: -100px;
    right: 10%;
}

/* ===== Section Header ===== */
.section-header__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--emerald-600);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-header__tag--light {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: var(--emerald-200);
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 16px;
}

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

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

.text-accent {
    color: var(--emerald-600);
}

.text-accent-light {
    color: var(--cream-300);
}

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

.btn--primary {
    background: var(--emerald-600);
    color: var(--white);
    box-shadow: var(--shadow-emerald);
}

.btn--primary:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(5,150,105,0.3);
}

.btn--ghost {
    background: var(--white);
    color: var(--emerald-700);
    border: 2px solid var(--emerald-200);
}

.btn--ghost:hover {
    background: var(--emerald-50);
    border-color: var(--emerald-400);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--white);
    color: var(--emerald-700);
    box-shadow: var(--shadow-md);
}

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

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

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

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(254,253,248,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--shadow-sm);
    padding: 10px 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--emerald-700);
}

.navbar__logo-icon {
    color: var(--emerald-600);
}

.navbar__logo-accent {
    color: var(--emerald-400);
}

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

.navbar__link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.navbar__link:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.navbar__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--white);
    background: var(--emerald-600);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    margin-left: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-emerald);
}

.navbar__cta:hover {
    background: var(--emerald-700);
    transform: translateY(-1px);
}

.navbar__menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    color: var(--gray-700);
    transition: var(--transition);
}

.navbar__menu-btn:hover {
    background: var(--emerald-50);
    color: var(--emerald-700);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(254,253,248,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
    padding: 12px 32px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.mobile-menu__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    background: var(--emerald-600);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    margin-top: 12px;
    box-shadow: var(--shadow-emerald);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.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-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--emerald-700);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

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

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

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__title-accent {
    color: var(--emerald-600);
    position: relative;
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--emerald-200);
    border-radius: 3px;
    z-index: -1;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
}

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

/* Hero card */
.hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-card--main {
    width: 100%;
    aspect-ratio: 5/6;
}

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

.hero-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,78,59,0.85) 0%, rgba(6,78,59,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.hero-card__content {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.hero-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-200);
}

.hero-card__text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Floating stat cards */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.float-card__emoji {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.float-card div {
    display: flex;
    flex-direction: column;
}

.float-card strong {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

.float-card span {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.float-card--1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.float-card--2 {
    top: 50%;
    left: -40px;
    animation-delay: 1.3s;
}

.float-card--3 {
    bottom: 12%;
    right: -20px;
    animation-delay: 2.6s;
}

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

/* Hero geometric decorations */
.hero__geo {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero__geo--circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--emerald-100);
    top: 15%;
    right: -60px;
    opacity: 0.6;
}

.hero__geo--square {
    width: 80px;
    height: 80px;
    background: var(--cream-300);
    border-radius: var(--radius-md);
    bottom: 20%;
    right: 5%;
    transform: rotate(30deg);
    opacity: 0.5;
}

.hero__geo--triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 70px 40px;
    border-color: transparent transparent var(--emerald-300) transparent;
    top: 25%;
    left: 48%;
    opacity: 0.3;
    transform: rotate(-15deg);
}

/* ===== Services ===== */
.services {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

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

.section-header__desc {
    margin: 0 auto;
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-400), var(--emerald-600));
    opacity: 0;
    transition: var(--transition);
}

.service-card__accent {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--emerald-50);
    transition: var(--transition);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-card__accent {
    background: var(--emerald-100);
    transform: scale(1.3);
}

.service-card__icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--emerald-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card__icon-wrap {
    background: var(--emerald-600);
    color: var(--white);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    position: relative;
}

.service-card__desc {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
}

.service-card__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--emerald-700);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    position: relative;
}

/* Geometric accents */
.geo-accent {
    position: absolute;
    pointer-events: none;
}

.geo-accent--1 {
    width: 120px;
    height: 120px;
    background: var(--emerald-100);
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    top: 10%;
    left: -40px;
    opacity: 0.4;
}

.geo-accent--2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cream-300);
    bottom: 15%;
    right: -20px;
    opacity: 0.5;
}

/* ===== About ===== */
.about {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

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

.about__visual {
    position: relative;
}

.about__image-stack {
    position: relative;
    height: 620px;
}

.about__image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about__image-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

.about__experience-badge {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: var(--emerald-600);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-emerald);
    z-index: 2;
}

.about__experience-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.about__experience-label {
    display: block;
    font-size: 0.78rem;
    opacity: 0.85;
    line-height: 1.4;
    margin-top: 2px;
}

.about__geo {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--cream-300);
    border-radius: var(--radius-md);
    transform: rotate(30deg);
    top: -20px;
    left: -20px;
    opacity: 0.5;
    z-index: -1;
}

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

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

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.highlight-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: var(--emerald-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
}

/* ===== Insurance CTA ===== */
.insurance-cta {
    position: relative;
    padding: 100px 0;
    z-index: 1;
    background: linear-gradient(135deg, var(--emerald-700) 0%, var(--emerald-900) 100%);
    overflow: hidden;
}

.insurance-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.insurance-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

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

.insurance-cta__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 32px;
}

.insurance-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.insurance-cta__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ins-icon {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.ins-icon:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    transform: translateY(-4px);
}

.ins-icon--2 {
    transform: translateY(20px);
}

.ins-icon--2:hover {
    transform: translateY(16px);
}

.ins-icon--4 {
    transform: translateY(20px);
}

.ins-icon--4:hover {
    transform: translateY(16px);
}

/* ===== Contact ===== */
.contact {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

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

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

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

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

.contact-detail__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--emerald-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
}

.contact-detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--emerald-600);
}

/* Contact form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact-form__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 28px;
}

.contact-form__group {
    margin-bottom: 20px;
}

.contact-form__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--cream-50);
    transition: var(--transition);
    outline: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: var(--emerald-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}

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

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

.contact-form__success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    color: var(--emerald-800);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form__success svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ===== Map Section ===== */
.map-section {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.map-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6);
}

.map-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6,78,59,0.88) 0%, rgba(6,78,59,0.5) 60%, transparent 100%);
    display: flex;
    align-items: center;
}

.map-section__content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.map-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.map-section__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    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-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 14px;
}

.footer__logo-icon {
    color: var(--emerald-400);
}

.footer__logo-accent {
    color: var(--emerald-500);
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-400);
    max-width: 280px;
}

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

.footer__links a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: var(--transition);
}

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

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer__contact svg {
    flex-shrink: 0;
    color: var(--emerald-500);
    margin-bottom: 2px;
}

.footer__contact a:hover {
    color: var(--emerald-400);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--gray-500);
}

.footer__bottom a {
    color: var(--gray-500);
    transition: var(--transition);
}

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

/* ===== 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__container {
        gap: 40px;
    }

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

    .about__inner {
        gap: 40px;
    }

    .insurance-cta__inner {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar__links {
        display: none;
    }

    .navbar__menu-btn {
        display: flex;
    }

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

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

    .hero__right {
        position: relative;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-card--main {
        aspect-ratio: 4/5;
    }

    .float-card--1 {
        left: -10px;
        top: 5%;
    }

    .float-card--2 {
        left: -15px;
        top: 45%;
    }

    .float-card--3 {
        right: -10px;
        bottom: 8%;
    }

    .hero__geo--circle {
        width: 120px;
        height: 120px;
        right: -30px;
    }

    .hero__geo--square {
        width: 50px;
        height: 50px;
    }

    .services {
        padding: 70px 0;
    }

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

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

    .about {
        padding: 70px 0;
    }

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

    .about__image-stack {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .insurance-cta {
        padding: 70px 0;
    }

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

    .insurance-cta__visual {
        max-width: 280px;
    }

    .contact {
        padding: 70px 0;
    }

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

    .contact-form-wrap {
        padding: 28px;
    }

    .map-section {
        height: 220px;
    }

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

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

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

    .hero__title {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .float-card {
        padding: 10px 14px;
    }

    .float-card strong {
        font-size: 0.78rem;
    }

    .float-card span {
        font-size: 0.7rem;
    }

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

    .insurance-cta__actions {
        flex-direction: column;
    }

    .insurance-cta__actions .btn {
        justify-content: center;
    }
}
