.contact-modern {
    background: #f7f8fb;
}

.contact-modern__hero {
    position: relative;
    background: var(--contact-hero, linear-gradient(120deg, #0f8b8d, #0f5d61));
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4.5rem 0 5.5rem;
    overflow: hidden;
}

.contact-modern__hero--gradient {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 45%), linear-gradient(135deg, #0f8b8d, #0f5d61);
}

.contact-modern__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 10, 20, 0.8), rgba(9, 48, 64, 0.55));
}

.contact-modern__hero-inner {
    position: relative;
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

.contact-modern__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    display: inline-block;
}

.contact-modern__hero-inner h1 {
    font-size: clamp(2.2rem, 5vw, 3.3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-modern__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.contact-modern__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.contact-modern__chip {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-modern__chip i {
    font-size: 0.95rem;
}

.contact-modern__body {
    margin-top: -80px;
    padding-bottom: 4rem;
}

.contact-modern__panel {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 45px 90px -55px rgba(8, 14, 40, 0.5);
    padding: 2rem;
    position: relative;
}

.contact-modern__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    border: 1px solid rgba(15, 139, 141, 0.15);
    pointer-events: none;
}

.contact-modern__info-card {
    background: linear-gradient(145deg, #0f5d61, #0f8b8d);
    color: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-modern__info-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-modern__richtext p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.contact-modern__locations {
    margin-top: 1.75rem;
    display: grid;
    gap: 1rem;
}

.contact-modern__location {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1rem 1.25rem;
}

.contact-modern__location h4 {
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.contact-modern__location-line {
    margin-bottom: 0.75rem;
}

.contact-modern__location ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
}

.contact-modern__location li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.35rem;
}

.contact-modern__location i {
    color: #ffd166;
}

.contact-modern__location a {
    color: #fff;
}

.contact-modern__location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #fff;
    font-weight: 600;
}

.contact-modern__form-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(12, 18, 44, 0.06);
}

.contact-modern__form-card h3 {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.contact-modern__form-card > p {
    color: #5b6474;
    margin-bottom: 1.5rem;
}

.contact-modern__form .form-control,
.contact-modern__form textarea {
    border-radius: 14px;
    border: 1px solid rgba(12, 18, 44, 0.12);
    padding: 0.85rem 1rem;
    font-weight: 600;
}

.contact-modern__form label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #0f1d2d;
}

.contact-modern__submit {
    border-radius: 16px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-modern__map-card {
    margin-top: 1.5rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -40px rgba(9, 14, 30, 0.6);
}

.contact-modern__map-card iframe {
    width: 100%;
    border: none;
    min-height: 280px;
}

@media (max-width: 992px) {
    .contact-modern__panel {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .contact-modern__hero {
        padding: 3.5rem 0 4rem;
    }

    .contact-modern__panel {
        padding: 1.25rem;
    }

    .contact-modern__info-card,
    .contact-modern__form-card {
        padding: 1.5rem;
    }
}

