/* --- Contact Page Specific Styles --- */

.contact-main-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    font-family: var(--font-family);
}

/* Hero Section (Matched to About Us) */
.contact-hero-section {
    padding: 0 20px;
    margin-top: 120px;
}

.contact-hero-card {
    height: 350px;
    border-radius: 60px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    z-index: 2;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
}

.contact-breadcrumb {
    font-size: 16px;
    display: flex;
    gap: 12px;
    padding: 8px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-breadcrumb a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.contact-breadcrumb .contact-current { color: var(--green-success); font-weight: 600; }

/* Contact Body Section */
.contact-section {
    padding: 100px 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Info Side */
.info-cards-stack {
    margin-top: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bc-blue);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.info-card:hover { transform: translateX(10px); }

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-details h3 { font-size: 18px; margin-bottom: 2px; }
.info-details p { color: #666; font-size: 15px; }

/* Form Side */
.contact-form-panel {
    background: #fff;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.input-group input, 
.input-group textarea {
    padding: 15px 20px;
    border: 1px solid #eee;
    background: #fdfdfd;
    border-radius: 15px;
    font-family: var(--font-family);
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: var(--primary-blue);
    background: #fff;
}

.contact-btn {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    background: var(--primary-blue);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-hero-section { margin-top: 100px; }
}

@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-hero-card { border-radius: 30px; height: 300px; }
}


/* Map Section Styles */
.contact-map-section {
    padding: 0 5% 100px 5%; /* Matches the side padding of your contact section */
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 40px; /* Matches your form's border radius */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(0.2) contrast(1.1); /* Subtle styling to match a professional site */
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0);
}

@media (max-width: 480px) {
    .contact-map-section {
        padding: 0 20px 60px 20px;
    }
    .map-container {
        height: 300px;
        border-radius: 25px;
    }
}
 