/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(
            135deg,
            rgba(67, 97, 238, 0.9),
            rgba(58, 12, 163, 0.9)
        ),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Contact Section */
/* .contact-section {
    padding: 100px 0;
} */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 80px;
}

.contact-method-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.contact-method-card h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-method-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

.contact-method-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method-link:hover {
    color: var(--secondary);
}

/* Contact Form & Info */
.contact-form-section {
    margin-bottom: 80px;
}

.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-form-title {
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark);
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-control {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.25);
}

.contact-form-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-title {
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark);
    font-size: 1.8rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-info-content p {
    color: #6c757d;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 80px;
}

.faq-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    color: #6c757d;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Map Section */
/* .map-section {
    margin-bottom: 80px;
} */

.map-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.map-placeholder p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-info p {
    margin-bottom: 15px;
    color: #adb5bd;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary);
    margin-top: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .contact-form-card,
    .contact-info-card {
        margin-bottom: 30px;
    }
}
