.contact-top-carousel-section.carousel-section {
    min-height: 300px !important;
    max-height: 300px !important;
    background-color: transparent !important;
    margin-bottom: 0 !important;
}

.contact-top-carousel-section .carousel-skeleton,
.contact-top-carousel-section .carousel-container,
.contact-top-carousel-section .carousel-wrapper,
.contact-top-carousel-section .carousel-slide {
    min-height: 300px !important;
    height: 300px !important;
}

.contact-page {
    width: 100%;
    background: #ffffff;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-illustration-section {
    width: 100%;
    position: relative;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding: 2.25rem 0 2.5rem 0;
}

.contact-illustration-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    z-index: 1;
    pointer-events: none;
}

.contact-hero {
    padding: 0;
    position: relative;
    z-index: 2;
}

.contact-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-description {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151;
    max-width: 900px;
    margin: 0 auto;
}

.contact-main {
    padding: 0;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.contact-form-card,
.contact-info-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    position: relative;
    z-index: 2;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.18);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    padding: 0.95rem 1.2rem;
    border: none;
    border-radius: 12px;
    background: #667eea;
    color: #ffffff;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.contact-hero-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
}

.contact-info-block {
    margin-bottom: 1.5rem;
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 0.75rem;
}

.contact-info-text {
    margin: 0 0 0.65rem 0;
    color: #374151;
    line-height: 1.6;
    font-weight: 600;
}

.contact-info-text i {
    color: #667eea;
    margin-right: 0.5rem;
}

.contact-info-text a {
    color: #667eea;
    text-decoration: none;
}

.contact-info-text a:hover {
    text-decoration: underline;
}

.contact-info-empty {
    color: #9ca3af;
    font-weight: 700;
}

.contact-map-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.contact-map-inner {
    width: 100%;
    padding: 0;
}

.contact-map-embed,
.contact-map-placeholder {
    width: 100%;
    min-height: 420px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #6b7280;
    padding: 1.5rem;
}

.contact-map-embed iframe {
    width: 100% !important;
    height: 420px !important;
    border: 0;
}

.contact-alert {
    border-radius: 12px;
    padding: 0.95rem 1.15rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.contact-alert-success {
    background: rgba(34,197,94,0.12);
    color: #15803d;
    border: 1px solid rgba(34,197,94,0.25);
}

.contact-alert-error {
    background: rgba(239,68,68,0.10);
    color: #b91c1c;
    border: 1px solid rgba(239,68,68,0.25);
}

@media (max-width: 900px) {
    .contact-illustration-section {
        padding: 2rem 0 2rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.25rem;
    }

    .contact-title {
        font-size: 2.1rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .contact-map-embed,
    .contact-map-placeholder {
        min-height: 320px;
    }

    .contact-map-embed iframe {
        height: 320px !important;
    }
}

