.contacto-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    padding: 7rem 2rem 8rem 2rem;
    overflow: hidden;
}

.contacto-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(18, 32, 24, 0.9) 0%, rgba(26, 46, 34, 0.95) 100%);
    z-index: 1;
}

.contacto-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.contacto-hero-content h1, .contacto-hero-content p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.badge-pill-custom {
    display: inline-block;
    background-color: var(--placara-orange-1, #F4A617);
    color: #1a2e22;
    font-weight: 700;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(244, 166, 23, 0.3);
}

.contacto-stats-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    margin-bottom: 3rem;
}

.contacto-info-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.contacto-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(105, 150, 108, 0.08);
    color: var(--placara-sage-green, #69966C);
    font-size: 1.5rem;
}

.contacto-main-section { background-color: #f8fafc; }

.contacto-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contacto-input-group { margin-bottom: 1.25rem; }

.contacto-input-group label {
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.5rem;
    display: block;
}

.contacto-input-group .form-control,
.contacto-input-group .form-select {
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    padding: 0.75rem 1rem;
    width: 100%;
}

.btn-submit-custom {
    background-color: var(--placara-sage-green, #69966C);
    border-radius: 12px;
    border: none;
    width: 100%;
    color: #fff;
}

.contacto-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    min-height: 540px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.custom-swal-radius { border-radius: 20px !important; }

@media (max-width: 768px) {
    .contacto-hero { padding: 5rem 1.5rem; }
}