/* Contact Page Styles */

.page-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Intro */
.contact-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.25rem;
    color: #7f8c8d;
    line-height: 1.8;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-info-section {
    flex: 0 0 350px;
}

.contact-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card h3 i {
    color: #c9a15d;
}

.contact-card p {
    color: #7f8c8d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-card p strong {
    color: #2c3e50;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #2c3e50;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c9a15d;
    color: white;
    transform: translateY(-3px);
}

.contact-form-section {
    flex: 1;
}

.form-container {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-container p {
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label.required:after {
    content: " *";
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a15d;
    box-shadow: 0 0 0 3px rgba(201, 161, 93, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.checkbox-group label a {
    color: #c9a15d;
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-container {
    text-align: center;
}

.map-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.map-container p {
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 400px;
}

.map-placeholder {
    background: #f8f9fa;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
}

.map-placeholder i {
    font-size: 3rem;
    color: #c9a15d;
    margin-bottom: 15px;
}

.map-placeholder p {
    margin: 5px 0;
    color: #7f8c8d;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-section {
        flex: 0 0 auto;
    }
    
    .page-hero {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-intro,
    .contact-content,
    .map-section {
        padding: 60px 0;
    }
    
    .intro-content h2,
    .form-container h2,
    .map-container h2 {
        font-size: 2rem;
    }
    
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-card,
    .form-container {
        padding: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}