/* Contact Page Specific Styles */
.banner-home {
    /* Mantiene los estilos base de index.css */
}

.banner-home__bg img {
    object-position: center !important;
}

.banner-home__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* STANDALONE CONTACT SECTION REDESIGN */
.contact-standalone {
    padding: 6rem 2rem;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
}

.contact-standalone__inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-standalone__info {
    flex: 1;
}

.contact-standalone__header {
    margin-bottom: 2rem;
}

.contact-standalone__top-title {
    font-family: 'Bristone', 'Grillmaster', sans-serif;
    font-size: 2.8rem;
    color: #212121;
    margin: 0;
    line-height: 1.1;
    font-weight: 400;
}

.contact-standalone__badge {
    background-color: #8e6d2b;
    color: #fff;
    display: inline-block;
    padding: 0.5rem 1.8rem;
    font-family: 'Bristone', 'Grillmaster', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    margin-top: 0.4rem;
    letter-spacing: 1px;
    text-align: left;
}

.contact-standalone__subtitle {
    font-family: 'Kontora', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #212121;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.contact-standalone__desc {
    font-family: 'Kontora Regular', sans-serif;
    font-size: 1.15rem;
    color: #212121;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.contact-standalone__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-standalone__item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-standalone__icon {
    width: 44px;
    height: 44px;
    background-color: #8e6d2b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-standalone__text {
    display: flex;
    flex-direction: column;
}

.contact-standalone__text .label {
    font-family: 'Kontora', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.1rem;
}

.contact-standalone__text .value {
    font-family: 'Kontora Regular', sans-serif;
    font-size: 1.15rem;
    color: #212121;
}

.contact-standalone__form-wrap {
    flex: 1.2;
    background: transparent;
}

.contact-standalone__form-title {
    font-family: 'Kontora', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.contact-standalone__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-standalone__form input,
.contact-standalone__form select,
.contact-standalone__form textarea {
    width: 100%;
    padding: 1rem;
    border: 3px solid #999;
    background: transparent;
    font-family: 'Kontora Regular', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    box-sizing: border-box;
}

.contact-standalone__form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-standalone__form input::placeholder,
.contact-standalone__form textarea::placeholder {
    color: #bbb;
}

.contact-standalone__submit-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.8rem;
}

.btn-submit {
    background-color: #8e6d2b;
    color: #fff;
    border: none;
    padding: 0.8rem 3rem;
    font-family: 'Kontora', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background-color: #705521;
}

@media (max-width: 1024px) {
    .contact-standalone__inner {
        flex-direction: column;
        gap: 5rem;
    }

    .contact-standalone__info,
    .contact-standalone__form-wrap {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-standalone {
        padding: 5rem 1.5rem;
    }

    .contact-standalone__top-title {
        font-size: 2.5rem;
    }
}