:root {
    --brand-navy: #0d3b66;
    --brand-blue: #145da0;
    --brand-light: #f5f8fc;
    --brand-yellow: #ffb703;
    --text-dark: #1f2937;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text-dark);
    background: #ffffff;
}

.fw-800 {
    font-weight: 800;
}

.top-strip {
    background: #eaf4ff;
    color: #15324b;
}

.site-nav {
    background: rgba(13, 59, 102, 0.96);
    backdrop-filter: blur(6px);
}

.hero-section {
    background:
        linear-gradient(135deg, rgba(13, 59, 102, 0.96), rgba(20, 93, 160, 0.88)),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    color: #fff;
    padding: 6rem 0 5rem;
}

.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-yellow);
}

.hero-card,
.service-card,
.about-panel,
.area-card,
.contact-form,
.notice-box {
    border-radius: 1rem;
}

.hero-card {
    background: #fff;
    color: var(--text-dark);
    padding: 2rem;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.9rem;
    padding: 1rem;
    min-height: 100%;
}

.mini-stat strong {
    display: block;
    font-size: 1.4rem;
}

.mini-stat span {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
}

.trust-box {
    background: #fff;
    border: 1px solid #d9e6f3;
    border-radius: 1rem;
    padding: 1rem;
    font-weight: 600;
    height: 100%;
}

.section-heading {
    max-width: 760px;
}

.section-heading p {
    color: #5f6b7a;
}

.service-card {
    background: #fff;
    border: 1px solid #e6edf5;
    padding: 1.6rem;
    box-shadow: 0 10px 30px rgba(13, 59, 102, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(13, 59, 102, 0.12);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.bg-dark-blue {
    background: var(--brand-navy);
}

.about-panel,
.area-card,
.contact-form {
    background: #fff;
    border: 1px solid #e6edf5;
    padding: 2rem;
}

.notice-box {
    background: #fff6df;
    border: 1px solid #f2de99;
    padding: 1rem 1.2rem;
}

.check-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.85rem;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #1d9b5f;
    font-weight: 700;
}

.map-wrap {
    overflow: hidden;
    border-radius: 1rem;
    min-height: 380px;
    box-shadow: 0 10px 30px rgba(13, 59, 102, 0.08);
}

.map-wrap iframe {
    width: 100%;
    min-height: 380px;
    border: 0;
}

.badge-area {
    display: inline-block;
    background: #eaf4ff;
    color: #114b7d;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
}

.contact-list div {
    margin-bottom: 0.9rem;
}

.contact-list a {
    color: var(--brand-blue);
    text-decoration: none;
}

.contact-list a:hover,
.site-footer a:hover {
    text-decoration: underline;
}

.accordion-button:not(.collapsed) {
    background: #eaf4ff;
    color: #0f3f69;
}

.site-footer {
    background: #0b2136;
    color: rgba(255, 255, 255, 0.82);
}

.floating-cta {
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 1040;
}

.floating-cta a {
    display: block;
    text-align: center;
    background: var(--brand-yellow);
    color: #111827;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.95rem 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 5rem 0 4rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 4.5rem;
    }

    .hero-card,
    .about-panel,
    .area-card,
    .contact-form {
        padding: 1.35rem;
    }
}
