/* ============================================
   Cherrywood Mobile Mower Repair — Styles
   Color Palette: Terracotta + Sand
   ============================================ */

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

:root {
    --terracotta: #B5523B;
    --terracotta-dark: #963F2C;
    --terracotta-light: #D4735C;
    --sand: #F5EDE4;
    --sand-light: #FAF6F1;
    --sand-dark: #E8DDD2;
    --cream: #FDF9F5;
    --charcoal: #2A2420;
    --charcoal-light: #4A403A;
    --warm-gray: #7A6E66;
    --white: #FFFFFF;
    --green-dark: #2D6A4F;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(42, 36, 32, 0.08);
    --shadow-md: 0 4px 16px rgba(42, 36, 32, 0.1);
    --shadow-lg: 0 8px 32px rgba(42, 36, 32, 0.12);
    --shadow-xl: 0 16px 48px rgba(42, 36, 32, 0.14);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 245, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(181, 82, 59, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--charcoal);
}

.nav__logo-mark {
    width: 44px;
    height: 44px;
    background: var(--terracotta);
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.nav__logo-sub {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    color: var(--warm-gray);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.nav__link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal-light);
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
    color: var(--terracotta);
    background: rgba(181, 82, 59, 0.06);
}

.nav__link--cta {
    background: var(--terracotta);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--terracotta-dark);
}

.nav__menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.nav__menu-btn:hover {
    background: rgba(181, 82, 59, 0.06);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

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

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal);
    padding: 12px 24px;
    transition: color 0.2s;
}

.mobile-menu__link:hover {
    color: var(--terracotta);
}

.mobile-menu__link--cta {
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: var(--radius-md);
}

.mobile-menu__contact {
    margin-top: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__contact p {
    font-size: 15px;
    color: var(--warm-gray);
}

.mobile-menu__contact a {
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.2s;
}

.mobile-menu__contact a:hover {
    color: var(--terracotta);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

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

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

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--sand-dark);
}

.btn--ghost:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

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

.btn--white:hover {
    background: var(--sand);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

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

/* ============================================
   Section Shared
   ============================================ */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-title .accent {
    color: var(--terracotta);
    font-style: italic;
}

.section-sub {
    font-size: 17px;
    color: var(--warm-gray);
    max-width: 520px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 56px;
}

/* ============================================
   Hero
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand-light) 50%, var(--sand) 100%);
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 2px 2px, var(--terracotta) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

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

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal-light);
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(181, 82, 59, 0.08);
    border-radius: 100px;
    width: fit-content;
}

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

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

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.hero__sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 36px;
    max-width: 480px;
}

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

/* Hero Visual */
.hero__visual {
    position: relative;
    min-height: 480px;
}

.hero__card--main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

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

.hero__card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: var(--shadow-md);
}

.hero__card-label-dot {
    width: 8px;
    height: 8px;
    background: #2D6A4F;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero__float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.hero__float-card--1 {
    top: 0;
    right: -20px;
    animation-delay: 0s;
}

.hero__float-card--2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 2s;
}

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

.float-stat__number {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 6px;
}

.float-stat__label {
    font-size: 13px;
    color: var(--warm-gray);
    line-height: 1.4;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   Services
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    padding: 36px 28px;
    background: var(--sand-light);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--white);
    border-color: rgba(181, 82, 59, 0.15);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(181, 82, 59, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-bottom: 20px;
    transition: background 0.3s;
}

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

.service-card__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

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

/* ============================================
   About
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--cream);
}

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

.about__image-stack {
    position: relative;
}

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

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

.about__image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.about__image-accent img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.about__experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--terracotta);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.about__experience-label {
    display: block;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 4px;
}

.about__content {
    max-width: 480px;
}

.about__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-light);
    margin-bottom: 16px;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
}

.highlight-item svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

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

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, var(--white) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-banner__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
    line-height: 1.7;
}

.cta-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ============================================
   Service Areas
   ============================================ */
.areas {
    padding: 100px 0;
    background: var(--white);
}

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

.areas__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-light);
    margin-bottom: 28px;
}

.areas__locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    padding: 8px 18px;
    background: var(--sand-light);
    border: 1px solid var(--sand-dark);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: all 0.2s;
}

.area-tag:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white);
}

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

.areas__map-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.areas__map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
}

/* ============================================
   Contact
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--sand-light);
}

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

.contact__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-light);
    margin-bottom: 36px;
}

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

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: box-shadow 0.2s, transform 0.2s;
}

.contact-detail:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-detail__icon {
    width: 44px;
    height: 44px;
    background: rgba(181, 82, 59, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.contact-detail__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.contact-detail span:last-child {
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form__header {
    margin-bottom: 28px;
}

.contact-form__title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.contact-form__sub {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.6;
}

.contact-form__fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--charcoal-light);
}

.form-input {
    padding: 12px 16px;
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--sand-light);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: var(--sand-dark);
}

.form-input:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(181, 82, 59, 0.1);
    background: var(--white);
}

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

.contact-form__success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(45, 106, 79, 0.08);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.contact-form__success.show {
    display: flex;
}

.contact-form__success p {
    font-size: 14px;
    color: var(--green-dark);
    font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 32px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav__logo-mark--footer {
    background: var(--terracotta);
    width: 48px;
    height: 48px;
    font-size: 18px;
}

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

.footer__brand-name {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.footer__brand-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

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

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

.footer__links a:hover {
    color: var(--terracotta-light);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.footer__phone, .footer__email {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer__phone:hover, .footer__email:hover {
    color: var(--terracotta-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Animations (scroll reveal)
   ============================================ */
.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__grid {
        gap: 40px;
    }
    
    .hero__visual {
        min-height: 400px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__image-main img,
    .about__image-accent img {
        height: 400px;
    }
    
    .about__image-accent {
        right: -20px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__visual {
        order: -1;
        min-height: 320px;
    }
    
    .hero__float-card--1 {
        right: 0;
    }
    
    .hero__float-card--2 {
        left: 0;
    }
    
    .hero__card--main img {
        height: 280px;
    }
    
    .hero__scroll {
        display: none;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__image-stack {
        max-width: 480px;
    }
    
    .about__image-main img,
    .about__image-accent img {
        height: 320px;
    }
    
    .about__image-accent {
        right: -10px;
        bottom: -10px;
    }
    
    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-banner__actions .btn {
        justify-content: center;
    }
    
    .areas__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .areas__map-card img {
        height: 280px;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 28px;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer__contact {
        text-align: left;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__headline {
        font-size: 36px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card {
        padding: 28px 22px;
    }
    
    .contact-form {
        padding: 20px;
    }
}
