/* =========================================
   PÁGINA DE CONTACTO EDITORIAL (KOKORO)
   ========================================= */

/* Hero Banner con Filtro Oscuro */
.kk-contact-banner {
    /* Puedes cambiar esta imagen por una de tus modelos o productos */
    background-image: linear-gradient(rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.7)), url('../images/contact-header-img.jpg');
    background-size: cover;
    background-position: center;
    padding: 7rem 0 10rem 0; /* Espacio extra abajo para el efecto overlap */
    color: white;
}

.kk-banner-title {
    color: var(--blush-pink);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.kk-banner-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Contenedor Principal Superpuesto */
.kk-contact-main {
    margin-top: -6rem; /* Esto empuja la tarjeta hacia arriba sobre el banner */
    position: relative;
    z-index: 10;
    margin-bottom: 5rem;
}

.kk-contact-card {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Sombra elegante */
}

/* Panel Izquierdo: Información */
.kk-contact-info-panel {
    background-color: var(--bg-light); /* Fondo nude claro */
    padding: 4rem;
    border-right: 1px solid #eee;
}

.kk-info-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--contrast);
    margin-bottom: 1rem;
}

.kk-info-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.kk-info-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--soft-wine);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

/* Redes Sociales: Cuadrados Sólidos */
.kk-social-link-block {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}

.kk-social-link-block:hover {
    transform: translateX(8px); /* Deslizamiento elegante */
}

.kk-social-square {
    width: 50px;
    height: 50px;
    background-color: var(--soft-wine); /* Fondo sólido borgoña */
    color: #ffffff; /* Íconos blancos */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 1.2rem;
    border-radius: 0 !important; /* Estrictamente cuadrado */
    transition: background-color 0.3s ease;
}

.kk-social-link-block:hover .kk-social-square {
    background-color: var(--nude-rose);
}

.kk-social-text {
    display: flex;
    flex-direction: column;
}

.kk-social-name {
    font-weight: 600;
    color: var(--contrast);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.kk-social-handle {
    color: #888;
    font-size: 0.85rem;
}

.kk-social-link-block:hover .kk-social-name {
    color: var(--soft-wine);
}

/* Horarios */
.kk-hours-text {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.kk-hours-text strong {
    color: var(--contrast);
    font-size: 1.1rem;
    display: block;
    margin-top: 5px;
}

/* Panel Derecho: Formulario Editorial */
.kk-contact-form-panel {
    padding: 4rem;
    background: #fff;
}

.kk-form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--contrast);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.kk-divider-sm {
    height: 2px;
    width: 50px;
    background-color: var(--soft-wine);
}

/* Inputs Estilo Editorial */
.kk-input-editorial {
    width: 100%;
    background-color: var(--background); /* Fondo muy sutil */
    border: 1px solid transparent; /* Sin borde inicial */
    padding: 15px;
    font-size: 0.95rem;
    color: var(--contrast);
    border-radius: 0 !important;
    transition: all 0.3s ease;
}

.kk-input-editorial:focus {
    outline: none;
    border: 1px solid var(--soft-wine); /* Borde color vino al enfocar */
    box-shadow: 0 0 0 4px rgba(107, 46, 46, 0.05);
}

textarea.kk-input-editorial {
    resize: vertical;
    min-height: 120px;
}

.kk-main-btn {
    width: 100%;
    background: var(--soft-wine);
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.kk-main-btn:hover {
    background: #8a3d3d;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 991px) {
    .kk-contact-main {
        margin-top: -3rem;
    }
    .kk-contact-info-panel, .kk-contact-form-panel {
        padding: 2.5rem;
    }
}

@media (max-width: 576px) {
    .kk-banner-title {
        font-size: 2.2rem;
    }
}