/* Hero Section */
.hero-section-contact {
    background-image: url('/assets/images/contact/hero-contact.png');
}

/* Contact Section */
.contact-us {
    background-color: #23221E;
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background-color: #2a2926;
    border: 2px solid #F9C349;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 195, 73, 0.2);
}

.contact-card-icon {
    color: #F9C349;
    margin-bottom: 1.5rem;
}

.contact-card-title {
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #F9C349;
    margin-bottom: 1rem;
}

.contact-card-text {
    font-family: 'Karla', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
}

.contact-card-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-link:hover {
    color: #F9C349;
}

/* Contact Map */
.contact-map {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #F9C349;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 600px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-us {
        padding: 3rem 1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-map iframe {
        height: 300px;
    }
}