/*
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.   ***************/
/* Page Experience Banner Title */
.experience-banner .banner-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.experience-banner .banner-title-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 99;
    padding: 0 15px;
}

.banner-title-text {
    font-family: 'Montserrat-ExtraBold', sans-serif !important;
    font-size: 56px !important;
    color: #d61821 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}

button.close {
    min-height: unset !important;
}

@media (max-width: 991px) {
    .banner-title-text {
        font-size: 40px !important;
    }
}

@media (max-width: 767px) {
    .banner-title-text {
        font-size: 30px !important;
        letter-spacing: 1px !important;
    }

    .experience-banner .banner-image img {
        min-height: 250px !important;
        object-fit: cover !important;
    }
}

/*************** ADD CUSTOM CSS HERE.   ***************/
/* Main Styles */
body {
    font-family: "Mulish", sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Font Utility Classes */
.font-montserrat-bold {
    font-family: 'Montserrat-Bold', 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
}

.font-montserrat-extrabold {
    font-family: 'Montserrat-ExtraBold', 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
}

.font-mulish {
    font-family: 'Mulish', sans-serif !important;
}

.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container,
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
    max-width: var(--container-max-width, 1430px);
    margin: 0 auto;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgb(61 60 60 / 63%);
    /* Light blue that makes the white logo box pop */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .header-center ul li a {
    color: #fff;
    /* Revert to white for contrast on blue */
    text-shadow: none;
}

.main-header.scrolled .header-center ul li a.active::after,
.main-header.scrolled .header-center ul li a:hover::after {
    background: #fff;
    /* Revert to white underline */
}

.main-header.scrolled .lang-box>a {
    color: #333;
    /* Dark text for readability on white box */
}

:root {
    --container-max-width: 1630px;
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.header-left {
    display: flex;
    align-items: stretch;
}

.logo-box {
    -webkit-mask-image: url('images/Union.png');
    mask-image: url('images/Union.png');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #fff !important;
    /* Pure white background within the shape */
    padding: 0 45px 0 50px;
    /* Removed top/bottom padding to let it stretch */
    /* Create the red border effect on the masked shape */
    filter: drop-shadow(0 2px 0 #d61821);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    align-self: stretch;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    height: 100%;
}

.main-logo {
    max-height: 45px;
    width: auto;
    display: block;
}


.header-center ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.header-center ul li a {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    padding: 20px 0;
    /* Increase padding to push header height */
    display: block;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    text-decoration: none;
}

/* Active & Hover menu underline */
.header-center ul li.current-menu-item>a::after,
.header-center ul li.current-page-item>a::after,
.header-center ul li.current-menu-ancestor>a::after,
.header-center ul li a:hover::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}

/* Dropdown Caret Arrow */
.header-center ul li.menu-item-has-children>a {
    padding-right: 18px !important;
}

.header-center ul li.menu-item-has-children>a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
    /* Visual centering adjustment */
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.header-center ul li.menu-item-has-children:hover>a::before {
    transform: translateY(-50%) rotate(180deg);
    border-top-color: #fff;
}

/* Submenu */
header.main-header .menu-item-has-children {
    position: relative;
}

header.main-header .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(25px);
    background: #fff;
    min-width: 220px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 12px 0;
    border-radius: 2px;
    border-top: 4px solid #d61821;
    display: block !important;
    z-index: 1001;
}

/* Invisible bridge to prevent hover break */
header.main-header .sub-menu::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

header.main-header .sub-menu::before {
    content: "";
    position: absolute;
    top: -13px;
    /* Adjusted for gap */
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #d61821 transparent;
}

.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(12px);
    /* Moves down by 12px */
}

header.main-header .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
}

header.main-header .sub-menu li a {
    color: #333 !important;
    padding: 12px 25px !important;
    text-shadow: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    border: none !important;
    display: flex !important;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #ccc !important;
}

header.main-header .sub-menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #d61821;
    transition: all 0.3s ease;
}

header.main-header .sub-menu li a:hover::before,
header.main-header .sub-menu li.current-menu-item>a::before,
header.main-header .sub-menu li.current-page-item>a::before {
    height: 100%;
}

.mm-listview>li>a,
.mm-listview>li>span {
    font-size: 18px;
    line-height: 28px;
    font-family: Montserrat-Regular;
}

.phone-box span {
    font-size: 15px;
}

header.main-header .sub-menu li a::after {
    display: none !important;
}

header.main-header .sub-menu li a:hover,
header.main-header .sub-menu li.current-menu-item>a,
header.main-header .sub-menu li.current-page-item>a {
    background: rgba(214, 24, 33, 0.05) !important;
    color: #d61821 !important;
    padding-left: 32px !important;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    align-self: center;
}

.phone-box {
    background: #d61821;
    padding: 6px 15px 6px 6px;
    /* Reduced left padding to accommodateicon circle */
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.phone-box i {
    width: 28px;
    height: 28px;
    background: #fff;
    color: #d61821;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


.lang-box {
    position: relative;
}

/* ==========================================================================
   Custom Contact Page Styling (COMPLETE & ROBUST)
   ========================================================================== */
.page-contact {
    background-color: #fcfdfe !important;
    font-family: "Mulish", sans-serif !important;
}

.page-contact .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -15px !important;
    margin-left: -15px !important;
}

.page-contact .col-lg-6,
.page-contact .col-md-6,
.page-contact .col-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100%;
}

@media (min-width: 992px) {
    .page-contact .col-lg-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Info Cards Styling */
.page-contact .contact-info-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    background: #ffffff !important;
    padding: 25px !important;
    margin-bottom: 20px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #f0f3f6 !important;
    width: 100% !important;
}

.page-contact .contact-title {
    font-family: 'Montserrat-ExtraBold', sans-serif !important;
    font-weight: 800 !important;
}

.page-contact .contact-card-icon {
    width: 52px !important;
    height: 52px !important;
    background: rgba(0, 150, 255, 0.08) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin-right: 20px !important;
}

.page-contact .contact-card-icon i {
    font-size: 20px !important;
    color: #0096ff !important;
}

.page-contact .card-label {
    letter-spacing: 0.5px;
    font-size: 11px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
}

.page-contact .card-value {
    color: #1a2b4b !important;
    font-size: 1.1rem !important;
    margin: 0 !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
}

/* Form Styles */
.page-contact .contact-form-card {
    border: none !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-radius: 20px !important;
}

.page-contact .contact-form-card .form-header {
    background: #0d1522 !important;
    padding: 50px 30px 40px !important;
    position: relative;
    text-align: center;
}

.page-contact .form-header .badge {
    display: none !important;
}

.page-contact .premium-badge {
    display: inline-flex !important;
    align-items: center !important;
    background: #0096ff !important;
    color: #fff !important;
    padding: 6px 18px !important;
    border-radius: 50px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(0, 150, 255, 0.3) !important;
    text-transform: uppercase !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.page-contact .premium-badge i {
    font-size: 13px !important;
    margin-right: 6px !important;
}

.page-contact .form-header {
    background: linear-gradient(135deg, #0d1522 0%, #1a2b4b 100%) !important;
    padding: 60px 30px 45px !important;
    position: relative;
    text-align: center;
    border-bottom: 2px solid rgba(0, 150, 255, 0.3) !important;
}

.page-contact .form-title {
    margin-bottom: 5px !important;
    font-family: 'Montserrat-ExtraBold', sans-serif !important;
    color: #fff !important;
}

.page-contact .form-body {
    padding: 40px !important;
}

.page-contact .form-group {
    margin-bottom: 20px !important;
    width: 100% !important;
}

.page-contact .form-label {
    display: block !important;
    margin-bottom: 8px !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
    color: #1a2b4b !important;
    font-size: 14px !important;
}

.page-contact .form-control,
.page-contact .form-select {
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    padding: 0 20px !important;
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50px !important;
    font-family: 'Mulish', sans-serif !important;
    box-shadow: none !important;
}

.page-contact textarea.form-control {
    height: auto !important;
    padding: 15px 20px !important;
    border-radius: 20px !important;
}

/* Product Choice Badges */
.page-contact .product-badge-radio {
    display: inline-block !important;
    position: relative !important;
    margin: 0 8px 10px 0 !important;
    cursor: pointer !important;
}

.page-contact .product-badge-radio input {
    position: absolute !important;
    opacity: 0 !important;
    display: none !important;
}

.page-contact .product-badge-radio span {
    display: flex !important;
    align-items: center !important;
    padding: 10px 20px !important;
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 30px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    transition: all 0.2s ease !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
}

.page-contact .product-badge-radio span i {
    margin-right: 8px !important;
}

.page-contact .product-badge-radio input:checked+span {
    background: #0096ff !important;
    color: #fff !important;
    border-color: #0096ff !important;
}

/* Submit Button */
.page-contact .btn-primary {
    background: #0096ff !important;
    border: none !important;
    color: #fff !important;
    height: 60px !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    letter-spacing: 1px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 25px !important;
    box-shadow: 0 10px 20px rgba(0, 150, 255, 0.2) !important;
}

/* Select2 Custom Styling */
.page-contact .select2-container--default .select2-selection--single {
    height: 50px !important;
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
}

.page-contact .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 20px !important;
    color: #334155 !important;
    font-family: 'Mulish', sans-serif !important;
    line-height: normal !important;
}

.page-contact .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    right: 15px !important;
}

.page-contact .select2-container--open .select2-dropdown {
    border-radius: 15px !important;
    border-color: #e2e8f0 !important;
    overflow: hidden !important;
    z-index: 999999 !important;
}

/* Multi-select Specific Styling */
.page-contact .select2-container--default .select2-selection--multiple {
    min-height: 50px !important;
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 25px !important;
    padding: 5px 15px !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.page-contact .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #0096ff !important;
    border: none !important;
    color: #fff !important;
    border-radius: 20px !important;
    padding: 2px 12px !important;
    font-size: 12px !important;
    margin: 5px 5px 0 0 !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
}

.page-contact .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff !important;
    margin-right: 5px !important;
    border: none !important;
}

.page-contact .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ffda00 !important;
    background: none !important;
}

/* ==========================================================================
   Custom Contact Page Styling (REFINED & ROBUST)
   ========================================================================== */
.page-contact {
    background-color: #fcfdfe !important;
    font-family: "Mulish", sans-serif !important;
}

.page-contact .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -15px !important;
    margin-left: -15px !important;
}

.page-contact .col-lg-6,
.page-contact .col-md-6,
.page-contact .col-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Info Cards Styling */
.page-contact .contact-info-card {
    display: flex !important;
    flex-direction: row !important;
    /* Force horizontal */
    align-items: center !important;
    background: #ffffff !important;
    padding: 25px !important;
    margin-bottom: 20px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #f0f3f6 !important;
    width: 100% !important;
}

.page-contact .contact-title {
    font-family: 'Montserrat-ExtraBold', sans-serif !important;
}

.page-contact .contact-card-icon {
    width: 52px !important;
    height: 52px !important;
    background: rgba(0, 150, 255, 0.08) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin-right: 20px !important;
}

.page-contact .contact-card-icon i {
    font-size: 20px !important;
    color: #0096ff !important;
}

.page-contact .card-label {
    letter-spacing: 0.5px;
    font-size: 11px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
}

.page-contact .card-value {
    color: #1a2b4b !important;
    font-size: 1.1rem !important;
    margin: 0 !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
}

/* Form Styles */
.page-contact .contact-form-card {
    border: none !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.page-contact .contact-form-card .form-header {
    background: #0d1522 !important;
    padding: 50px 30px 40px !important;
    position: relative;
    text-align: center;
}

.page-contact .form-header .badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 150, 255, 0.2) !important;
    border: 1px solid rgba(0, 150, 255, 0.4) !important;
    color: #0096ff !important;
    padding: 6px 15px !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
    width: auto !important;
}

.page-contact .form-title {
    margin-bottom: 5px !important;
    font-family: 'Montserrat-ExtraBold', sans-serif !important;
    color: #fff !important;
}

.page-contact .form-body {
    padding: 40px !important;
}

.page-contact .form-group {
    margin-bottom: 20px !important;
    width: 100% !important;
}

.page-contact .form-label {
    display: block !important;
    margin-bottom: 8px !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
    color: #1a2b4b !important;
    font-size: 14px !important;
}

.page-contact .form-control,
.page-contact .form-select {
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    padding: 0 20px !important;
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50px !important;
    font-family: 'Mulish', sans-serif !important;
    box-shadow: none !important;
}

.page-contact textarea.form-control {
    height: auto !important;
    padding: 15px 20px !important;
    border-radius: 20px !important;
}

/* Product Choice Badges (CRITICAL FIX) */
.page-contact .product-badge-radio {
    display: inline-block !important;
    position: relative !important;
    margin: 0 8px 10px 0 !important;
    cursor: pointer !important;
}

.page-contact .product-badge-radio input[type="checkbox"],
.page-contact .product-badge-radio input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.page-contact .product-badge-radio span {
    display: flex !important;
    align-items: center !important;
    padding: 10px 20px !important;
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 30px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    transition: all 0.2s ease !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
}

.page-contact .product-badge-radio input:checked+span {
    background: #0096ff !important;
    color: #fff !important;
    border-color: #0096ff !important;
}

/* Submit Button */
.page-contact .btn-primary {
    background: #0096ff !important;
    border: none !important;
    color: #fff !important;
    height: 55px !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    letter-spacing: 1px !important;
}

.page-contact .btn-primary:hover {
    background: #007acc !important;
}

/* Responsive Fixes */
@media (max-width: 767px) {
    .page-contact .form-body {
        padding: 20px !important;
    }

    .page-contact .btn-primary {
        font-size: 14px !important;
    }
}

.lang-box>a {
    background: #fff;
    padding: 4px 7px;
    border-radius: 5px;
    color: #333;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap !important;
    width: auto !important;
}

.lang-box>a i {
    font-size: 12px;
    margin-left: 2px;
}

.lang-box>a:hover {
    background: #fcfcfc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-box>a img {
    width: 20px;
    height: auto;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-top: 10px;
    overflow: hidden;
    z-index: 1001;
    border: 1px solid #eee;
}

.lang-box:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lang-dropdown a:hover {
    background: #f8f9fa;
    color: #d61821;
}

.lang-dropdown a img {
    width: 20px;
}

.mobile-toggle {
    background: #d61821;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    /* Hide by default on desktop */
}

.mm-logo-item {
    background: #fff !important;
    padding: 20px 15px !important;
    text-align: center;
    border-bottom: 1px solid #eee !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.mm-logo-item img {
    max-height: 40px;
    width: auto;
    display: block;
    margin-bottom: 15px;
}

.mm-navbar {
    background: #227fba !important;
    /* Brand Red color for submenu headers */
    border-bottom: none !important;
    height: 50px !important;
}

.mm-navbar .mm-title {
    visibility: visible !important;
    display: block !important;
    color: #fff !important;
    /* White text on red background */
    font-weight: 700 !important;
    font-size: 15px !important;
    text-transform: uppercase;
}

/* Back button chevron style (White arrow) */
.mm-navbar .mm-btn_prev::before {
    border-color: #fff !important;
    width: 10px !important;
    height: 10px !important;
    left: 20px !important;
    transform: rotate(45deg) translateY(-50%) !important;
}

/* Hide navbar on the first panel only to keep the logo/search area clean */
.mm-panel:first-child .mm-navbar {
    display: none !important;
}

/* Add padding to panels that HAVE a navbar (excluding the first) */
.mm-panel:not(:first-child) {
    padding-top: 50px !important;
}

/* Close button style for mmenu */
.mm-navbar .mm-btn:last-child::after {
    border-color: #333 !important;
}

/* Close button style for mmenu */
.mm-navbar .mm-btn:last-child::after {
    border-color: #333 !important;
}

.mm-panel {
    padding-top: 0 !important;
}

.mm-custom-header {
    background: transparent !important;
    padding: 30px 0 25px !important;
    text-align: center !important;
    border-bottom: none !important;
    /* Remove the separator line as requested */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding-top: 0px !important;
}

.mm-custom-header img {
    max-height: 40px;
    width: auto;
    display: block;
    margin-bottom: 25px;
}

.mm-custom-search {
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.mm-custom-search input {
    width: 100%;
    padding: 10px 15px 10px 45px !important;
    /* Icon on the left */
    border-radius: 25px !important;
    /* Very rounded */
    border: 1px solid #ddd !important;
    outline: none;
    font-size: 15px;
    background: #f9f9f9 !important;
    transition: all 0.3s ease;
}

.mm-custom-search input:focus {
    background: #fff !important;
    border-color: #d61821 !important;
    box-shadow: 0 0 8px rgba(214, 24, 33, 0.1) !important;
}

.mm-custom-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    pointer-events: none;
}



/* Hero Section */
/* ==========================================================================
   BOX 1: HERO SECTION
   ========================================================================== */
.hero {
    background: linear-gradient(180deg, #7da5c9 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    /* Change to stretch to let children fill depth */
    position: relative;
    overflow: hidden;
}

.hero-container {
    height: 100vh;
    position: relative;
    width: 100%;
    display: block;
    /* Ensure absolute children are based on container, not grid */
}

.hero-content {
    position: absolute;
    top: 180px;
    left: 20px;
    z-index: 10;
    max-width: 600px;
}

.hero-title {
    font-family: 'Montserrat-ExtraBold';
    font-size: 48px;
    color: #d61821;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #1a3b5d;
    /* Dark blue for better contrast on sky background */
    max-width: 500px;
    margin-bottom: 35px;
    font-weight: 500;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1a3b5d !important;
    /* Changed to dark blue for readability */
    font-weight: 700;
    font-size: 18px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #d61821 !important;
    transform: translateX(5px);
}

.arrow-circle {
    width: 32px;
    height: 32px;
    border: 2px solid #1a3b5d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.hero-image {
    position: absolute;
    bottom: -5px;
    /* Ensure no gap at bottom */
    left: 0;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: flex-end;
    pointer-events: none;
}

.hero-building {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    vertical-align: bottom;
    margin-bottom: 0;
}

.hero-stats {
    position: absolute;
    bottom: 130px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: right;
    z-index: 10;
}

.stat-number {
    display: block;
    font-family: 'Montserrat-ExtraBold';
    font-size: 42px;
    color: #d61821;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: #d61821;
    font-weight: 600;
}

.mm-navbar {
    height: auto !important;
}

/* END BOX 1 */



/* BOX 1.5 removed from here to consolidate below */

/* Experience-related sub-styles removed from here */


/* ==========================================================================
   BOX 1.6: SẢN PHẨM (PRODUCTS)
   ========================================================================== */
.section-products {
    /* background: url('images/banner-ss-02-1-product.png') no-repeat center center;
    background-size: cover; */
    padding: 140px 50px;
    position: relative;
    overflow: hidden;
}

.product-detail-view {
    min-height: auto;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.product-name {
    font-family: 'Montserrat-ExtraBold', sans-serif;
    font-size: 40px;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.3;
    max-width: 100%;
    word-break: break-word;
    white-space: nowrap;
}

/* Custom Bulletproof Layout - RECONFIGURED FOR WIDE IMAGE */
.custom-product-layout {
    display: flex;
    flex-wrap: wrap;
    /* Changed from nowrap to allow stacking */
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.custom-product-left {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    padding-left: 20px;
    z-index: 10;
    order: 1;
    /* Title goes first */
}

.custom-product-center {
    flex: 0 0 100%;
    /* Image takes full width underneath */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    order: 3;
    /* Img goes on the bottom row */
    margin-top: 30px;
    /* Add spacing between header and image */
}

.custom-product-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
    z-index: 10;
    order: 2;
    /* Button goes top right */
}

.detail-img-link {
    display: block;
    width: 100%;
    text-align: center;
}

.detail-img-box {
    position: relative;
    z-index: 2;
}

/* Spotlight effect removed for clean floating look */
.detail-img-box::after {
    display: none;
}

.detail-img {
    max-height: 650px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: darken;
    filter: brightness(1.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatProduct 4s ease-in-out infinite;
}

@keyframes floatProduct {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #d61821;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Montserrat-SemiBold', sans-serif;
    font-size: 14px;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.btn-detail:hover {
    background: #222;
    color: #fff !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn-detail:hover .arrow-circle {
    border-color: #fff;
    transform: scale(1.1);
}

.btn-detail .arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 10px;
    margin-left: 5px;
}

/* Carousel Tabs Logic */
.product-nav-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.product-nav-carousel .item {
    padding: 20px;
    cursor: default;
    transition: 0.3s;
    opacity: 0.5;
    transform: scale(0.9);
    pointer-events: none;
    /* Disable all clicks on items */
}

.product-nav-carousel .item.active {
    opacity: 1;
    transform: scale(1.1);
}

/* Product Carousel Navigation - Restored to match original screenshot */
.product-nav-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
    /* Ensure arrows are above products */
    left: 0;
}

.product-nav-carousel .owl-nav button {
    background: transparent !important;
    border: none !important;
    font-size: 36px !important;
    color: #b5b5b5 !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: auto;
    transition: 0.3s;
    line-height: 1;
}

.product-nav-carousel .owl-nav button:hover {
    color: #333 !important;
    background: transparent !important;
}

.product-nav-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -40px;
}

.product-nav-carousel .owl-nav .owl-next {
    position: absolute;
    right: -40px;
}

/* Ensure container allows arrows to be visible */
.product-nav-wrapper {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}

.product-thumb {
    position: relative;
    background: none;
    border-radius: 12px;
    padding: 15px;
    box-shadow: none;
    text-align: center;
    transition: 0.3s;
    border: 2px solid transparent;
    z-index: 10;
}

.item.active .product-thumb::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: url('images/Ellipse.png') no-repeat center center;
    background-size: contain;
    z-index: 9;
    opacity: 0.8;
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

.product-thumb img {
    position: relative;
    z-index: 2;
    width: auto !important;
    margin: 0 auto;
    object-fit: contain;
}

/* Custom Nav Arrows for Owl */
.product-nav-carousel .owl-nav {
    display: block !important;
}

.product-nav-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-weight: 200 !important;
    color: #333 !important;
    opacity: 0.5;
    transition: 0.3s;
    background: none !important;
}

.product-nav-carousel .owl-nav button:hover {
    opacity: 1;
    color: #000 !important;
}

.product-nav-carousel .owl-nav .owl-prev {
    left: -80px;
}

.product-nav-carousel .owl-nav .owl-next {
    right: -80px;
}

/* ==========================================================================
   BOX 2: CHỨNG NHẬN & GIẢI THƯỞNG (CERTIFICATIONS)
   ========================================================================== */
.section-certs {
    background: url('images/Background.png') no-repeat center bottom;
    /* Anchor house at bottom */
    background-size: cover;
    padding: 150px 15px 80px 15px;
    position: relative;
    border-bottom: 1px solid #eee;
}

/* More balanced overlay to ensure both bg and boxes pop */
.section-certs::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1;
    backdrop-filter: blur(1px);
}

.section-certs .container,
.section-certs .container-fluid {
    position: relative;
    z-index: 2;
    /* Essential for content to be ABOVE the background overlay */
}

.mb-5 {
    margin-bottom: 20px;
}

.cert-title {
    font-family: 'Montserrat-ExtraBold';
    font-size: 32px;
    color: #d61821;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.cert-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 30px;
}


.cert-grid>[class*="col-"] {
    max-width: 100% !important;
    flex: none !important;
    width: 100% !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

.cert-box {
    background: #ffffff;
    /* Solid white to pop */
    padding: 35px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    /* Stronger shadow to stand out */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smoother, more premium transition */
    flex-grow: 1;
    /* Stretch to fill column height */
    width: 100%;
    /* Explicitly enforce width */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    /* Prevent content pushing box width */
}

.cert-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #d61821;
}

.cert-icon img {
    max-height: 60px;
    max-width: 100%;
    /* Critically important for large assets like icon-7-1920...png */
    width: auto;
    object-fit: contain;
    margin-bottom: 25px;
    /* More space between icon and text */
}

.cert-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
    word-wrap: break-word;
}

/* END BOX 2 */


/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background: #f7f7f7;
    padding-top: 80px !important ;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eee;
}

/* Background image for footer */
/*.footer::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: 0;*/
/*    transform: translateY(-50%);*/
/*    width: 1000px;*/
/*    height: 100%;*/
/*    background: url('images/Group-healthone.png') no-repeat right center;*/
/*    background-size: contain;*/
/*    opacity: 0.45;*/
    /* Increased visibility for chìm effect */
/*    z-index: 1;*/
/*    pointer-events: none;*/
/*}*/

.footer-content-wrapper {
    position: relative;
    z-index: 2;
}

.footer-col {
    margin-bottom: 40px;
}

.footer-title {
    font-family: 'Montserrat-ExtraBold';
    font-size: 20px;
    color: #d61821;
    margin-bottom: 30px;
}

.contact-info,
.footer-links,
.recruit-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.contact-info li i {
    color: #333;
    font-size: 16px;
    margin-top: 4px;
}

.footer-links li {
    margin-bottom: 20px;
}

.footer-links li a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.footer-links li a:hover {
    color: #d61821;
    padding-left: 5px;
}

/* Recruitment Box */
.recruitment-box {
    margin: 30px 0;
    border: 1px solid #d61821;
    max-width: 280px;
    border-radius: 4px;
    overflow: hidden;
}

.recruit-header {
    background: #d61821;
    color: #fff;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 16px;
}

.recruit-links {
    background: #fff;
    padding: 10px 0;
}

.recruit-links li a {
    padding: 8px 15px;
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.recruit-links li a:hover {
    background: #f8f8f8;
    color: #d61821;
}

/* Socials */
.social-connect {
    margin-top: 30px;
}

.social-label {
    display: block;
    font-weight: 700;
    color: #d61821;
    margin-bottom: 15px;
}

.social-icons {
    display: flex !important;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none !important;
    transition: 0.3s;
}

.social-btn img {
    width: 20px;
    height: auto;
}

.social-btn.zalo {
    background: #fff;
    border: 1px solid #eee;
}

.social-btn.youtube {
    background: #cc0000;
    color: #fff;
}

.social-btn.facebook {
    background: #3b5998;
    color: #fff;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer Logo Section */
.footer-logo-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px 0 0px 0;
}

.footer-center-logo {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Copyright Section */
.footer-copyright {
    background: #f1f1f1;
    padding: 15px 0;
    border-top: 1px solid #e5e5e5;
}

.copyright-text {
    color: #666;
    font-size: 14px;
}

/* END FOOTER */

/* ==========================================================================
   BOX 1.7: CERAGEM TOÀN CẦU (GLOBAL PRESENCE)
   ========================================================================== */
.section-global {
    background: #0a0a0a url('images/BeautyPlus-Image-Enhancer-1756174010202.jpg') no-repeat center;
    background-size: cover;
    padding: 120px 0 0px 0;
    overflow: visible;
    position: relative;
    z-index: 50;
    /* Ensure on top of certifications section */
    color: #fff;
    min-height: 800px;
    /* Provide enough height for the map content */
}

.global-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.global-title {
    font-family: 'Montserrat-ExtraBold', sans-serif;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: white;
}

.global-subtitle {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 400;
}

.global-map-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 40px;
    /* Reduced to sit closer to map */
}

.map-image-container {
    width: 100%;
    aspect-ratio: 1920 / 840;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.point-korea {
    top: 41%;
    left: 50.8%;
}

.point-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.point-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0;
    animation: pointPulse 2s infinite;
}

@keyframes pointPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.global-stats-bar {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 60px 0px;
    /* Removed horizontal padding to let lines go full width */
    margin: 60px auto -80px auto;
    position: relative;
    z-index: 100;
    color: #333;
    width: 100%;
}

.stat-col {
    border-right: 1px solid #f2f2f2;
}

.stat-col:last-child {
    border-right: none;
}

.stat-box {
    text-align: center;
    padding: 10px 40px;
    /* Horizontal padding moved here */
}

.global-stats-bar .stat-number {
    font-family: 'Montserrat-ExtraBold', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #d61821;
    margin-bottom: 8px;
    display: block;
    line-height: 1;
}

.global-stats-bar .stat-text {
    font-size: 15px;
    line-height: 1.4;
    color: #4a4a4a;
    font-weight: 600;
}

/* Transitions for "Lively" feel */
.stat-box {
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

/* Responsive Reductions */

/* ==========================================================================
   BOX 3: PRINCIPLES & PROMISES SECTION
   ========================================================================== */
.section-principles {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.principles-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.principles-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .section-principles .row>div:first-child .principles-wrapper {
        margin-left: 0;
        margin-right: auto;
    }

    .section-principles .row>div:last-child .principles-wrapper {
        margin-left: auto;
        margin-right: 0;
    }
}

.principles-title {
    font-family: 'Montserrat-ExtraBold', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #d61821;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    line-height: 1.2;
    padding-left: 0;
    margin-bottom: 20px;
}

/* Red vertical line at the very beginning of the title */
.principles-title::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 50px;
    background: #d61821;
    flex-shrink: 0;
}

.principles-title .large-num {
    font-size: 80px;
    color: #d61821;
    line-height: 1;
    font-style: italic;
    margin: 0;
}

.principles-list {
    position: relative;
    padding-left: 30px;
    /* Space for the line and dots */
    margin: 0;
    /* Removed 0 auto to align left */
    max-width: 100%;
    /* Ensure it spans the column */
    overflow: visible;
}

/* Vertical line */
.principles-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #d61821;
    opacity: 0.35;
}

.principles-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 25px;
    position: relative;
    overflow: visible;
}

/* Red dot on the line */
.item-marker {
    position: absolute;
    left: -35.5px;
    /* Aligned with left: 0 of principles-list::before + dot radius */
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #d61821;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 12px rgba(214, 24, 33, 0.6);
    border: 2px solid #fff;
}

.item-number {
    background: #d61821;
    color: #fff;
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 12px 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 65px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.item-text {
    background: #fff;
    border: 2px solid #d61821;
    border-left: none;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 0 50px 50px 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.principles-item:hover .item-text {
    background: #fdf2f2;
    transform: translateX(10px);
    border-color: #b5141b;
}

.principles-item:hover .item-number {
    background: #b5141b;
}

/* Responsive Principles */

/* History Section */
.section-history {
    background:
        url('images/image-25.png') no-repeat left bottom,
        url('images/image-25.png') no-repeat left bottom;
    background-size: auto;
    position: relative;
    color: #333;
    overflow: hidden;
    padding: 50px 0px;
}

.history-title {
    font-family: 'Montserrat-ExtraBold', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #d61821;
    text-transform: uppercase;
    position: relative;
}

/* --- BOX 1.5: FREE EXPERIENCE SECTION --- */
.section-experience {
    padding: 60px 0 80px;
    background-color: #fff;
    text-align: center;
}

.experience-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.experience-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 35px;
    text-transform: uppercase;
}

.experience-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.experience-steps-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.experience-step-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.experience-step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-radius: 50%;
    overflow: hidden;
}

.step-icon {
    max-width: 50px;
    height: auto;
}

.step-name {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.step-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

.experience-footer {
    margin-top: 20px;
}

.btn-experience {
    display: inline-flex;
    align-items: center;
    background-color: #111;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-experience:hover {
    background-color: #333;
    color: #fff;
}

.btn-experience .arrow-circle {
    margin-left: 15px;
    background: #fff;
    color: #111;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

@media (max-width: 768px) {
    .section-experience {
        padding: 50px 0;
    }

    .experience-title {
        font-size: 26px;
    }

    .experience-step-item {
        min-width: 100%;
    }
}

/* --- BOX 1.5: FREE EXPERIENCE SECTION --- */
.section-experience {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
}

.experience-title {
    font-size: 36px;
    font-weight: 800;
    color: #e30613;
    /* Ceragem Red */
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-info-box {
    background-color: #e30613;
    padding: 40px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(227, 6, 19, 0.2);
}

.experience-info-box .box-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.experience-info-box .box-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #fff;
    margin-right: 15px;
    display: inline-block;
}

.experience-info-box .form-group {
    margin-bottom: 25px;
}

.experience-info-box label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

/* Trả lại CSS sạch cho thẻ select gốc (vốn đã bị Select2 ẩn đi) */
.experience-info-box .select2-control,
.experience-info-box select {
    width: 100%;
    height: 45px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 5px !important;
    color: #fff !important;
    padding: 0 15px !important;
    outline: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.experience-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.detail-item i {
    width: 25px;
    font-size: 16px;
    margin-right: 10px;
}

@media (max-width: 991px) {
    .section-experience {
        padding: 60px 0;
        background-image: none;
        background-color: #f9f9f9;
        min-height: auto;
    }

    .experience-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* --- PRODUCT SECTION --- */

/* Timeline Navigation */
.history-timeline-nav-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-track {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(214, 24, 33, 0.3);
}

.years-nav {
    padding-bottom: 15px;
    /* Thêm khoảng trống để ko bị mất chân bóng */
}

.years-nav .item {
    cursor: pointer;
    text-align: center;
    position: relative;
    padding: 0;
    min-height: 100px;
}

.years-nav .item::before {
    content: "";
    position: absolute;
    top: 25px;
    /* Align with track */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 2;
}

.years-nav .item.active::before {
    background: #d61821;
    box-shadow: 0 0 10px rgba(214, 24, 33, 0.4);
    width: 14px;
    height: 14px;
}

.years-nav .item span {
    display: inline-block;
    background: #f0f0f0;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    color: #555;
    transition: all 0.3s;
    position: relative;
    top: 50px;
    /* Pushed further down */
    border: 1px solid #ddd;
}

.years-nav .item.active span {
    background: #d61821;
    color: #fff;
    border: 1px solid #d61821;
    box-shadow: 0 4px 12px rgba(214, 24, 33, 0.2);
}

/* History Slider */
.history-slide {
    padding: 60px 0 120px;
    /* Reduced padding */
    position: relative;
    overflow: visible;
}

.history-slide .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    /* Equal height columns */
}

.history-img-container {
    position: relative;
    padding-left: 15px;
    padding-top: 15px;
    height: 100%;
    /* Fill column height */
}

.history-img-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-left: 5px solid #d61821;
    border-top: 5px solid #d61821;
    z-index: 1;
}

.red-frame {
    display: none;
}

.history-img {
    position: relative;
    z-index: 2;
    border-radius: 80px 0 80px 0;
    /* Bo 2 góc */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
    /* Ensure it fills container height if needed */
    width: 100%;
    object-fit: cover;
}

.history-info-box {
    background: #f9f9f9;
    padding: 60px 50px;
    border-radius: 0 80px 0 80px;
    position: relative;
    height: 100%;
    /* Match height of row/image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -60px;
    z-index: 5;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.06);
}

.history-info-box::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-right: 5px solid #d61821;
    border-bottom: 5px solid #d61821;
    border-radius: 0;
    /* Bo góc vuông */
    z-index: 6;
}

.info-month {
    color: #333;
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 20px;
}

.info-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;

}

/* Large Background Year */
.year-bg {
    position: absolute;
    bottom: 20px;
    /* Closer to text */
    right: 50px;
    font-family: 'Montserrat-Black', sans-serif;
    font-size: 220px;
    /* Smaller */
    font-weight: 1000;
    color: rgba(51, 51, 51, 0.04);
    z-index: 1;
    pointer-events: none;
    line-height: 0.8;
    letter-spacing: -5px;
}

.history-year-tag {
    position: absolute;
    bottom: 20px;
    left: 15px;
    background: #d61821;
    color: #fff;
    padding: 10px 30px;
    font-weight: 800;
    font-size: 24px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(214, 24, 33, 0.3);
    z-index: 10;
}

/* Custom Navigation Buttons */
.history-custom-nav {
    position: absolute;
    bottom: 20px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.btn-history-prev,
.btn-history-next {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-history-prev:hover,
.btn-history-next:hover {
    background: #d61821;
    color: #fff;
    border-color: #d61821;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(214, 24, 33, 0.3);
}

/* ==========================================================================
   BOX 3.5: CEO MESSAGE
   ========================================================================== */
.section-ceo {
    background: url('images/image-25-ceo.png') no-repeat center bottom;
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

.ceo-wrapper {
    background: #f7f7f7;
    border-radius: 15px;
    padding: 30px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin: 0 auto;
}

.ceo-content {
    padding-right: 40px;
}

.ceo-title {
    font-family: 'Montserrat-ExtraBold', sans-serif;
    font-size: 32px;
    color: #d61821;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 25px;
}

.ceo-divider {
    width: 100%;
    height: 2px;
    background: #d61821;
    margin-bottom: 30px;
}

.ceo-text p {
    font-size: 18px;
    line-height: 35px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Montserrat-Regular';
}

.ceo-text .ceo-thank-you {
    font-weight: 700;
    margin-top: 30px;
}

.ceo-text .ceo-name {
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-top: 15px;
}

.ceo-image-box {
    text-align: right;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ceo-image-box img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: auto;
    object-fit: cover;
}

@media (max-width: 991px) {

    /* Cơ chế hiển thị cơ bản cho nút Back to Top */
    .back-to-top {
        position: fixed;
        bottom: 40px;
        right: 20px;
        z-index: 999;
        display: none;
        /* JS sẽ điều khiển hiện/ẩn khi cuộn */
    }

    .back-to-top a {
        display: block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background: #333;
        /* Màu trung tính */
        color: #fff !important;
        border-radius: 4px;
        font-size: 20px;
    }

    .ceo-wrapper {
        padding: 40px 20px;
    }

    .ceo-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ceo-image-box {
        text-align: center;
        justify-content: center;
    }

    .ceo-title {
        font-size: 24px;
    }
}

/* ==========================================================================
   EXPERIENCE PAGE
   ========================================================================== */
section.section-experience-info.py-5.my-5 {
    padding: 50px 0px;
}

.experience-page .main-header,
.category-page .main-header,
.single-page .main-header {
    background: rgb(41 126 181);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.experience-banner {
    width: 100%;
    margin-top: 0;
    /* Align with header if needed */
}

.experience-banner .banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* EXPERIENCE INFO SECTION */
.section-experience-info {
    overflow: hidden;
}

/* ARTISTIC SINGLE IMAGE STYLES */
.experience-composition-wrapper {
    position: relative;
    width: 100%;
    min-height: 450px;
    padding: 40px;
}

.experience-bg-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#d1d1d1 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    z-index: 1;
}

.experience-bg-frame-l {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Vertical Bar with reversed angled top (slants up towards the image) */
.experience-bg-frame-l::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 15px;
    height: 90%;
    background: #d61821;
    clip-path: polygon(0 15px, 100% 0, 100% 100%, 0 100%);
    border-bottom-left-radius: 10px;
}

/* Horizontal Bar with angled right */
.experience-bg-frame-l::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90%;
    height: 15px;
    background: #d61821;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    border-bottom-left-radius: 10px;
}


.main-img-artistic-wrapper {
    position: relative;
    z-index: 5;
    background: #fff;
    padding: 10px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    display: block;
    margin-left: auto;
}

.main-img-artistic {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .experience-composition-wrapper {
        min-height: auto;
        padding: 40px 20px;
    }

    .experience-bg-frame-l {
        width: calc(100% - 20px);
        height: 100%;
    }

    .main-img-artistic-wrapper {
        transform: rotate(0);
        max-width: 100%;
    }
}


.experience-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.info-number {
    font-size: 28px;
    font-weight: 800;
    color: #d61821;
    min-width: 40px;
}

.info-text {
    flex: 1;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.info-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .experience-info-image-container {
        text-align: center;
    }

    .info-item:hover {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   CUSTOMER REVIEWS (VIDEO GALLERY)
   ========================================================================== */
.section-reviews {
    background-image: url('images/banner-ss-02-1-term.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}

.section-reviews .experience-title {
    margin-bottom: 60px;
}

.featured-video-card {
    max-width: 700px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
    margin: 0 auto;
}

.main-thumb-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.main-thumb-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-thumb-wrapper:hover img {
    transform: scale(1.05);
}

.main-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.main-thumb-wrapper:hover .main-play-overlay {
    color: #d61821;
    transform: translate(-50%, -50%) scale(1.1);
}

.main-info-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    z-index: 5;
    padding: 10px 5px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.city-selector-box.mb-4 {
    margin-bottom: 10px;
}

.customer-name {
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 20px;
    color: #444;
}

/* Thumbs Carousel */
.reviews-thumbs-wrapper {
    width: 100%;
    margin: 50px auto 0;
    position: relative;
    padding: 0 10px;
}

.thumb-item {
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.thumb-img-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.thumb-img-box img {
    width: 100%;
    display: block;
}

.thumb-item.active .thumb-img-box,
.thumb-item:hover .thumb-img-box {
    border-color: #d61821;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(214, 24, 33, 0.2);
}

.thumb-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(214, 24, 33, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
}

.thumb-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    color: #333;
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 13px;
    padding: 8px 5px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#reviews-thumbs-carousel .owl-nav {
    position: static;
    margin: 0;
}

#reviews-thumbs-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #d61821 !important;
    transition: all 0.3s ease;
    z-index: 10;
    margin: 0 !important;
}

/* Nút Back to Top Hình Kim Cương */
.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 9999;
    display: none;
    transition: all 0.3s ease;
}

.back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #111;
    /* Nền đen */
    color: #d61821 !important;
    /* Icon màu đỏ */
    border: 3px solid #d61821;
    /* Viền đỏ */
    transform: rotate(45deg);
    /* Xoay 45 độ tạo hình kim cương */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
    /* Bỏ gạch chân */
}

.back-to-top a i {
    transform: rotate(-45deg);
    /* Xoay icon ngược lại để nó thẳng đứng */
    font-size: 24px;
    font-weight: bold;
}

.back-to-top a:hover,
.back-to-top a:focus {
    background: #d61821;
    color: #fff !important;
    border-color: #fff;
    /* Đổi viền sang màu trắng khi hover */
    transform: rotate(45deg) scale(1.1);
    text-decoration: none !important;
}

/* BOX 1.5: FREE EXPERIENCE SECTION */
.section-experience {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.experience-info-box {
    background: #e61f46;
    /* Matching your red background */
    padding: 40px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.experience-info-box .box-title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 30px;
}

.experience-info-box .form-group label {
    color: #fff;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

/* Custom Select2 styling for this box */
.experience-info-box .select2-container--default .select2-selection--single {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 8px !important;
    height: 50px !important;
    outline: none !important;
}

.experience-info-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    line-height: 50px !important;
    padding-left: 15px !important;
}

/* 2. Xử lý triệt để giao diện Select2 - Loại bỏ 2 mũi tên */
.experience-info-box .select2-container--default .select2-selection--single {
    position: relative !important;
}

/* Ẩn TẤT CẢ các thành phần giả và hình nền có thể tạo ra mũi tên đen từ giao diện gốc */
.experience-info-box .select2-selection--single,
.experience-info-box .select2-selection::after,
.experience-info-box .select2-selection::before,
.experience-info-box .select2-container::after,
.experience-info-box .select2-container::before,
.experience-info-box .select2-selection__arrow::after,
.experience-info-box .select2-selection__arrow::before,
.experience-info-box .form-group::after {
    display: none !important;
    content: none !important;
    background-image: none !important;
    /* Xóa bỏ SVG từ Flatsome */
}

/* Trình bày lại container chính vì display: none ở trên sẽ làm mất cả ô chọn */
.experience-info-box .select2-selection--single {
    display: block !important;
}

.experience-info-box .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
    right: 15px !important;
    width: 20px !important;
}

/* Định nghĩa lại duy nhất 1 mũi tên trắng chuẩn bằng thẻ b */
.experience-info-box .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: block !important;
    border-color: #fff transparent transparent transparent !important;
    border-style: solid !important;
    border-width: 6px 5px 0 5px !important;
    height: 0 !important;
    left: 50% !important;
    margin-left: -5px !important;
    margin-top: -3px !important;
    position: absolute !important;
    top: 50% !important;
    width: 0 !important;
    opacity: 1 !important;
}

.experience-info-box .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #fff transparent !important;
    border-width: 0 5px 6px 5px !important;
}

/* Fix for disabled state */
.experience-info-box .select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: rgba(0, 0, 0, 0.1) !important;
    opacity: 0.6;
}

#reviews-thumbs-carousel .owl-nav button.owl-prev {
    left: 0;
}

#reviews-thumbs-carousel .owl-nav button.owl-next {
    right: 0;
}

#reviews-thumbs-carousel .owl-nav button:hover {
    background: #d61821 !important;
    color: #fff !important;
}

@media (max-width: 767px) {
    .section-reviews .experience-title {
        font-size: 28px;
    }

    .main-play-overlay {
        font-size: 50px;
    }

    .customer-name {
        font-size: 16px;
    }
}

/* ========================================================================== 
   FREE EXPERIENCE LOCATIONS 
   ========================================================================== */
.section-locations {
    background-image: url('images/banner-ss-02-1-term.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.locations-header .experience-title {
    margin-bottom: 50px;
}

.locations-list-card {
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 10px 10px;
}

.locations-scroll-area {
    max-height: 480px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar */
.locations-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.locations-scroll-area::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.locations-scroll-area::-webkit-scrollbar-thumb {
    background: #d61821;
    border-radius: 10px;
}

.location-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.location-item:last-child {
    border-bottom: none;
}

.location-item:hover {
    background: #fff8f8;
}

.location-item.active {
    background: #fff0f0;
    border-left-color: #d61821;
}

.loc-name {
    font-family: 'Montserrat-Bold', sans-serif;
    color: #d61821;
    font-size: 18px;
    margin-bottom: 10px;
}

.location-item p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.location-item i {
    width: 20px;
    color: #d61821;
    margin-right: 8px;
}

.map-display-wrapper {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.map-display-wrapper iframe {
    display: block;
    min-height: 580px;
}

/* Select2 Custom Styling for City Selector */
.city-selector-box .select2-container--default .select2-selection--single {
    border: 1px solid #d61821;
    height: 45px;
    line-height: 45px;
    border-radius: 8px;
}

.city-selector-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
    color: #d61821;
    font-weight: 700;
    padding-left: 15px;
}

.city-selector-box .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
}



/* ========================================================================== 
   CERAGEM CENTER SYSTEM GRID 
   ========================================================================== */
.section-center-system {
    background: url('images/image-25-ceo.png') no-repeat center center / cover !important;
    padding: 50px 0;
    position: relative;
}

.city-system-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin-bottom: 15px;
}

.city-system-card:hover {
    box-shadow: 0 15px 35px rgba(214, 24, 33, 0.15);
    border-color: rgba(214, 24, 33, 0.4);
    transform: translateY(-8px);
}

.city-card-inner {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.city-card-inner .city-name {
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 16px;
    color: #333;
    letter-spacing: 0.5px;
}

.city-card-inner i {
    color: #d61821;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.city-system-card:hover .city-card-inner i {
    transform: translateX(5px);
}

.hidden-branches {
    display: none !important;
}

/* Modal High Z-Index & Overlay Fixes (Extreme for B3) */
.modal-backdrop {
    z-index: 2147483646 !important;
    opacity: 0.7 !important;
}

#branchesModal {
    z-index: 2147483647 !important;
    padding-right: 0 !important;
    text-align: center;
}

/* Force header behind when modal is active */
body.modal-open .main-header {
    z-index: 0 !important;
}

#branchesModal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
    /* Adjusts for spacing */
}

#modalBranchesList {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 20px !important;
    scrollbar-width: auto;
    scrollbar-color: #d61821 #f1f1f1;
}

/* Scrollbar styles for Webkit (Chrome, Safari, Edge) */
#modalBranchesList::-webkit-scrollbar {
    width: 10px;
}

#modalBranchesList::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#modalBranchesList::-webkit-scrollbar-thumb {
    background: #d61821;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

#modalBranchesList::-webkit-scrollbar-thumb:hover {
    background: #b5141b;
}

#branchesModal .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    margin: 30px auto;
    width: 90%;
    max-width: 800px;
}

#branchesModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: none;
}

#branchesModal .modal-header {
    border-bottom: none;
}

#branchesModal .close {
    text-shadow: none;
    color: #333;
    transition: all 0.3s ease;
}

#branchesModal .close:hover {
    color: #d61821;
    transform: rotate(90deg);
}

.bg-ceragem {
    background-color: #d61821 !important;
}

.font-montserrat-bold {
    font-family: 'Montserrat-Bold', sans-serif !important;
}

/* Branch Item Cards inside Modal */
.center-list-modal {
    list-style: none;
}

.branch-item-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.branch-item-card:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.branch-item-card:last-child {
    margin-bottom: 0;
}

.branch-modal-title {
    color: #d61821;
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 5px;
}

.branch-modal-info {
    margin-bottom: 6px;
    font-size: 14.5px;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.branch-modal-info i {
    color: #d61821;
    width: 22px;
    margin-top: 4px;
    font-size: 16px;
}

.branch-modal-info strong {
    color: #333;
    margin-right: 5px;
}




.news-highlight-section * {
    box-sizing: border-box;
}

.news-highlight-section {
    padding: 34px 0 56px;
    background: #f5f5f5 url('images/image-54.png') center center / cover no-repeat;
    overflow: hidden;
}

.news-highlight-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.5;
    color: #1f1f1f;
}

.news-highlight-breadcrumb a {
    color: #1f1f1f;
    text-decoration: none;
    transition: color 0.25s ease;
}

.news-highlight-breadcrumb a:hover {
    color: #d91f45;
}

.news-highlight-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.news-highlight-tab {
    border: 0;
    background: transparent;
    color: #9c9c9c;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.news-highlight-tab:hover {
    color: #d91f45;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-highlight-tab.is-active {
    background: #ffffff;
    color: #d91f45;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.news-highlight-card {
    max-width: 1070px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 525px) 1fr;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 16px;
    overflow: hidden;
    min-height: 262px;
}

.news-highlight-media {
    display: block;
    height: 100%;
}

.news-highlight-media img {
    width: 100%;
    height: 100%;
    min-height: 262px;
    object-fit: cover;
    display: block;
}

.news-highlight-content {
    padding: 34px 38px 34px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-highlight-date {
    display: inline-block;
    margin-bottom: 14px;
    color: #4f4f4f;
    font-size: 15px;
    line-height: 1.4;
}

.news-highlight-title {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;
    color: #111111;
}

.news-highlight-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.news-highlight-title a:hover {
    color: #d91f45;
}

.news-highlight-excerpt {
    margin: 0;
    color: #4d4d4d;
    font-size: 17px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.news-grid-section * {
    box-sizing: border-box;
}

.news-grid-section {
    padding: 0 0 80px;
}

.news-grid-title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.news-grid-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.news-grid-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    background: #f4f4f4;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid transparent;
}

.news-grid-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: #ffffff;
    border-color: rgba(217, 31, 69, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.news-grid-thumb {
    display: block;
    overflow: hidden;
    position: relative;
}

.news-grid-thumb img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-grid-card:hover .news-grid-thumb img {
    transform: scale(1.1);
}

.news-grid-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 14px 12px;
}

.news-grid-date {
    display: inline-block;
    margin-bottom: 10px;
    color: #666;
    font-size: 15px;
    line-height: 1.4;
}

.news-grid-card-title {
    margin: 0 0 18px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 500;
    color: #121212;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-grid-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.news-grid-card-title a:hover {
    color: #d91f45;
}

.news-grid-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.news-grid-more {
    color: #1f1f1f;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.25s ease;
}

.news-grid-more:hover {
    color: #d91f45;
}

.news-grid-arrow {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #efefef;
    color: #9a9a9a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

section.news-grid-section {
    padding: 50px 0px;
}

.news-grid-arrow span {
    font-size: 18px;
    line-height: 1;
}

.news-grid-card:hover .news-grid-arrow,
.news-grid-arrow:hover {
    background: #d91f45;
    color: #fff;
}



/* Related Posts Header & View All Link */
.related-posts-header {
    gap: 15px;
    margin-bottom: 2rem !important;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 10px 24px;
    border-radius: 40px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.view-all-link:hover {
    color: #fff !important;
    background: #d61821;
    border-color: #d61821;
    box-shadow: 0 8px 20px rgba(214, 24, 33, 0.3);
    transform: translateY(-3px);
}

.view-all-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(5px);
}



/* ========================================================================== 
   PAGE HEADER BANNER (Centered with Overlay)
   ========================================================================== */
.page-header-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* L?p ph? den nh? */
    z-index: 1;
}

.page-header-banner .container-fluid {
    position: relative;
    z-index: 2;
}

.page-header-banner h2 {
    font-family: 'Montserrat-Bold', sans-serif !important;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.page-header-banner .breadcrumb-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.page-header-banner .breadcrumb-center a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-header-banner .breadcrumb-center a:hover {
    color: #d61821;
}

.page-header-banner .breadcrumb-center span.separator {
    opacity: 0.5;
}



.news-hero-section * {
    box-sizing: border-box;
}

.news-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #d9d9d9 url('images/HINH-1_V4-1920x1280.png') center center / cover no-repeat;
}

.news-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    pointer-events: none;
}

.news-hero-section .container-fluid {
    position: relative;
    z-index: 2;
    width: 100%;
}

.news-hero-content {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

.news-hero-title {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.1;
    font-weight: 700;
}

.news-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}

.news-hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.news-hero-breadcrumb a:hover {
    opacity: 0.8;
}

.news-hero-breadcrumb span[aria-current="page"] {
    opacity: 0.95;
}



.news-detail-section * {
    box-sizing: border-box;
}

.news-detail-section {
    padding: 32px 0 72px;
    background: #ffffff;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 28px;
    align-items: start;
}

.news-detail-main {
    min-width: 0;
}

.news-detail-category {
    margin-bottom: 26px;
}

.news-detail-category a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    color: #e11d48;
    font-size: 18px;
    line-height: 1.4;
    text-decoration: none;
    transition: all 0.25s ease;
}

.news-detail-category a:hover {
    background: #e11d48;
    color: #ffffff;
}

.news-detail-header {
    padding-bottom: 14px;
    border-bottom: 1px solid #bdbdbd;
    margin-bottom: 18px;
}

.news-detail-title {
    margin: 0 0 12px;
    color: #df1f46;
    font-size: clamp(30px, 3.3vw, 52px);
    line-height: 1.15;
    font-weight: 700;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.news-detail-date-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8a8a8a;
}

.news-detail-calendar {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.news-detail-calendar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.news-detail-date {
    font-size: 15px;
    line-height: 1.5;
}

.news-detail-source {
    color: #9f9f9f;
    font-size: 15px;
    line-height: 1.5;
    text-align: right;
}

.news-detail-body {
    color: #111111;
    font-size: 20px;
    line-height: 1.65;
    font-weight: 500;
}

.news-detail-body p {
    margin: 0 0 22px;
}

.news-detail-body a {
    color: #1d33ff;
    text-decoration: none;
}

.news-detail-body a:hover {
    text-decoration: underline;
}

.news-detail-featured-image {
    margin: 0 0 24px;
}

.news-detail-featured-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.news-detail-sidebar {
    min-width: 0;
    position: sticky;
    top: 110px;
    /* Khoảng cách cách Header khi cuộn */
    align-self: start;
    transition: all 0.3s ease;
}

.popular-posts-box {
    background: #f3f3f3;
    border-radius: 10px;
    padding: 18px 12px 16px;
}

.popular-posts-title {
    margin: 0 0 22px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #fbfbfb;
    text-align: center;
    color: #111111;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
}

.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popular-post-item {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.popular-post-thumb {
    display: block;
    overflow: hidden;
}

.popular-post-thumb img {
    width: 100%;
    aspect-ratio: 1.15 / 0.72;
    object-fit: cover;
    display: block;
}

.popular-post-content {
    min-width: 0;
}

.popular-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.popular-post-meta time {
    color: #7b7b7b;
    font-size: 14px;
    line-height: 1.4;
}

.popular-post-cat {
    color: #ff2d55;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
}

.popular-post-cat:hover {
    text-decoration: underline;
}

.popular-post-title {
    margin: 0;
    color: #222222;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 400;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.popular-post-title a:hover {
    color: #df1f46;
}

.product-category-box * {
    box-sizing: border-box;
}

.product-category-box {
    padding: 0;
    background: #ffffff;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

.product-category-title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.product-category-nav {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

.product-category-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.product-category-list::-webkit-scrollbar {
    display: none;
}

.product-category-item {
    flex: 1 1 0%;
    min-width: 120px;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.product-category-link {
    min-height: 164px;
    padding: 22px 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none !important;
    background: #ffffff;
    transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.product-category-link:hover,
.product-category-link:focus {
    text-decoration: none !important;
}

.product-category-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-category-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.product-category-name {
    color: #1f2f46;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
    transition: color 0.25s ease;
}

.product-category-item:hover .product-category-link {
    background: #fafafa;
}

.product-category-item:hover .product-category-name {
    color: #e61f46;
}

.product-category-item.is-active .product-category-link {
    background: #ffffff;
    box-shadow: 0 0 0 1px #ededed inset;
}

.product-category-item.is-active .product-category-name {
    color: #e61f46;
    font-weight: 500;
}

/* Mobile Menu Header & Search Fix */
.mm-custom-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.mm-custom-header img {
    max-width: 160px;
    margin-bottom: 15px;
    display: inline-block;
}

.mm-custom-search {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.mm-custom-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    color: #999;
    font-size: 14px;
    pointer-events: none;
}

.mm-custom-search input {
    width: 100% !important;
    padding: 8px 15px 8px 40px !important;
    border: 1px solid #ddd !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    background: #f9f9f9 !important;
    outline: none !important;
    height: 38px !important;
    margin: 0 !important;
}

/* --- About Us Page --- */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: #f9f9f9;
}

.container-custom {
    max-width: var(--container-max-width, 1630px);
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d61821;
}


.about-hero {
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-breadcrumbs {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.about-breadcrumbs a:hover {
    color: #d61821;
}

.about-breadcrumbs span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.about-intro .about-subtitle {
    color: #d61821;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-intro h2 {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-intro .main-content {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.intro-image-wrapper {
    position: relative;
}

.intro-image-wrapper::before {
    content: \\;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 10px solid #d61821;
    z-index: -1;
}

.intro-img {
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.value-box {
    background: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border-bottom: 5px solid transparent;
}

.value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-bottom-color: #d61821;
}

.value-box.active {
    background: #d61821;
    color: #fff;
}

.value-box.active h3,
.value-box.active p {
    color: #fff;
}

.value-icon {
    font-size: 40px;
    color: #d61821;
    margin-bottom: 25px;
}

.value-box.active .value-icon {
    color: #fff;
}

.value-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-history {
    background: #fff;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: \\;
    position: absolute;
    width: 2px;
    background-color: #eee;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: #d61821;
    border: 4px solid #fff;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(214, 24, 33, 0.2);
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    padding: 30px;
    background-color: #f9f9f9;
    position: relative;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    font-weight: 800;
    color: #d61821;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.timeline-img {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.about-certs .cert-item {
    text-align: center;
    padding: 30px;
    transition: all 0.3s;
}

.cert-icon {
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon img {
    max-height: 100%;
    width: auto;
}

.cert-icon i {
    font-size: 50px;
    color: #d61821;
}

.cert-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cert-item p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 991px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 23px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .section-padding {
        padding: 50px 0;
    }
}

/* Page Hero Banner */
.page-hero {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 80px;
    /* Bù chiều cao cho fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.page-hero .container-fluid {
    position: relative;
    z-index: 2;
}

.page-hero .hero-content .page-title {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.breadcrumb-custom {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: #d61821;
}

.breadcrumb-custom .divider {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
    .page-hero {
        height: 400px;
    }

    .page-hero .hero-content .page-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        height: 320px;
    }

    .page-hero .hero-content .page-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .breadcrumb-custom {
        font-size: 13px;
    }
}

/* ==========================================================================
   EXPERIENCE PAGE
   ========================================================================== */
section.section-experience-info.py-5.my-5 {
    padding: 50px 0px;
}

.experience-banner {
    width: 100%;
    margin-top: 0;
}

.experience-banner .banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* EXPERIENCE INFO SECTION */
.section-experience-info {
    overflow: hidden;
}

/* ARTISTIC SINGLE IMAGE STYLES */
.experience-composition-wrapper {
    position: relative;
    width: 100%;
    min-height: 450px;
    padding: 40px;
}

.experience-bg-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#d1d1d1 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    z-index: 1;
}

.experience-bg-frame-l {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Vertical Bar with reversed angled top (slants up towards the image) */
.experience-bg-frame-l::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 15px;
    height: 90%;
    background: #d61821;
    clip-path: polygon(0 15px, 100% 0, 100% 100%, 0 100%);
    border-bottom-left-radius: 10px;
}

/* Horizontal Bar with angled right */
.experience-bg-frame-l::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90%;
    height: 15px;
    background: #d61821;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    border-bottom-left-radius: 10px;
}


.main-img-artistic-wrapper {
    position: relative;
    z-index: 5;
    background: #fff;
    padding: 10px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    display: block;
    margin-left: auto;
}

.main-img-artistic {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .experience-composition-wrapper {
        min-height: auto;
        padding: 40px 20px;
    }

    .experience-bg-frame-l {
        width: calc(100% - 20px);
        height: 100%;
    }

    .main-img-artistic-wrapper {
        transform: rotate(0);
        max-width: 100%;
    }
}


.experience-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.info-number {
    font-size: 28px;
    font-weight: 800;
    color: #d61821;
    min-width: 40px;
}

.info-text {
    flex: 1;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.info-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .experience-info-image-container {
        text-align: center;
    }

    .info-item:hover {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   CUSTOMER REVIEWS (VIDEO GALLERY)
   ========================================================================== */
.section-reviews {
    background-image: url('images/banner-ss-02-1-term.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}

.section-reviews .experience-title {
    margin-bottom: 60px;
}

.featured-video-card {
    max-width: 700px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
    margin: 0 auto;
}

.main-thumb-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.main-thumb-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-thumb-wrapper:hover img {
    transform: scale(1.05);
}

.main-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.main-thumb-wrapper:hover .main-play-overlay {
    color: #d61821;
    transform: translate(-50%, -50%) scale(1.1);
}

.main-info-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    z-index: 5;
    padding: 10px 5px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.customer-name {
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 20px;
    color: #444;
}

/* Thumbs Carousel */
.reviews-thumbs-wrapper {
    width: 100%;
    margin: 50px auto 0;
    position: relative;
    padding: 0 10px;
}

.thumb-item {
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.thumb-img-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.thumb-img-box img {
    width: 100%;
    display: block;
}

.thumb-item.active .thumb-img-box,
.thumb-item:hover .thumb-img-box {
    border-color: #d61821;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(214, 24, 33, 0.2);
}

.thumb-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(214, 24, 33, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
}

.thumb-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    color: #333;
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 13px;
    padding: 8px 5px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#reviews-thumbs-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #d61821 !important;
    transition: all 0.3s ease;
    z-index: 10;
    margin: 0 !important;
}

#reviews-thumbs-carousel .owl-nav button.owl-prev {
    left: 0;
}

#reviews-thumbs-carousel .owl-nav button.owl-next {
    right: 0;
}

#reviews-thumbs-carousel .owl-nav button:hover {
    background: #d61821 !important;
    color: #fff !important;
}

@media (max-width: 767px) {
    .section-reviews .experience-title {
        font-size: 28px;
    }

    .main-play-overlay {
        font-size: 50px;
    }

    .customer-name {
        font-size: 16px;
    }
}

/* ========================================================================== 
   FREE EXPERIENCE LOCATIONS 
   ========================================================================== */
.section-locations {
    background-image: url('images/banner-ss-02-1-term.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.locations-header .experience-title {
    margin-bottom: 50px;
}

.locations-list-card {
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 10px 10px;
}

.locations-scroll-area {
    max-height: 480px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar */
.locations-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.locations-scroll-area::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.locations-scroll-area::-webkit-scrollbar-thumb {
    background: #d61821;
    border-radius: 10px;
}

.location-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.location-item:hover {
    background: #fff8f8;
}

.location-item.active {
    background: #fff0f0;
    border-left-color: #d61821;
}

.loc-name {
    font-family: 'Montserrat-Bold', sans-serif;
    color: #d61821;
    font-size: 18px;
    margin-bottom: 10px;
}

.location-item p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.location-item i {
    width: 20px;
    color: #d61821;
    margin-right: 8px;
}

.map-display-wrapper {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.map-display-wrapper iframe {
    display: block;
    min-height: 580px;
}

/* Select2 Custom Styling for City Selector */
.city-selector-box .select2-container--default .select2-selection--single {
    border: 1px solid #d61821;
    height: 45px;
    line-height: 45px;
    border-radius: 8px;
}

.city-selector-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
    color: #d61821;
    font-weight: 700;
    padding-left: 15px;
}

.city-selector-box .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
}

/* ========================================================================== 
   CERAGEM CENTER SYSTEM GRID 
   ========================================================================== */
.section-center-system {
    background: url('images/image-25-ceo.png') no-repeat center center / cover !important;
    padding: 50px 0;
    position: relative;
}

.city-system-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin-bottom: 15px;
}

.city-system-card:hover {
    box-shadow: 0 15px 35px rgba(214, 24, 33, 0.15);
    border-color: rgba(214, 24, 33, 0.4);
    transform: translateY(-8px);
}

.city-card-inner {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.city-card-inner .city-name {
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 16px;
    color: #333;
    letter-spacing: 0.5px;
}

.city-card-inner i {
    color: #d61821;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.city-system-card:hover .city-card-inner i {
    transform: translateX(5px);
}

.hidden-branches {
    display: none !important;
}

/* Modal High Z-Index & Overlay Fixes */
.modal-backdrop {
    z-index: 2147483646 !important;
    opacity: 0.7 !important;
}

#branchesModal {
    z-index: 2147483647 !important;
    text-align: center;
}

body.modal-open .main-header {
    z-index: 0 !important;
}

#branchesModal .modal-header {
    padding-bottom: 10px !important;
}

#branchesModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.branch-item-card {
    list-style: none;
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.branch-item-card:last-child {
    border-bottom: none;
}

.branch-modal-title {
    font-family: 'Montserrat-Bold', sans-serif;
    color: #d61821;
    font-size: 18px;
    margin-bottom: 12px;
}

.branch-modal-info {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.branch-modal-info i {
    width: 20px;
    color: #d61821;
}

#branchesModal .close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 50px;
    color: #fff;
    opacity: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
}

button.close span {
    position: relative;
    top: -10px;
}

/* Page Experience Banner Title */
.experience-banner .banner-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.experience-banner .banner-title-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 99;
    /* Increased z-index */
    padding: 0 15px;
}

.banner-title-text {
    font-family: 'Montserrat-ExtraBold', sans-serif;
    font-size: 56px;
    /* Slightly larger */
    color: #d61821;
    /* Changed to brand red for visibility on light background */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
    font-weight: 900;
}

@media (max-width: 991px) {
    .banner-title-text {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .banner-title-text {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .experience-banner .banner-image img {
        min-height: 250px;
        object-fit: cover;
    }
}

/* Fix Select2 dropdown text color */
.select2-container--default .select2-results__option {
    color: #333 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #d61821 !important;
    color: #fff !important;
}

/* ==========================================================================
   PAGINATION STYLING (Square Design)
   ========================================================================== */
.pagination-wrapper {
    margin: 60px 0 40px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.pagination-wrapper ul.page-numbers,
.pagination-wrapper ul.nav-pagination {
    display: flex !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 8px !important;
    justify-content: center !important;
}

.pagination-wrapper ul.page-numbers li {
    margin: 0 !important;
    padding: 0 !important;
}

/* Base item style: Targeting both page-number (singular) and page-numbers (plural) */
.pagination-wrapper .page-number,
.pagination-wrapper .page-numbers {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 10px !important;
    border-radius: 0 !important;
    /* STRICTLY SQUARE as requested */
    background: #fff !important;
    color: #1a3b5d !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
    cursor: pointer;
    line-height: 1 !important;
}

/* Active / Current Page State */
.pagination-wrapper .current,
.pagination-wrapper .page-number.current,
.pagination-wrapper .page-numbers.current,
.pagination-wrapper li span.page-number,
.pagination-wrapper li span.page-numbers {
    background: #d61821 !important;
    color: #fff !important;
    border-color: #d61821 !important;
    cursor: default !important;
    pointer-events: none !important;
}

/* Hover State for Links */
.pagination-wrapper a.page-number:hover,
.pagination-wrapper a.page-numbers:hover,
.pagination-wrapper a.next:hover,
.pagination-wrapper a.prev:hover {
    background: #d61821 !important;
    color: #fff !important;
    border-color: #d61821 !important;
    text-decoration: none !important;
}

/* Next/Prev Arrow styling */
.pagination-wrapper .next,
.pagination-wrapper .prev {
    background: #f9f9f9 !important;
    font-size: 18px !important;
}

/* Dots (...) State */
.pagination-wrapper .dots,
.pagination-wrapper span.dots {
    border: none !important;
    background: transparent !important;
    color: #999 !important;
    cursor: default !important;
    min-width: 30px !important;
}

@media (max-width: 767px) {

    .pagination-wrapper .page-number,
    .pagination-wrapper .page-numbers {
        min-width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
    }
}

/* ==========================================================================
   Custom News Detail Content Lists (ul, ol)
   ========================================================================== */
.news-detail-section .news-detail-main .news-detail-body ul {
    list-style: none !important;
    padding-left: 5px !important;
    margin-bottom: 1.5rem !important;
}

.news-detail-section .news-detail-main .news-detail-body ul li {
    position: relative !important;
    padding-left: 28px !important;
    margin-bottom: 12px !important;
    line-height: 1.7 !important;
    color: #444 !important;
}

.news-detail-section .news-detail-main .news-detail-body ul li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 10px !important;
    width: 8px !important;
    height: 8px !important;
    background-color: #e51a2e !important;
    border-radius: 50% !important;
    box-shadow: 0 0 0 4px rgba(229, 26, 46, 0.1) !important;
}

.news-detail-section .news-detail-main .news-detail-body ol {
    counter-reset: custom-counter !important;
    list-style: none !important;
    padding-left: 5px !important;
    margin-bottom: 1.5rem !important;
}

.news-detail-section .news-detail-main .news-detail-body ol li {
    counter-increment: custom-counter !important;
    position: relative !important;
    padding-left: 35px !important;
    margin-bottom: 15px !important;
    line-height: 1.7 !important;
    color: #444 !important;
}

.news-detail-section .news-detail-main .news-detail-body ol li::before {
    content: counter(custom-counter) !important;
    position: absolute !important;
    left: 0 !important;
    top: 2px !important;
    width: 22px !important;
    height: 22px !important;
    background: #e51a2e !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: bold !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 5px rgba(229, 26, 46, 0.2) !important;
}

.news-detail-layout .news-detail-body ul,
.news-detail-layout .news-detail-body ol {
    margin-left: 20px;
}

/* ==========================================================================
   Custom Contact Page Styling (FINAL REFINED)
   ========================================================================== */
.page-contact {
    background-color: #fcfdfe !important;
    font-family: "Mulish", sans-serif !important;
}

.page-contact .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -15px !important;
    margin-left: -15px !important;
}

.page-contact .col-lg-6,
.page-contact .col-md-6,
.page-contact .col-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100%;
}

@media (min-width: 992px) {
    .page-contact .col-lg-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Info Cards Styling */
.page-contact .contact-info-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    background: #ffffff !important;
    padding: 25px !important;
    margin-bottom: 20px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #f0f3f6 !important;
    width: 100% !important;
}

.page-contact .contact-title {
    font-family: 'Montserrat-ExtraBold', sans-serif !important;
    font-weight: 800 !important;
}

.page-contact .contact-card-icon {
    width: 52px !important;
    height: 52px !important;
    background: rgba(0, 150, 255, 0.08) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin-right: 20px !important;
}

.page-contact .contact-card-icon i {
    font-size: 20px !important;
    color: #0096ff !important;
}

.page-contact .card-label {
    letter-spacing: 0.5px;
    font-size: 11px !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
    font-weight: 700 !important;
}

.page-contact .card-value {
    color: #1a2b4b !important;
    font-size: 1.1rem !important;
    margin: 0 !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
}

/* Form Styles */
.page-contact .contact-form-card {
    border: none !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-radius: 20px !important;
}

.page-contact .form-body {
    padding: 40px !important;
}

.page-contact .form-group {
    margin-bottom: 25px !important;
    width: 100% !important;
}

.page-contact .form-label {
    display: block !important;
    margin-bottom: 8px !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
    color: #1a2b4b !important;
    font-size: 14px !important;
}

.page-contact .form-control,
.page-contact .form-select {
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    padding: 0 20px !important;
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50px !important;
    font-family: 'Mulish', sans-serif !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.page-contact .form-control:focus {
    border-color: #0096ff !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(0, 150, 255, 0.1) !important;
}

.page-contact textarea.form-control {
    height: auto !important;
    padding: 15px 20px !important;
    border-radius: 20px !important;
}

/* Product Choice Badges */
.page-contact .product-badge-radio {
    display: inline-block !important;
    position: relative !important;
    margin: 0 8px 10px 0 !important;
    cursor: pointer !important;
}

.page-contact .product-badge-radio input {
    position: absolute !important;
    opacity: 0 !important;
    display: none !important;
}

.page-contact .product-badge-radio span {
    display: flex !important;
    align-items: center !important;
    padding: 10px 20px !important;
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 30px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    transition: all 0.2s ease !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
}

.page-contact .product-badge-radio span i {
    margin-right: 8px !important;
}

.page-contact .product-badge-radio input:checked+span {
    background: #0096ff !important;
    color: #fff !important;
    border-color: #0096ff !important;
}

/* Submit Button */
.page-contact .btn-primary {
    background: #0096ff !important;
    border: none !important;
    color: #fff !important;
    height: 60px !important;
    font-family: 'Montserrat-Bold', sans-serif !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    letter-spacing: 1px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 10px !important;
    box-shadow: 0 10px 20px rgba(0, 150, 255, 0.2) !important;
}

/* Select2 Custom Styling (FIXED) */
.page-contact .select2-container--default .select2-selection--single {
    height: 50px !important;
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    position: relative !important;
    /* CRITICAL FIX: Ensure children can be positioned absolutely */
}

.page-contact .select2-container--default.select2-container--focus .select2-selection--single,
.page-contact .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #0096ff !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(0, 150, 255, 0.1) !important;
}

.page-contact .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 25px !important;
    padding-right: 60px !important;
    /* Increased padding to make room for X and Arrow */
    color: #1a2b4b !important;
    font-family: 'Mulish', sans-serif !important;
    font-weight: 600 !important;
    line-height: 48px !important;
}

.page-contact .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    right: 15px !important;
    position: absolute !important;
}

.page-contact .select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute !important;
    right: 45px !important;
    /* Position it to the left of the arrow */
    height: 48px !important;
    line-height: 48px !important;
    margin: 0 !important;
    color: #cbd5e1 !important;
}

.page-contact .select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: #ef4444 !important;
}

.page-contact .select2-container--open .select2-dropdown {
    border-radius: 15px !important;
    border-color: #e2e8f0 !important;
    overflow: hidden !important;
    z-index: 999999 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* ==========================================================================
   Trust Commitments & Social Connectivity (PREMIUM STYLING)
   ========================================================================== */
.page-contact .support-commitments {
    margin-top: 3rem !important;
    padding-top: 2rem !important;
    border-top: 2px dashed #e2e8f0 !important;
}

.page-contact .text-navy {
    color: #1a2b4b !important;
    font-size: 1.25rem !important;
    margin-bottom: 2rem !important;
}

.page-contact .trust-item {
    transition: all 0.3s ease !important;
    padding: 10px !important;
}

.page-contact .trust-item:hover {
    transform: translateY(-5px) !important;
}

.page-contact .trust-icon-circle {
    width: 65px !important;
    height: 65px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 15px !important;
    box-shadow: 0 10px 25px rgba(0, 150, 255, 0.1) !important;
    border: 1px solid rgba(0, 150, 255, 0.1) !important;
    color: #0096ff !important;
    font-size: 24px !important;
}

.page-contact .trust-label {
    display: block !important;
    color: #1a2b4b !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

.page-contact .social-connectivity {
    background: #f8fafc !important;
    padding: 30px !important;
    border-radius: 20px !important;
    margin-top: 3rem !important;
}

.page-contact .social-link-item {
    width: 48px !important;
    height: 48px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #64748b !important;
    font-size: 20px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-decoration: none !important;
}

.page-contact .social-link-item:hover {
    transform: translateY(-5px) rotate(8deg) !important;
    color: #ffffff !important;
}

.page-contact .social-link-item.fb:hover {
    background-color: #3b5998 !important;
}

.page-contact .social-link-item.zl:hover {
    background-color: #0068ff !important;
}

.page-contact .social-link-item.yt:hover {
    background-color: #ff0000 !important;
}

.page-contact .social-link-item.ms:hover {
    background-color: #0084ff !important;
}

/* Ensure Zalo image is visible */
.page-contact .social-link-item img {
    width: 24px !important;
    transition: all 0.3s ease !important;
}

.page-contact .social-link-item.zl:hover img {
    filter: brightness(0) invert(1) !important;
}

/* ==========================================================================
   Premium Form Header Styling (MATCHING REFERENCE)
   ========================================================================== */
.page-contact .contact-form-card .form-header {
    background: linear-gradient(135deg, #0d1522 0%, #1a2b4b 100%) !important;
    padding: 60px 30px 45px !important;
    position: relative;
    border-bottom: 2px solid rgba(0, 150, 255, 0.3) !important;
}

.page-contact .premium-badge {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    padding: 6px 20px !important;
    border-radius: 50px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.page-contact .form-title {
    color: #fff !important;
    font-family: 'Montserrat-ExtraBold', sans-serif !important;
    font-size: 2.1rem !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
}

.page-contact .form-subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
    font-family: 'Mulish', sans-serif !important;
    max-width: 85% !important;
    margin: 0 auto !important;
    font-size: 15px;
    line-height: 25px;
}

/* ==========================================================================
   Premium Form Header Styling (MINIMALIST REFINED)
   ========================================================================== */
.page-contact .contact-form-card .form-header {
    background: #ffffff !important;
    padding: 50px 30px 20px !important;
    position: relative;
    border-bottom: none !important;
}

.page-contact .premium-badge {
    display: inline-flex !important;
    align-items: center !important;
    background: #e0f2fe !important;
    border: 1px solid #bae6fd !important;
    color: #0369a1 !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.page-contact .form-title {
    color: #1a2b4b !important;
    font-family: 'Montserrat-ExtraBold', sans-serif !important;
    font-size: 2rem !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
}

.page-contact .form-subtitle {
    color: #64748b !important;
    font-family: 'Mulish', sans-serif !important;
    max-width: 90% !important;
    margin: 0 auto !important;
}

.page-contact .form-body {
    padding-top: 10px !important;
}

/* ==========================================================================
   Restore & Upgrade Info Cards Hover Effects
   ========================================================================== */
.page-contact .contact-info-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.page-contact .contact-info-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 150, 255, 0.12) !important;
    border-color: rgba(0, 150, 255, 0.4) !important;
    background-color: #ffffff !important;
}

.page-contact .contact-info-card .contact-card-icon {
    transition: all 0.3s ease !important;
}

.page-contact .contact-info-card:hover .contact-card-icon {
    background: #0096ff !important;
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 4px 15px rgba(0, 150, 255, 0.3) !important;
}

.page-contact .contact-info-card:hover .contact-card-icon i {
    color: #ffffff !important;
}

.page-contact .contact-info-card:hover .card-value {
    color: #0096ff !important;
}

/* ==========================================================================
   Contact FAQ Section Styling
   ========================================================================== */
.page-contact .contact-faq-section {
    padding-bottom: 80px !important;
}

.page-contact .faq-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
}

.page-contact .badge-line {
    width: 40px !important;
    height: 2px !important;
    background: #0096ff !important;
    display: inline-block !important;
}

.page-contact .badge-text {
    font-size: 13px !important;
    color: #0096ff !important;
    letter-spacing: 1.5px !important;
}

.page-contact .faq-title {
    color: #1a2b4b !important;
    letter-spacing: -1px !important;
}

.page-contact .faq-card {
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border: 1px solid #f0f3f6 !important;
    position: relative !important;
    background: #ffffff !important;
}

.page-contact .faq-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 150, 255, 0.08) !important;
    border-color: rgba(0, 150, 255, 0.2) !important;
}

.page-contact .faq-card.active {
    border-color: #0096ff !important;
    box-shadow: 0 15px 35px rgba(0, 150, 255, 0.08) !important;
}

.page-contact .faq-icon-toggle {
    width: 32px !important;
    height: 32px !important;
    background: #f8fafc !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #0096ff !important;
    font-size: 12px !important;
    transition: all 0.4s ease !important;
}

.page-contact .faq-card.active .faq-icon-toggle {
    background: #0096ff !important;
    color: #fff !important;
    transform: rotate(180deg) !important;
}

.page-contact .faq-question h4 {
    transition: color 0.3s ease !important;
}

.page-contact .faq-card.active .faq-question h4 {
    color: #0096ff !important;
}


.page-contact .cursor-pointer {
    cursor: pointer !important;
}

.page-contact .border-faint {
    border-color: #f1f5f9 !important;
}

/* ==========================================================================
   Contact FAQ - Standalone High-Priority Styling
   ========================================================================== */
.page-contact .contact-faq-section .faq-card {
    display: block !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid #edf2f7 !important;
    margin-bottom: 20px !important;
    padding: 25px 30px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.page-contact .contact-faq-section .faq-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(0, 150, 255, 0.1) !important;
    border-color: rgba(0, 150, 255, 0.3) !important;
}

.page-contact .contact-faq-section .faq-question {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.page-contact .contact-faq-section .faq-question h4 {
    margin: 0 !important;
    font-size: 16px !important;
    color: #1a2b4b !important;
    flex: 1 !important;
    padding-right: 20px !important;
}

.page-contact .contact-faq-section .faq-icon-toggle {
    flex-shrink: 0 !important;
    width: 32px !important;
    height: 32px !important;
    background: #f1f5f9 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #0096ff !important;
}

.page-contact .contact-faq-section .faq-card.active {
    border-color: #0096ff !important;
    background: #ffffff !important;
}

.page-contact .contact-faq-section .faq-card.active .faq-icon-toggle {
    background: #0096ff !important;
    color: #ffffff !important;
}

.page-contact .contact-faq-section .faq-answer {
    padding-top: 15px !important;
    margin-top: 15px !important;
    border-top: 1px solid #f1f5f9 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #64748b !important;
}

/* ==========================================================================
   Contact FAQ - Full Width structural updates
   ========================================================================== */
.contact-faq-full-width {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 80px 0 !important;
    background-color: #fcfdfe !important;
    /* Màu nền nhẹ mặc định */
}

.page-contact .contact-faq-full-width .faq-card {
    display: block !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid #edf2f7 !important;
    margin-bottom: 20px !important;
    padding: 25px 30px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.page-contact .contact-faq-full-width .faq-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(0, 150, 255, 0.1) !important;
    border-color: rgba(0, 150, 255, 0.3) !important;
}

.page-contact .contact-faq-full-width .faq-question {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.page-contact .contact-faq-full-width .faq-question h4 {
    margin: 0 !important;
    font-size: 16px !important;
    color: #1a2b4b !important;
    flex: 1 !important;
    padding-right: 20px !important;
}

.page-contact .contact-faq-full-width .faq-icon-toggle {
    flex-shrink: 0 !important;
    width: 32px !important;
    height: 32px !important;
    background: #f1f5f9 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #0096ff !important;
    transition: all 0.3s ease !important;
}

.page-contact .contact-faq-full-width .faq-card.active .faq-icon-toggle {
    background: #0096ff !important;
    color: #ffffff !important;
    transform: rotate(180deg) !important;
}

/* ==========================================================================
   Main Contact Section (Upper) - Full Width updates
   ========================================================================== */
.contact-main-upper {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 60px 0 !important;
    background-color: #ffffff !important;
    /* Mặc định là trắng */
}

/* Đảm bảo bóng đổ của Card vẫn đẹp trên nền ảnh sau này */
.page-contact .contact-form-card,
.page-contact .contact-info-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
    backdrop-filter: blur(10px);
    /* Hiệu ứng kính mờ nhẹ nếu sếp dùng ảnh nền */
    background: rgba(255, 255, 255, 0.95) !important;
}

/* ==========================================================================
   Refining FAQ Inner Content Aesthetic
   ========================================================================== */
.page-contact .contact-faq-full-width .faq-card {
    padding: 30px 40px !important;
    /* Tăng padding rộng rãi hơn */
    border-radius: 24px !important;
    /* Bo góc tròn hơn chút nữa */
}

.page-contact .contact-faq-full-width .faq-question h4 {
    font-size: 18px !important;
    color: #1a2b4b !important;
    /* Navy sâu sang trọng */
    line-height: 1.4 !important;
}

.page-contact .contact-faq-full-width .faq-card.active .faq-question h4 {
    color: #0084ff !important;
    /* Màu xanh nhấn khi đang mở */
}

.page-contact .contact-faq-full-width .faq-answer {
    margin-top: 25px !important;
    padding-top: 25px !important;
    border-top: 1px solid #f0f4f8 !important;
}

.page-contact .contact-faq-full-width .faq-answer .pt-2 {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #475569 !important;
    /* Màu xám slate hiện đại, dễ đọc */
    font-weight: 400 !important;
}

/* Hiệu ứng bóng đổ khi đang mở */
.page-contact .contact-faq-full-width .faq-card.active {
    box-shadow: 0 20px 50px rgba(0, 132, 255, 0.12) !important;
    border-color: rgba(0, 132, 255, 0.2) !important;
    transform: scale(1.01) !important;
    /* Phóng to cực nhẹ để tạo điểm nhấn */
}

/* Tinh chỉnh Icon cho đồng bộ */
.page-contact .contact-faq-full-width .faq-icon-toggle {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
}

/* ==========================================================================
   Homepage Style Headings for Contact Page
   ========================================================================== */
.page-contact .contact-title,
.page-contact .faq-title {
    font-family: 'Montserrat-ExtraBold', sans-serif !important;
    font-size: 3.5rem !important;
    /* To hơn, đẳng cấp hơn */
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: -2px !important;
    /* Tạo cảm giác hiện đại, cô đọng */
    color: #1a2b4b !important;
    margin-bottom: 30px !important;
    text-transform: none !important;
    /* Giữ nguyên dạng chữ thường-hoa để dễ đọc */
}

@media (max-width: 767px) {

    .page-contact .contact-title,
    .page-contact .faq-title {
        font-size: 2.2rem !important;
        letter-spacing: -1px !important;
    }
}

/* Đảm bảo Badge tiêu đề FAQ cũng cân đối lại */
.page-contact .faq-badge {
    margin-bottom: 15px !important;
}

.page-contact .faq-desc,
.page-contact .contact-desc {
    font-size: 15px;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.6 !important;
}

/* Riêng phần contact-desc ở cột trái thì không căn giữa */
.page-contact .contact-info-header .contact-desc {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ==========================================================================
   Finishing touches for Background support
   ========================================================================== */
.contact-main-upper,
.contact-faq-full-width {
    background-size: cover !important;
    background-position: center !important;
    background-attachment: scroll !important;
    /* Có thể đổi thành fixed nếu sếp thích hiệu ứng Parallax */
}

/* Thêm lớp phủ mờ nhẹ để đảm bảo chữ luôn đọc được trên mọi loại ảnh */
.contact-main-upper::before,
.contact-faq-full-width::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    /* Lớp phủ trắng mờ 40% */
    z-index: 1;
}

.contact-main-upper>div,
.contact-faq-full-width>div {
    position: relative;
    z-index: 2;
    /* Đảm bảo nội dung nằm trên lớp phủ */
}

/* Fix: Remove underline on hover for back-to-top and back-to-home buttons */
.back-to-top a:hover,
.btn-back-home:hover {
    text-decoration: none !important;
}

/* --- (VNTECH) Full Width Template Styles --- */
.page-full-width {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 50vh;
}

.page-full-width .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

/* --- (VNTECH) Product Card Premium Styles --- */
.product-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.product-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(214, 24, 33, 0.12);
    border-color: rgba(214, 24, 33, 0.2);
}

.product-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #fdfdfd;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-premium:hover .product-card-media img {
    transform: scale(1.1);
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(214, 24, 33, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-overlay span {
    background: rgba(255, 255, 255, 0.9);
    color: #d61821;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.product-card-premium:hover .product-card-overlay {
    opacity: 1;
}

.product-card-premium:hover .product-card-overlay span {
    transform: translateY(0);
}

.product-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card-title a {
    color: #333;
    text-decoration: none !important;
}

.product-card-premium:hover .product-card-title a {
    color: #d61821;
}

.product-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f9f9f9;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 13px;
    color: #d61821;
    text-decoration: none !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.product-card-link i {
    font-size: 18px;
}

.product-card-premium:hover .product-card-link {
    gap: 12px;
}

/* --- (VNTECH) Taxonomy Banner Overrides --- */
.taxonomy-banner .banner-image {
    max-height: 450px;
    overflow: hidden;
    position: relative;
}

.taxonomy-banner .banner-image img {
    height: 450px !important;
    object-fit: cover !important;
}

/* --- (VNTECH) Stats Overlay for Banner --- */
.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.4) 100%),
        radial-gradient(circle at 20% 50%, rgba(49, 130, 206, 0.15) 0%, transparent 50%);
    z-index: 1;
    opacity: 0.85;
    /* Increased opacity for depth */
    pointer-events: none;
}

.banner-title-text {
    font-size: 68px;
    font-weight: 800;
    color: #ffffff !important;
    /* Changed from red to white */
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.news-hero-breadcrumb,
.news-hero-breadcrumb p,
.news-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    text-transform: none;
}

@media (max-width: 768px) {

    .taxonomy-banner .banner-image,
    .taxonomy-banner .banner-image img {
        height: 300px !important;
        max-height: 300px;
    }
}

/* --- (VNTECH) Stats Overlay for Banner --- */
.stats-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, #0a192f 90%),
        linear-gradient(to bottom, #0a192f 0%, transparent 15%, transparent 85%, #0a192f 100%);
    z-index: 1;
    opacity: 0.4;
    /* Phủ nhẹ như yêu cầu */
    pointer-events: none;
}

/* --- (VNTECH) Ultra-Premium Product Card v4 (Pixel Perfect) --- */
.product-card-premium-v2,
.product-card-premium-v2 *,
.product-grid-section * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.product-card-premium-v2 {
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 30px 30px !important;
    /* Only round the bottom corners */
    overflow: hidden;
}

.product-card-premium-v2:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(10, 25, 47, 0.1) !important;
    border-color: rgba(10, 25, 47, 0.06);
}

.product-card-media-v2 {
    position: relative;
    overflow: hidden;
    background: #fdfdfd;
    border-radius: 0;
    /* Make corners square */
}

.product-card-media-v2 img {
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: initial !important;
    /* Force original aspect ratio */
}

.product-card-premium-v2:hover .product-card-media-v2 img {
    transform: scale(1.05);
}

/* TOP TAG (PREMIUM / BESTSELLER / NEW) */
.product-top-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    width: fit-content;
    /* Fixed: Prevents stretching */
    background: #4a5568;
    color: #fff;
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    /* Set higher than badges */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1;
}

.product-top-tag.tag-premium {
    background: #006837;
    /* Forest Green */
    box-shadow: 0 4px 15px rgba(0, 104, 55, 0.3);
}

.product-top-tag.tag-bestseller {
    background: #1e40af;
    /* Royal Blue */
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.product-top-tag.tag-new {
    background: #7c3aed;
    /* Vibrant Purple */
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.product-top-tag:hover {
    transform: scale(1.05);
}

.product-badges-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 3;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
}

.product-badge-item {
    background: rgba(46, 156, 202, 0.9);
    /* Vibrant Blue #2e9cca */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border: none;
    box-shadow: 0 4px 10px rgba(46, 156, 202, 0.2);
}

.product-card-body-v2 {
    padding: 30px 25px !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category-label {
    color: #006837;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-title-v2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.product-title-v2 a {
    color: #0a192f;
    text-decoration: none;
    transition: color 0.3s;
}

.product-title-v2 a:hover {
    color: #3182ce;
}

.product-summary-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 25px;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px !important;
}

.product-features-list li {
    position: relative;
    padding: 6px 0 6px 17px;
    /* Reduced from 14px */
    color: #475569;
    font-size: 15px;
    font-weight: 400;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.product-features-list li:hover {
    padding-left: 32px;
    color: #0a192f;
}

.product-features-list li:last-child {
    border-bottom: none;
}

.product-features-list li::before {
    content: "\f111";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 12px;
    /* Adjusted from 20px */
    color: #3182ce;
    font-size: 7px;
}

.product-specs-box {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 24px !important;
    border-radius: 15px;
    margin-bottom: 30px;
}

.product-specs-box .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
}

.product-specs-box .row>.col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

.spec-item label {
    display: block;
    font-size: 9px;
    color: #94a3af;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
}

.spec-item strong {
    display: block;
    font-size: 16px;
    color: #0a192f;
    font-weight: 700;
}

.product-card-footer-v2 {
    margin-top: auto;
    padding-top: 25px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-end;
    /* Align bottom */
    justify-content: space-between;
}

.price-section {
    flex: 1;
    min-width: 0;
}

.product-price-value {
    color: #0a192f;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
}

.currency-symbol {
    font-size: 16px;
    font-weight: 500;
    margin-left: 2px;
}

.price-contact-text {
    color: #3182ce;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
}

.price-notes-wrapper .price-note {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-premium-blue,
.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
    /* Fixed: Remove underline */
    white-space: nowrap;
}

.btn-premium-blue {
    background: #3182ce;
    /* Vibrant Logo Blue */
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.2);
}

.btn-premium-blue:hover {
    background: #2a69ac;
    /* Darker blue on hover */
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3);
}

.btn-premium-outline {
    background: #fff;
    color: #0a192f !important;
    border: 1px solid #e2e8f0;
}

.btn-premium-outline:hover {
    background: #0a192f;
    /* Fixed: Change color on hover */
    color: #fff !important;
    border-color: #0a192f;
    text-decoration: none !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(10, 25, 47, 0.2);
}

@media (max-width: 991px) {
    .product-card-media-v2 img {
        height: auto;
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .product-title-v2 {
        font-size: 24px;
    }

    .product-card-body-v2 {
        padding: 20px !important;
    }
}

@media (max-width: 576px) {
    .product-card-premium-v2 {
        border-radius: 20px !important;
    }

    .product-card-media-v2 {
        border-radius: 20px 20px 0 0;
    }

    .product-card-footer-v2 {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px;
    }

    .button-section {
        width: 100%;
    }

    .btn-premium-blue,
    .btn-premium-outline {
        width: 100%;
        padding: 12px 20px;
    }

    .product-specs-box .row>div {
        width: 100% !important;
        border-left: none !important;
        border-right: none !important;
        /* Fixed: Remove right border on mobile */
        padding-left: 0 !important;
        padding-right: 0 !important;
        /* Fixed: Remove right padding on mobile */
        margin-bottom: 15px;
    }

    .product-specs-box .row>div:last-child {
        margin-bottom: 0;
    }

    .product-price-value {
        font-size: 24px;
    }
}

/* --- (VNTECH) Taxonomy Description Styling --- */
.taxonomy-description-v2 {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    font-weight: 400;
    margin: 40px 0px;
    padding: 0px 15px;
}

.taxonomy-description-v2 p {
    margin-bottom: 15px;
}

.taxonomy-description-v2 p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .taxonomy-description-v2 {
        font-size: 15px;
        padding: 0 15px;
    }
}

/* Remove focus outline from tags */
.news-detail-tags a.btn:focus,
.news-detail-tags a.btn:active,
.news-detail-tags a:focus,
.news-detail-tags a:active {
    outline: none !important;
    box-shadow: none !important;
}

/*css call mobile*/
#button-contact-vr {
    position: fixed;
    bottom: 0;
    z-index: 99999;
}

/*phone*/
#button-contact-vr .button-contact {
    position: relative;
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, 0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

.phone-vr-img-circle a {
    display: block;
    line-height: 37px;
}

.phone-vr-img-circle img {
    max-height: 25px;
    max-width: 27px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

.phone-bar a {
    position: fixed;
    bottom: 25px;
    left: 30px;
    z-index: -1;
    color: #fff;
    font-size: 16px;
    padding: 8px 15px 7px 50px;
    border-radius: 100px;
    white-space: nowrap;
}

.phone-bar a:hover {
    opacity: 0.8;
    color: #fff;
}

@media(max-width: 736px) {
    .phone-bar {
        display: none;
    }
}

#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196F3;
    background-color: rgba(33, 150, 243, 0.7);
}

#zalo-vr .phone-vr-img-circle {
    background-color: #2196F3;
}

#viber-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #714497;
    background-color: rgba(113, 68, 151, 0.8);
}

#viber-vr .phone-vr-img-circle {
    background-color: #714497;
}

#contact-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196F3;
    background-color: rgba(33, 150, 243, 0.7);
}

#contact-vr .phone-vr-img-circle {
    background-color: #2196F3;
}


/*css all in one*/
#gom-all-in-one #phone-vr {
    transition: 0.7s all;
    -moz-transition: 0.7s all;
    -webkit-transition: 0.7s all;
}

#gom-all-in-one #zalo-vr {
    transition: 1s all;
    -moz-transition: 1s all;
    -webkit-transition: 1s all;
}

#gom-all-in-one #viber-vr {
    transition: 1.3s all;
    -moz-transition: 1.3s all;
    -webkit-transition: 1.3s all;
}

#gom-all-in-one #contact-vr {
    transition: 1.6s all;
    -moz-transition: 1.6s all;
    -webkit-transition: 1.6s all;
}

#button-contact-vr.active #gom-all-in-one .button-contact {
    margin-left: -100%;
}

#all-in-one-vr .phone-bar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    color: #fff;
    padding: 5px 15px 5px 48px;
    border-radius: 50px;
    margin-left: -64px;
    width: max-content;
    cursor: pointer;
}

.product-tabs-nav-bar .nav-tab-title {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    white-space: normal !important;
    transition: all 0.3s ease;
}
