/* ===== Contact Section Component ===== */
.contacto-section {
    padding: 4rem 0;
    background: #192427;
    color: white;
    width: 100%;
    margin: 0;
}

.contacto-content-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 4rem;
    align-items: start;
    max-width: 100%;
}

.contacto-section .container {
    max-width: 100% !important;
    padding: 0 2rem;
    width: 100%;
    margin: 0;
}

/* ===== Columna Izquierda: Información ===== */
.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contacto-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.contacto-address-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contacto-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.contacto-address {
    font-size: 0.875rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    font-family: var(--font-body);
}

.contacto-address-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
    font-family: var(--font-body);
}

.contacto-map-section {
    margin-top: 1rem;
}

.contacto-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.1);
    font-weight: 500;
    font-family: var(--font-body);
}

.contacto-map-btn:hover {
    color: #ffffff;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-1px);
}

.map-btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.9;
}

/* ===== Columna Derecha: Formulario ===== */
.contacto-form-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: transparent;
    padding: 0;
    width: 100%;
}

.contacto-form-header {
    margin-bottom: 1rem;
}

.contacto-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.contacto-form-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 0.01em;
    font-family: var(--font-body);
    line-height: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    font-size: 1rem;
    font-family: inherit;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #d4af37;
}

.form-group textarea {
    resize: none;
    min-height: 100px;
    background: white;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    color: #000000;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    width: 100%;
}

.contact-form .cta-btn {
    width: auto;
    padding: 0.75rem 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #c19a3b 100%);
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.contact-form .cta-btn:hover {
    background: linear-gradient(135deg, #c19a3b 0%, #b08a2f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.contact-form .cta-btn:active {
    transform: scale(0.98);
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 968px) {
    .contacto-section {
        padding: 3rem 0;
    }

    .contacto-section .container {
        padding: 0 2rem;
    }

    .contacto-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contacto-main-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .contacto-address-section {
        text-align: center;
    }

    .contacto-map-section {
        text-align: center;
    }

    .contacto-map-btn {
        justify-content: center;
    }

    .contacto-form-header {
        text-align: center;
    }

    .contacto-form-title {
        font-size: 1.5rem;
    }

    .contacto-form-subtitle {
        font-size: 0.95rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contacto-section {
        padding: 2rem 0;
    }

    .contacto-section .container {
        padding: 0 2.5rem !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0;
    }

    .contacto-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0;
        width: 100%;
        margin: 0;
    }

    .contacto-info,
    .contacto-form-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contacto-main-title {
        font-size: 1.5rem;
    }

    .contacto-section-title {
        font-size: 0.8rem;
    }

    .contacto-address,
    .contacto-address-detail {
        font-size: 0.8rem;
    }

    .contacto-map-btn {
        font-size: 0.75rem;
        padding: 0.45rem 0.875rem;
    }

    .map-btn-icon {
        width: 16px;
        height: 16px;
    }

    .contacto-form-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .contacto-form-title {
        font-size: 1.5rem;
    }

    .contacto-form-subtitle {
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
    }
}

/* Mobile pequeño */
@media (max-width: 480px) {
    .contacto-section {
        padding: 1.5rem 0;
    }

    .contacto-section .container {
        padding: 0 2rem !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0;
    }

    .contacto-content-grid {
        gap: 2rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .contacto-info,
    .contacto-form-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-row {
        width: 100%;
        max-width: 100%;
    }

    .contacto-info,
    .contacto-form-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .contacto-main-title {
        font-size: 1.25rem;
    }

    .contacto-form-header {
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .contacto-form-title {
        font-size: 1.25rem;
    }

    .contacto-form-subtitle {
        font-size: 0.85rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
    }

    .contact-form .cta-btn {
        width: 100%;
        padding: 0.75rem 2rem;
    }
}
