/* Hero Section */
.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url("../images/background/hero.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.2rem;
}

/* Contact Information */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 80px 10%;
    background: #f8f9fa;
}

.info-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-card h3 {
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 10%;
}

.form-container {
    max-width: 700px;
    margin: auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

button {
    background: #f4b400;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

button:hover {
    background: #d89c00;
}

/* Office Location */
.office-location {
    padding: 80px 10%;
    text-align: center;
    background: #f8f9fa;
}

.map-placeholder {
    margin-top: 30px;
    padding: 80px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* FAQ */
.faq {
    padding: 80px 10%;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* CTA */
.contact-cta {
    background: linear-gradient(rgba(13,59,102,0.9), rgba(13,59,102,0.9)),
                url("../images/background/hero.jpg") center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.contact-cta .btn {
    display: inline-block;
    padding: 15px 35px;
    background: #f4b400;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.contact-cta .btn:hover {
    background: #d89c00;
}

/* Mobile */
@media (max-width: 768px) {

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-info,
    .contact-form-section,
    .office-location,
    .faq {
        padding: 50px 25px;
    }

    .map-placeholder {
        padding: 50px 20px;
    }
}