.contact-page {
    padding: 2.25rem 0 1rem;
    background:
        radial-gradient(circle at top right, rgba(100, 176, 194, 0.1), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.contact-card-shell__container {
    overflow: hidden;
    border-radius: 1.4rem;
    box-shadow: 0 24px 48px rgba(20, 53, 57, 0.14);
}

.contact-card-shell__hero {
    padding: 2.2rem 1.5rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #213f44 0%, #33727d 100%);
    color: #ffffff;
}

.contact-card-shell__hero-icon {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    background: #ffffff;
}

.contact-card-shell__hero-icon img,
.contact-cta img {
    width: 1.8rem;
    height: 1.8rem;
    object-fit: contain;
}

.contact-card-shell__hero h1 {
    margin: 0 0 0.85rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.12;
    font-weight: 700;
}

.contact-card-shell__hero p {
    max-width: 42rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.02rem;
    line-height: 1.6;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.8rem;
    padding: 0.95rem 1.7rem;
    border-radius: 999px;
    background: #ffffff;
    color: #203f44;
    font-weight: 700;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.contact-card-shell__body {
    padding: 2.35rem 1.5rem 2.4rem;
    background: #ffffff;
    text-align: center;
}

.contact-card-shell__body h2 {
    margin: 0 0 1.75rem;
    color: #223b40;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.contact-option {
    padding: 1.7rem 1.25rem 1.3rem;
    border-radius: 1.2rem;
    background: #f7fafb;
}

.contact-option__icon {
    display: grid;
    place-items: center;
    width: 3.1rem;
    height: 3.1rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #285f67;
}

.contact-option__icon img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.contact-option__icon--location img {
    width: 2.2rem;
    height: 2.2rem;
}

.contact-option h3 {
    margin: 0 0 0.55rem;
    color: #223b40;
    font-size: 1.35rem;
    font-weight: 700;
}

.contact-option p {
    margin: 0;
    color: #5b6470;
    line-height: 1.5;
}

.contact-card-shell__schedule {
    padding: 1.65rem 1.5rem 1.45rem;
    text-align: center;
    background: linear-gradient(135deg, #29525a 0%, #2f6a75 100%);
    color: #ffffff;
}

.contact-card-shell__schedule p {
    margin: 0 0 0.45rem;
    font-size: 1rem;
}

.contact-card-shell__schedule strong {
    font-weight: 700;
}

.contact-card-shell__schedule span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.contact-stats {
    padding: 1.5rem 0 4.5rem;
}

.contact-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.contact-stat {
    padding: 1.45rem 1rem 1.25rem;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 14px 26px rgba(20, 53, 57, 0.12);
    text-align: center;
}

.contact-stat strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #2b6771;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1;
}

.contact-stat span {
    color: #5b6470;
    font-size: 0.95rem;
}

@media (max-width: 920px) {
    .contact-options,
    .contact-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .contact-page {
        padding-top: 1.25rem;
    }

    .contact-card-shell__hero,
    .contact-card-shell__body,
    .contact-card-shell__schedule {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-options,
    .contact-stats__grid {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        width: 100%;
        max-width: 20rem;
    }
}
