﻿/* Contact page styles - Elegant Black & White Theme */
.contact-banner {
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Content/Img/Lapa Roja.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 80px;
    position: relative;
}

.contact-title {
    font-size: 3.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    padding-bottom: 15px;
}

    .contact-title:after {
        content: '';
        position: absolute;
        width: 60px;
        height: 1px;
        background-color: #fff;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 100px;
    gap: 60px;
}

.contact-info2 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.get-in-touch {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: #222;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    border-bottom: 2px solid #222;
    padding-bottom: 8px;
    letter-spacing: 1px;
}

.contact-location,
.contact-phone,
.contact-email {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

    .contact-location i,
    .contact-phone i,
    .contact-email i {
        font-size: 18px;
        margin-right: 15px;
        color: #000;
        min-width: 20px;
        text-align: center;
        margin-top: 3px;
    }

    .contact-location div p,
    .contact-phone p,
    .contact-email p {
        margin-bottom: 6px;
        line-height: 1.6;
        color: #444;
        font-weight: 400;
    }

        .contact-location div p strong {
            font-weight: 500;
            color: #222;
            letter-spacing: 0.5px;
        }

.contact-form {
    flex: 1.2;
    background-color: #f9f9f9;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.form-row {
    display: flex;
    margin-bottom: 25px;
    gap: 25px;
}

.form-group {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 1px solid #ddd;
    background-color: transparent;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: #000;
    }

    .form-control::placeholder {
        color: #999;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1px;
    }

textarea.form-control {
    resize: vertical;
    min-height: 150px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.btn-submit {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .btn-submit i {
        margin-right: 10px;
    }

    .btn-submit:hover {
        background-color: #333;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

.text-center {
    text-align: center;
}

/* Responsive styles */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info2 {
        margin-bottom: 60px;
    }

    .form-row {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 0;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        height: 300px;
        margin-bottom: 60px;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .get-in-touch {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .contact-banner {
        height: 200px;
        margin-bottom: 40px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .get-in-touch {
        font-size: 1.3rem;
    }

    .contact-container {
        padding: 0 20px 60px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}
