:root {
    --brand: #b63a19;
    --brand-dark: #6a2f1a;
    --brand-light: #f1a72c;
    --text: #4a3126;
    --soft: #fff4e6;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

.section-space {
    padding: 80px 0;
}

.box-home-1 {
    background: url('/sites/thienlongorder/home/img/box-home-1-bg.webp') center top / cover no-repeat;
}

.ecosystem.box-home-2 {
    background: linear-gradient(180deg, rgba(13, 45, 96, .28) 0%, rgba(13, 45, 96, .18) 100%),
        url('/sites/thienlongorder/home/img/box-home-2-bg.webp') center center / cover no-repeat;
}

.why.box-home-3 {
    background: linear-gradient(180deg, rgba(8, 43, 99, .62) 0%, rgba(7, 33, 79, .68) 100%),
        url('/sites/thienlongorder/home/img/box-home-3-bg.webp') center center / cover no-repeat;
}

.box-home-8-section {
    background: linear-gradient(180deg, rgba(255, 244, 230, .78), rgba(255, 244, 230, .78)),
        url('/sites/thienlongorder/home/img/home-box-8-bg.webp') center center / cover no-repeat;
}

.topbar {
    font-size: 12px;
    background: #fff4e8;
    border-bottom: 1px solid #f4dfc7;
}

.navbar {
    border-bottom: 1px solid #f1ddca;
    box-shadow: 0 8px 20px rgba(125, 62, 28, .08);
}

.navbar-brand {
    font-weight: 900;
    color: var(--brand);
    letter-spacing: .4px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-right: 18px;
    line-height: 1;
    flex-shrink: 0;
    height: 60px;
    width: 200px;
    overflow: hidden;
}

.navbar-brand img {
    height: 100%;
    width: 100%;
    display: block;
    max-width: 100%;
    object-fit: cover;
    object-position: left center;
}

.navbar-nav .nav-link {
    color: #6f3f2b;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding: 10px 12px !important;
    border-radius: 999px;
    transition: color .25s ease, transform .25s ease, background-color .25s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-light), var(--brand));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--brand);
    background: rgba(241, 167, 44, .18);
    transform: translateY(-1px);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link.active {
    color: var(--brand);
    background: rgba(241, 167, 44, .24);
}

.navbar .dropdown-menu {
    border: 1px solid #f2dfc9;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(122, 53, 31, .12);
    padding: 8px;
    min-width: 320px;
}

.navbar .dropdown-item {
    border-radius: 8px;
    color: #6f3f2b;
    font-weight: 500;
    padding: 8px 10px;
    white-space: normal;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(241, 167, 44, .18);
    color: var(--brand);
}

.navbar .dropdown-item.active {
    background: linear-gradient(135deg, #b63a19, #d4562a);
    color: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    margin: 10px 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(4, 22, 56, .25), rgba(4, 22, 56, .25)),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=2200&q=80') center/cover no-repeat;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.1s ease;
    z-index: 1;
}

.banner-video.is-active {
    opacity: 1;
}

.hero-caption {
    position: absolute;
    z-index: 3;
    left: clamp(16px, 5vw, 72px);
    top: clamp(16px, 5vh, 56px);
    max-width: min(760px, calc(100% - 32px));
}

.hero-caption h1 {
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 3.6vw, 3rem);
    line-height: 1.2;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: .4px;
    text-shadow: 0 6px 22px rgba(0, 0, 0, .38);
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(15, 58, 126, .52), rgba(182, 58, 25, .42));
    backdrop-filter: blur(2px);
}

.hero-caption h1 .hero-title-sub {
    display: inline-block;
    margin-top: 6px;
    font-size: .68em;
    font-weight: 800;
    letter-spacing: .2px;
    text-transform: none;
}

.hero-caption p {
    margin: 0;
    display: inline-block;
    color: #fff;
    font-weight: 700;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    line-height: 1.35;
    text-shadow: 0 4px 14px rgba(0, 0, 0, .35);
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(120deg, rgba(182, 58, 25, .52), rgba(15, 58, 126, .38));
}

.hero-cta-row {
    position: absolute;
    z-index: 3;
    left: clamp(16px, 5vw, 72px);
    bottom: clamp(18px, 6vh, 54px);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-1px);
}

.hero-cta-primary {
    background: linear-gradient(120deg, #f7b64c, #e88929);
    color: #4f2715;
    box-shadow: 0 10px 24px rgba(231, 137, 41, .35);
}

.hero-cta-primary:hover {
    color: #4f2715;
    background: linear-gradient(120deg, #ffc561, #ee9636);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, .9);
    color: #7b2f18;
    border: 1px solid rgba(255, 255, 255, .95);
    box-shadow: 0 10px 24px rgba(9, 37, 84, .18);
}

.hero-cta-secondary:hover {
    color: #7b2f18;
    background: #fff;
}

.hero-cta-tool {
    background: rgba(15, 58, 126, .88);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 10px 24px rgba(9, 37, 84, .28);
}

.hero-cta-tool:hover {
    color: #fff;
    background: rgba(15, 58, 126, 1);
}

.hero-extension-link {
    position: absolute;
    z-index: 3;
    right: clamp(16px, 5vw, 72px);
    bottom: clamp(18px, 6vh, 54px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    background: rgba(15, 58, 126, .9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow: 0 10px 24px rgba(9, 37, 84, .3);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.hero-extension-link:hover {
    color: #fff;
    background: rgba(15, 58, 126, 1);
    transform: translateY(-1px);
}

.hero-extension-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-extension-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.section-title {
    color: #7b2f18;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 900;
    margin-bottom: 14px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #755242;
}

.about-photo {
    height: 170px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15, 58, 126, .1);
}

.metrics {
    background: #fff0de;
    border-radius: 18px;
}

.metric-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #cf4b1a;
    line-height: 1;
}

.metric-label {
    color: #7d5a48;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
}

.ecosystem {
    position: relative;
    overflow: hidden;
}

.ecosystem::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(123, 47, 24, .22), rgba(123, 47, 24, 0));
    pointer-events: none;
}

.service-card {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(127, 58, 23, .18);
}

.service-card img {
    height: 250px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 18px;
}

.service-card .title {
    font-weight: 800;
    color: #7b2f18;
}

.service-card a {
    color: #b63a19;
}

.why {
    color: #fff;
}

.why-pill {
    background: rgba(255, 225, 186, .18);
    border: 1px solid rgba(255, 224, 176, .42);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.why-center {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto;
    background: radial-gradient(circle at 30% 30%, #fff7ea, #f3d2ab);
    color: #8c321a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 0 0 14px rgba(255, 214, 148, .2);
    overflow: hidden;
    padding: 0;
}

.why-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.partner-band {
    background: #082a62;
    color: #fff;
}

.logo-chip {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f2dfc9;
    padding: 10px;
    text-align: center;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #7a4d38;
    font-size: 14px;
}

.logo-chip img {
    max-height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.testimonials {
    background: linear-gradient(180deg, #ffe3c4 0%, #cf5a21 100%);
    position: relative;
}

.quote-card {
    border: 0;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(134, 61, 26, .2);
    min-height: 170px;
}

.quote-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.quote-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #f1a72c, #b63a19);
    box-shadow: 0 6px 14px rgba(152, 65, 24, .32);
}

.quote-name {
    color: #7e4c37;
    font-size: 13px;
    font-weight: 600;
}

.quote-mark {
    color: #f2b14b;
    font-size: 24px;
    line-height: 1;
}

.testimonial-visual {
    margin-top: 26px;
    text-align: center;
}

.testimonial-visual img {
    max-width: 100%;
    height: auto;
}

.news-wrap {
    background: #fff3e5;
}

.news-main,
.news-side {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f2e0cd;
}

.news-side {
    padding: 14px;
}

.news-item {
    border-bottom: 1px solid #f4e6d7;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.news-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-trigger {
    cursor: pointer;
}

.news-side .news-trigger {
    width: 100%;
    text-align: left;
    color: inherit;
    background: transparent;
    border: 0;
    display: block;
    text-decoration: none;
}

.news-popup-image {
    width: 100%;
    max-width: 360px;
    max-height: 220px;
    object-fit: cover;
    display: block;
    margin: 0 auto 12px;
}

.contact-box {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 244, 230, .84), rgba(255, 244, 230, .84)),
        url('/sites/thienlongorder/home/img/home-box-8-bg.webp') center center / cover no-repeat;
}

.contact-form {
    background: linear-gradient(180deg, #b63a19, #7a351f);
}

.contact-form .form-control,
.contact-form .form-select {
    font-size: 14px;
    border-radius: 8px;
}

.contact-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-outline-primary {
    color: #a53a19;
    border-color: #c66e38;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: #fff;
    background-color: #b94a1d;
    border-color: #b94a1d;
}

.contact-form .btn-light {
    color: #9f3818 !important;
}

.footer {
    background: #4b2418;
    color: #ffe9d0;
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(241, 167, 44, .35), transparent 70%);
    pointer-events: none;
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .65, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity;
}

[data-reveal="left"] {
    transform: translate3d(-30px, 0, 0);
}

[data-reveal="right"] {
    transform: translate3d(30px, 0, 0);
}

[data-reveal="zoom"] {
    transform: scale(.92);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ====== Inner page styles ====== */
.page-header {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%);
    padding: 48px 24px 36px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    margin: 0 0 6px;
}

.page-header .page-subtitle {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    margin: 0;
}

.main-container {
    padding-top: 40px;
    padding-bottom: 60px;
}

.main-container .card {
    border: 1px solid #f0dac8;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(182, 58, 25, .07);
    overflow: hidden;
}

.main-container .card-header {
    background: linear-gradient(90deg, var(--brand-dark), var(--brand));
    padding: 14px 20px;
}

.main-container .card-header h3,
.main-container .card-header h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.main-container .table thead.bg-primary {
    background: linear-gradient(90deg, #fff0d8, #ffe8c4) !important;
}

.main-container .table thead.bg-primary th {
    color: var(--brand-dark) !important;
    border-color: #f1c498 !important;
}

.main-container .badge.bg-label-info {
    background: #fff4e6 !important;
    color: #b63a19 !important;
    border: 1px solid #f1c498;
    font-weight: 600;
}

.main-container .badge.bg-label-warning {
    background: #fef3dc !important;
    color: #7b5800 !important;
    border: 1px solid #f1d76e;
    font-weight: 600;
}

.main-container .table-danger {
    --bs-table-bg: #fff8f0;
    --bs-table-color: #4a3126;
    --bs-table-border-color: #f0dac8;
}

.main-container h2 {
    color: var(--brand-dark);
    font-size: 1.15rem;
    font-weight: 800;
    border-left: 4px solid var(--brand);
    padding-left: 12px;
    margin: 32px 0 12px;
}

.main-container h3 {
    color: var(--brand);
    font-size: 1rem;
    font-weight: 700;
    margin: 20px 0 8px;
}

.main-container h4 {
    color: var(--brand-dark);
    font-size: 1rem;
    font-weight: 700;
    margin: 24px 0 10px;
}

.main-container h5 {
    color: var(--brand-dark);
    font-size: .93rem;
    font-weight: 700;
}

.main-container .alert-warning,
.main-container .alert-info {
    background: #fff8ec;
    border-color: var(--brand-light);
    border-left: 4px solid var(--brand-light);
    color: var(--brand-dark);
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 60px 0;
    }

    .navbar-brand img {
        height: 100%;
    }

    .navbar-brand {
        height: 52px;
        width: 150px;
    }

    .navbar-nav .nav-link {
        border-radius: 10px;
    }

    .navbar-nav .nav-link::after {
        left: 10px;
        right: 10px;
    }

    .hero {
        min-height: 360px;
        margin: 8px 10px;
        border-radius: 14px;
    }

    .hero-caption h1 {
        padding: 10px 12px;
        border-radius: 10px;
        font-size: clamp(1.05rem, 5.1vw, 1.6rem);
        line-height: 1.3;
    }

    .hero-caption {
        top: clamp(10px, 3.5vh, 26px);
    }

    .hero-caption p {
        font-size: clamp(.85rem, 3.8vw, 1rem);
        padding: 8px 10px;
    }

    .hero-cta-row {
        left: 12px;
        bottom: 14px;
        gap: 8px;
    }

    .hero-cta-btn {
        flex: 0 0 auto;
        padding: 10px 14px;
        font-size: .86rem;
    }

    .hero-extension-link {
        right: 12px;
        bottom: 14px;
        padding: 10px 14px;
        font-size: .86rem;
    }

    .hero-extension-icon {
        width: 18px;
        height: 18px;
    }

    .service-card img {
        height: 220px;
    }

    .about-photo {
        height: 140px;
    }

    .news-popup-image {
        max-width: 100%;
        max-height: 180px;
    }
}


/* ---------- Ô tìm sản phẩm ở trang chủ ---------- */

/*
 * Khối này nằm BÊN TRONG banner/hero (xem chỗ @include ở index.blade.php).
 * Nền hero của site là ảnh/dải màu, nên thẻ để trắng đặc + bóng đổ cho chắc
 * đọc, thay vì kính mờ dễ chìm khi ảnh nền sáng.
 * Nằm trong .hero-caption (khối định vị tuyệt đối trên video nền); nút gradient như .hero-cta-primary.
 */
.site-search {
    margin-top: 1.5rem;
    max-width: 560px;
}

.site-search-card {
    display: block;
    background: #fff;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(4, 22, 56, .38);
    padding: .875rem;
    text-align: left;
}

.site-search-row {
    display: flex;
    gap: .5rem;
}

.site-search-input {
    flex: 1;
    min-width: 0;
    padding: .7rem 1rem;
    border: 1px solid #f2dfc9;
    border-radius: 999px;
    background: #fff;
    color: #4a3126;
    font-size: .95rem;
}

.site-search-input:focus {
    outline: none;
    border-color: var(--brand, #b63a19);
    box-shadow: 0 0 0 .2rem rgba(182, 58, 25, .18);
}

.site-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    flex: 0 0 auto;
    padding: .7rem 1.4rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(120deg, #f7b64c, #e88929);
    color: #4f2715;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(231, 137, 41, .3); text-transform: uppercase; letter-spacing: .3px;
}

.site-search-btn:hover {
    background: linear-gradient(120deg, #ffc561, #ee9636);
    color: #4f2715;
}

.site-search-platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .375rem;
    margin-top: .625rem;
}

.site-search-platform {
    margin: 0;
}

/* Ẩn ô chọn thật, phần nhìn thấy là thẻ span bên trong */
.site-search-platform input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.site-search-platform span {
    display: flex;
    align-items: center;
    gap: .375rem;
    padding: .3rem .625rem;
    border: 1px solid #f2dfc9;
    border-radius: 999px;
    background: #fffaf3;
    color: #4a3126;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
}

.site-search-platform img {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    object-fit: contain;
    /* Sàn chưa chọn thì logo nhạt đi cho mắt bắt ngay sàn đang chọn */
    opacity: .5;
    transition: opacity .15s;
}

.site-search-platform input:checked + span {
    border-color: var(--brand, #b63a19);
    background: #fff;
}

.site-search-platform input:checked + span img {
    opacity: 1;
}

.site-search-platform input:focus-visible + span {
    outline: 2px solid var(--brand, #b63a19);
    outline-offset: 2px;
}

.site-search-note {
    color: #8a7566;
    font-size: .75rem;
    margin-left: auto;
}

@media (max-width: 767.98px) {
    .site-search {
        max-width: 100%;
    }

    .site-search-btn span {
        display: none;
    }

    /* Màn hẹp thì dòng chú thích chiếm cả hàng, chen ngang sẽ vỡ bố cục */
    .site-search-note {
        margin-left: 0;
        width: 100%;
    }
}

/* ============================================================
   Khối bổ sung trang chủ (tiền tố .tl-)
   ------------------------------------------------------------
   Đánh dấu ở resources/views/sites/thienlongorder/index.blade.php.
   Dùng lại token --brand / --brand-dark / --brand-light / --soft / --text
   khai ở đầu file, chữ Inter và icon Bootstrap Icons như phần trên.
   Hiệu ứng vào dùng data-reveal của home/js/thienlongorder.js.
   ============================================================ */

.tl-eyebrow {
    display: inline-block;
    background: var(--brand-light);
    color: #52290c;
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ---------- Quy trình 4 bước ---------- */

.tl-flow {
    background: var(--soft);
}

.tl-flow-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tl-flow-step {
    position: relative;
    background: #fff;
    border: 1px solid #f0ddc6;
    border-radius: 16px;
    padding: 28px 22px 24px;
    overflow: hidden;
}

/* Vạch màu chạy dọc mép trái, đổi đậm dần theo bước */
.tl-flow-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand-light), var(--brand));
}

.tl-flow-num {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--brand-light);
    margin-bottom: 14px;
}

.tl-flow-step > i {
    display: block;
    font-size: 30px;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 14px;
}

.tl-flow-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 8px;
}

.tl-flow-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    opacity: .85;
    margin: 0;
}

/* ---------- Cam kết ---------- */

.tl-vows {
    background: #fff;
}

.tl-vow {
    height: 100%;
    padding: 24px 20px;
    border: 1px solid #f0ddc6;
    border-top: 3px solid var(--brand);
    border-radius: 14px;
    background: var(--soft);
}

.tl-vow i {
    display: block;
    font-size: 26px;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 12px;
}

.tl-vow b {
    display: block;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.tl-vow span {
    display: block;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text);
    opacity: .85;
}

/* ---------- Bảng giá + hỏi đáp ---------- */

.tl-price-faq {
    background: var(--soft);
}

.tl-price-card {
    display: block;
    background: #fff;
    border: 1px solid #f0ddc6;
    border-radius: 16px;
    padding: 26px 24px;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tl-price-card:hover {
    border-color: var(--brand);
    box-shadow: 0 16px 34px rgba(182, 58, 25, .14);
    transform: translateY(-3px);
}

.tl-price-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 16px;
}

.tl-price-card h3 i {
    color: var(--brand);
    margin-right: 6px;
}

.tl-price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.tl-price-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14.5px;
    color: var(--text);
    opacity: .9;
    margin-bottom: 8px;
}

.tl-price-card li i {
    color: var(--brand-light);
    flex: 0 0 auto;
    margin-top: 3px;
}

.tl-price-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--brand);
}

.tl-price-card:hover .tl-price-cta i {
    transform: translateX(4px);
}

.tl-price-cta i {
    transition: transform .18s ease;
}

.tl-faq .accordion-item {
    border: 1px solid #f0ddc6;
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}

.tl-faq .accordion-button {
    font-weight: 700;
    color: var(--brand-dark);
    background: #fff;
    box-shadow: none;
}

.tl-faq .accordion-button:not(.collapsed) {
    background: var(--soft);
    color: var(--brand-dark);
}

.tl-faq .accordion-button:focus {
    box-shadow: none;
    border-color: var(--brand-light);
}

.tl-faq .accordion-body {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text);
}

.tl-faq .accordion-body a {
    color: var(--brand);
    font-weight: 600;
}

/* ---------- Khối liên hệ (thay form cũ không chạy) ---------- */

.tl-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.tl-contact-list li > i {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    font-size: 16px;
}

.tl-contact-list small {
    display: block;
    font-size: 12px;
    opacity: .75;
    margin-bottom: 2px;
}

.tl-contact-list a {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    word-break: break-word;
}

.tl-contact-list a:hover {
    text-decoration: underline;
}

/* ---------- Liên hệ ở chân trang ---------- */

.footer-contact-link {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.footer-contact-link:hover {
    color: var(--brand-light);
}

/* ---------- Màn hẹp ---------- */

@media (max-width: 991.98px) {
    .tl-flow-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .tl-flow-list {
        grid-template-columns: 1fr;
    }

    .tl-flow-step {
        padding: 22px 18px 20px;
    }

    .footer-contact-link {
        white-space: normal;
    }
}
