* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Banner */
.contact-hero-image {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../../frontend/images/banner-background.webp");
    height: 30vh;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-hero-text h1 {
    font-family: "Jost", sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 600;
    color: #fff;
}

/* Headings */
.contact-small-title {
    color: #1B98BF;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.contact-title {
    color: #222;
    font-family: "Jost", sans-serif;
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Contact Cards (2x2 grid) */
.contact-card {
    border-radius: 12px;
    background-color: #fff;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #1B98BF;
}

.contact-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #1B98BF;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    border-radius: 50%;
    margin: 0 auto;
    transition: 0.3s;
}

.contact-card:hover .icon-wrapper {
    background-color: #148ba6;
    transform: scale(1.1);
}

.contact-card h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.contact-card p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    border-radius: 10px;
}

.contact-form label {
    font-weight: 500;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #ddd;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1B98BF;
    box-shadow: 0 0 0 0.2rem rgba(27, 152, 191, 0.2);
}

.contact-form button {
    background-color: #1B98BF;
    color: #fff;
    border: none;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background-color: #148ba6;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-card {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-image {
        height: 25vh;
    }

    .contact-hero-text h1 {
        font-size: 22px;
    }
}