.contact-us::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(85, 232, 197, 0.2), transparent);
}

.contact-us::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(42, 19, 87, 0.07), transparent);
}

.contact_section-page {
    position: relative;
    z-index: 1;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.contact-boxcard {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.contact-boxcard::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--rv-primary), var(--rv-secondary));
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    opacity: 0.2;

}

.contact-boxcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.contactbox .icon {
    font-size: 36px;
    color: var(--rv-primary);
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contactbox .icon i {
    border-radius: 100%;
    border: 2px dotted gray;
    padding: 5px 13px;
    font-size: 30px;
}

.contact-boxcard:hover .icon {
    color: var(--rv-secondary);
    transform: scale(1.1);
}

.infotext h3 {
    margin: 5px 0 10px;
    font-size: 20px;
    color: var(--rv-black);
    font-weight: 600;
}

.infotext a {
    color: var(--rv-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    word-break: break-word;
    transition: color 0.3s ease;
}

.infotext a:hover {
    color: var(--rv-secondary);
}

/* Contact Form + Map Section */
.contact_sm_area {
    padding-top: 60px;
    position: relative;
    z-index: 1;
}

.iframe {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.iframe iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
    transition: transform 0.3s ease;
}

.iframe iframe:hover {
    transform: scale(1.02);
}

.contact-cards {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
}

.contact_sm_title h2 {
    font-size: 26px;
    color: var(--rv-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Form Inputs */
.contact-cards input,
.contact-cards textarea,
.contact-cards select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
    font-size: 15px;
}

.contact-cards input:focus,
.contact-cards textarea:focus,
.contact-cards select:focus {
    border-color: var(--rv-primary);
    outline: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
    }

    .iframe iframe {
        min-height: 300px;
    }
}