/* =========================
   CONTACTO PAGE STYLES
   ========================= */

/* Hero Section */
.contacto-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full monitor height */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/contacto/contacto.webp') center/cover no-repeat;
    background-color: #2c3e50;
    overflow: hidden;
    margin-top: 0;
}

.contacto-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

/* Contact Info Icons */
.icon-box {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    background: transparent !important;
    border: 1px solid #2B5F75 !important;
}

.contact-info-cards>div:hover .icon-box {
    background: #2B5F75 !important;
    border: 1px solid #2B5F75 !important;
    color: white !important;
    transform: scale(1.05);
}



.social-link-btn:hover {
    color: var(--bs-primary) !important;
    background-color: white !important;
    transform: translateY(-3px);
}

/* Form Styling */
.contact-form-wrapper {
    transition: transform 0.3s ease;
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: #2D6059;
}

.form-control {
    background-color: #fff !important;
    border: 1px solid #2D6059 !important;
}

.form-control:focus {
    box-shadow: none;
    background-color: #fff !important;
    border: 1px solid #2D6059 !important;
}

/* Map Ratio Fixes if needed */
.ratio-21x9 {
    --bs-aspect-ratio: 42.8571428571%;
}

.bg-custom-alt {
    background-color: #fdfdfd !important;
}