/* Contact Page Specific Styles */

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 122, 0.8)), url('../public/media/hdp5000-flip-rt.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

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

/* Contact Info */
.contact-info {
    padding-right: 30px;
}

.contact-info h2, .contact-form h2 {
    font-size: 1.8rem;
    color: #0056b3;
    margin-bottom: 25px;
    position: relative;
}

.contact-info h2::after, .contact-form h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #0056b3;
    bottom: -10px;
    left: 0;
}

.contact-info > p {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.info-icon i {
    font-size: 1.5rem;
    color: #0056b3;
}

.info-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.info-content p {
    color: #6c757d;
    margin-bottom: 5px;
}

.info-content a {
    color: #0056b3;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #003d7a;
}

/* Contact Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #495057;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #6c757d;
}

.contact-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    height: 100%;
    background-color: #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #6c757d;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #0056b3;
}

.map-placeholder p {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.faq-toggle {
    color: #0056b3;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .page-banner p {
        font-size: 1.1rem;
    }
    
    .contact-section, .map-section, .faq-section {
        padding: 60px 0;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.6rem;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .map-container {
        height: 250px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}