* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f6f6f6;
    color: #111;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.contact-page {
    width: 100%;
}

/* HERO */
.contact-hero {
    min-height: 330px;
    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
        url("../imgs/cotiza.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20px;
}

.contact-hero-content {
    max-width: 850px;
}

.contact-hero span,
.section-title span {
    color: #fb8e00;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.contact-hero h1 {
    color: #ffffff;
    font-size: 54px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 14px 0;
}

.contact-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 19px;
    line-height: 1.6;
}

/* SECCIÓN */
.contact-section {
    padding: 70px 20px 85px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 10px;
}

.section-title p {
    margin: 14px auto 0;
    max-width: 650px;
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

/* LAYOUT */
.contact-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 38px;
    align-items: start;
}

/* FORMULARIO */
.contact-form-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 14px 38px rgba(0,0,0,0.09);
    border: 1px solid #eeeeee;
}

.contact-form-card h3 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
    color: #222;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 14px;
    padding: 15px 16px;
    font-size: 15px;
    outline: none;
    transition: 0.25s ease;
    font-family: Arial, sans-serif;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #fb8e00;
    box-shadow: 0 0 0 4px rgba(251,142,0,0.12);
}

.submit-btn {
    width: 100%;
    border: none;
    background: #fb8e00;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.25s ease;
}

.submit-btn:hover {
    background: #d97700;
    transform: translateY(-3px);
}

/* INFO */
.contact-info {
    display: grid;
    gap: 28px;
}

.contact-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 14px 38px rgba(0,0,0,0.09);
    border: 1px solid #eeeeee;
    transition: 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #fb8e00;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 27px;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-card p {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.contact-card p i {
    color: #fb8e00;
    margin-right: 10px;
    width: 20px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.whatsapp-btn,
.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 21px;
    border-radius: 35px;
    font-weight: 900;
    transition: 0.25s ease;
}

.whatsapp-btn {
    background: #25d366;
    color: #ffffff;
}

.map-btn {
    background: #111111;
    color: #ffffff;
}

.whatsapp-btn:hover,
.map-btn:hover {
    transform: translateY(-3px);
}

/* WHATSAPP FLOTANTE */
.whatsapp-float {
    position: fixed;
    left: 18px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-float a {
    background: #25d366;
    color: #ffffff;
    padding: 13px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    transition: 0.25s ease;
}

.whatsapp-float a:hover {
    transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 42px;
    }

    .section-title h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        min-height: 300px;
        padding: 60px 18px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p,
    .section-title p {
        font-size: 16px;
    }

    .contact-section {
        padding: 55px 16px 70px;
    }

    .contact-form-card,
    .contact-card {
        padding: 30px 24px;
    }

    .contact-form-card h3,
    .contact-card h3 {
        font-size: 24px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .whatsapp-btn,
    .map-btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        left: 10px;
        bottom: 10px;
    }

    .whatsapp-float a {
        padding: 11px 15px;
        font-size: 14px;
    }
}
.form-group select {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 14px;
    padding: 15px 16px;
    font-size: 15px;
    outline: none;
    transition: 0.25s ease;
    font-family: Arial, sans-serif;
    background: #ffffff;
}

.form-group select:focus {
    border-color: #fb8e00;
    box-shadow: 0 0 0 4px rgba(251,142,0,0.12);
}

.form-alert {
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 22px;
    font-weight: 800;
}

.form-alert.success {
    background: #e9fff1;
    color: #15803d;
}

.form-alert.error {
    background: #ffecec;
    color: #b91c1c;
}

.form-alert.warning {
    background: #fff7e6;
    color: #b45309;
}