/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.9)), 
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.contact-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: white;
}

.hero-breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.hero-breadcrumb span {
    color: var(--accent);
    font-weight: 500;
}

/* Contact Options Section */
.contact-options {
    padding: 80px 0;
    background: white;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.option-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 122, 141, 0.2);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 122, 141, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 1.5rem;
}

.option-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.option-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.option-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.option-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.option-link:hover {
    color: var(--hover-accent);
}

.option-link:hover i {
    transform: translateX(3px);
}

/* Offices Section */
.offices-section {
    padding: 80px 0;
    background: #f8fafc;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.office-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.office-image {
    height: 200px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-card:hover .office-image img {
    transform: scale(1.05);
}

.office-info {
    padding: 25px;
}

.office-info h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.office-address {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.office-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.office-contact i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.office-direction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.office-direction:hover {
    color: var(--hover-accent);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active 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-answer p {
    color: var(--text-medium);
    line-height: 1.7;
    padding-bottom: 20px;
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    color: var(--text-medium);
}

.faq-cta a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.faq-cta a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .office-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
}