:root {
    --bg: #f3f4f6;
    --bg-soft: #fafaf9;
    --surface: #ffffff;
    --surface-soft: #f8faf8;
    --ink: #20242c;
    --muted: #6b7280;
    --muted-soft: #8a909c;
    --line: #e5e7eb;
    --line-strong: #d6dae0;
    --brand: #1f8f44;
    --brand-dark: #166b32;
    --accent: #2f2f2f;
    --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 18px 50px rgba(15, 23, 42, 0.08);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(31, 143, 68, 0.08), transparent 32%),
        linear-gradient(180deg, #fbfbfb 0%, #f3f4f6 100%);
    color: #555;
    min-height: 100vh;
    padding: 28px 20px 0;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
}

header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 22px;
    margin: 0 auto;
    max-width: 1220px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 22px;
    min-height: 78px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 56px;
    width: auto;
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(214, 218, 224, 0.95);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(31, 143, 68, 0.24);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.09);
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #2f2f2f;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    font-weight: 600;
    color: #4b5563;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    word-break: break-word;
}

.nav-link:hover,
.nav-link.active {
    transform: translateY(-1px);
    color: var(--ink);
    background: rgba(31, 143, 68, 0.08);
    border-color: rgba(31, 143, 68, 0.18);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.header-contact-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 10px 22px 16px;
    border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.header-contact-copy {
    display: grid;
    gap: 4px;
}

.header-contact-copy strong {
    color: var(--ink);
    font-size: 14px;
}

.header-contact-copy span {
    color: var(--muted);
    font-size: 13px;
}

.header-contact-numbers {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.header-contact-numbers a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(31, 143, 68, 0.08);
    border: 1px solid rgba(31, 143, 68, 0.14);
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-contact-numbers a:hover {
    transform: translateY(-1px);
    background: rgba(31, 143, 68, 0.14);
    box-shadow: 0 12px 24px rgba(31, 143, 68, 0.09);
}

.header-link,
.primary-btn,
.secondary-btn,
.hero-whatsapp-btn,
button[type="submit"],
button[type="reset"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
}

.header-link:hover,
.primary-btn:hover,
.secondary-btn:hover,
.hero-whatsapp-btn:hover,
button[type="submit"]:hover,
button[type="reset"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.1);
}

.solid-link,
.primary-btn,
button[type="submit"] {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.solid-link:hover,
.primary-btn:hover,
button[type="submit"]:hover {
    background: #191919;
}

.whatsapp-link {
    background: var(--brand);
    color: #fff;
}

.whatsapp-link:hover {
    background: var(--brand-dark);
}

.admin-link,
.secondary-btn,
button[type="reset"] {
    background: rgba(255, 255, 255, 0.86);
    border-color: var(--line-strong);
    color: #444;
}

.admin-link:hover,
.secondary-btn:hover,
button[type="reset"]:hover {
    background: #fff;
    border-color: #b8bec8;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.hero-whatsapp-btn {
    box-shadow: 0 12px 24px rgba(31, 143, 68, 0.18);
}

main {
    width: min(1180px, 100%);
    margin: 28px auto 0;
}

section {
    margin-top: 34px;
}

h1,
h2,
h3 {
    color: var(--ink);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 52px;
    line-height: 1.05;
}

h2 {
    font-size: 34px;
    line-height: 1.15;
}

h3 {
    font-size: 22px;
    line-height: 1.25;
}

p {
    margin: 0 0 16px;
}

ul,
ol {
    margin: 0;
    padding-left: 20px;
}

.eyebrow,
.section-kicker,
.card-kicker,
.panel-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-soft);
}

.section-heading {
    max-width: 860px;
    margin-bottom: 22px;
}

#cities,
#contact {
    scroll-margin-top: 170px;
}

.section-intro {
    color: var(--muted);
    max-width: 760px;
}

.content-card,
.faq-card,
.appointment-form,
.step-card,
.stat-card,
.hero-panel,
.booking-side {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.home-page .hero-section {
    margin-top: 12px;
}

.hero-surface {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.95fr);
    gap: 24px;
    padding: 34px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(31, 143, 68, 0.14), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f7f8f8 58%, #f0f5f1 100%);
    border: 1px solid rgba(214, 218, 224, 0.85);
    box-shadow: var(--shadow-md);
}

.hero-surface::before,
.hero-surface::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-surface::before {
    width: 260px;
    height: 260px;
    right: -80px;
    top: -120px;
    background: rgba(31, 143, 68, 0.08);
}

.hero-surface::after {
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -90px;
    background: rgba(32, 36, 44, 0.04);
}

.hero-copy,
.hero-panel {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 680px;
    font-size: 18px;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 22px;
}

.hero-badges,
.destination-pills,
.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span,
.destination-pills span,
.tag-grid a,
.tag-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(214, 218, 224, 0.9);
    color: #4b5563;
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.hero-badges span:hover,
.destination-pills span:hover,
.tag-grid a:hover,
.tag-grid span:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 240, 0.98));
    border-color: rgba(31, 143, 68, 0.38);
    box-shadow: 0 18px 30px rgba(31, 143, 68, 0.14), 0 0 24px rgba(31, 143, 68, 0.08);
}

.destination-pills span:hover,
.tag-grid a:hover,
.tag-grid span:hover {
    color: #1f5e35;
    box-shadow: 0 18px 34px rgba(31, 143, 68, 0.17), 0 0 28px rgba(31, 143, 68, 0.1);
}

.hero-panel {
    padding: 28px;
    color: #f9fafb;
    background: linear-gradient(160deg, #232323 0%, #383838 100%);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 45px rgba(17, 24, 39, 0.18);
}

.hero-panel h2,
.hero-panel p,
.hero-panel strong,
.hero-panel span {
    color: inherit;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 16px;
    margin: 0;
}

.feature-list li {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.feature-list span {
    display: block;
    font-size: 14px;
    color: rgba(249, 250, 251, 0.82);
}

.hero-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(31, 143, 68, 0.16);
    border: 1px solid rgba(129, 212, 158, 0.18);
}

.hero-note p {
    margin: 0;
    color: #f3f7f4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.stat-card {
    padding: 22px 24px;
    min-height: 120px;
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 28px;
    color: var(--ink);
}

.stat-card span {
    display: block;
    color: var(--muted);
    font-size: 15px;
}

.info-grid,
.locations-layout,
.grid-two,
.support-layout,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.content-card {
    padding: 28px;
}

.content-card:hover,
.faq-card:hover,
.appointment-form:hover,
.step-card:hover,
.stat-card:hover,
.booking-side:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 143, 68, 0.2);
    box-shadow: 0 24px 38px rgba(15, 23, 42, 0.1), 0 0 30px rgba(31, 143, 68, 0.05);
}

.hero-surface,
.cta-banner,
.hero-note,
.feature-list li,
fieldset {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.hero-surface:hover,
.cta-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.11);
}

.hero-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(17, 24, 39, 0.24), 0 0 34px rgba(31, 143, 68, 0.08);
}

.hero-note:hover,
.feature-list li:hover,
fieldset:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 143, 68, 0.22);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.07);
}

.accent-card {
    background: linear-gradient(135deg, rgba(31, 143, 68, 0.12), rgba(255, 255, 255, 0.95));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    padding: 24px 20px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-bottom: 18px;
    background: rgba(31, 143, 68, 0.12);
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.check-list,
.large-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.check-list li,
.large-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before,
.large-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(31, 143, 68, 0.16);
    box-shadow: inset 0 0 0 4px rgba(31, 143, 68, 0.55);
}

.faq-stack {
    display: grid;
    gap: 18px;
}

.faq-card {
    padding: 22px 24px;
}

.support-card {
    height: 100%;
}

.cta-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) auto;
    gap: 24px;
    align-items: center;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(140deg, #ffffff 0%, #f4f5f6 60%, #eef6f0 100%);
    border: 1px solid rgba(214, 218, 224, 0.9);
    box-shadow: var(--shadow-md);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.disclaimer-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
}

.disclaimer-card p {
    margin: 0;
    color: var(--muted);
}

.content-page main {
    width: min(1120px, 100%);
}

.page-hero {
    margin-top: 18px;
}

.page-hero .hero-surface {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.85fr);
}

.page-stack {
    display: grid;
    gap: 22px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.page-meta {
    color: var(--muted);
    font-size: 14px;
}

.content-card hr {
    border: 0;
    border-top: 1px solid rgba(229, 231, 235, 0.95);
    margin: 24px 0;
}

.policy-highlight,
.warning-highlight {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(214, 218, 224, 0.9);
}

.policy-highlight {
    background: linear-gradient(135deg, rgba(31, 143, 68, 0.11), rgba(255, 255, 255, 0.96));
}

.warning-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(255, 255, 255, 0.96));
}

.contact-box {
    background: rgba(248, 250, 248, 0.95);
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.process-grid .step-card {
    height: 100%;
}

.appointment-page {
    background: linear-gradient(180deg, #fafafa 0%, #f2f3f5 100%);
}

.appointment-page main {
    width: min(1120px, 100%);
}

.appointment-hero {
    margin-top: 18px;
}

.compact-heading {
    max-width: 720px;
}

.form-shell {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    min-width: 0;
}

.booking-side {
    position: sticky;
    top: 112px;
    padding: 26px;
}

.booking-section,
.payment-section {
    min-width: 0;
}

.appointment-form {
    padding: 38px;
}

.appointment-form h3 {
    font-size: 18px;
    font-weight: 500;
    color: #444;
    margin: 0 0 28px;
}

fieldset {
    border: 1px solid #e8e8e8;
    margin: 0 0 28px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: rgba(250, 250, 250, 0.75);
}

legend {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.form-row:last-child {
    margin-bottom: 0;
}

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

.form-group label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #888;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #d0d0d0;
    border-radius: 15px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    background: #fff;
    font-family: inherit;
    color: #555;
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: #bbb;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #8b939f;
    box-shadow: 0 0 0 3px rgba(99, 102, 110, 0.08);
}

.form-group input:disabled,
.form-group select:disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

.form-group input.error,
.form-group select.error {
    border-color: #cb6e6e;
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    padding-top: 18px;
}

footer {
    max-width: 1220px;
    margin: 70px auto 0;
    background: linear-gradient(180deg, #343434 0%, #2c2c2c 100%);
    border-radius: 24px 24px 0 0;
    padding: 20px 16px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.footer-logo img {
    height: 58px;
    width: auto;
}

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

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

.footer-contact p {
    color: #d7d7d7;
    font-size: 13px;
    margin: 0 0 6px;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-text p {
    color: #c6c6c6;
    font-size: 13px;
    margin: 0;
}

.footer-grievance {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid #4a4a4a;
    margin-top: 12px;
}

.footer-grievance p {
    color: #d7d7d7;
    font-size: 13px;
    margin: 4px 0;
}

.footer-grievance p:first-child {
    margin-top: 0;
    font-weight: 600;
    color: #ffffff;
}

.footer-grievance p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    h1 {
        font-size: 44px;
    }

    .hero-surface,
    .page-hero .hero-surface,
    .info-grid,
    .locations-layout,
    .grid-two,
    .support-layout,
    .contact-grid,
    .detail-grid,
    .form-shell,
    .cta-banner {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .booking-side {
        position: static;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 860px) {
    body {
        padding: 16px 14px 0;
    }

    .header-top {
        padding: 14px 16px;
    }

    .header-contact-bar {
        padding: 10px 16px 14px;
    }

    .hero-surface,
    .cta-banner {
        padding: 26px;
    }

    .content-card,
    .faq-card,
    .step-card,
    .stat-card,
    .hero-panel,
    .booking-side,
    .appointment-form {
        padding: 24px;
    }

    .stats-grid,
    .steps-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    body {
        padding: 12px 10px 0;
    }

    header {
        border-radius: 18px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    .header-top {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .hero-actions,
    .cta-actions {
        width: 100%;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-nav {
        display: none;
        width: 100%;
        margin-top: 12px;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        border: 1px solid rgba(229, 231, 235, 0.9);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 16px 28px rgba(15, 23, 42, 0.06);
    }

    .header-nav.is-open {
        display: flex;
    }

    .logo {
        height: 48px;
    }

    .header-contact-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-contact-numbers {
        justify-content: flex-start;
    }

    .header-link,
    .nav-link,
    .primary-btn,
    .secondary-btn,
    .hero-whatsapp-btn,
    button[type="submit"],
    button[type="reset"] {
        width: 100%;
    }

    .nav-link {
        justify-content: flex-start;
        white-space: normal;
    }

    .hero-surface,
    .content-card,
    .faq-card,
    .step-card,
    .stat-card,
    .hero-panel,
    .booking-side,
    .appointment-form,
    .cta-banner {
        padding: 20px;
    }

    .stats-grid,
    .steps-grid,
    .process-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    fieldset {
        padding: 16px;
    }

    .page-links,
    .hero-actions,
    .cta-actions {
        display: grid;
        gap: 10px;
    }

    footer {
        margin-top: 36px;
        padding: 18px 12px;
    }
}

@media (max-width: 420px) {
    body {
        padding: 10px 10px 0;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    .logo {
        height: 46px;
    }

    fieldset {
        padding: 14px;
    }

    .form-group input,
    .form-group select {
        padding: 9px 10px;
        font-size: 12px;
    }

    .footer-logo img {
        height: 48px;
    }

    .footer-text p {
        font-size: 11px;
    }
}

/* Language Selector Styles */
.language-selector-wrapper {
    display: none;
    align-items: center;
    gap: 8px;
}

#language-selector {
    padding: 8px 12px;
    border: 1px solid rgba(214, 218, 224, 0.95);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

#language-selector:hover {
    transform: translateY(-1px);
    border-color: rgba(31, 143, 68, 0.24);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.09);
    background: rgba(255, 255, 255, 1);
}

#language-selector:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(31, 143, 68, 0.1);
}

#language-selector option {
    background: white;
    color: #2f2f2f;
    padding: 10px;
}
