.hero-header {
    margin-bottom: 60px;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--primary-dark);
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--gold);
}

.title-ornament .line {
    width: 90px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(245, 158, 11, 0.8),
        transparent
    );
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.2;
}

.contact-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: var(--gray);
    line-height: 1.9;
    font-size: 1.05rem;
}
.contact-section {
    padding: 140px 0 80px;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
}

.contact-subtitle {
    color: var(--gray);
    max-width: 760px;
    margin: 20px auto 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-wrapper {
    margin-top: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.7);
    height: 100%;
}

.map-wrapper {
    height: 100%;
    min-height: 620px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background: rgba(15, 23, 42, 0.92);
    color: white;
    padding: 22px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.map-overlay h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.map-overlay p {
    margin-bottom: 0;
    color: #cbd5e1;
    line-height: 1.7;
}

.form-wrapper {
    padding: 45px;
    height: 100%;
}

.contact-heading {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--navy);
}

.contact-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--navy);
}

.custom-input {
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 15px 18px;
    transition: 0.3s ease;
    box-shadow: none !important;
}

.custom-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12) !important;
}

textarea.custom-input {
    resize: none;
}

.contact-btn {
    border: none;
    border-radius: 18px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.28);
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 35px;
    display: grid;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--navy);
}

.contact-info-item p {
    margin: 0;
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .map-wrapper {
        min-height: 420px;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

    .map-overlay {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}
