/* ==========================================
   Contact Section - Diseño Completo
   ========================================== */

.contact-section-complete {
    background: linear-gradient(135deg, #0a1f1f 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.contact-section-complete::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

/* Barra de Redes Sociales Superior */
.social-header {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem 0;
    text-align: center;
}

.social-header h4 {
    color: var(--light-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links-top {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links-top a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links-top a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 206, 209, 0.3);
}

/* Contenedor */
.contact-container-with-map {
    position: relative;
    z-index: 1;
    min-height: auto;
    padding: 4rem 0;
}

.contact-map-bg {
    display: none;
}

/* Grid de Contenido */
.contact-content-grid {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: stretch;
}

/* Tarjeta de Información (Izquierda) */
.contact-info-card-left {
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 4rem 3.5rem;
    box-shadow: 0 25px 80px rgba(0, 206, 209, 0.3);
    border: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contact-info-card-left h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    line-height: 1.2;
    font-weight: 700;
}

.contact-info-card-left h2 br {
    display: block;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem;
    background: rgba(0, 206, 209, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(0, 206, 209, 0.1);
    transform: translateX(5px);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.8rem;
    min-width: 35px;
    margin-top: 0.25rem;
}

.info-item p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: #444;
    text-decoration: underline;
}

/* Tarjeta de Formulario (Derecha) con Degradado */
.contact-form-card-right {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 206, 209, 0.4);
    border: 3px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-title {
    color: var(--light-color);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    color: var(--light-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--light-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--light-color);
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .contact-container-with-map {
        min-height: auto;
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .social-links-top {
        gap: 1.5rem;
    }
    
    .social-links-top a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-info-card-left,
    .contact-form-card-right {
        padding: 2rem;
    }
    
    .contact-info-card-left h2 {
        font-size: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
}