/* MAIN BACKGROUND */
.ricas-contact-main {
    background: rgb(240, 240, 240);
    padding: 4rem 0;
}

/* WRAPPER */
.ricas-contact-wrapper {
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

/* ================= BANNER ================= */
.ricas-contact-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.ricas-contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ricas-contact-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 2.6rem;
    font-weight: 700;
}

/* ================= LEFT ================= */
.ricas-contact-left {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ricas-contact-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    align-items: center;   
    justify-content: center;
    text-align: center;
}

.ricas-contact-card img {
    width: 42px;
    height: 42px;
    object-fit: contain;

    display: block;           
    margin: 0 auto 0.8rem;    
}

.ricas-contact-card h3 {
    color: #1B2A6B;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.ricas-contact-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}

/* ================= RIGHT ================= */
.ricas-contact-right {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* FORM BOX */
.ricas-contact-form-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
}

.ricas-contact-form-box h2 {
    color: #1B2A6B;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

/* FORM */
.ricas-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.ricas-form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.ricas-form-group input,
.ricas-form-group textarea {
    background: #e9e9e9;
    border: none;
    padding: 0.7rem;
    border-radius: 5px;
    font-size: 0.9rem;
    outline: none;
}

.ricas-form-group textarea {
    height: 100px;
    resize: none;
}

/* BUTTON */
.ricas-contact-submit-btn {
    background: #1B2A6B;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.6rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    align-items: center;
}

/* ================= LOCATION ================= */
.ricas-contact-location {
    background: transparent;
}

.ricas-contact-location h3 {
    color: #1B2A6B;
    font-size: 1.2rem;
}

.ricas-contact-location p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

/* MAP BOX */
.ricas-contact-map-box {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    height: 350px;
}

.ricas-contact-map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .ricas-contact-wrapper {
        flex-direction: column;
        width: 92%;
    }

    .ricas-contact-left,
    .ricas-contact-right {
        width: 100%;
    }

    .ricas-contact-banner {
        height: 200px;
    }

    .ricas-contact-banner-title {
        font-size: 1.8rem;
    }

    .ricas-contact-card {
        padding: 1.5rem;
    }

    .ricas-contact-form-box {
        padding: 1.5rem;
    }
}