:root {
    --primary: #2f5f8f;
    --primary-dark: #193e63;
    --accent: #d69b45;
    --bg: #f4f7fb;
    --text: #132238;
    --muted: #62748d;
    --white: #ffffff;
    --border: #d9e4f2;
    --shadow: 0 24px 60px rgba(19, 34, 56, 0.12);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

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

.site-header {
    min-height: 100vh;
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(214, 155, 69, 0.24), transparent 34%),
        linear-gradient(135deg, #eef5fc 0%, #ffffff 45%, #edf4fb 100%);
}

.navbar {
    max-width: 1180px;
    margin: 0 auto;
    height: 74px;
    padding: 0 18px;
    border: 1px solid rgba(217, 228, 242, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 20px;
    z-index: 10;
    box-shadow: 0 14px 30px rgba(19, 34, 56, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 16px;
    font-weight: 900;
}

.brand small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-button {
    height: 42px;
    padding: 0 16px;
    border-radius: 14px;
    background: #e9f8ef;
    color: #16a34a !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    color: var(--text);
    display: none;
    cursor: pointer;
}

.hero {
    max-width: 1180px;
    margin: 74px auto 0;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
}

.eyebrow,
.section-heading span,
.location-content span,
.contact-card span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    max-width: 720px;
    margin: 18px 0;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 600;
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-button,
.secondary-button {
    min-height: 54px;
    padding: 0 22px;
    border-radius: 17px;
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 16px 30px rgba(47, 95, 143, 0.24);
}

.secondary-button {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
}

.primary-button:hover,
.secondary-button:hover,
.option-card a:hover {
    transform: translateY(-2px);
}

.hero-stats {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
}

.hero-stats div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(217, 228, 242, 0.85);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 900;
}

.hero-stats span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.hero-card {
    position: relative;
}

.hero-photo {
    min-height: 560px;
    border-radius: 38px;
    background:
        linear-gradient(rgba(19, 34, 56, 0.02), rgba(19, 34, 56, 0.12)),
        url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1100&q=80') center/cover;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.floating-badge {
    position: absolute;
    padding: 13px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 16px 32px rgba(19, 34, 56, 0.12);
}

.floating-badge.top {
    top: 24px;
    left: 24px;
}

.floating-badge.bottom {
    right: 24px;
    bottom: 94px;
}

.availability-card {
    width: calc(100% - 48px);
    min-height: 86px;
    margin: -56px auto 0;
    padding: 18px;
    border-radius: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 24px 50px rgba(19, 34, 56, 0.16);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.availability-card span,
.availability-card strong {
    display: block;
}

.availability-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.availability-card strong {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 900;
}

.availability-card a {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 96px 24px;
}

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

.section-heading.compact {
    margin-bottom: 28px;
}

.section-heading h2,
.location-content h2,
.contact-card h2 {
    margin: 10px 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading p,
.location-content p,
.contact-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 600;
}

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

.option-card {
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(19, 34, 56, 0.07);
}

.option-card.featured {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.card-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: #eef5fc;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.option-card.featured .card-icon {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.option-card h3 {
    margin: 20px 0 10px;
    font-size: 28px;
}

.option-card p,
.option-card li {
    color: var(--muted);
    line-height: 1.7;
    font-weight: 600;
}

.option-card.featured p,
.option-card.featured li {
    color: rgba(255, 255, 255, 0.78);
}

.option-card ul {
    margin: 20px 0 24px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.option-card li {
    display: flex;
    gap: 10px;
}

.option-card li i {
    color: #22c55e;
    margin-top: 4px;
}

.option-card a {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 15px;
    background: #eef5fc;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.option-card.featured a {
    background: var(--white);
    color: var(--primary);
}

.benefits-section {
    padding-top: 40px;
}

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

.benefit-item {
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
}

.benefit-item i {
    color: var(--accent);
    font-size: 26px;
}

.benefit-item h3 {
    margin: 16px 0 8px;
    font-size: 17px;
}

.benefit-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    font-weight: 600;
}

.location-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
}

.location-content,
.map-placeholder,
.contact-card {
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(19, 34, 56, 0.07);
}

.location-content {
    padding: 34px;
}

.location-list {
    margin-top: 24px;
    display: grid;
    gap: 12px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 800;
}

.location-list div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-list i {
    color: #22c55e;
}

.map-placeholder {
    min-height: 390px;
    background:
        linear-gradient(rgba(47, 95, 143, 0.72), rgba(25, 62, 99, 0.82)),
        url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1100&q=80') center/cover;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-placeholder i {
    font-size: 54px;
    margin-bottom: 18px;
}

.map-placeholder strong {
    font-size: 26px;
}

.map-placeholder span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.contact-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 24px 96px;
}

.contact-card {
    padding: 38px;
    background:
        radial-gradient(circle at top right, rgba(214, 155, 69, 0.26), transparent 32%),
        var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-card p {
    max-width: 620px;
    margin-bottom: 0;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 250px;
}

.phone-link {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    background: #eef5fc;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.site-footer {
    max-width: 1180px;
    margin: 0 auto 24px;
    padding: 22px 24px;
    border-radius: 24px;
    background: #132238;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-footer strong,
.site-footer span {
    display: block;
}

.site-footer span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 980px) {
    .hero,
    .location-section,
    .contact-card {
        grid-template-columns: 1fr;
    }

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

    .contact-card {
        display: grid;
    }

    .contact-actions {
        min-width: 0;
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 14px;
    }

    .navbar {
        height: auto;
        min-height: 66px;
        align-items: flex-start;
        padding: 10px 12px;
        top: 10px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
        width: 100%;
        padding: 14px 0 4px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 12px 14px;
        border-radius: 14px;
        background: #f8fbff;
    }

    .navbar {
        flex-wrap: wrap;
    }

    .hero {
        margin-top: 50px;
    }

    .hero-photo {
        min-height: 420px;
    }

    .hero-stats,
    .cards-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 16px;
    }

    .contact-section {
        padding: 16px 16px 70px;
    }

    .site-footer {
        margin: 0 16px 16px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .hero-actions,
    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .floating-badge.bottom {
        right: 16px;
        bottom: 84px;
    }

    .availability-card {
        width: calc(100% - 24px);
    }
}
