/* Contact Page CSS */

/* Page Banner */
.page-banner {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    position: relative;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}
.page-banner .container {
    position: relative;
    z-index: 2;
}
.page-banner h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}
.page-banner .breadcrumb {
    font-size: 14px;
    color: #ccc;
}
.page-banner .breadcrumb a {
    color: #fff;
    text-decoration: none;
}
.page-banner .breadcrumb span.separator {
    margin: 0 10px;
}
.page-banner .breadcrumb span.current {
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.info-card .icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(203, 160, 82, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}
.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}
.info-card p {
    color: var(--text-light);
    font-size: 15px;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.contact-form-container .section-header {
    margin-bottom: 30px;
    text-align: left;
}
.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark);
}
.contact-form-container p {
    color: var(--text-light);
    font-size: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    flex: 1;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}
.form-control:focus {
    border-color: var(--primary);
    outline: none;
}
textarea.form-control {
    resize: vertical;
}

/* Map Section */
.map-section iframe {
    border: 0;
    display: block;
    width: 100%;
    height: 400px;
}

/* Responsive adjustments for contact page */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .page-banner {
        padding: 50px 0;
    }
    .page-banner h1 {
        font-size: 28px;
    }
    .contact-section {
        padding: 50px 0;
    }
    .contact-info-cards {
        gap: 15px;
    }
    .info-card {
        padding: 20px 15px;
    }
    .info-card .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    .info-card h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .info-card p {
        font-size: 14px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    .contact-form-container {
        padding: 20px;
    }
    .contact-form-container h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .contact-form-container p {
        font-size: 14px;
    }
    .contact-form-container .section-header {
        margin-bottom: 20px;
    }
    .form-control {
        padding: 10px 12px;
    }
    .form-group label {
        margin-bottom: 5px;
    }
    .map-section iframe {
        height: 250px !important;
    }
}
