/* ============================================
   EDEN MEDICAL CENTER — Custom Styles
   ============================================ */

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

:root {
    --green-50: #f0f7f0;
    --green-100: #d5ead5;
    --green-200: #aed6ad;
    --green-300: #7bc27b;
    --green-400: #4fa84f;
    --green-500: #2d8a2d;
    --green-600: #1B5E20;
    --green-700: #164d1a;
    --green-800: #0f3a12;
    --green-900: #0a290d;
    --off-white: #f8faf8;
    --cream: #f0f4f0;
    --gray-50: #f9faf9;
    --gray-100: #f3f5f3;
    --gray-200: #e5e9e5;
    --gray-300: #d1d8d1;
    --gray-400: #a8b3a8;
    --gray-500: #6b7c6b;
    --gray-600: #4a5a4a;
    --gray-700: #374237;
    --gray-800: #1e2a1e;
    --gray-900: #0f1a0f;
    --coral: #e8645a;
    --amber: #f5a623;
    --sky: #4db8d8;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(27,94,32,0.06), 0 1px 2px rgba(27,94,32,0.04);
    --shadow-md: 0 4px 16px rgba(27,94,32,0.08), 0 2px 6px rgba(27,94,32,0.04);
    --shadow-lg: 0 12px 40px rgba(27,94,32,0.12), 0 4px 12px rgba(27,94,32,0.06);
    --shadow-xl: 0 20px 60px rgba(27,94,32,0.15), 0 8px 20px rgba(27,94,32,0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--off-white);
    color: var(--gray-800);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--gray-900);
}

a {
    color: var(--green-600);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--green-700);
}

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

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

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

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--green-600);
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: var(--coral);
    bottom: 10%;
    left: -100px;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 200px 200px;
    border-color: transparent transparent var(--amber) transparent;
    opacity: 0.04;
    top: 40%;
    right: 5%;
    transform: rotate(-15deg);
}

.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 55%;
    left: 8%;
    background-image: radial-gradient(circle, var(--green-600) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.08;
}

.geo-square {
    position: absolute;
    border-radius: var(--radius-sm);
    opacity: 0.05;
}

.geo-square--1 {
    width: 100px;
    height: 100px;
    background: var(--sky);
    top: 70%;
    right: 12%;
    transform: rotate(30deg);
}

.geo-ring {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 4px solid var(--green-600);
    border-radius: 50%;
    opacity: 0.03;
    top: 20%;
    left: 60%;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(27, 94, 32, 0.08);
    transition: box-shadow var(--transition), background var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(248, 250, 248, 0.95);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--green-600);
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--green-700);
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
}

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

.nav-menu a {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-600);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-menu a:hover {
    color: var(--green-600);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green-600);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--green-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white !important;
}

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

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--green-50) 50%, var(--cream) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--green-100);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-700);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-400);
    border-radius: 50%;
    display: inline-block;
    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-headline {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-headline-accent {
    display: block;
    color: var(--green-600);
    font-size: 0.75em;
    margin-top: 4px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--green-600);
    color: white;
    border-color: var(--green-600);
    box-shadow: 0 4px 16px rgba(27, 94, 32, 0.25);
}

.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.3);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--green-600);
    border-color: var(--green-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--green-50);
    border-color: var(--green-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--green-700);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-white {
    background: white;
    color: var(--green-600);
    border-color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}

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

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

/* ---------- Floating Cards ---------- */
.hero-cards {
    position: relative;
    height: 480px;
}

.float-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(27, 94, 32, 0.06);
    animation: float 6s ease-in-out infinite;
}

.float-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px) !important;
}

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

.float-card--2 {
    top: 140px;
    right: 0;
    animation-delay: -2s;
}

.float-card--3 {
    bottom: 20px;
    left: 40px;
    animation-delay: -4s;
}

.float-card-icon {
    width: 48px;
    height: 48px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.float-card-stat {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-600);
    line-height: 1;
    margin-bottom: 4px;
}

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

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

/* ---------- Hero Image ---------- */
.hero-image-wrapper {
    position: relative;
}

.hero-image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 16px;
    left: 16px;
    background: var(--green-600);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.12;
}

.hero-image-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.hero-image-pattern {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, var(--green-400) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.3;
    z-index: -1;
}

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

.section-tag {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.text-gradient {
    color: var(--green-600);
}

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

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

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

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

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

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--green-600);
    color: white;
    transform: scale(1.05);
}

.service-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

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

.about::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: var(--green-200);
    border-radius: 50%;
    opacity: 0.2;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--green-50);
}

.about-img-secondary img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.about-accent-shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    transform: rotate(15deg);
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

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

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

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
}

.value-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

/* ---------- CTA Strip ---------- */
.cta-strip {
    padding: 100px 0;
    background: var(--green-600);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-strip-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(79, 168, 79, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(245, 166, 35, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(77, 184, 216, 0.1) 0%, transparent 50%);
}

.cta-strip-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-strip-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: white;
    margin-bottom: 16px;
}

.cta-strip-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-strip-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Insurance ---------- */
.insurance {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.insurance-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.insurance-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.insurance-card:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.insurance-card-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.insurance-card-label {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gray-800);
}

.insurance-card-sub {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.insurance-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.95rem;
}

.insurance-note a {
    font-weight: 600;
}

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

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

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 1.02rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

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

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-600);
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

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

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

/* ---------- Contact Form ---------- */
.contact-form-wrap {
    position: relative;
}

.contact-form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(27, 94, 32, 0.06);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-sub {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-400);
    box-shadow: 0 0 0 3px rgba(45, 138, 45, 0.1);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: var(--green-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--green-600);
}

.form-success p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ---------- Map ---------- */
.map-section {
    position: relative;
    z-index: 1;
}

.map-section-inner {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: -4px;
}

.map-section-inner iframe {
    filter: saturate(0.7) contrast(1.05);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-400), var(--green-600), var(--amber), var(--sky));
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .nav-logo {
    color: white;
    margin-bottom: 16px;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--green-300);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

/* ---------- Scroll Reveal ---------- */
.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal[data-reveal="up"] {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-reveal[data-reveal="left"] {
    opacity: 0;
    transform: translateX(-30px);
}

.scroll-reveal[data-reveal="right"] {
    opacity: 0;
    transform: translateX(30px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-cards {
        height: 280px;
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 500px;
    }

    .hero-image-wrapper img {
        height: 450px;
    }

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        max-width: 500px;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 20px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .nav-cta {
        margin-top: 12px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-cards {
        height: 200px;
    }

    .float-card {
        padding: 16px 20px;
    }

    .float-card-stat {
        font-size: 1.4rem;
    }

    .float-card-label {
        font-size: 0.75rem;
    }

    .hero-image-wrapper img {
        height: 350px;
    }

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

    .about-img-secondary {
        right: -10px;
        bottom: -20px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-cards {
        height: 180px;
    }

    .float-card--1 { left: 0; }
    .float-card--2 { right: 0; }
    .float-card--3 { left: 10px; }

    .cta-strip-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-strip-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .insurance-logos {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .scroll-reveal[data-reveal] {
        opacity: 1;
        transform: none;
    }
}
