/* ============================================
   Deana's Country Kids — Brand Styles
   Palette: Forest Green (#1B4332) + Off-White (#F7F9F0) + Lime (#D9F99D)
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-900: #0B1F17;
    --green-800: #1B4332;
    --green-700: #2D6A4F;
    --green-600: #40916C;
    --green-500: #52B788;
    --lime-300: #D9F99D;
    --lime-200: #E8F5B0;
    --off-white: #F7F9F0;
    --off-white-2: #EAF2DC;
    --cream: #FEFCE8;
    --text-dark: #1A1A1A;
    --text-muted: #4A4A4A;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(27,67,50,0.08);
    --shadow-md: 0 4px 16px rgba(27,67,50,0.10);
    --shadow-lg: 0 8px 32px rgba(27,67,50,0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-body: 'Outfit', system-ui, sans-serif;
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 249, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27,67,50,0.08);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(247, 249, 240, 0.97);
    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;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--green-800);
    line-height: 1.2;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo .accent {
    color: var(--green-600);
    font-weight: 500;
    font-size: 0.9rem;
}

.logo-light .accent {
    color: var(--lime-300);
}

.logo-light {
    color: var(--off-white);
}

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--green-800);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-menu a:hover {
    background: rgba(27,67,50,0.08);
    color: var(--green-700);
}

.nav-cta {
    background: var(--green-800) !important;
    color: var(--lime-300) !important;
    border-radius: var(--radius-xl) !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    transition: var(--transition);
}

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

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green-800);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--green-800);
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--green-800);
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 31, 23, 0.92) 0%,
        rgba(27, 67, 50, 0.85) 50%,
        rgba(45, 106, 79, 0.75) 100%
    );
    z-index: 1;
}

/* Geometric decorations */
.hero-geometric {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

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

.geo-circle--1 {
    width: 420px;
    height: 420px;
    background: var(--lime-300);
    top: -100px;
    right: -80px;
}

.geo-circle--2 {
    width: 240px;
    height: 240px;
    background: var(--lime-300);
    bottom: 10%;
    right: 15%;
    opacity: 0.08;
}

.geo-square {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--lime-300);
    opacity: 0.10;
    top: 20%;
    left: 55%;
    transform: rotate(35deg);
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 120px solid var(--lime-300);
    opacity: 0.08;
    bottom: 25%;
    left: 10%;
    transform: rotate(-15deg);
}

.geo-dots {
    position: absolute;
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 8%;
    opacity: 0.15;
    background-image: radial-gradient(circle, var(--lime-300) 2px, transparent 2px);
    background-size: 14px 14px;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 60px 0 100px;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 249, 157, 0.15);
    border: 1px solid rgba(217, 249, 157, 0.3);
    color: var(--lime-300);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline .highlight {
    color: var(--lime-300);
    position: relative;
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.80);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

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

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 4;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--lime-300);
    color: var(--green-800);
    border-color: var(--lime-300);
}

.btn-primary:hover {
    background: var(--lime-200);
    border-color: var(--lime-200);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline-green {
    background: transparent;
    color: var(--green-800);
    border-color: var(--green-800);
}

.btn-outline-green:hover {
    background: var(--green-800);
    color: var(--lime-300);
    transform: translateY(-2px);
}

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

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

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-600);
    margin-bottom: 16px;
}

.label-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--lime-300);
    border-radius: 50%;
    border: 2px solid var(--green-600);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--green-800);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    background: var(--off-white);
    position: relative;
}

.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 rgba(27,67,50,0.07);
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lime-300);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.card-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--off-white-2);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--off-white-2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background: var(--lime-300);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-800);
    margin-bottom: 10px;
}

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

/* ============================================
   GEOMETRIC BAND
   ============================================ */
.geometric-band {
    position: relative;
    height: 120px;
    background: var(--green-800);
    overflow: hidden;
}

.band-shape {
    position: absolute;
    opacity: 0.15;
}

.band-shape--circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--lime-300);
    top: -30px;
    left: 8%;
}

.band-shape--square {
    width: 60px;
    height: 60px;
    background: var(--lime-300);
    top: 20px;
    left: 25%;
    transform: rotate(20deg);
}

.band-shape--triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--lime-300);
    bottom: -10px;
    right: 15%;
    transform: rotate(10deg);
}

.band-shape--ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px solid var(--lime-300);
    top: 10px;
    right: 35%;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

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

.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--lime-300);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.stat {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    border: 1px solid rgba(27,67,50,0.07);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-800);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.about-content .section-desc {
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    gap: 12px;
    margin: 28px 0 32px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.975rem;
    color: var(--text-dark);
}

.about-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--green-800);
    padding: 80px 0;
    overflow: hidden;
}

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

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--lime-300);
    opacity: 0.08;
}

.cta-circle--1 {
    width: 350px;
    height: 350px;
    top: -120px;
    left: -80px;
}

.cta-circle--2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    right: 10%;
}

.cta-dots {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--lime-300) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.2;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

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

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

/* ============================================
   AREAS
   ============================================ */
.areas {
    background: var(--off-white);
}

.areas .section-title {
    margin-bottom: 40px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-chip {
    background: var(--white);
    border: 1px solid rgba(27,67,50,0.10);
    color: var(--green-800);
    padding: 12px 22px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.area-chip:hover {
    background: var(--green-800);
    color: var(--lime-300);
    border-color: var(--green-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--white);
}

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

.contact-details {
    display: grid;
    gap: 24px;
    margin-top: 36px;
}

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

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

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

.contact-value {
    font-size: 1rem;
    color: var(--green-800);
    font-weight: 500;
    line-height: 1.6;
}

.contact-value a {
    color: var(--green-700);
    transition: var(--transition);
}

.contact-value a:hover {
    color: var(--green-500);
    text-decoration: underline;
}

/* Form */
.contact-form-wrap {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid rgba(27,67,50,0.07);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 28px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.975rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid rgba(27,67,50,0.15);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

.form-note {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--off-white-2);
    border: 1px solid rgba(27,67,50,0.12);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--green-800);
}

.form-success strong {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.70);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.925rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lime-300);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links ul {
    display: grid;
    gap: 10px;
}

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

.footer-links a:hover {
    color: var(--lime-300);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.925rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--lime-300);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

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

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--green-800);
    color: var(--lime-300);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--green-700);
    transform: translateY(-2px);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(247, 249, 240, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        padding: 32px 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1.15rem;
        padding: 14px 16px;
        border-radius: var(--radius-md);
    }

    .nav-cta {
        text-align: center;
        margin-top: 16px;
        display: block !important;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero {
        min-height: 85vh;
    }

    .hero-geometric {
        display: none;
    }
}

@media (max-width: 600px) {
    section {
        padding: 72px 0;
    }

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

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

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

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

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

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

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

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

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

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

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

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .service-card:hover {
        transform: none;
    }
    .btn:hover {
        transform: none;
    }
}
