* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(63, 169, 245, 0.08), transparent 28%),
                radial-gradient(circle at 80% 0%, rgba(12, 56, 138, 0.08), transparent 30%),
                #f6f8fb;
    color: #111827;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.85rem;
    background: linear-gradient(135deg, rgba(12, 56, 138, 0.92), rgba(63, 169, 245, 0.82));
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    margin: 14px auto 18px;
    max-width: 1180px;
}
.brand {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.8px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover {
    opacity: 0.82;
    transform: translateY(-1px);
}

main {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 10px 18px 60px;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 6px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(12, 56, 138, 0.06);
}

.hero-content h1 {
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    margin: 6px 0 12px;
    color: #0b3d91;
}

.hero-content .lead {
    color: #445;
    line-height: 1.7;
    margin-bottom: 18px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: #0b6bcb;
    font-weight: 700;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(12, 56, 138, 0.18), rgba(63, 169, 245, 0.2));
    border: 1px solid rgba(12, 56, 138, 0.26);
    padding: 12px 16px;
    border-radius: 16px;
    margin: 6px 0 14px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.price-chip {
    background: #0b3d91;
    color: #fff;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(11, 61, 145, 0.35);
    letter-spacing: 0.2px;
}

.price-lines {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-badge .price {
    font-size: 1.1rem;
    font-weight: 900;
    color: #0b3d91;
}

.price-badge .price-note {
    font-size: 0.97rem;
    font-weight: 700;
    color: #0b2545;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 11px 16px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #0c388a, #3fa9f5);
    color: #fff;
    box-shadow: 0 8px 18px rgba(15, 103, 210, 0.25);
}

.btn.ghost {
    border: 1px solid #0c388a;
    color: #0c388a;
    background: #ffffff;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.hero-card {
    background: linear-gradient(180deg, #0c388a, #3fa9f5);
    color: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.hero-card h2 {
    margin-bottom: 10px;
}

.hero-card ul {
    list-style: disc;
    padding-left: 20px;
    line-height: 1.6;
}

.info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.info-block {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
    color: #223;
    border: 1px solid rgba(12, 56, 138, 0.06);
}

.info-block h3 {
    color: #0b3d91;
    margin-bottom: 8px;
}

.info-block ul {
    list-style: disc;
    padding-left: 18px;
    line-height: 1.5;
}

.contact {
    margin-top: 32px;
    padding: 14px 0 10px;
    background: radial-gradient(circle at 10% 10%, rgba(63, 169, 245, 0.1), transparent 32%),
                radial-gradient(circle at 80% 0%, rgba(12, 56, 138, 0.12), transparent 28%);
}

.contact-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(12, 56, 138, 0.2);
    border-radius: 18px;
    padding: 24px;
    color: #0b2545;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-card a {
    color: #0c388a;
    font-weight: 700;
}

.contact-card h3 {
    margin-bottom: 8px;
    color: #0b3d91;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: -30% auto auto -30%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(63, 169, 245, 0.18), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.contact-card::after {
    content: "";
    position: absolute;
    inset: auto -26% -18% auto;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(12, 56, 138, 0.16), transparent 62%);
    opacity: 0.6;
    pointer-events: none;
}

.contact-note {
    margin: 8px 0 12px;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.pill {
    background: rgba(12, 56, 138, 0.12);
    color: #0b3d91;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid rgba(12, 56, 138, 0.22);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 14px 0 16px;
}

.contact-item {
    background: rgba(12, 56, 138, 0.03);
    border: 1px solid rgba(12, 56, 138, 0.08);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.contact-item .label {
    font-size: 0.9rem;
    color: #0b3d91;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item .value {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0b2545;
}

.email-value {
    font-size: 0.97rem;
    word-break: break-word;
}

.contact-item .muted {
    margin-top: 4px;
}

.contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 6px 0 12px;
}

.contact-actions .btn {
    min-width: 130px;
}

.map-frame {
    margin-top: 12px;
    background: #f8faff;
    border: 1px dashed rgba(12, 56, 138, 0.28);
    border-radius: 14px;
    padding: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.embed-map-responsive {
    position: relative;
    text-align: right;
    width: 100%;
    height: 0;
    padding-bottom: 66.6667%;
    margin-top: 8px;
}

.embed-map-container {
    overflow: hidden;
    background: none !important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.embed-map-frame {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    border-radius: 10px;
}

@media (max-width: 720px) {
    .contact-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.social-banner {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    padding: 20px;
    background: rgba(12, 56, 138, 0.06);
    border: 1px solid rgba(12, 56, 138, 0.12);
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.social-text h3 {
    color: #0b3d91;
    margin: 6px 0 10px;
}

.social-text .muted {
    color: #334155;
    margin-bottom: 12px;
}

.social-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(12, 56, 138, 0.08);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.social-card .muted {
    color: #475569;
    margin-bottom: 10px;
}

.banner-frame {
    border: 1px dashed rgba(12, 56, 138, 0.4);
    border-radius: 12px;
    padding: 6px;
    background: rgba(12, 56, 138, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-frame img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.quick-contact {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    padding: 8px 12px;
    background: rgba(12, 56, 138, 0.08);
    color: #0c388a;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(12, 56, 138, 0.18);
}

.highlight-card {
    grid-column: span 2;
    background: #0b3d91;
    color: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 38px rgba(11, 61, 145, 0.28);
}

.highlight-card .muted {
    color: rgba(255, 255, 255, 0.86);
    margin-top: 6px;
    max-width: 520px;
}

.facility-detail {
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(12, 56, 138, 0.12);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

.facility-header h3 {
    color: #0b3d91;
    margin: 6px 0 12px;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.facility-card {
    background: rgba(12, 56, 138, 0.03);
    border: 1px solid rgba(12, 56, 138, 0.08);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    color: #0b2545;
}

.facility-card .label {
    font-weight: 800;
    color: #0b3d91;
    margin-bottom: 6px;
}

@media (max-width: 900px) {
    .navbar {
        max-width: 100%;
        margin: 10px 12px 14px;
        padding: 0.9rem 1.2rem;
    }
    .nav-links {
        gap: 1rem;
    }
    main {
        padding: 10px 14px 50px;
    }
}

@media (max-width: 720px) {
    .navbar {
        flex-wrap: wrap;
        gap: 10px;
    }
    .nav-links {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .hero {
        padding: 22px;
    }
    .highlight-card {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }
    .social-banner {
        padding: 18px;
    }
    .contact-card {
        padding: 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .brand {
        font-size: 1rem;
    }
    .btn {
        padding: 10px 14px;
    }
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .pill {
        width: 100%;
        text-align: center;
    }
}