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

:root {
    --forest-50: #f0f5f1;
    --forest-100: #dce8df;
    --forest-200: #bdd4be;
    --forest-400: #5f955f;
    --forest-500: #3d7a42;
    --forest-600: #2D5A3D;
    --forest-700: #254a32;
    --forest-800: #1e3d28;
    --cream-50: #FDFCF8;
    --cream-100: #FAF8F3;
    --cream-200: #F5F0E6;
    --cream-300: #EDE5D5;
    --shadow-sm: 0 1px 3px rgba(45, 90, 61, 0.06), 0 1px 2px rgba(45, 90, 61, 0.04);
    --shadow-md: 0 4px 16px rgba(45, 90, 61, 0.08), 0 2px 6px rgba(45, 90, 61, 0.04);
    --shadow-lg: 0 12px 40px rgba(45, 90, 61, 0.12), 0 4px 12px rgba(45, 90, 61, 0.06);
    --shadow-xl: 0 20px 60px rgba(45, 90, 61, 0.15), 0 8px 20px rgba(45, 90, 61, 0.08);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    color: #2c3e2d;
    background-color: var(--cream-50);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 252, 248, 0.95);
    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: 76px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--forest-600);
}

.nav-logo-icon {
    color: var(--forest-600);
}

.nav-logo-text {
    letter-spacing: -0.01em;
}

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

.nav-links a {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--forest-700);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    background: var(--forest-50);
    color: var(--forest-600);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--forest-50);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--forest-600);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-forest {
    background: var(--forest-600);
    color: #fff;
    box-shadow: 0 4px 14px rgba(45, 90, 61, 0.3);
}

.btn-forest:hover {
    background: var(--forest-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.35);
}

.btn-cream {
    background: var(--cream-100);
    color: var(--forest-600);
    border: 2px solid var(--forest-600);
}

.btn-cream:hover {
    background: var(--forest-600);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--forest-600);
    border: 2px solid var(--forest-200);
}

.btn-outline:hover {
    background: var(--forest-50);
    border-color: var(--forest-400);
    transform: translateY(-2px);
}

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

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

/* ===== Section Labels ===== */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest-500);
    background: var(--forest-50);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--forest-800);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5a7a5e;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

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

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

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(45, 90, 61, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(95, 149, 95, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--forest-800);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--forest-500);
}

.hero-description {
    font-size: 1.15rem;
    color: #5a7a5e;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest-600);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: #7a9a7e;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--forest-200);
}

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

.hero-image-blob {
    position: absolute;
    inset: -20px;
    background: var(--forest-100);
    border-radius: 42% 58% 47% 53% / 57% 43% 57% 43%;
    animation: blobMorph 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 42% 58% 47% 53% / 57% 43% 57% 43%; }
    25% { border-radius: 53% 47% 58% 42% / 43% 57% 43% 57%; }
    50% { border-radius: 47% 53% 42% 58% / 57% 43% 57% 43%; }
    75% { border-radius: 58% 42% 53% 47% / 43% 57% 43% 57%; }
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 64px;
    height: 64px;
    background: var(--forest-600);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--cream-50);
}

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

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

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

.about-images {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--cream-50);
}

.about-img-secondary img {
    width: 100%;
    aspect-ratio: 7/6;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--forest-600);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-exp-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.about-exp-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-top: 4px;
}

.about-content .section-title {
    margin-top: 8px;
}

.about-text {
    font-size: 1.05rem;
    color: #5a7a5e;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--forest-50);
    border: 1px solid var(--forest-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-600);
}

.about-feature strong {
    display: block;
    font-size: 1rem;
    color: var(--forest-700);
    margin-bottom: 2px;
}

.about-feature-desc {
    font-size: 0.9rem;
    color: #7a9a7e;
    line-height: 1.6;
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: var(--forest-600);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.services .section-label {
    background: rgba(255, 255, 255, 0.12);
    color: var(--forest-200);
}

.services .section-title {
    color: #fff;
}

.services .section-subtitle {
    color: var(--forest-200);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 90, 61, 0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

.service-card-overlay svg {
    color: #fff;
}

.service-card-body {
    padding: 24px 28px 28px;
}

.service-card-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 0.95rem;
    color: var(--forest-200);
    line-height: 1.75;
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 100px 0;
    background: var(--cream-50);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text {
    font-size: 1.05rem;
    color: #5a7a5e;
    line-height: 1.85;
    margin-bottom: 32px;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--forest-700);
}

.why-us-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--forest-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.why-us-visual {
    position: relative;
}

.why-us-img-group {
    position: relative;
}

.why-us-img-group img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.why-us-quote-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    right: -24px;
    background: #fff;
    padding: 28px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.quote-icon {
    color: var(--forest-300);
    margin-bottom: 12px;
}

.why-us-quote-card p {
    font-size: 1rem;
    font-style: italic;
    color: var(--forest-700);
    line-height: 1.7;
    margin-bottom: 12px;
}

.why-us-quote-card span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--forest-500);
    font-style: normal;
}

/* ===== Visit Section ===== */
.visit {
    padding: 100px 0;
    background: var(--cream-100);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.visit-text {
    font-size: 1.05rem;
    color: #5a7a5e;
    line-height: 1.85;
    margin-bottom: 36px;
}

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

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

.visit-detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--forest-600);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.visit-detail strong {
    display: block;
    font-size: 1rem;
    color: var(--forest-700);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.95rem;
    color: #5a7a5e;
    line-height: 1.6;
}

.visit-detail a {
    color: var(--forest-600);
    font-weight: 700;
    transition: var(--transition);
}

.visit-detail a:hover {
    color: var(--forest-400);
}

.visit-map {
    min-height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* ===== CTA Section ===== */
.cta {
    padding: 100px 0;
    background: var(--cream-50);
}

.cta-card {
    background: var(--forest-600);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content .section-label {
    background: rgba(255, 255, 255, 0.12);
    color: var(--forest-200);
}

.cta-content .section-title {
    color: #fff;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--forest-200);
    line-height: 1.85;
    margin-bottom: 28px;
}

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

.cta-form-wrapper {
    position: relative;
    z-index: 1;
}

.cta-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-xl);
}

.cta-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest-800);
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--forest-100);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 0.95rem;
    color: var(--forest-800);
    background: var(--cream-50);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--forest-400);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.1);
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 32px 20px;
    color: var(--forest-600);
}

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

.form-success svg {
    margin: 0 auto 12px;
    color: var(--forest-500);
}

.form-success p {
    font-size: 1rem;
    font-weight: 600;
}

/* ===== Footer ===== */
.footer {
    background: var(--forest-800);
    color: var(--forest-200);
    padding: 64px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo svg {
    color: var(--forest-400);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--forest-300);
    max-width: 320px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.95rem;
    color: var(--forest-300);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--forest-300);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--forest-200);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--forest-400);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

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

    .services-grid {
        gap: 20px;
    }

    .cta-card {
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(253, 252, 248, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(45, 90, 61, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-wave svg {
        height: 50px;
    }

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

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

    .about-experience-badge {
        left: 0;
        top: -16px;
    }

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

    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-us-quote-card {
        left: 0;
        right: 0;
        bottom: -20px;
    }

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

    .visit-map {
        min-height: 300px;
    }

    .map-placeholder {
        min-height: 300px;
    }

    .cta-card {
        grid-template-columns: 1fr;
        padding: 36px 28px;
    }

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

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

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

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

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

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-stat-divider {
        display: none;
    }

    .cta-form {
        padding: 24px;
    }

    .about-img-secondary {
        width: 65%;
    }
}
