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

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

/* Form  ---------------- cập nhật lúc 22:30 ngày 24/03/2026 */

/* Căn giữa toàn bộ Container */
.contact-form-container {
    max-width: 600px; /* Độ rộng vừa phải để form trông cân đối */
    margin: 0 auto;   /* Căn giữa container trên trang */
 /* Giữ nội dung bên trong canh lề trái cho dễ đọc */
}

/* Style tiêu đề FREE QUOTE */
/* .form-title-form {
	text-align: center;
} */

/* Căn giữa hàng Flex */
.flex-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
	text-align: left;
}

.flex-row .field-group {
    flex: 1;
}

/* Label in đậm */
.field-group label {
    display: block;
    font-weight: 700; /* In đậm tiêu đề các ô */
    margin-bottom: 8px;
    font-size: 14px;
	text-align: left;
}

.required-form {
    margin-left: 2px;
	color: red;
}

/* Căn giữa Checkbox và Nút bấm */


.field-consent {
    margin: 20px 0;
    font-size: 13px;
    line-height: 1.5;
	text-align: left;
}

/* Tùy chỉnh nút bấm in đậm */

.submit-button-form input:hover {
    transform: translateY(-2px); /* Hiệu ứng nổi nhẹ khi di chuột */
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .flex-row {
        flex-direction: column;
    }
}
/* form */

/* Quy trình triển khai - Start  - 04:30 ngày 25/03/2026 */

/* Container chung */
.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-process {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.top-label {
    display: block;
    color: #4F7942;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.process-header h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.process-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Grid Layout */
.process-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: #fdfdfd;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.process-item:hover {
    transform: translateX(10px);
    background: #fff;
    border-color: #4F7942;
    box-shadow: 0 10px 30px rgba(79, 121, 66, 0.08);
}

/* Số thứ tự bước */
.step-badge {
    min-width: 60px;
    height: 60px;
    background: #4F7942;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 30px;
}

.process-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.process-content p {
    color: #555;
    line-height: 1.6;
    max-width: 900px;
}

/* Responsive */
@media (max-width: 768px) {
    .process-item {
        flex-direction: column;
        padding: 25px;
    }
    
    .step-badge {
        margin-bottom: 20px;
        width: 50px;
        height: 50px;
    }

    .process-item:hover {
        transform: translateY(-5px);
    }
}
/* ---------------------- */
/* Quy trình triển khai */



/* ===== HEADER MOBILE FLATSOME FIX ===== */
@media (max-width: 849px) {

    /* Cho header dùng flex */
    .header-main .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    /* Logo nằm giữa */
    #logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }

    /* Menu icon bên trái */
    .nav-left {
        order: 1;
        z-index: 2;
    }

    /* Phần bên phải giữ cân layout */
    .nav-right {
        width: 40px;
    }

    /* Fix padding container gây lệch */
    .header-main .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}