/* ===== BANNER CTA INTEGRADO EN CONTACTO ===== */
.contact-cta-banner {
    position: relative;
    background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 50%, var(--gold-lt) 100%);
    padding: 80px 0;
    overflow: hidden;
}
.contact-cta-banner .cta-bg {
    position: absolute; inset: 0; opacity: .05;
    background-image: radial-gradient(circle, var(--ink) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.contact-cta-inner {
    position: relative; z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.contact-cta-text { flex: 1; min-width: 260px; }
.contact-cta-text h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--ink); margin: 12px 0 10px;
}
.contact-cta-text p {
    font-size: 16px; color: var(--ink-med); max-width: 460px;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 768px) {
    .contact-cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
}

/* ===== SECCIÓN CONTACTO ===== */
.contact-section {
    background: var(--cream);
    overflow: hidden;
}
.contact-section > .container {
    padding-top: 100px;
    padding-bottom: 120px;
}

/* Grid principal */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ===== INFO DE CONTACTO ===== */
.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.ci-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold-lt), var(--gold));
    display: flex; align-items: center; justify-content: center;
    color: var(--ink); flex-shrink: 0;
}
.ci-label {
    font-size: 11px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--ink-lt); margin-bottom: 3px;
}
.ci-value {
    font-size: 15px; color: var(--ink); font-weight: 500;
    text-decoration: none;
    transition: color .2s;
}
a.ci-value:hover { color: var(--gold); }

/* ===== FORMULARIO ===== */
.contact-form {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid rgba(200,150,62,.15);
    box-shadow: 0 8px 40px rgba(26,18,8,.06);
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.cf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.cf-field label {
    font-size: 13px; font-weight: 600;
    color: var(--ink-med); letter-spacing: .3px;
}
.cf-field label span { color: var(--gold); }
.cf-field input,
.cf-field select,
.cf-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(200,150,62,.25);
    border-radius: 12px;
    background: var(--warm-gray);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    appearance: none;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,150,62,.15);
    background: var(--white);
}
.cf-field textarea { resize: vertical; min-height: 110px; }
.cf-submit { width: 100%; justify-content: center; margin-top: 4px; }
.cf-feedback-ok {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(46,107,53,.12);
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}
.cf-feedback-err {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(183,35,35,.1);
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

/* ===== SEDES ===== */
.contact-sedes {
    margin-top: 28px;
}
.cs-title {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--ink-lt);
    margin-bottom: 14px;
}
.contact-sedes-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cs-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--white);
    border: 1px solid rgba(200,150,62,.15);
    border-radius: 14px;
    padding: 14px 12px;
    transition: box-shadow .2s, border-color .2s;
}
.cs-card:hover {
    border-color: var(--gold-lt);
    box-shadow: 0 4px 16px rgba(200,150,62,.12);
}
.cs-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold-lt), var(--gold));
    display: flex; align-items: center; justify-content: center;
    color: var(--ink);
}
.cs-name { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.cs-region { font-size: 11px; color: var(--ink-lt); margin-bottom: 4px; }
.cs-tel {
    font-size: 13px; font-weight: 600; color: var(--gold);
    text-decoration: none; transition: color .2s;
}
.cs-tel:hover { color: var(--gold-dk); }
/* Info debajo del mapa */
.contact-info-below-map {
    margin-top: 20px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(200,150,62,.15);
    box-shadow: 0 4px 20px rgba(26,18,8,.05);
    gap: 14px;
}
.contact-info-below-map li {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(200,150,62,.1);
}
.contact-info-below-map li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* ===== MAPA ===== */
.contact-map-wrap {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(200,150,62,.2);
    box-shadow: 0 8px 40px rgba(26,18,8,.08);
}
.contact-map-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: color .2s;
}
.contact-map-cta:hover { color: var(--gold-dk); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-map-wrap { height: 340px; }
}
@media (max-width: 560px) {
    .cf-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 20px; }
}
