/* ============================================
   CONTACT US PAGE STYLES
   ============================================ */

/* HERO SECTION */
.contact-hero {
    /*margin-top: 125px;*/
    position: relative;
    height: 225px;
    background: url('/assets/images/Mask-Group-1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
     /* Centrado y ancho máximo para alinear con el contenedor principal */
     max-width: 1200px;
     width: 100%;
     margin: 0 auto;
     padding: 0 20px;
}

.contact-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    white-space: nowrap;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left; /* Asegurar que se alinee a la izquierda */
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* FORM COLUMN */
.contact-form-column {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #555;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff9447;
}

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

/* CHECKBOX GROUP */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.privacy-link {
    color: #ff9447;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* SUBMIT BUTTON */
.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff9447 0%, #ff7b29 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #ff7b29 0%, #ff6510 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 148, 71, 0.3);
}

/* CONTACT INFO COLUMN */
.contact-info-column {
    position: relative;
}

.contact-info-card {
    background: linear-gradient(135deg, #ff9447 0%, #ff7b29 100%);
    padding: 50px 40px;
    border-radius: 8px;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.info-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
}

.info-text {
    flex: 1;
}

.info-text p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* DECORATIVE ELEMENTS */
.decoration-elements {
    position: absolute;
    bottom: 150px;
    right: 40px;
    width: 150px;
    height: 150px;
}

.deco-mountain {
    position: absolute;
    width: 80px;
    height: 60px;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid rgba(255, 255, 255, 0.15);
    bottom: 40px;
    right: 10px;
}

.deco-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    bottom: 10px;
    right: 50px;
}

.deco-line {
    position: absolute;
    width: 100px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    bottom: 30px;
    right: 0;
    transform: rotate(-45deg);
}

/* SOCIAL SECTION */
.social-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #fff;
    color: #ff9447;
    transform: translateY(-3px);
}

/* MAP SECTION */
.map-section {
    margin-top: 0;
}

.map-container {
    width: 100%;
    height: 600px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* SCROLL TO TOP BUTTON */


/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .form-title,
    .info-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-form-column,
    .contact-info-card {
        padding: 30px 25px;
    }

    .contact-hero {
        height: 250px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .form-title,
    .info-title {
        font-size: 1.75rem;
    }

    .map-container {
        height: 350px;
    }

    .social-links {
        justify-content: flex-start;
    }

    .decoration-elements {
        opacity: 0.5;
        bottom: 100px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 200px;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-form-column,
    .contact-info-card {
        padding: 25px 20px;
    }

    .form-title,
    .info-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .info-item {
        margin-bottom: 25px;
    }

    .social-section {
        margin-top: 30px;
    }

}