/* Contact Page - Jana Luxury Hair */

/* Section title spacing */
.page-contact .contact-section-title {
    margin-left: 5px;
}

/* Remove whitespace between navbar and hero - hero extends under navbar */
.page-contact .contact-hero {
    margin-top: -90px;
    padding-top: 90px;
}

/* Hero Section */
.contact-hero {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 70, 77, 0.85) 0%, rgba(61, 70, 77, 0.6) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

@media (min-width: 768px) {
    .contact-hero {
        height: 260px;
    }
    .contact-hero-title {
        font-size: 3rem;
    }
    .contact-hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Contact Cards */
.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card h4 {
    color: #3D464D;
    font-weight: 600;
}

.contact-card .btn-primary {
    font-weight: 500;
}

.contact-info-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card p {
    margin-bottom: 0.75rem;
}

.contact-info-card a {
    color: #6c757d;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primary, #FFD333);
}

.contact-map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-map-wrapper iframe {
    display: block;
}
