/* ===================================
   LACEY MEDICAL GROUP — BRAND STYLES
   Charcoal + Coral | Editorial Design
   =================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-charcoal: #1A1D23;
    --color-charcoal-light: #2C3038;
    --color-charcoal-muted: #3D4250;
    --color-coral: #E86453;
    --color-coral-light: #F07868;
    --color-coral-dark: #D15243;
    --color-cream: #FAF7F4;
    --color-warm-white: #FDFCFA;
    --color-off-white: #F5F1ED;
    --color-text: #1A1D23;
    --color-text-light: #6B7280;
    --color-text-muted: #9CA3AF;
    --color-border: #E5E0DA;
    --color-border-light: #F0EBE5;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(26, 29, 35, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 29, 35, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 29, 35, 0.12);
    --shadow-xl: 0 24px 60px rgba(26, 29, 35, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 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;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-charcoal);
}

em {
    font-style: italic;
    color: var(--color-coral);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(253, 252, 250, 0.97);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-coral);
    border-radius: var(--radius-sm);
    color: white;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-coral);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-charcoal);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-charcoal);
    color: white;
}

.btn-primary:hover {
    background: var(--color-charcoal-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-coral {
    background: var(--color-coral);
    color: white;
}

.btn-coral:hover {
    background: var(--color-coral-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(232, 100, 83, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-charcoal);
}

.btn-outline:hover {
    background: var(--color-charcoal);
    color: white;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

/* --- Mobile Menu --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    transition: var(--transition);
    border-radius: 2px;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    padding-top: 76px;
    padding-bottom: var(--space-4xl);
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-bg-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 100, 83, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.hero-bg-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 29, 35, 0.04) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: var(--space-2xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-coral);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-coral);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.03em;
    color: var(--color-charcoal);
}

.hero-headline em {
    color: var(--color-coral);
}

.hero-subheadline {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

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

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

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(26, 29, 35, 0.15) 100%);
    border-radius: var(--radius-xl);
}

/* Floating Stat Cards */
.stat-card {
    position: absolute;
    background: white;
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.stat-card-1 {
    bottom: 60px;
    left: -40px;
}

.stat-card-1 .stat-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-coral);
    line-height: 1;
}

.stat-card-1 .stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-top: var(--space-sm);
    line-height: 1.4;
}

.stat-card-2 {
    top: 40px;
    right: -30px;
}

.stat-card-2 .stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1;
}

.stat-card-2 .stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-top: var(--space-sm);
    line-height: 1.4;
}

.stat-card-3 {
    bottom: -20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
}

.stat-card-3 .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-coral);
    border-radius: var(--radius-sm);
    color: white;
    flex-shrink: 0;
}

.stat-card-3 .stat-address {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.4;
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-4xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-coral);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Services Section --- */
.services {
    padding: var(--space-4xl) 0;
    background: var(--color-warm-white);
}

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

.service-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

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

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    color: var(--color-coral);
    margin-bottom: var(--space-lg);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--color-coral);
    color: white;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

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

/* --- About Section --- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--color-charcoal);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 100, 83, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--color-coral);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

.about-content {
    color: white;
}

.about-content .section-tag {
    color: var(--color-coral-light);
}

.about-content .section-title {
    color: white;
}

.about-content .section-title em {
    color: var(--color-coral-light);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(232, 100, 83, 0.2);
    border-radius: 50%;
    color: var(--color-coral-light);
    flex-shrink: 0;
}

/* --- Approach Section --- */
.approach {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

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

.approach-text .section-tag {
    color: var(--color-coral);
}

.approach-text .section-title {
    margin-bottom: var(--space-xl);
}

.approach-text .section-title em {
    color: var(--color-coral);
}

.approach-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.approach-cta {
    padding: var(--space-2xl);
}

.cta-card {
    background: var(--color-charcoal);
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    text-align: center;
}

.cta-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: var(--space-md);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-xl);
    font-size: 1rem;
}

.cta-card .btn-coral {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* --- Testimonials Section --- */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--color-warm-white);
}

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

.testimonial-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-quote {
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* --- Contact Section --- */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--color-off-white);
}

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

.contact-info .section-title {
    margin-bottom: var(--space-lg);
}

.contact-info .section-title em {
    color: var(--color-coral);
}

.contact-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

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

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

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.contact-item p {
    font-size: 1rem;
    color: var(--color-charcoal);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--color-coral);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.contact-form-card > p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-warm-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-coral);
    background: white;
    box-shadow: 0 0 0 3px rgba(232, 100, 83, 0.1);
}

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

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

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: var(--space-2xl);
}

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

.success-icon {
    margin-bottom: var(--space-lg);
}

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-charcoal);
}

.form-success p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--color-charcoal);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: white;
    margin-bottom: var(--space-lg);
}

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

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
    color: var(--color-coral-light);
}

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

.footer-contact a:hover {
    color: var(--color-coral-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a:hover {
    color: var(--color-coral-light);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stat-card-1 {
        left: -10px;
    }
    
    .stat-card-2 {
        right: -10px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .about-image-wrapper img {
        height: 480px;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .contact-form-wrapper {
        sticky: unset;
        top: unset;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-warm-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px var(--space-2xl) var(--space-2xl);
        gap: var(--space-xl);
        box-shadow: var(--shadow-xl);
        transition: var(--transition-slow);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: var(--space-3xl);
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-image-card img {
        height: 420px;
    }
    
    .stat-card {
        padding: var(--space-md) var(--space-lg);
    }
    
    .stat-card-1 {
        left: 10px;
        bottom: 30px;
    }
    
    .stat-card-2 {
        right: 10px;
        top: 20px;
    }
    
    .stat-card-3 {
        right: 10px;
        bottom: -10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stat-card-1, .stat-card-2 {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: var(--space-md);
    }
    
    .hero-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
