/* Contact Page Styles */

.contact-page {
    padding: 60px 0;
    background-color: #f9f9f9;
}

/* Hero Section */
.contact-hero {
    margin-bottom: 60px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(140, 9, 31, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-card-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    margin-top: 30px;
}

.social-links h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* .contact-form-container::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    background-color: rgba(140, 9, 31, 0.05);
    border-radius: 15px;
    z-index: -1;
} */

.contact-form-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(140, 9, 31, 0.1);
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #6b071a;
    border-color: #6b071a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(140, 9, 31, 0.2);
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
    position: relative;
}

.map-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.map-container {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    top: 80px;
    right: 30px;
    z-index: 1;
}

.map-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

.map-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.map-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.map-card p i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 30px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 500;
    padding: 15px 20px;
    background-color: #fff;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(140, 9, 31, 0.1);
}

.accordion-button::after {
    background-size: 16px;
    width: 16px;
    height: 16px;
}

.accordion-body {
    padding: 20px;
    background-color: #fff;
    color: #666;
}

/* Success Modal */
.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-hero-content {
        margin-bottom: 40px;
    }
    
    .map-overlay {
        position: relative;
        top: -50px;
        right: 0;
        margin: 0 auto;
        width: 90%;
    }
    
    .map-card {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .map-overlay {
        top: -40px;
    }
}

@media (max-width: 575.98px) {
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .map-container {
        height: 300px;
    }
}
