/* Estilos específicos para la página de Contacto */
body.contact-page {
    background-color: #111; /* Fondo oscuro premium */
    background-image: radial-gradient(circle at top right, #2a110a 0%, #000 50%); /* Ligero destello naranja */
    min-height: 100vh;
}

.contact-page header nav .active {
    color: #f1683a;
    border-bottom: 2px solid #f1683a;
    padding-bottom: 5px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    gap: 50px;
    padding: 40px;
    background: rgba(25, 25, 25, 0.8);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-info {
    flex: 1;
    color: #ddd;
}

.contact-info h2 {
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1.1em;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info h2 span {
    color: #f1683a;
}

.contact-info p {
    font-size: 1.1em;
    line-height: 1.6em;
    margin-bottom: 15px;
    font-weight: 300;
}

.info-details {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.info-details p {
    font-size: 0.95em;
    margin-bottom: 15px;
}

.contact-form {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(241, 104, 58, 0.2);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #aaa;
    font-weight: 500;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #f1683a;
    background: rgba(255, 255, 255, 0.1);
}

.input-group select {
    cursor: pointer;
    appearance: none; /* Estilo más limpio */
}

/* Opciones del select en modo oscuro para navegadores que lo soporten */
.input-group select option {
    background-color: #222;
    color: #fff;
}

.contact-form .btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* Diseño Responsivo para móviles */
@media screen and (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
        margin: 20px auto;
    }
    .contact-info h2 {
        font-size: 2.5em;
    }
    .contact-form {
        width: 100%;
        padding: 25px 15px;
        box-sizing: border-box;
    }
}