/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #f8f7f4;
    --cream-100: #f2f0eb;
    --cream-200: #e8e5dc;
    --cream-300: #d4cfc4;
    --neutral-50: #fafaf9;
    --neutral-100: #f5f5f4;
    --neutral-200: #e7e5e4;
    --neutral-300: #d6d3d1;
    --neutral-400: #a8a29e;
    --neutral-500: #78716c;
    --neutral-600: #57534e;
    --neutral-700: #44403c;
    --neutral-800: #292524;
    --neutral-900: #1c1917;
    --white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(6, 78, 59, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(6, 78, 59, 0.08), 0 2px 4px -2px rgba(6, 78, 59, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(6, 78, 59, 0.1), 0 4px 6px -4px rgba(6, 78, 59, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(6, 78, 59, 0.12), 0 8px 10px -6px rgba(6, 78, 59, 0.06);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--cream-50);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 247, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-200);
    transition: box-shadow var(--transition);
}

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

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--emerald-800);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
}

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

.nav__link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-600);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__link:hover {
    color: var(--emerald-700);
    background: rgba(6, 95, 70, 0.06);
}

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

.nav__link--cta:hover {
    background: var(--emerald-700);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile menu active state */
.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(6, 78, 59, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.mobile-menu__inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--cream-50);
    padding: 96px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active .mobile-menu__inner {
    transform: translateX(0);
}

.mobile-menu__link {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--neutral-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-menu__link:hover {
    background: rgba(6, 95, 70, 0.08);
    color: var(--emerald-700);
}

.mobile-menu__link--cta {
    margin-top: 16px;
    background: var(--emerald-800);
    color: var(--white) !important;
    text-align: center;
    border-radius: var(--radius-md);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--cream-50);
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    pointer-events: none;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(6, 95, 70, 0.08);
    border: 1px solid rgba(6, 95, 70, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--emerald-700);
    margin-bottom: 24px;
}

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

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

.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--neutral-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__headline-accent {
    color: var(--emerald-700);
}

.hero__subheadline {
    font-size: 17px;
    line-height: 1.7;
    color: var(--neutral-600);
    max-width: 480px;
    margin-bottom: 36px;
}

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

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

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

.btn--primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: transparent;
    color: var(--emerald-800);
    border-color: var(--emerald-800);
}

.btn--ghost:hover {
    background: var(--emerald-800);
    color: var(--white);
}

.btn--light {
    background: var(--white);
    color: var(--emerald-800);
    border-color: var(--white);
}

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

.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.1);
    border-color: var(--white);
}

.btn--small {
    padding: 10px 20px;
    font-size: 13px;
}

.btn--full {
    width: 100%;
}

/* =============================================
   STAT CARDS (Hero)
   ============================================= */
.hero__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-200);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.stat-card--primary {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
    color: var(--white);
}

.stat-card--primary .stat-card__label {
    color: rgba(255,255,255,0.7);
}

.stat-card--secondary {
    background: var(--white);
}

.stat-card--tertiary {
    background: var(--cream-100);
    border-color: var(--cream-200);
}

.stat-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(6, 95, 70, 0.1);
    color: var(--emerald-700);
}

.stat-card--primary .stat-card__icon {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.stat-card__value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.3;
}

.stat-card--primary .stat-card__value {
    color: var(--white);
}

.stat-card__label {
    font-size: 13px;
    color: var(--neutral-500);
    margin-top: 2px;
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
    margin-bottom: 56px;
}

.section-header--center {
    text-align: center;
}

.section-header__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 12px;
}

.section-header__eyebrow--dark {
    color: var(--emerald-700);
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

.section-header__title--dark {
    color: var(--neutral-900);
}

.section-header__description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--neutral-600);
    max-width: 560px;
}

.section-header--center .section-header__description {
    margin: 0 auto;
}

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

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

.service-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-200);
    background: var(--cream-50);
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--emerald-200, #a7f3d0);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.service-card__icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(6, 95, 70, 0.08);
    color: var(--emerald-700);
    margin-bottom: 20px;
    transition: all var(--transition);
}

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

.service-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--neutral-600);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    padding: 100px 0;
    background: var(--emerald-800);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(6, 78, 59, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.about__inner {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about__image-wrap {
    position: relative;
}

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

.about__image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--emerald-600);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.4;
}

.about__content {
    color: var(--white);
}

.about__text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

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

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

.about__highlight svg {
    flex-shrink: 0;
    color: var(--emerald-400, #34d399);
}

/* =============================================
   WHY US SECTION
   ============================================= */
.why-us {
    padding: 100px 0;
    background: var(--cream-50);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--cream-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--emerald-700);
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

.why-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.why-card__number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--cream-200);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 10px;
}

.why-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--neutral-600);
}

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

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(6, 95, 70, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-banner__content {
    flex: 1;
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

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

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

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    padding: 100px 0;
    background: var(--white);
}

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

.contact__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: 32px;
}

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

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

.contact-detail__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(6, 95, 70, 0.08);
    color: var(--emerald-700);
}

.contact-detail__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: 4px;
}

.contact-detail__value {
    font-size: 15px;
    font-weight: 500;
    color: var(--neutral-800);
}

.contact-detail__value a:hover {
    color: var(--emerald-700);
}

/* Form */
.contact__form-wrap {
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-xl);
    padding: 36px;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--neutral-800);
    background: var(--white);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--emerald-600);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input::placeholder {
    color: var(--neutral-400);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-sm);
    color: var(--emerald-700);
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
}

.form-success.visible {
    display: flex;
}

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

/* =============================================
   MAP SECTION
   ============================================= */
.map-section {
    position: relative;
    height: 300px;
    background: var(--cream-100);
    overflow: hidden;
}

.map-section__bg {
    position: absolute;
    inset: 0;
    background: 
        url('https://images.pexels.com/photos/16051945/pexels-photo-16051945.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=600') center/cover no-repeat;
    filter: grayscale(0.3);
}

.map-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.7), transparent 60%);
}

.map-section__card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 680px;
    margin: 0 auto;
}

.map-section__icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--emerald-800);
    color: var(--white);
}

.map-section__heading {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.map-section__address {
    font-size: 14px;
    color: var(--neutral-500);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--neutral-900);
    color: var(--white);
    padding: 64px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
    max-width: 360px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 16px;
}

.footer__logo span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--neutral-400);
}

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

.footer__link-group h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: 16px;
}

.footer__link-group a {
    display: block;
    font-size: 14px;
    color: var(--neutral-300);
    padding: 5px 0;
    transition: color var(--transition);
}

.footer__link-group a:hover {
    color: var(--emerald-400, #34d399);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: var(--neutral-500);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 200px;
    }

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

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

    .about__image img {
        height: 450px;
    }

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

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

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

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

    .nav__menu {
        display: none;
    }

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

    .hero__cards {
        flex-direction: column;
    }

    .stat-card {
        min-width: auto;
    }

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

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

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner__actions .btn {
        width: 100%;
    }

    .map-section__card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

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

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

    .contact__form-wrap {
        padding: 24px;
    }
}

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

    .hero__actions {
        flex-direction: column;
    }

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

    .services,
    .about,
    .why-us,
    .contact {
        padding: 64px 0;
    }
}
