
.contact-us-header {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.contact-us-header h2 {
    font-size: 36px;
    color: #BCA500;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-main-content {
    padding: 40px 0;
    background-color: #f8f9fa;
    padding-bottom: 200px;
}

.contact-main-content .container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.customer-service {
    flex: 1;
    max-width: 45%;
}

.customer-service h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #BCA500;
    padding-bottom: 20px;
    font-weight: bold;
}

.customer-service p {
    font-size: 18px;
    color: #002246;
    margin-bottom: 10px;
}

.customer-service a {
    color: #002246;
    text-decoration: none;
}

.customer-service a:hover {
    text-decoration: underline;
    color: #BCA500;
}

.contact-us-customer-service-info {
    margin-bottom: 30px;
}

.customer-service, .contact-form {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.contact-form {
    flex: 1;
}

.contact-us-social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 15px;
}

.contact-us-social-icon {
    width: 50px; 
    height: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc; 
    border-radius: 10px;
    background-color: #f0f0f0; 
    transition: background-color 0.3s ease;
    position: relative;
    margin-top: 30px;
}

.contact-us-social-icon img {
    max-width: 50%; 
    max-height: 50%;
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-us-social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #e0e0e0; 
}

.contact-form {
    flex: 1;
    max-width: 45%;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #BCA500;
    font-weight: bold;
}

.icono-titulo {
    width: 30px; 
    height: 30px;
    margin-left: 8px; 
    vertical-align: middle;
}

.contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;    
}

.contact-form button {
    background-color: #002246;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
    transition: transform 0.3s ease-in-out;
}

.form-label{
    color: #002246;
}

.contact-form button:hover {
    background: linear-gradient(90deg, #002b5c, #005eca);
    transform: translateY(-3px) scale(1.00);
}

.contact-form {
    opacity: 0; 
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; 
}

.contact-form.visible {
    opacity: 1; 
    transform: translateY(0); 
}

@media (max-width: 768px) {
    .contact-main-content .container {
        flex-direction: column;
        align-items: center;
    }

    .customer-service, .contact-form {
        max-width: 100%;
    }

    .contact-form {
        margin-top: 30px;
    }
}


