/* Contact Page Styles */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,32,39,0.4), rgba(15,32,39,0.7));
}

.page-hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 10px;
}

.page-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-page-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-page-info > p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-page-form {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-page-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
}

/* Map Section */
.map-section {
    margin-top: 50px;
}

.map-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

#map {
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1;
}

.map-info {
    margin-top: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    text-align: center;
}

.map-info p {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.map-info i {
    color: var(--accent);
    margin-right: 8px;
}

@media (max-width: 768px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero-content h1 {
        font-size: 36px;
    }
}
