/* Page Header reuse */
.page-header {
    height: 350px;
    background-image: url('../assets/images/hero-plane.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: calc(var(--utility-bar-height) + var(--header-height));
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Cards Section */
.contact-cards-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    /* Sharper */
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--secondary-color);
    /* Red Top Border */
}

.contact-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(232, 25, 33, 0.1);
    /* Red Tint */
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-link {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.card-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.card-link-alt {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-card address {
    font-style: normal;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Main Contact Section */
.main-contact-section {
    padding: 40px 0 80px;
    background: var(--light-bg);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    /* Sharper */
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fcfcfc;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 25, 33, 0.1);
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Regional Offices */
.regional-offices h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.office-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.office-item:hover {
    transform: translateX(5px);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.office-header .flag {
    font-size: 1.5rem;
}

.office-header h4 {
    color: var(--text-dark);
    font-weight: 600;
}

.office-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.office-phone {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

/* FAQ Teaser */
.faq-teaser {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid #eee;
}

.faq-banner {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-content i {
    font-size: 3rem;
    color: var(--primary-color);
}

.text-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.text-content p {
    color: var(--text-light);
}

.btn-outline-dark {
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-content {
        flex-direction: column;
    }
}