/*
Theme Name: Du học
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* Form Liên Hệ - Phong Cách Vận Tải (Logistics Style) */
.form-lien-he {
    position: relative;
    padding: 45px 35px 35px 35px;
    border: 1px solid #eee;
    border-top: 6px solid #E63946; /* Nhấn mạnh phía trên */
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: visible;
}

/* Xóa bỏ icon cũ không hợp với vận tải */
.form-lien-he:after {
    display: none;
}

.form-lien-he h3 {
    text-transform: uppercase;
    font-weight: 800;
    color: #1a1a1a;
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
}

.form-lien-he h3:after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #E63946;
    margin: 10px auto 0;
}

.form-lien-he input:not([type=submit]), 
.form-lien-he textarea {
    font-size: 15px;
    height: 48px;
    box-shadow: none;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    background: #fcfcfc;
    transition: all 0.3s ease;
    padding: 10px 15px;
    color: #333;
}

.form-lien-he input:focus, 
.form-lien-he textarea:focus {
    border-color: #E63946;
    background: #fff;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.05) !important;
    outline: none;
}

.form-lien-he textarea {
    height: 120px;
    resize: none;
}

.form-lien-he label {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

.form-lien-he input[type=submit] {
    margin: 15px 0 0 0;
    width: 100%;
    background-color: #E63946;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 0 #c92c3a; /* Hiệu ứng nút 3D nhẹ */
}

.form-lien-he input[type=submit]:hover {
    background-color: #d00000;
    transform: translateY(-1px);
    box-shadow: 0 6px 0 #a00000;
}

.form-lien-he input[type=submit]:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #a00000;
}

/* Tinh chỉnh Spinner của CF7 */
.wpcf7-spinner {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
}

@media only screen and (max-width: 48em) {
    .form-lien-he {
        padding: 35px 20px 25px 20px;
        margin-top: 30px;
    }
    .form-lien-he h3 {
        font-size: 20px;
    }
}