/* Contact Enhanced Styles - Dark Blue & Yellow Theme */

/* Why Contact Section */
.why-contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-contact-section .section-title {
    margin-bottom: 60px;
}

.why-contact-section .subtitle {
    display: inline-block;
    color: #f3a712;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.why-contact-section .subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: #f3a712;
}

.why-contact-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2e2751;
    margin-bottom: 15px;
}

.why-contact-section .section-title p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #f3a712;
    box-shadow: 0 15px 40px rgba(243, 167, 18, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2e2751 0%, #1a1640 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, #f3a712 0%, #e09610 100%);
}

.feature-icon i {
    font-size: 36px;
    color: #f3a712;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: #fff;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2e2751;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Office Locations Section */
.office-locations {
    padding: 80px 0;
    background: linear-gradient(135deg, #2e2751 0%, #1a1640 100%);
}

.office-locations .section-title {
    margin-bottom: 60px;
}

.office-locations .subtitle {
    display: inline-block;
    color: #f3a712;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.office-locations h2 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.office-locations .section-title p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.location-info {
    padding-right: 20px;
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f3a712 0%, #e09610 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.location-icon i {
    font-size: 32px;
    color: #fff;
}

.location-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.location-info .address {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-details p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.contact-details i {
    color: #f3a712;
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.faq-section .section-title {
    margin-bottom: 60px;
}

.faq-section .subtitle {
    display: inline-block;
    color: #f3a712;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.faq-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2e2751;
    margin-bottom: 15px;
}

.faq-section .section-title p {
    font-size: 16px;
    color: #666;
}

.faq-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
}

.faq-question i {
    color: #f3a712;
    font-size: 24px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2e2751;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question h4 {
    color: #f3a712;
}

.faq-answer {
    padding-left: 39px;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Social Connect Section */
.social-connect {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3a712 0%, #e09610 100%);
    position: relative;
    overflow: hidden;
}

.social-connect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(46, 39, 81, 0.1);
    border-radius: 50%;
}

.social-connect::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(46, 39, 81, 0.1);
    border-radius: 50%;
}

.social-content {
    position: relative;
    z-index: 1;
}

.social-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2e2751;
    margin-bottom: 15px;
}

.social-content p {
    font-size: 16px;
    color: #2e2751;
    margin-bottom: 40px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    width: 60px;
    height: 60px;
    background: #2e2751;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: #fff;
    color: #2e2751;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(46, 39, 81, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .why-contact-section h2,
    .office-locations h2,
    .faq-section h2,
    .social-content h2 {
        font-size: 32px;
    }

    .location-info {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .location-map {
        min-height: 250px;
    }
}

@media (max-width: 767px) {
    .why-contact-section,
    .office-locations,
    .faq-section,
    .social-connect {
        padding: 60px 0;
    }

    .why-contact-section h2,
    .office-locations h2,
    .faq-section h2,
    .social-content h2 {
        font-size: 28px;
    }

    .feature-card {
        padding: 35px 20px;
    }

    .location-card {
        padding: 30px 20px;
    }

    .location-info h3 {
        font-size: 24px;
    }

    .faq-wrapper {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .why-contact-section .subtitle,
    .office-locations .subtitle,
    .faq-section .subtitle {
        font-size: 12px;
        padding-left: 35px;
    }

    .why-contact-section .subtitle::before {
        width: 25px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 30px;
    }

    .location-icon {
        width: 60px;
        height: 60px;
    }

    .location-icon i {
        font-size: 28px;
    }

    .faq-question i {
        font-size: 20px;
    }

    .social-links {
        gap: 15px;
    }
}
