
/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(rgba(38, 70, 83, 0.9), rgba(38, 70, 83, 0.8));
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4 !important;
}

.contact-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 20px 0;
}

.contact-container {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-info {
    background: var(--secondary);
    color: white;
    padding: 40px;
    height: 100%;
}

.contact-form {
    padding: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.info-content h5 {
    margin-bottom: 5px;
    color: white;
}

.info-content p {
    margin: 0;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-control {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(42, 157, 143, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(42, 157, 143, 0.3);
}

/* Office Locations */
.locations-section {
    padding: 20px 0;
    background: #f8f9fa;
}

.location-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.location-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    height: 400px;
    width: 100%;
}

.map-placeholder {
    height: 100%;
    width: 100%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 20px 0;
}

.faq-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: var(--transition);
}

.faq-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-card.active {
    border-left: 4px solid var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-top: 0;
}

.faq-card.active .faq-answer {
    max-height: 300px;
    padding-top: 15px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        /* height: 30vh; */
        min-height: 300px;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        /* height: 25vh; */
        min-height: 250px;
        /* margin-top: 66px; */
    }
    
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-container {
        border-radius: 15px;
    }
    
    .locations-section, .faq-section {
        padding: 60px 0;
    }
}