@media (max-width: 600px) {
    .col-map-mt {
        margin-top: 54px !important;
    }
}

/* Ajuste cuadro informativo inferior para móvil */
@media (max-width: 600px) {
    .contact-info-mobile-box {
        left: 50% !important;
        transform: translateX(-50%) !important;
        min-width: 0 !important;
        max-width: 75vw !important;
        width: 75vw !important;
        padding: 10px 8px !important;
        border-top-left-radius: 32px !important;
        border-bottom-left-radius: 32px !important;
        border-top-right-radius: 32px !important;
        border-bottom-right-radius: 32px !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        bottom: 12px !important;
        left: 50% !important;
    }

    .contact-info-mobile-box span {
        margin-right: 12px !important;
        margin-bottom: 0 !important;
    }

    .contact-info-mobile-box div {
        text-align: left !important;
    }
}

/* Estilos del formulario de contacto */
.contact-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2em;
    color: #111;
    font-family: 'Poppins', sans-serif;
}

.contact-modal-underline {
    width: 38px;
    height: 4px;
    background: #EC1B21;
    border-radius: 3px;
    margin-bottom: 12px;
}

.contact-modal-desc {
    font-size: 0.97rem;
    color: #444;
    margin-bottom: 12px;
    font-family: 'Mulish', sans-serif;
}

.contact-modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-modal-input {
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    outline: none;
    transition: border 0.18s;
}

.contact-modal-input:focus {
    border: 1.5px solid #074DA2;
}

#otherServiceContainer {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        max-height: 60px;
        transform: translateY(0);
    }
}

.contact-modal-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.93rem;
    margin-bottom: 4px;
}

.contact-modal-checkbox-label {
    color: #444;
    font-family: 'Mulish', sans-serif;
}

.contact-modal-btn {
    background: #074DA2;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 5px 0;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-top: 6px;
    cursor: pointer;
    transition: background 0.18s;
    box-shadow: 0 2px 8px rgba(12, 76, 159, 0.10);
}

.contact-modal-btn:hover {
    background: #053a82;
}

.contact-modal-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

/* Mensaje de éxito del formulario - Toast Notifications */
.toast-success,
.toast-error {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    margin-bottom: 12px;
    min-width: 350px;
    max-width: 450px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(.4, 1.3, .6, 1);
    font-family: 'Poppins', sans-serif;
    border-left: 5px solid;
    overflow: hidden;
}

.toast-success {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f8ec 100%);
}

.toast-error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff8f8 0%, #fdeaea 100%);
}

.toast-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
    position: relative;
}

.toast-icon-success,
.toast-icon-error {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: iconPulse 0.6s ease-out;
}

.toast-icon-success {
    background: #28a745;
    color: white;
}

.toast-icon-error {
    background: #dc3545;
    color: white;
}

.toast-text {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.toast-success .toast-title {
    color: #155724;
}

.toast-error .toast-title {
    color: #721c24;
}

.toast-message {
    font-size: 0.95rem;
    line-height: 1.4;
}

.toast-success .toast-message {
    color: #0f5132;
}

.toast-error .toast-message {
    color: #58151c;
}

.toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #6c757d;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #495057;
}

@keyframes iconPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Sonido de notificación (visual) */
.toast-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997, #28a745);
    animation: progressBar 5s linear;
}

.toast-error::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc3545, #fd7e14, #dc3545);
    animation: progressBar 5s linear;
}

@keyframes progressBar {
    0% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}

/* Responsive para móviles */
@media (max-width: 600px) {

    .toast-success,
    .toast-error {
        min-width: 300px;
        max-width: 90vw;
        margin-right: 10px;
    }
}


.botones-contacto-responsive {
    display: flex;
    align-items: center;
    gap: 18px;
}

@media (max-width: 600px) {
    .botones-contacto-responsive {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .servicios-btn-link {
        width: 100%;
        justify-content: center;
    }
}

/* Botón/link "Conoce Nuestros servicios" */
.servicios-btn-link {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 0 18px 0 18px;
    height: 44px;
    min-width: 120px;
    box-shadow: none;
    border: none;
    color: #0d204a;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-left: 0;
    transition: background 0.18s, color 0.18s;
}

.servicios-btn-link:hover {
    background: #f2f6fa;
    color: #074DA2;
}

.servicios-btn-text {
    color: #0d204a;
    text-align: left;
    line-height: 1.1;
    margin-right: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.servicios-btn-arrow {
    font-size: 1.3em;
    color: #0d204a;
    font-weight: bold;
    margin-left: 2px;
    display: flex;
    align-items: center;
}