/* =========================================
   CONTACTO CSS
   Styles specific to the Contact page
   ========================================= */

/* ---- Container ---- */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* ---- Breadcrumb ---- */
.breadcrumb-wrapper {
    background-color: #1a1a1a;
    width: 100%;
    height: 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.breadcrumb {
    padding: 0;
    font-size: 14px;
    color: #fff;
    font-family: var(--font-primary);
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.breadcrumb .current {
    color: var(--accent-gold);
}

/* ---- Related Header (Premium Escorts Title) ---- */
.related-header {
    max-width: 1320px;
    margin: 0 auto 20px;
    padding: 10px 0 18px;
    border-bottom: 2px solid #C4984B;
    text-align: left;
}

.related-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1.2;
}

.related-header h3 .title-normal {
    font-weight: 700;
    color: #ffffff;
}

.related-header h3 .title-gold {
    font-weight: 900;
    color: #C4984B;
}

.related-header p {
    font-size: 14px;
    color: #888888;
    margin: 0;
}


/* ---- Contact Page Specific Styles ---- */
.contact-hero {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page-section {
    padding: 0px 0;
}

.contact-header-titles {
    margin-bottom: 40px;
}

.contact-header-titles h2 {
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-header-titles p {
    font-size: 20px;
    color: var(--accent-gold);
    font-style: italic;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    margin: 0 auto 60px auto;
    align-items: center;
}

.contact-form-image {
    display: flex;
}

.contact-form-image img {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.contact-form-wrapper {
    background: #111;
    border-radius: 8px;
    border: 1px solid #333;
    padding: 40px 40px 4px;
}

form .contenedor{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

form.form-group {
    margin-bottom: 0;
}

form .form-group.full-width {
    grid-column: 1 / -1;
}

form .form-control {
    width: 100%;
    padding: 15px;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

form .form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
}

form.form-submit.full-width {
    grid-column: 1 / -1;
    margin-top: 10px;
}
form textarea.form-control {
    height: 122px;
    margin-top:25px;
    resize: vertical;
}

form .btn-gold {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    border-radius: 4px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
    padding: 16px;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .contact-form-image img {
        height: 300px;
    }

    .contact-header-titles h2 {
        font-size: 32px;
        line-height: 1.2;
    }
}

@media (max-width: 580px) {
    form{
        grid-template-columns: 1fr;
    }
}