body{
    background-color:  #c0c7f8;
}

.section-detail{
    background-color: #c0c7f8;
}

.banner-area-wrapper {
    width: 100%;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.banner-content-inner {
    position: relative;
    bottom: -120px;
    width: 88%;
    height: 250px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: linear-gradient(135deg, #e0f0ff 0%, #b0c0e0 100%);
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    clip-path: polygon(0% 0%, 100% 0%, 93% 100%, 0% 100%);
    border-radius: 20px;
    z-index: 1;
}

.title-box {
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-50%);
    z-index: 99;
    background: linear-gradient(to top, rgb(16, 64, 112), rgba(0, 90, 255, 0.8));
    color: white;
    padding: 30px 20px;
    border-radius: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    width: 300px;
    height: auto;
    text-align: center;
}

.main-title {
    font-size: 30px;
    font-weight: 900;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.content-wrapper-fixed {
    margin-top: 150px;
    position: relative;
    z-index: 5;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    padding: 40px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.description-area-fixed {
    flex: 1;
    padding-right: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: black;
}

.cta-button-container {
    margin-top: 30px;
    text-align: left;
}
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--tertiary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1em;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    border: none;
}
.toc-buttons-container-fixed {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.toc-button {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(90deg, #1f70b7 0%, #054b8c 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.toc-button .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 15px;
    color: #fff;
    background-color: #0d4b85;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/*Content section*/
.content-section {
    background-color: #fff;
    padding: 40px 40px;
    border-radius: 16px;
    margin-bottom: 30px;
}

/*Faq*/
.faq-section {
    background: linear-gradient(135deg, #f4faff, #ffffff);
    padding: 40px 40px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.container-faq {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Cột trái --- */
.faq-intro {
    flex: 1 1 40%;
    background: linear-gradient(145deg, #0d4b85, #1a7cc3);
    color: #fff;
    border-radius: 20px;
    padding: 50px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.faq-intro::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    filter: blur(10px);
}

.faq-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-subtext {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

/* --- Danh sách FAQ --- */
.faq-container {
    flex: 1 1 55%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 40px 50px;
}

/* --- Mỗi câu hỏi --- */
.faq-item {
    border-bottom: 1px solid #e6e9ef;
    padding: 18px 0;
}

.faq-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    color: #0d4b85;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-toggle:hover {
    color: #f7941d;
}

.icon {
    transition: transform 0.4s ease, color 0.3s ease;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    color: #f7941d;
}

/* --- Câu trả lời --- */
.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    color: #333;
    line-height: 1.7;
    font-size: 16px;
    transition: max-height 0.6s ease, opacity 0.5s ease;
}

.faq-item.active .faq-content {
    max-height: 300px;
    opacity: 1;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-6px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .container-faq {
        flex-direction: column;
    }
    .faq-intro, .faq-container {
        flex: 1 1 100%;
        padding: 10px;
    }
}

.faq-intro-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.faq-intro-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.faq-intro-image:hover img {
    transform: scale(1.05);
}

/* --- Nút bên trong card --- */
.faq-cta {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f7941d;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.faq-cta:hover {
    background: #fff;
    color: #f7941d;
    transform: translateX(-50%) translateY(-2px);
}

/*Album image*/

.s-slide-9{
    background-color: #fff;
    border-radius: 16px;
    margin-bottom: 30px;
    padding-top: 40px;
}

.album-title{
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.album-desc{
    color: black;
    text-align: center;
}
/* BEGIN s-slide-9 */
.s-slide-9 .slick-list::before {
    padding-bottom: calc(37% + 0.88px);
}
.s-slide-9 .slick-dots {
    width: 100%;
    position: absolute;
    bottom: 10px;
}
.s-slide-9 .slick-dots li button {
    color: transparent;
    font-size: 4px;
    background-color: rgba(255, 255, 255, 0.7);
    width: 3em;
    height: 3em;
}
.s-slide-9 .slick-slide {
    background-size: cover;
    background-attachment: fixed;
    border-radius: 16px;
}
.s-slide-9 .slick-active .s_title, .s-slide-9 .slick-active .s_desc, .s-slide-9 .slick-active .s_button {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.s-slide-9 .s_caption {
    width: 55%;
    color: #fff;
    font-style: 14px;
    letter-spacing: 1px;
    position: absolute;
    top: 50%;
    left: 135px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.s-slide-9 .s_caption .s_title {
    font-size: 2.5em;
    margin-bottom: 0.143em;
    text-shadow: 1px 1px 0 #000;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.s-slide-9 .s_caption .s_desc {
    font-size: 1.429em;
    margin-bottom: 1em;
    text-shadow: 1px 1px 0 #0B7741;
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}
.s-slide-9 .s_caption .s_button {
    display: inline-block;
    color: #000;
    font-weight: bold;
    padding: 0.715em 1.072em 0.715em 1.072em;
    background-color: #fff;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
}
.s-slide-9 .s_caption .s_button:hover {
    color: #fff;
    background-color: #f60;
}
@media screen and (max-width: 991px) {
    .s-slide-9 .s_caption {
        left: 70px;
        width: 80%;
        font-size: 10px;
    }
}
@media screen and (max-width: 767px) {
    .s-slide-9 .s_caption {
        display: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
/* END s-slide-9 */

/*Form*/
.form-quote-section-1 {
    background-color: transparent;
    padding: 40px 0;
}

.c-modal-box-1 {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.c-modal-group-1 {
    display: flex;
    flex-wrap: wrap;
}

/* --- Sidebar --- */
.form-sidebar {
    background: linear-gradient(145deg, #0d4b85, #1e7bc5);
    color: #fff;
    padding: 60px 40px;
    text-align: center;
    height: 750px;
}

.form-sidebar img {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-sidebar h3 {
    font-size: 24px;
    margin: 10px 0;
}

.form-sidebar p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.form-sidebar .c-btn--primary {
    background: #f7941d;
    color: #fff;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.form-sidebar .c-btn--primary:hover {
    background: #ff9f3b;
}

/* --- Nội dung form --- */
.form-content-1 {
    flex: 1 1 60%;
    background: #fff;
    padding: 50px 60px;
}

.c_header {
    font-size: 28px;
    font-weight: 700;
    color: #0d4b85;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-content p {
    color: #555;
    margin-bottom: 24px;
}

.form-segment {
    margin-bottom: 24px;
}

.form-segment h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0d4b85;
    margin-bottom: 12px;
}

.c_input, .c_textarea, select {
    width: 100%;
    border: 1px solid #d9e1eb;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

.c_input:focus, .c_textarea:focus, select:focus {
    border-color: #f7941d;
    outline: none;
}

.c_textarea {
    min-height: 100px;
    resize: vertical;
}

.c-btn--primary {
    background: #0d4b85;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.c-btn--primary:hover {
    background: #f7941d;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .c-modal-group {
        flex-direction: column;
    }
    .form-sidebar, .form-content {
        flex: 1 1 100%;
        padding: 40px 30px;
    }
    .form-sidebar img {
        max-width: 260px;
    }
}

.c-modal-box-1 {
    max-width: 100%;
}
.form-tu-van{
    padding: 40px 0;
}
.form-content-1 {
    padding: 15px;
}

.toc-button span{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
}

.toc-card{
    margin-bottom: 12px;
}

/* ============================
   RESPONSIVE – CORE VALUES
   ============================ */

/* Mobile từ 375px đến 767px */
@media (max-width: 767px) {
    .description-area-fixed{
        display: none;
    }

    .value-banner h2 span {
        font-size: 26px !important;
        line-height: 34px;
    }

    .value-banner .description {
        max-width: 100%;
        font-size: 16px;
        margin-bottom: 20px;
    }

    /* Card spacing giữ khoảng cách cho đẹp */
    .value-card {
        margin-bottom: 18px;
        padding: 16px;
        border-radius: 16px;
    }

    /* Icon nhỏ lại */
    .value-icon img {
        width: 42px;
    }

    /* Font chữ */
    .value-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .value-description {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Nút đọc thêm */
    .value-readmore a {
        font-size: 14px;
        padding: 8px 14px;
        border-radius: 20px;
    }
}

/* Mobile nhỏ (375px – 475px) */
@media (max-width: 475px) {
    .description-area-fixed{
        display: none;
    }

    .value-card {
        padding: 14px;
        margin-bottom: 16px;
    }

    .value-title {
        font-size: 17px;
    }

    .value-description {
        font-size: 14px;
    }

    .value-icon img {
        width: 36px;
    }
}

.p_tags {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.6;
}

.p_tags label {
    font-weight: bold;
    margin-right: 10px;
    color: black;
}

.p_tags .name_tags {
    display: inline-block;
    margin: 5px 5px 0 0;
    padding: 5px 10px;
    background-color: #f0f0f0;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.p_tags .name_tags:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .banner-area-wrapper {
        margin-top: 0;
    }
    .banner-area-wrapper {
        padding:10px;
    }
    .content-section{
        padding: 10px;
    }
    .faq-section{
        padding: 10px;
    }
    .form-content-1 .c_header {
        text-align: center;
    }

    .c-btn--primary {
        background: #0d4b85;
        color: #fff;
        padding: 12px 26px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        font-weight: 600;
        transition: background 0.3s ease;
        display: block;
        margin: 0 auto;
    }
}





