/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.main-title {
    font-size: 48px;
    color: #015871;
    text-align: center;
    margin: 40px 0;
    font-weight: bold;
    text-transform: uppercase;
}

/* Contact Section */
.contact-section-1 {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    padding: 60px 20px;
}

.contact-container-1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}

/* Header */
.contact-header-1 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title-1 {
    font-size: 32px;
    font-weight: bold;
    color: #015871;
    margin-bottom: 10px;
}

.contact-description-1 {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Layout */
.contact-layout-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Contact Form */
.contact-form-1 {
    flex: 1;
    min-width: 300px;
}

.form-title-1 {
    font-size: 24px;
    color: #015871;
    margin-bottom: 20px;
}

.form-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-1 {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

input,
textarea {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
    border-color: #015871;
    outline: none;
}

textarea {
    resize: none;
}

.form-button-1 {
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #015871;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-button-1:hover {
    background: #013d5a;
}

/* Contact Info */
.contact-info-1 {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-title-1 {
    font-size: 24px;
    color: #015871;
    margin-bottom: 20px;
}

.info-description-1 {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-list-1 {
    list-style: none;
    margin-bottom: 20px;
}

.info-list-1 li {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list-1 i {
    color: #015871;
    font-size: 16px;
}

/* Social Icons */
.social-icons-1 {
    display: flex;
    gap: 15px;
}

.social-icons-1 a {
    color: #015871;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons-1 a:hover {
    color: #013d5a;
}

/* Map Section */
.map-container-1 {
    margin-top: 40px;
    text-align: center;
}

.map-title-1 {
    font-size: 24px;
    color: #015871;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.map-frame-1 iframe {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    height: 300px;
    margin: 0 auto;
}

/* Logo Container */
.logo-container-1 {
    margin-top: 20px;
}

.contact-logo {
    width: 150px;
    /* Kích thước logo */
    height: auto;
    margin: 0 auto;
    display: block;
    /* Đảm bảo logo nằm ở giữa */
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-layout-1 {
        flex-direction: column;
    }

    .contact-form-1,
    .contact-info-1 {
        width: 100%;
    }
}

/* Animation Styles */
/* Animation Styles */
.fade-in {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}