/* Contact Page Styles */


/* Main content margin adjustment for fixed header */
main {
    margin-top: 200px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 70px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.title-underline {
    height: 4px;
    width: 70px;
    background-color: var(--secondary-color);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    font-family: "Open Sans", sans-serif;
}

/* Hero Banner Section */
/* Page Title Section */
.page-title-section {
    background-color: var(--primary-color);
    padding: 40px 0;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.page-title-section h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.page-title-section h1:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.breadcrumb {
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 0.8rem;
}

.breadcrumb span {
    color: var(--secondary-color);
}
@media (max-width: 576px) {
    .page-title-section h1 {
        font-size: 2rem;
    }
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    z-index: -1;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
    height: 10px;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 60, 139, 0.1), rgba(26, 60, 139, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), #0f2557);
}

.contact-card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon i {
    color: #ffffff;
}

.contact-card h3 {
    font-family: "Roboto", sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-light);
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    transition: var(--transition);
}

.contact-link i {
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-link:hover i {
    transform: translateX(5px);
}

.hours-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--text-light);
    font-family: "Open Sans", sans-serif;
}

.hours-list li span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Form & Map Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-wrapper {
    padding: 40px;
}

.form-header-contact {
    margin-bottom: 30px;
    background-color: white;
}

.form-header-contact h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-header-contact p {
    color: var(--text-light);
    font-family: "Open Sans", sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: "Roboto", sans-serif;
}

.required {
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 60, 139, 0.1);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-color), #0f2557);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0f2557, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 60, 139, 0.2);
}

.submit-btn i {
    transition: var(--transition);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.map-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.map-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

.map-card h3 {
    font-family: "Roboto", sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.map-card p {
    color: var(--text-light);
    font-family: "Open Sans", sans-serif;
    margin-bottom: 15px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    transition: var(--transition);
}

.map-btn:hover {
    background-color: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
}

.faq-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-light);
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
}

/* Connect Section */
.connect-section {
    padding: 60px 0;
    text-align: center;
}

.connect-content {
    max-width: 700px;
    margin: 0 auto;
}

.connect-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.connect-content p {
    color: var(--text-light);
    font-family: "Open Sans", sans-serif;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-family: "Open Sans", sans-serif;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-family: "Roboto", sans-serif;
}

.cta-button.primary {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.cta-button.primary:hover {
    background-color: #d32f2f;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
        margin-top: 180px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 250px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .map-overlay {
        padding: 15px;
    }
    
    .map-card {
        max-width: 100%;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}