.elementor-11 .elementor-element.elementor-element-4f5c988{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-730b21e */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

.custom-contact-form-section {
    padding: 80px 20px;
    background-color: #f8f9fa; /* Một màu nền xám rất nhạt cho toàn section */
    font-family: 'Montserrat', sans-serif;
}

.custom-contact-form-section .container {
    max-width: 850px; /* Tăng nhẹ chiều rộng container */
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.custom-contact-form-section .section-header {
    text-align: center;
    margin-bottom: 45px;
}

.custom-contact-form-section .section-header h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: #005EFF; /* Màu chủ đạo */
    margin-bottom: 10px;
    line-height: 1.3;
}

.custom-contact-form-section .section-header p {
    font-size: clamp(15px, 2vw, 17px);
    color: #555e68;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto; /* Căn giữa đoạn mô tả */
}

/* Form Styling */
.contact-form-wrapper .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px; /* Khoảng cách giữa các trường trong một hàng */
    margin-bottom: 25px;
}

.contact-form-wrapper .form-group {
    flex: 1; /* Các trường chiếm không gian bằng nhau */
    min-width: calc(50% - 12.5px); /* Cho phép 2 trường trên một hàng, tính cả gap */
    display: flex;
    flex-direction: column;
}

/* Nếu một group cần chiếm full width (như textarea) */
.contact-form-wrapper .form-group.full-width {
    min-width: 100%;
    margin-bottom: 25px; /* Giữ margin bottom cho textarea */
}
.contact-form-wrapper .form-row:last-of-type .form-group.full-width{
    margin-bottom: 0; /* Nếu là row cuối cùng thì bỏ margin này*/
}


.contact-form-wrapper label {
    font-size: 14px;
    font-weight: 600;
    color: #333a45;
    margin-bottom: 8px;
    display: block;
}

.contact-form-wrapper label .required-asterisk {
    color: #e74c3c; /* Màu đỏ cho dấu sao */
    margin-left: 2px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
    width: 100%;
    padding: 15px 18px; /* Tăng padding cho dễ nhìn */
    border: 1px solid #ccd5e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333a45;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fdfdfd;
}

.contact-form-wrapper input[type="text"]::placeholder,
.contact-form-wrapper input[type="email"]::placeholder,
.contact-form-wrapper input[type="tel"]::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #8894a3;
    font-family: 'Montserrat', sans-serif;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #005EFF;
    box-shadow: 0 0 0 3px rgba(0, 94, 255, 0.15); /* Hiệu ứng shadow nhẹ hơn khi focus */
    background-color: #fff;
}

.contact-form-wrapper textarea {
    min-height: 140px; /* Chiều cao tối thiểu cho textarea */
    resize: vertical;
}

.contact-form-wrapper .submit-button-container {
    text-align: center;
    margin-top: 35px;
}

.contact-form-wrapper .custom-submit-button {
    background-color: #005EFF;
    color: #ffffff;
    border: none;
    padding: 16px 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600; /* Regular Bold */
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 94, 255, 0.2);
}

.contact-form-wrapper .custom-submit-button:hover {
    background-color: #0048c9; /* Màu đậm hơn khi hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 72, 201, 0.3);
}

.contact-form-wrapper .custom-submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 72, 201, 0.2);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-contact-form-section .container {
        padding: 40px 25px;
    }

    .contact-form-wrapper .form-row {
        flex-direction: column; /* Các trường xếp chồng lên nhau */
        gap: 0; /* Reset gap */
    }

    .contact-form-wrapper .form-group {
        min-width: 100%; /* Mỗi trường chiếm full width */
        margin-bottom: 20px; /* Thêm khoảng cách dưới cho mỗi group */
    }
     .contact-form-wrapper .form-row:last-of-type .form-group:last-of-type,
     .contact-form-wrapper .form-group.full-width {
        margin-bottom: 0; /* Bỏ margin cho group cuối cùng hoặc textarea */
     }
      .contact-form-wrapper .form-row:not(:last-of-type) .form-group.full-width{
        margin-bottom: 20px; /* Nếu textarea không phải row cuối thì vẫn giữ margin */
      }
}

@media (max-width: 480px) {
    .custom-contact-form-section {
        padding: 60px 15px;
    }
    .custom-contact-form-section .container {
        padding: 30px 20px;
    }
    .custom-contact-form-section .section-header h2 {
        font-size: 26px;
    }
    .custom-contact-form-section .section-header p {
        font-size: 14px;
    }
    .contact-form-wrapper input[type="text"],
    .contact-form-wrapper input[type="email"],
    .contact-form-wrapper input[type="tel"],
    .contact-form-wrapper textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    .contact-form-wrapper .custom-submit-button {
        padding: 15px 30px;
        font-size: 15px;
        width: 100%; /* Nút Gửi full width trên màn hình rất nhỏ */
    }
     .contact-form-wrapper .form-group {
        margin-bottom: 18px; /* Giảm margin 1 chút cho form nhỏ */
    }
}/* End custom CSS */