/* =========================================
   PÁGINA DE CONTACTO HÍBRIDA
========================================= */

/* Ajustes generales de la sección */
/* Ajustes generales de la sección */
.contact-one {
    /* Aumentamos el top a 220px para que el menú no tape el título */
    padding: 200px 0 100px;
    background-color: rgb(20, 20, 20);
    /* Fondo oscuro general */
    min-height: 100vh;
    /* Asegura que ocupe toda la pantalla */
    display: flex;
    align-items: center;
    /* Centra todo verticalmente */
}

/* Ajuste para que en celular no quede un espacio gigante arriba */
@media (max-width: 768px) {
    .contact-one {
        padding: 150px 0 80px;
    }
}

.contact-subtitle {
    color: #dddbda;
    font-size: 18px;
    margin-top: 15px;
}

/* --- EL FORMULARIO CORPORATIVO --- */
.contact-form-box {
    background: #080921;
    /* Tu Azul Noche muy oscuro */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    padding-bottom: 25px;
    height: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.contact-box-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form-box p {
    color: #7e7d88;
    margin-bottom: 30px;
}

/* Inputs con estilo "Panel Técnico" */
.tech-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.tech-input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: #3d36f4;
    /* Tu Azul Eléctrico */
    box-shadow: 0 0 15px rgba(61, 54, 244, 0.3);
    outline: none;
}

.tech-input::placeholder {
    color: #7e7d88;
}

textarea.tech-input {
    height: 120px;
    resize: none;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237e7d88' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.custom-select option {
    background: #080921;
    color: #fff;
}

/* --- LA TARJETA DE WHATSAPP (Canal Rápido) --- */
.whatsapp-card {
    background: linear-gradient(145deg, #070540 0%, #080921 100%);
    border: 1px solid rgba(61, 54, 244, 0.3);
    border-radius: 12px;
    padding: 50px 40px;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* El Resplandor Azul dentro de la tarjeta */
.wa-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(61, 54, 244, 0.4) 0%, rgba(61, 54, 244, 0) 70%);
    filter: blur(40px);
    z-index: 0;
}

.wa-icon-box,
.wa-title,
.wa-text,
.wa-button,
.direct-contact-info {
    position: relative;
    z-index: 1;
}

.wa-icon-box i {
    font-size: 70px;
    color: #25D366;
    /* Verde Oficial de WhatsApp */
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.4));
}

.wa-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.wa-text {
    color: #dddbda;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Botón llamativo de WhatsApp */
.wa-button {
    display: inline-block;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    margin-bottom: 40px;
}

.wa-button:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
}

/* Info secundaria debajo del botón */
.direct-contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #7e7d88;
    font-size: 15px;
}

.direct-contact-info .info-item i {
    color: #3d36f4;
    margin-right: 8px;
}

/* --- RESPONSIVE CONTACTO --- */
@media (max-width: 991px) {
    .fast-channel-column {
        margin-top: 30px;
    }
}

.scada-section {
    background-color: var(--color-brown);
}