/* assets/css/contact-form.css */
#map { position: absolute; top: 0; bottom: 0; width: 100%; }
.map-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 4px;
    z-index: 1;
}
.map-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    height: 400px;
}
.map-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.map-frame {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 5px;
}


/* Estilos para el formulario de contacto */
.form-area {
    background-color: rgba(25, 25, 25, 0.7);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.form-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}

.form-label {
    color: rgba(255, 255, 255, 0.8);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Mensajes de alerta */
.form-alert {
    display: none;
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-alert.success {
    background-color: rgba(25, 135, 84, 0.7);
    color: #fff;
    border-left: 4px solid #198754;
}

.form-alert.error {
    background-color: rgba(220, 53, 69, 0.7);
    color: #fff;
    border-left: 4px solid #dc3545;
}

/* Estilos para el botón */
.arrow-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.arrow-button:hover {
    transform: translateY(-3px);
}

.arrow-button:active {
    transform: translateY(0);
}

/* Animación para el spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-border {
    animation: spin 1s linear infinite;
    margin-right: 5px;
}

/* Estilos responsivos */
@media (max-width: 767.98px) {
    .form-area {
        padding: 20px;
    }
    
    .form-row {
        margin-bottom: 15px;
    }
}