/*
Theme Name: Vietnam Branding
Theme URI: http://yoursite.com
Author: Your Name
Author URI: http://yoursite.com
Description: Theme Premium dành cho B2B Branding, tối giản và sang trọng.
Version: 1.0
Text Domain: vnbranding
*/
/* --- FAQ SECTION STYLES --- */
.faq-section {
    margin: 40px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
}

.faq-heading {
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.faq-heading i {
    color: #0073aa; /* Màu icon tiêu đề */
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #0073aa;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f8ff;
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Xoay icon khi mở */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #0073aa;
}

.faq-answer {
    max-height: 0; /* Mặc định đóng */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.faq-answer > div {
    padding: 0 20px 20px 20px;
    line-height: 1.6;
    color: #555;
    font-size: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}



/* --- SCROLL PROGRESS BAR --- */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px; /* Độ dày của thanh */
    background: transparent;
    z-index: 10000; /* Đảm bảo nằm trên cùng của mọi thứ */
}

#scroll-progress-bar {
    height: 100%;
    background: linear-gradient(to right, #0073aa, #00a0d2); /* Màu sắc (có thể đổi theo brand) */
    width: 0%; /* Mặc định là 0% */
    transition: width 0.1s ease-out;
}

/* Nếu bạn có Sticky Header, hãy đảm bảo thanh này nằm ngay dưới hoặc trên header */
header.scrolled + .scroll-progress-container {
    top: 0; 
}