/* Contact Hero Section */
.contact-hero {
    background: url("/assets/img/DRM02555_compressed.jpg") center/cover no-repeat;
    min-height: 45vh;
    text-align: center;
    background-position: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: var(--accent-gold-bold);
    min-height: 70vh;
}
.top-card{
    margin-top: -200px;
}
/* Contact Info Card */
.contact-info-card {
    background: var(--accent-gold);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 2rem;
}

/* Info Items */
.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--accent-gold-bold);
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold-bolder) 0%, var(--accent-gold-bold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-content h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.info-content p,
.info-content a {
    color: var(--text-muted);
    margin: 0;
}

.contact-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-gold-bolder);
}


/* Social Links */
.social-links h5 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
}

.social-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: var(--accent-gold-bolder);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--accent-gold-bold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 2rem;
}

/* Form Styling */
#contactForm .form-control,
#contactForm .form-select {
    border: 2px solid var(--accent-gold-bold);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

#contactForm .form-control:focus,
#contactForm .form-select:focus {
    border-color: var(--accent-gold-bolder);
    box-shadow: 0 0 0 0.2rem rgba(218, 190, 190, 0.25);
}

#contactForm .form-label {
    color: var(--text-muted-bold);
    margin-bottom: 0.5rem;
}

#contactForm textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Button Styling */
.btn-luxury {
    background: linear-gradient(135deg, var(--accent-gold-bolder) 0%, var(--accent-gold-bold) 100%);
    border: none;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--accent-gold-bold) 0%, var(--accent-gold-bolder) 100%);
    color: var(--primary-dark);
}

/* Alert Container */
#alertContainer {
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    height:450px;
}

.map-section iframe {
       width: 100%;
    height: 100%; /* Fills the parent */
    border: 0;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-section iframe:hover {
    filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
    }
    
    .info-item {
        gap: 1rem;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    .contact-info-card.top-card{
        margin-top: 0px;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 1.5rem;
    }
    
    .info-item {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .map-section {
        margin-top: 2rem;
    height:300px;
    }
    

}
