:root {
    --ink: #17212b;
    --muted: #5f6f7c;
    --line: #dfe7ed;
    --paper: #ffffff;
    --mist: #eef6f6;
    --teal: #0b6b68;
    --teal-dark: #064b4a;
    --coral: #d95f43;
    --gold: #c89a3b;
    --whatsapp: #1fa855;
    --shadow: 0 18px 55px rgba(10, 46, 54, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
    padding: 12px clamp(16px, 4vw, 48px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand img,
.footer img {
    width: 118px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 24px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.nav-links a,
.call-link,
.footer a {
    text-decoration: none;
}

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

.call-link {
    color: var(--teal-dark);
    font-weight: 800;
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 0;
    border-radius: 8px;
    color: var(--paper);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(6, 75, 74, 0.18);
}

.btn-primary {
    background: var(--teal);
}

.btn-accent {
    background: var(--whatsapp);
}

.btn-ghost {
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.66);
    background: rgba(255, 255, 255, 0.08);
}

.btn-light {
    color: var(--teal-dark);
    background: var(--paper);
}

.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--paper);
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    background: linear-gradient(90deg, rgba(9, 37, 45, 0.86) 0%, rgba(9, 37, 45, 0.68) 48%, rgba(9, 37, 45, 0.24) 100%);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: center;
    padding: 72px 0 88px;
}

.hero-copy {
    max-width: 700px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 28px;
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    color: rgba(255, 255, 255, 0.9);
}

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

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

.microcopy {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.quick-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.quick-card div {
    display: grid;
    gap: 2px;
    min-height: 82px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
}

.quick-card strong {
    color: var(--teal-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1;
}

.quick-card span {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.trust-strip {
    background: var(--teal-dark);
    color: var(--paper);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.trust-items span {
    min-height: 76px;
    display: grid;
    place-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
    font-weight: 800;
}

.section {
    padding: clamp(56px, 8vw, 96px) 0;
}

.soft-section {
    background: var(--mist);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.06rem;
}

.align-left {
    margin-left: 0;
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    min-height: 190px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    text-align: left;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(10, 46, 54, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 107, 104, 0.42);
    box-shadow: var(--shadow);
}

.service-card span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--paper);
    background: var(--teal);
    font-size: 0.84rem;
    font-weight: 900;
}

.service-card strong,
.reason-grid strong,
.footer strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1.05rem;
}

.service-card small {
    color: var(--muted);
    font-size: 0.94rem;
}

.split-section {
    background: linear-gradient(180deg, var(--paper), #f7fbfb);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: center;
}

.facility-list {
    display: grid;
    gap: 10px;
    margin: 28px 0;
}

.facility-list p {
    position: relative;
    margin: 0;
    padding-left: 24px;
    color: var(--ink);
    font-weight: 700;
}

.facility-list p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--coral);
}

.facility-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.reason-grid article {
    min-height: 190px;
    padding: 26px;
    border: 1px solid rgba(11, 107, 104, 0.16);
    border-radius: 8px;
    background: var(--paper);
}

.reason-grid p {
    margin: 0;
    color: var(--muted);
}

.booking-section {
    background: var(--teal-dark);
    color: var(--paper);
}

.booking-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: 42px;
    align-items: start;
}

.booking-panel p {
    color: rgba(255, 255, 255, 0.8);
}

.booking-form {
    display: grid;
    gap: 14px;
    padding: 24px;
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
}

.booking-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--paper);
}

.booking-form textarea {
    resize: vertical;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 42px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

summary {
    padding: 18px 20px;
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
}

details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.final-cta {
    padding: 72px 0;
    color: var(--paper);
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    text-align: center;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.82);
}

.footer {
    padding: 42px 0;
    color: rgba(255, 255, 255, 0.72);
    background: #111a21;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
}

.footer strong {
    color: var(--paper);
}

.footer a,
.footer span {
    display: block;
    margin-bottom: 7px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--paper);
    background: var(--whatsapp);
    box-shadow: 0 16px 34px rgba(31, 168, 85, 0.34);
    text-decoration: none;
    font-weight: 900;
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .hero-inner,
    .split-grid,
    .booking-panel,
    .faq-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quick-card,
    .services-grid,
    .reason-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 640px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .call-link {
        font-size: 0.86rem;
    }

    .header-actions .btn {
        min-height: 42px;
        padding: 10px 12px;
        font-size: 0.86rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 56px 0 44px;
    }

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

    .quick-card,
    .services-grid,
    .reason-grid,
    .trust-items {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 160px;
    }

    .floating-whatsapp {
        left: 16px;
        right: 16px;
    }
}
