/* Contacts page specific styles */

.banner {
    position: relative;
    height: 300px;
    background-image: url(/images/asambleya2.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

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

/* Banner text now uses typography system - removed duplicate styling */

.contact-section {
    padding: 50px 15px;
    background-color: #f8faff;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.contact-info {
    flex: 1 1 320px;
    padding: 20px;
}

.contact-info h2 {
    margin-bottom: 25px;
}

.contact-info p {
    color: #444;
    margin-bottom: 15px;
}

.contact-info strong {
    color: #1f4c7a;
}

.map-container {
    flex: 1 1 320px;
    padding: 20px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 5px;
}

.form-section {
    padding: 50px 15px;
    background-color: #fff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    box-shadow: 0 0 10px rgba(31, 76, 122, 0.15);
    border-radius: 8px;
    background-color: #fafafa;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form .form-control {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    margin-bottom: 20px;
    font-size: var(--font-size-xl);
    padding: 10px 0;
    transition: border-color 0.3s ease;
    background-color: transparent;
}

.contact-form .form-control:focus {
    border-bottom-color: #1f4c7a;
    box-shadow: none;
    outline: none;
}

.contact-form .form-control::placeholder {
    font-size: var(--font-size-xl);
    color: #999;
}

.btn-submit {
    background-color: #1f4c7a;
    color: white;
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 5px;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #3078b9;
    transform: translateY(-2px);
}

.success-message {
    color: #28a745;
    font-size: var(--font-size-xl);
    text-align: center;
    margin-bottom: 20px;
}

.error-message {
    color: #dc3545;
    font-size: var(--font-size-xl);
    text-align: center;
    margin-bottom: 20px;
}
