@import url(https://fonts.cdnfonts.com/css/euclid-circular-a);
@import url(https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap);

:root {
    --white: #fff;
    --black: #000;
    --primary: #1D347B;
    --second: #E6EDFF;
    --third: #FFC107;
    --hover: #E6EDFF;
    --four: #5C7BD9;
    --bg: #0E1A3D;
    --body: #0E1320;
    --font-1: "Euclid Circular A", sans-serif;
    --font-2: "Caveat", cursive
}

button {
    transition: all ease 0.4s;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

body {
    font-family: var(--font-1)
}

.budget-custom .box-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

h1,
h2,
h3,
h4,
h5 {
    font-size: 24px;
    font-family: var(--font-1);
    line-height: 1.25
}

a,
button,
i,
img {
    transition: all ease .4s
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeindown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@media screen and (max-width:996px) {
    .fadeindown {
        animation: none
    }
}

.line-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.home-3 .blog-item .box-content h4 a,
.line-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.line-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.box-title h2 {
    font-size: 30px;
    color: var(--body)
}
.home-8 .box-title h2 {
    color: #fff;
}

.faq ul li {
    border-radius: 10px;
    position: relative;
    color: #333;
    font-size: 20px;
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 0 40px rgba(0, 50, 82, .09)
}

.faq ul li a {
    padding: 20px;
    display: flex;
    align-items: center;
    color: #333;
    transition: all ease .4s;
    position: relative;
    font-weight: 500;
    color: var(--body)
}

.faq ul li .hidden-content {
    padding: 0 20px;
    font-size: 16px
}

.faq ul li a::before {
    height: 20px;
    width: 2px;
    background: #333;
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)
}

.faq ul li a::after {
    height: 2px;
    width: 20px;
    background: #333;
    content: "";
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%)
}

.faq ul li.active a::before {
    display: none
}

#service-popup {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999
}

#service-popup.active {
    display: block
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5)
}

.popup-content {
    position: relative;
    width: 767px;
    max-width: 90%;
    margin: 60px auto;
    background: #f9f9f3;
    border-radius: 12px;
    height: auto;
    padding: 40px;
    padding-top: 20px;
    animation: fadeIn .3s ease
}

.popup-content .popup-body {
    max-height: 400px;
    overflow-y: scroll;
}

.popup-content .popular {
    margin-bottom: 30px;
}

.popup-header {
    display: flex;
    justify-content: right;
    align-items: center
}

.popup-content h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--primary);
}

.close-popup {
    cursor: pointer;
    font-size: 30px;
    color: #888;
}

.pill {
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 10px;
    margin-right: 10px;
    background: var(--second);
    color: var(--primary);
    border-radius: 20px;
    cursor: pointer
}

.service-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    color: var(--body);
}

.service-item:hover {
    background: #f5f5f5
}

@keyframes fadeIn {
    from {
        transform: translateY(20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

#step-form {
    max-width: 660px;
    border-radius: 20px;
    margin: 0 auto;
    background: #f0faf5;
}



#step-form .vuta-input {
    margin-bottom: 15px
}

.field label {
    display: block;
    margin-bottom: 6px
}

.error {
    color: red;
    display: none
}

.page {
    background: #f9f9f3;
}

.banner {
    padding: 50px 0;
    background: #f9f9f3
}

.banner .box-title {
    margin-bottom: 20px
}

.banner .box-title h2 {
    margin-bottom: 0;
    color: var(--primary);
}

.banner form {
    max-width: 520px;
    position: relative;
    margin-bottom: 10px
}

.banner form input {
    padding-left: 50px;
    border-radius: 99999px;
    height: 50px;
    font-style: italic
}

.banner form span {
    position: absolute;
    top: 12px;
    font-size: 28px;
    left: 15px
}

.banner .list-cat ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 10px
}

.banner .list-cat ul li a {
    display: inline-flex;
    background: var(--hover);
    color: var(--primary);
    padding: 1rem .8rem;
    border-radius: 10px;
    align-items: center
}

.banner .list-cat ul li a span {
    margin-right: 5px;
    font-size: 20px
}

.banner .list-cat ul li a:hover {
    background: var(--primary);
    color: #fff;
}

.banner .box-img {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1920/1080
}

.home-1 {
    padding: 50px 0
}

.home-10 .box-item .mark,
.box-sticky .box-item,
.home-1 .box-item {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.home-10 .box-item .mark,
.box-sticky .box-item .box-icon,
.home-1 .box-item .box-icon {
    position: relative
}

.box-sticky .box-item .mark,
.home-10 .box-item .mark,
.home-1 .box-item .mark {
    mask-image: url(../images/mask.svg);
    height: 48px;
    width: 48px;
    display: flex;
    background-color: var(--second)
}

.home-10 .box-item .mark,
.box-sticky .box-item .mark {
    background: var(--hover);
}

.home-10 .box-item .mark,
.box-sticky .box-item .icon,
.home-1 .box-item .icon {
    height: 32px;
    width: 32px;
    top: 50%;
    left: 50%;
    position: absolute;
    content: "";
    transform: translate(-50%, -50%);
    background: var(--primary)
}

.home-10 .box-item .mark,
.box-sticky .box-item .icon.icon-1,
.home-1 .box-item .icon.icon-1 {
    mask-image: url(../images/icon-1.svg)
}

.home-10 .box-item .mark,
.box-sticky .box-item .icon.icon-2,
.home-1 .box-item .icon.icon-2 {
    mask-image: url(../images/icon-2.svg)
}

.home-10 .box-item .mark,
.box-sticky .box-item .icon.icon-3,
.home-1 .box-item .icon.icon-3 {
    mask-image: url(../images/icon-3.svg)
}

.box-sticky .box-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    height: 40px;
    gap: 10px;
    border-radius: 9999px;
    background: var(--primary);
    color: #fff;
}

.home-1 .box-item h4 {
    margin-bottom: 10px;
    color: var(--body)
}

.box-sticky .box-item h4 {
    font-size: 16px;
    color: var(--primary);
}

.box-sticky h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.home-1 .box-item p {
    line-height: 1.5;
    color: var(--body)
}

.home-2 {
    padding: 80px 0;
    background: var(--second)
}

.home-2 .box-title {
    text-align: center
}

.home-2 .box-title h2 {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0
}

.home-2 .box-title .home-2-slider {
    display: inline-block;
    vertical-align: middle
}

.home-2 .box-title .home-2-slider .item p {
    margin-bottom: 0;
    font-size: 48px;
    color: var(--primary);
    font-family: var(--font-2)
}

.home-3 {
    padding: 80px 0;
    background: var(--bg)
}

.home-3 .box-title {
    text-align: center;
    margin-bottom: 80px
}

.home-3 .box-title h2 {
    color: #fff
}

.blog-item {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 40px;
}

.blog-item .box-img {
    aspect-ratio: 3/2
}

.blog-item .box-img img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.blog-item .box-content {
    padding: 20px 15px
}

.blog-item .box-content .cat {
    color: var(--primary);
    font-family: var(--font-2);
    font-weight: 600;
    font-size: 24px
}

.blog-item .box-content h4 a {
    color: var(--body);
    overflow: hidden;
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.list-cat {
    margin-bottom: 30px;
}

.list-cat ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.list-cat ul li a {
    padding: 0.5rem 0.8rem;
    background: var(--second);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
}

.list-cat ul li a:hover {
    background: var(--primary);
    color: #fff;
}

.list-cat ul li.active a {
    background: var(--four);
    color: #fff;
}

.home-3 .box-btn {
    padding-top: 30px;
    display: flex;
    justify-content: right
}

.home-3 .box-btn a {
    display: flex;
    align-items: center;
    color: var(--third);
    gap: 5px
}

.home-4 {
    padding: 80px 0;
    background: #f9f9f3
}

.home-4 .box-title {
    text-align: center;
    margin-bottom: 40px
}

.home-4 .box-title h2 {
    font-size: 90px;
    color: var(--primary);
    font-weight: 700
}

.home-4 .box-title p {
    color: #476163
}

.home-4  {
    max-width: 620px;
    margin: 0 auto
}

.home-4  .item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(33, 63, 65, .1490196078)
}

.home-4  .item .tag {
    background: #f4f98f;
    color: var(--primary);
    font-weight: 600;
    width: 100px;
    height: 21px;
    font-size: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.home-4  .item p {
    margin-bottom: 0
}

.home-5 {
    padding: 80px 0;
    background: var(--second)
}

.home-5 .box-title {
    text-align: center;
    margin-bottom: 20px
}

.home-5 .list {
    display: flex;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px
}

.home-5 .list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 36px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 9999px;
    background: var(--primary);
    color: #fff
}

.home-5 .list li a:hover {
    background: #a3d7c5
}

.home-6 {
    padding: 80px 0
}

.home-6 .box-title {
    text-align: center;
    margin-bottom: 40px
}

.home-6 .box-title span {
    color: var(--body);
    font-family: var(--font-2);
    font-size: 24px
}

.home-6 .feedback-slider {
    margin: 0 -20px
}

.home-6 .feedback-slider .feedback-item {
    border: 1px solid #eff5f5;
    padding: 20px;
    border-radius: 20px;
    margin: 20px;
    height: 300px;
    background: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .0117647059), 0 4px 8px rgba(0, 0, 0, .0588235294)
}

.home-6 .feedback-slider .feedback-item .avatar {
    height: 46px;
    width: 46px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px
}

.home-6 .feedback-slider .feedback-item .ratting {
    margin-bottom: 10px
}

.home-6 .feedback-slider .feedback-item .ratting i {
    color: var(--third);
    font-size: 22px
}

.home-6 .feedback-slider .feedback-item p {
    color: var(--body)
}

.home-7 {
    padding: 80px 0;
    background: var(--bg)
}

.home-7 .box-title {
    text-align: center
}

.home-7 .box-title h2 {
    color: #fff;
    margin-bottom: 40px
}

.home-7 .box-title a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff
}

.home-8 {
    padding: 80px 0;
    background-image: url(//thuydien.vuta.site/storage/map-3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.home-8::before {
    background: rgba(123, 144, 145, 0.5);
    content: "";
    z-index: 1;
    position: absolute;
    inset: 0;
}
.home-8 .vuta-container {
    position: relative;
    z-index: 2;
}
.home-8 .box-title {
    text-align: center
}

.home-8 .home-8-slider .item {
    text-align: center
}

.home-8 .home-8-slider .item p {
    font-size: 36px;
    font-weight: 500;
    color: #fff
}

.home-8 .box-btn {
    display: flex;
    justify-content: center
}

.home-8 .box-btn a {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    background: #eff5f5;
    border-radius: 100px;
    height: 48px;
    width: fit-content;
    padding-left: 15px;
    padding-right: 15px;
    color: #2a5a54
}

.home-8 .box-btn a:hover {
    background: #d7e4d3
}

.home-9 {
    padding: 80px 0;
    background: var(--second)
}

.home-9 .box-title {
    text-align: center;
    margin-bottom: 40px;
}

.home-9 .box-title h2 {
    color: var(--primary);
}

.home-9  {
    display: flex;
    gap: 50px;
    justify-content: center;
    max-width: 1000px;
    flex-wrap: wrap;
    margin: 0 auto
}
.home-9  .item {
    width: calc(20% - 40px);
}

.home-9  .item .box-img {
    aspect-ratio: 1/1;
    border-radius: 1rem;
    overflow: hidden
}

.home-9  .item .box-img img {
    height: 100%
}

.home-10 {
    padding: 80px 0
}

.home-10 .box-icon {
    position: relative;
}

.home-10 .mark {
    mask-image: url(../images/mask.svg);
    height: 48px;
    width: 48px;
    display: flex;
    background-color: var(--second)
}


.home-10 .box-item {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center
}

.home-10 .box-item h4 {
    margin-bottom: 0;
}

.home-10 .box-item p {
    margin-bottom: 0
}

.home-11 {
    padding: 80px 0;
    background: var(--second)
}

.home-11 .box-title {
    text-align: center;
    margin-bottom: 40px
}

.home-11 .box-title h2 {
    color: var(--primary);
}

.home-11 .wrapper {
    max-width: 700px;
    margin: 0 auto
}

.home-11 .box-btn a {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--primary)
}

.home-11 .box-btn {
    margin-top: 40px;
    justify-content: right;
    display: flex
}

.home-12 {
    padding: 80px 0;
    background: var(--bg)
}

.home-12 .box-title {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px
}

.home-12 .box-title h2 {
    color: #fff
}

.home-12 .box-btn {
    display: flex;
    justify-content: center
}

.home-12 .box-btn a {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    color: var(--third)
}

.home-13 {
    padding: 80px 0
}

.home-13  {
    max-width: 700px;
    margin: 0 auto
}

.home-13 .box-title {
    margin-bottom: 20px
}

.home-13 .box-title h2 {
    font-size: 20px;
    color: var(--body)
}

.home-13 p {
    color: var(--primary);
    text-align: justify;
}

.home-13 .box-btn a {
    display: inline-flex;
    gap: 10px;
    color: var(--primary);
    border-bottom: 1px solid var(--primary)
}

.vuta-header {
    background: rgba(249, 249, 243, .7490196078);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    padding: 10px 0;
}

.vuta-header .vuta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

}


.vuta-header {
    background: var(--primary);
}

.vuta-header  .menu-login {
    margin-left: auto;
    padding-right: 30px
}

.vuta-header .menu-login ul {
    display: flex;
    gap: 30px
}

.vuta-header  .menu-login ul li a {
    color: #fff
}

.vuta-header  .menu-btn a {
    display: flex;
    align-items: center;
    gap: 10px
}

.vuta-header  .menu-btn p {
    color: #fff;
    margin-bottom: 5px
}

.vuta-header  .menu-btn span {
    background: #fff;
    height: 2px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 5px;
    width: 20px
}

.vuta-footer {
    padding: 80px 0;
    background: var(--bg)
}

.vuta-footer h3 {
    color: #fff;
    font-size: 18px
}

.vuta-footer ul li {
    margin-bottom: 10px
}

.vuta-footer ul li a {
    color: rgba(255, 255, 255, .7);
    border-bottom: 1px solid rgba(255, 255, 255, .7)
}

.vuta-footer ul li a:hover {
    color: #fff;
}

.vuta-footer .footer-cpr {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(239, 245, 245, .1490196078)
}

.vuta-footer .footer-cpr ul {
    display: flex;
    gap: 20px
}

.vuta-footer .footer-cpr p {
    color: #fff;
    margin-bottom: 0
}

.vuta-footer .footer-cpr p a {
    font-weight: 600;
    color: #fff
}

.form-progress {
    position: relative;
    margin-bottom: 20px;
    padding: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(123, 144, 145, 0.15);
}

/* line nền */
.progress-line {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    height: 4px;
    background: #d9e3df;
    border-radius: 2px;
}

/* line fill */
.progress-fill {
    height: 100%;
    width: 0%;
    background: #2f7d6d;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step-item {
    text-align: left;
    flex: 1;
}

.step-item:nth-child(2) {
    text-align: center;
}

.step-item:last-child {
    text-align: right;
}

.step-item .dot {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 1px 1px #00000003, 0 2px 3px #00000008;

    position: relative;
    margin-top: -10px;
    z-index: 2;
}

.step-item.active .dot {
    background: var(--primary);
}

.step-item:nth-child(2) .dot {
    margin: 0 auto;
    margin-top: -10px;
}

.step-item:last-child .dot {
    margin-left: auto;
}

.step-item.done .dot {
    background: #2f7d6d;
}

.budget-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.step-item span {
    font-size: 13px;
    color: #555;
}

.step-item.active span {
    color: var(--primary);
    font-weight: 600;
}


/* line */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#service-popup.active .overlay {
    display: block;
}

.banner-page {
    padding-top: 30px;
    background: var(--second);
    padding-bottom: 160px;
}

.page,
.blog-page-detail,
.blog-page {
    padding-top: 30px;
}

.page {
    padding-bottom: 30px;
}

#vendor-info {
    margin-bottom: 30px;
}

.form-info .gr-input .vuta-input {
    background: #f5f5f5;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        /* outline */
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
    transition: 0.2s;
}

.material-symbols-outlined.filled {
    font-variation-settings:
        'FILL' 1,
        /* solid */
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}


.page  .breadcrumb ol,
.blog-page-detail  .breadcrumb ol,
.blog-page  .breadcrumb ol,
.banner-page  .breadcrumb ol {
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    background: #ffffffbf;
    border-radius: 100px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    gap: 15px;
}

.page  .breadcrumb ol li,
.blog-page-detail  .breadcrumb ol li,
.blog-page  .breadcrumb ol li,
.banner-page  .breadcrumb ol li {
    position: relative;
}

.blog-page-detail,
.blog-page {
    background: #f9f9f3;
}

.breadcrumb {
    margin-bottom: 0;
    padding-bottom: 20px;
}

.blog-detail {
    background: #f9f9f3;
}

.page  .breadcrumb ol li a,
.blog-page-detail  .breadcrumb ol li a,
.blog-page  .breadcrumb ol li a,
.banner-page  .breadcrumb ol li a {
    color: var(--primary);
}

.page  .breadcrumb ol li:last-child a,
.blog-page-detail  .breadcrumb ol li:last-child a,
.blog-page  .breadcrumb ol li:last-child a,
.banner-page  .breadcrumb ol li:last-child a {
    font-weight: 600;
}

.page  .breadcrumb ol li::before,
.blog-page-detail  .breadcrumb ol li::before,
.blog-page  .breadcrumb ol li::before,
.banner-page  .breadcrumb ol li::before {
    position: absolute;
    content: "/";
    left: -10px;
}

.page  .breadcrumb ol li:first-child::before,
.blog-page-detail  .breadcrumb ol li:first-child::before,
.blog-page  .breadcrumb ol li:first-child::before,
.banner-page  .breadcrumb ol li:first-child::before {
    display: none;
}

.banner-page .box-title {
    text-align: center;
}

.banner-page .box-title h2 {
    color: var(--primary);
}

.banner-page .box-title h2 span {
    display: block;
    font-weight: 600;
}

.banner-page .box-title p {
    font-size: 24px;
    color: #61797a;
    font-family: var(--font-2);
}

.banner-page .note {
    max-width: 660px;
    padding: 20px;
    border: 1px solid #a3d7c5;
    background: #e6f4ee;
    border-radius: 0.25rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.banner-page .note p {
    margin-bottom: 0;
}

.banner-page .note h4 {
    font-size: 16px;
    font-weight: 600;
}

.banner-page .note .right .box-btn a {
    display: inline-flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 9999px;
    border: 1px solid #ddddc0;
    background: #eeeedf;
    color: var(--primary);
}

.banner-page .note .right .box-btn a:hover {
    background: #ddddc0;
    color: #204641;
}

.form-sv {
    margin-top: -80px;
}

#step-form #form-step {
    padding: 0 30px;
}

#step-form {
    margin-bottom: 30px;
}

#step-form #form-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

#step-form .form-footer {
    padding: 30px;
    border-top: 1px solid rgba(123, 144, 145, 0.15);
    display: flex;
    justify-content: space-between;
}

#step-form #btn-next {
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 5px 20px;
}

#step-form #btn-next:hover {
    background: var(--body);
}

#step-form #btn-back {
    background: transparent;
    color: var(--primary);
    border-radius: 20px;
    border: 1px solid var(--primary);
    padding: 5px 20px;
}

#step-form #btn-back:hover {
    background: #fff;
    border: 1px solid #fff;
    color: var(--primary);
}

.field .budget-item,
.field label:not(:first-child) {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400 !important;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.budget-custom {
    display: flex;
    gap: 10px;
    align-items: center;
    display: none;

}

/* Style chung cho cả checkbox và radio (ẩn giao diện gốc) */
.field input[type="radio"],
.field input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #4b5563;
    margin-right: 12px;
    outline: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

/* --- PHÂN BIỆT RADIO (HÌNH TRÒN) --- */
.field input[type="radio"] {
    border-radius: 50%;
    /* Làm cho radio hình tròn */
}

/* Dấu chấm tròn bên trong cho Radio khi chọn */
.field input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.field label:first-child {
    font-weight: 600;
}

/* --- PHÂN BIỆT CHECKBOX (HÌNH VUÔNG) --- */
.field input[type="checkbox"] {
    border-radius: 4px;
    /* Làm cho checkbox hình vuông */
}

/* Dấu tích (V) cho Checkbox khi chọn */
.field input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #c9e8db;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* --- HIỆU ỨNG KHI ĐƯỢC CHỌN --- */
/* Màu nền khi checked */
.field input:checked {
    background-color: #2f7d6d;
    border-color: #2f7d6d;
}

/* Đổi màu cả khung label khi input bên trong được chọn */
.field label:has(input:checked) {
    border-color: #2f7d6d;
    background-color: #f9fafb;
}

/* Hiệu ứng hover */
.field label:not(:first-child):hover {
    border-color: #9ca3af;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-header h4 {
    font-size: 18px;
    color: #204641;
    font-weight: 600;
}

.summary-header .material-symbols-outlined {
    font-size: 18px;
    color: #204641;
}

textarea {
    min-height: 100px;
}

.login-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.login-popup.active {
    display: flex;
}

.login-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}

#btn-login {
    margin-top: 15px;
    padding: 10px 20px;
    background: #1f2937;
    color: #fff;
    border: none;
    cursor: pointer;
}

.summary-group {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(123, 144, 145, 0.15);
    padding-bottom: 15px;
}

.summary-group:last-child {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 0;
}

.thankyou-page {
    padding: 40px 0;
}

.thankyou-page .box {
    max-width: 660px;
    margin: 0 auto;
    background: #f9f9f3;
    border-radius: 12px;
    padding: 40px;
}

.thankyou-page .box h2 {
    text-align: center;
    margin-bottom: 30px;
}

.thankyou-page .box p {
    text-align: center;
}

.thankyou-page .box .btn-home {
    padding: 12px 15px;
    color: #fff;
    border-radius: 8px;
    background: var(--primary);
}

#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
    display: none;
}

#overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

#sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    background: var(--bg);
    /* màu xanh giống ảnh */
    color: #fff;
    z-index: 9999;
    transition: 0.3s;
    height: 100vh;
    display: flex;
    padding: 20px;
    flex-direction: column;
}

#sidebar.active {
    right: 0;
}

#sidebar .top-sidebar {
    flex-shrink: 0;
}

#sidebar .box-tab {
    flex: 1;
    overflow: hidden;
    /* tránh tràn */
    display: flex;
    flex-direction: column;
}

#sidebar .menu li a {
    padding-top: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 15px;
    color: #fff;
    border-bottom: 1px solid #eff5f526;

}

#sidebar .sidebar-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

#sidebar .sidebar-tabs .tab {
    font-size: 20px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    padding-bottom: 5px;
}

#sidebar .sidebar-tabs .tab::before {
    position: absolute;
    background: #fff;
    height: 3px;
    content: "";
    display: none;
    bottom: 0;
    width: 100%;
}

#sidebar .sidebar-tabs .tab.active::before {
    display: block;
}

@media (max-width:996px) {
    .vuta-header  .menu-login {
        display: none;
    }
}

.tab-content {
    display: none;
    flex-direction: column;
    height: 100%;
}

.tab-content.active {
    display: flex;
}

.sidebar-header {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.sidebar-header #btn-close {
    font-size: 30px;
    color: rgba(255, 255, 255, .7);
}

.sidebar-header a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 9999px;
}

#sidebar ul {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

#sidebar ul::-webkit-scrollbar {
    width: 6px;
}

#sidebar ul::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.blog-page  {
    margin-bottom: 40px;
}

.blog-page .box-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.blog-page .box-title h2 {
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    padding-top: 30px;
    padding-bottom: 20px;
    justify-content: center;
}

.pagination ul {
    display: flex;
    gap: 0;
    background: var(--second);
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 21px;
    gap: 10px;
}

.pagination ul li a {
    display: flex;
    height: 38px;
    width: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    color: var(--primary);
    border-radius: 50%;
    font-size: 16px;
}

.pagination ul li a:hover {
    border: 1px solid var(--four);
}

.pagination ul li a span {
    font-size: 16px !important;
}

.pagination ul li.active a {
    background: var(--four);
    color: #fff;
}

.blog-page .list-cat.fixed {
    position: fixed;
    background: rgba(249, 249, 243, .7490196078);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    z-index: 99;
}

.blog-page .list-cat.sticky-stop {
    position: absolute;
    bottom: 0;
}

.blog-detail .box-detail {
    margin: 0 auto;
}

.blog-detail .box-detail .cat {
    font-family: var(--font-2);
    color: var(--four);
    text-align: center;
    font-size: 24px;
}

.blog-detail .box-detail h1 {
    text-align: center;
    font-size: 32px;
}

.blog-detail .box-detail .date {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
}

.blog-detail .box-detail .box-img {
    border-radius: 10px;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 20px;
}

/* 
main {
    background: #f9f9f3;
}
 */

.blog-detail .box-detail .box-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-detail .box-detail .short-desc {
    font-weight: 600;
}

.blog-detail .box-detail ul {
    padding-left: 15px;
}

.blog-detail .box-detail ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.blog-detail .box-detail .box-wrap {
    display: flex;
    border: 1px solid var(--four);
    background: var(--second);
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
    border-radius: 10px;
    justify-content: space-between;
    gap: 10px;
}

.blog-detail .box-detail .box-wrap p {
    margin-bottom: 0;
}

.blog-detail .box-detail .box-wrap a {
    background: var(--primary);
    color: #fff;
    border-radius: 9999px;
    padding: 10px 15px;
    flex-shrink: 0;
    width: fit-content;
}

.blog-detail .box-sticky {
    padding: 20px;
    border-radius: 10px;
    background: var(--second);
}

.blog-detail .detail-wrap {
    display: grid;
    grid: auto-flow/1fr 45rem 1fr;
}

.blog-detail .detail-wrap .sticky {
    margin-left: 20px;

}

.blog-detail .detail-wrap .sticky .box-sticky {
    max-width: 400px;
    position: sticky;
    top: 80px;
}

.form-info {
    max-width: 500px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 80px;
}

.form-info h2 {
    font-size: 36px;
}

.form-info p {
    color: #888;
    font-weight: 300;
}

.form-info .gr-input {
    margin-bottom: 20px;
}

.form-info .relative {
    position: relative;
}

.form-info .relative button {
    position: absolute;
    right: 10px;
    top: 45px;
}

.form-info .box-checkbox {
    margin-bottom: 15px;
}

.form-info .gr-rule {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.form-info .gr-rule span {
    padding: 3px 10px;
    background: var(--hover);
    font-size: 12px;
    border-radius: 9999px;
}

.form-info .box-btn button {
    display: flex;
    justify-content: center;
    height: 45px;
    border-radius: 0.25rem;
    background: var(--primary);
    color: #fff;
    align-items: center;
    width: 100%;
}

.form-info .gr-rule span:last-child {
    background: var(--third);
}

.form-info .relative button span {
    font-size: 20px;
    color: #999;
}

.form-info .gr-input label {
    display: flex;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 5px;
    justify-content: space-between;
}

.form-info .box-btn {
    margin-bottom: 30px;
}

.form-info .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.form-info .center .hr {
    height: 1px;
    width: 100%;
    background: rgba(54, 54, 54, 0.125);
}

.form-info .center span {
    flex-shrink: 0;
    color: #888;
    padding-left: 10px;
    padding-right: 10px;
}

.form-info .gr-btn {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.form-info .gr-btn button {
    background: var(--second);
    height: 40px;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    border-radius: 5px;
    border: 1px solid var(--primary);
    gap: 10px;
}

.form-info .notice {
    text-align: center;
}

.form-info .notice a {
    border-bottom: 1px solid var(--primary);
}

.form-info h2 {
    text-align: center;
}

.form-info p {
    text-align: center;
}

.vendor-offer .box {
    text-align: right;
}

.vendor-offer .box-btn button:last-child {
    background: var(--primary) !important;
    color: #fff !important;
    border: 1px solid var(--primary) !important;
}

.box-info .box-vendor {
    display: flex;
    gap: 20px;
    align-items: start;
}

.budget-custom .box {
    display: flex;
    gap: 5px;
    align-items: center;
}

strong {
    font-weight: 600;
}

.form-info .relative.flex.justify-center {
    display: none;
}

@media (max-width:996px) {
    .banner .box-img {
        display: none;
    }

    .banner .list-cat ul li a {
        padding: 0.5rem;
    }

    .banner form input {
        font-size: 14px;
    }

    .home-2 {
        padding: 40px 0;
    }

    .box-title h2 {
        font-size: 28px !important;
    }

    .home-3 {
        padding: 40px 0;
    }

    .home-3 .box-title {
        text-align: left;
        margin-bottom: 40px;
    }

    .home-3 .blog-item {
        margin-bottom: 35px;
    }

    .home-3 .blog-item .box-content h4 {
        font-size: 18px;
    }

    .home-3 .box-btn {
        padding-top: 0px;
    }

    .home-4 .box-title h2 {
        font-size: 70px;
    }


    .home-4 {
        padding: 40px 0;
    }

    .home-5 {
        padding: 40px 0;
    }

    .home-6 {
        padding: 40px 0;
    }

    .home-7 {
        padding: 40px 0;
    }

    .home-7 .box-title {
        text-align: left;
    }

    .home-8 {
        padding: 40px 0;
    }

    .home-9 {
        padding: 40px 0;
    }

    .home-9  {
        flex-wrap: wrap;
        gap: 20px;
    }

    .home-9  .item {
        width: calc(50% - 10px);
    }

    .home-10 {
        padding: 40px 0;
    }

    .home-11 {
        padding: 40px 0;
    }

    .faq ul li {
        font-size: 16px;

    }

    .faq ul li a {
        padding-right: 40px;
    }

    .home-12 {
        padding: 40px 0;
    }

    .home-13 {
        padding: 40px 0;
    }

    .vuta-footer {
        padding: 40px 0;
    }

    section {
        overflow: hidden;
    }

    #sidebar {
        max-width: 350px;
    }

    .popup-content {
        padding: 20px;
    }

    .close-popup {
        font-size: 20px;
    }

    .home-1 .box-item h4 {
        font-size: 20px;
    }

    .home-1 .box-item {
        margin-bottom: 20px;
    }

    .home-2 .box-title .home-2-slider .item p {
        font-size: 30px;
    }

    .home-3 .blog-item .box-content .cat {
        font-size: 20px;
    }

    .banner-page .note {
        max-width: 95%;
        flex-direction: column;
    }

    .banner-page {
        padding-bottom: 100px;
    }

    .thankyou-page .box {
        padding: 20px;
    }

    .thankyou-page .box h2 {
        margin-bottom: 20px;
    }

    /* .action-buttons {
        flex-direction: column;
    } */
    .action-buttons a {
        padding-left: 10px !important;
        padding-right: 10px !important;
        font-size: 14px;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .blog-detail .detail-wrap {
        display: flex;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column;
    }

    .blog-detail .box-detail h1 {
        font-size: 24px;
    }

    .blog-item {
        margin-bottom: 20px;
    }

    .request-card h2 {
        font-size: 20px;
    }

    .request-card h4 {
        font-size: 18px;
    }

    .vendor-offer {
        flex-direction: column;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .vendor-offer>div {
        width: 100%;
    }

    .vendor-offer .box {
        text-align: left;
    }

    .vendor-offer .box-btn {
        display: flex;
        padding-top: 10px;
        justify-content: space-between;
    }

    .vendor-offer .box-btn button {
        width: calc(50% - 3px);
    }

    .box-info .box-vendor {
        flex-direction: column;
    }

    .vendor-offer .box-btn button {
        padding: 5px !important;
        font-size: 14px !important;
    }

    .box-info .box-vendor img {
        width: 100% !important;
        aspect-ratio: 3/2 !important;
        height: auto !important;
    }

    .box-info button {
        width: 100%;
    }

    .box-info .box-vendor h2 {
        align-items: start;
    }


    .vendor-action .btn {
        flex-shrink: 0;
    }

    .vendor-action .vendor-input {
        width: 180px;
    }

}


[class^="vuta-col-"] {
    padding-left: 20px;
    padding-right: 20px;
}

.vuta-row {
    margin-left: -20px;
    margin-right: -20px;
}

.vuta-container {
    padding-left: 20px;
    padding-right: 20px;
}

.vendor-offer .box-btn button.btn-cancel {
    background: #ef4444 !important;
    border: 1px solid #ef4444 !important;
}

.vendor-offer.selected {
    padding: 10px !important;
}

.pricing {
    padding: 80px 0 0;

}

.pricing .title h3 {
    font-size: 36px;
    color: #fff;
}

.pricing .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.pricing ul li {
    align-items: center;
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.pricing ul li span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    color: var(--primary);
}

.pricing ul li.disabled span {
    color: #aaa;
}

.pricing .card.active ul li span {
    color: #fff;
}

.pricing .title p {
    color: rgba(255, 255, 255, .9);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 40px;
    max-width: 1000px;
}

.pricing-header h2 {
    font-size: 40px;

    margin-bottom: 10px;
}

.toggle {
    background: #eee;
    border-radius: 30px;
    padding: 5px;
}

.toggle button {
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    background: transparent;
}

.toggle .active {
    background: linear-gradient(135deg, #6a5cff, #8a6bff);
    color: #fff;
}

.pricing-grid {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
}

.home-12 .card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    transition: 0.3s;
    width: calc(100%/3 - 20px);
    border: 1px solid #eee;
    transition: all ease 0.4s;
    cursor: pointer;
}

.home-12 .card:hover {
    box-shadow: 0 0 40px rgba(0, 50, 82, .09);
    background: var(--second);
}

.home-12 .card.active {
    background: linear-gradient(135deg, #6a5cff, #8a6bff);
    color: #fff;
}

.home-12 .card.active .btn {
    background: #fff;
    color: #6a5cff;
}

.home-12 .price {
    font-size: 32px;
    margin: 15px 0;
    color: var(--primary);
}

.home-12 .price span {
    color: var(--primary);
}

.home-12 .price span.duration {
    color: #1f2937;
    font-size: 55%;
}

.home-12 .card.active .price span {
    color: var(--third);
}

.home-12 .card.active .price span.duration {
    color: #fff;
}

.home-12 .btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #f3f3f3;
    cursor: pointer;
    margin-bottom: 20px;
}

.home-12 .btn:hover {
    background: var(--four);
    color: #fff;
    border: 1px solid var(--four);
}

.home-12 .btn.primary {
    background: linear-gradient(135deg, #6a5cff, #8a6bff);
    color: #fff;
    border: 1px solid transparent;
}

.home-12 .btn.primary:hover {
    border: 1px solid #fff;
    background: var(--primary);
    color: #fff;
}


.home-12 .disabled {
    color: #aaa;
}

.home-12 .card strong {
    margin-bottom: 10px;
}

.home-12 .card.active strong {
    color: var(--third);
}
.search-from {
    position: relative;
}
.search-from .search-result {
    position: absolute;
    top: calc(100% + 10px);
    padding: 10px;
    border: 1px solid #ececec;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    width: 100%;
    display: flex;
    color: #ccc;
    box-shadow: 0 0 40px rgba(0, 50, 82, .09);
}
.budget-custom .vuta-input {
    margin-bottom: 0 !important;
}
.budget-custom {
    margin-bottom: 10px !important;
}
#form-step {
    padding-bottom: 10px !important;
}
.rutrot-options {
    margin-bottom: 10px !important;
}
.search-from .search-result a {
    display: flex;
    padding: 5px 15px;
    color: #0E1A3D;
    border-bottom: 1px solid #ececec;
}
.search-from .search-result .item:last-child a {
    border-bottom: 0;
}
.search-from .search-result a:hover {
    background: var(--primary);
    color: var(--third);
}
.search-from .search-result.active {
    visibility: visible;
    opacity: 1;
    flex-direction: column;
}

/* .popup-login {
    background: rgba(0, 50, 82, .09);
    position: fixed;
    inset: 0;
    z-index: 1090;
}

.popup-login .popup-content {
    width: 500px;
}

.popup-login .popup-content .close {
    text-align: right;
    cursor: pointer;
} */
.special-accept-label input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    cursor: pointer;
    accent-color: #3b82f6;
}
.special-offer-card {
    margin-bottom: 10px !important;
}
@media (max-width:996px) {
    .pricing-grid {
        flex-direction: column;
        gap: 15px;
    }

    .pricing-grid .card {
        width: 100%;
    }

    .pricing-header {
        flex-direction: column;
    }

    .home-10 .box-item {
        margin-bottom: 25px;
    }

    .home-13 p {
        text-align: left;
    }
}
@media (max-width: 767px) {
    .pricing-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 14px;
        overflow-x: auto;
        overflow-y: visible;
        flex-direction: row;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        /* padding 2 đầu để card đầu/cuối có thể center */
        padding: 12px 11% 16px;
        /* mở rộng full chiều ngang — chỉnh số -24px theo padding container cha của bạn */
        margin-left: -24px;
        margin-right: -24px;
        /* ẩn scrollbar */
        scrollbar-width: none;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .pricing-grid>.card {
        flex: 0 0 95%;
        max-width: 340px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
}

/* ---------- DOTS INDICATOR ---------- */
.pricing-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 24px;
}

.pricing-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0dfeb;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all .25s ease;
}

.pricing-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background: #5a47e8;
    /* đổi sang màu chủ đạo của bạn */
}
.prisguide-section {
    padding: 70px 0;
    scroll-margin-top: 80px;
}

.prisguide-head {
    text-align: center;
    margin-bottom: 30px
}

.prisguide-head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy-900, #0b1e4d);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid var(--border, #e5e7eb);
}

.prisguide-head .eyebrow::before {
    content: '★';
    color: var(--yellow, #fbbf24)
}


.prisguide-head p {
    font-size: 14.5px;
    color: var(--text-soft, #6b7280);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filter pills */
.prisguide-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 26px 0 28px;
}

.prisguide-filter {
    background: #fff;
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text, #1f2937);
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.prisguide-filter:hover {
    border-color: var(--navy-900, #0b1e4d);
    color: var(--navy-900, #0b1e4d);
}

.prisguide-filter.active {
    background: var(--navy-900, #0b1e4d);
    border-color: var(--navy-900, #0b1e4d);
    color: #fff;
}

.prisguide-filter .count {
    background: #f1f5f9;
    color: var(--text-soft, #6b7280);
    font-size: 11px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 10px;
    transition: all .2s;
}

.prisguide-filter.active .count {
    background: var(--yellow, #fbbf24);
    color: var(--navy-900, #0b1e4d);
}

/* ===== Bảng giá dùng div + grid ===== */
.prisguide-list {
    background: #fff;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(11, 30, 77, .06);
}

/* Mỗi row là 1 grid 3 cột */
.prisguide-row {
    display: grid;
    grid-template-columns: 1fr 280px 220px;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    transition: background .15s;
}

.prisguide-row:last-child {
    border-bottom: none
}

/* Hàng header */
.prisguide-row.is-head {
    background: #f9fafb;
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border, #e5e7eb);
}

.prisguide-row.is-head .prisguide-col {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-soft, #6b7280);
    letter-spacing: .8px;
    text-transform: uppercase;
}

/* Hàng dữ liệu */
.prisguide-row.is-item:hover {
    background: #fafbff
}

.prisguide-row.is-item.is-hidden {
    display: none
}

/* Cột Tjänst */
.prisguide-service {
    display: flex;
    align-items: start;
    gap: 12px
}
.prisguide-col.box-price {
    font-size: 12px;
    color: var(--text-soft, #6b7280);
    font-size: 600;
}
.prisguide-service-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prisguide-service-icon svg {
    width: 18px;
    height: 18px
}

.prisguide-service-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy-900, #0b1e4d);
}

.prisguide-service-unit {
    font-size: 11.5px;
    color: var(--text-soft, #6b7280);
    margin-top: 1px;
}

/* Cột giá */
.prisguide-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    
}

.prisguide-price-unit {
    color: var(--text-soft, #6b7280);
    font-size: 12px;
    font-weight: 500;
    margin-left: 2px;
}

/* Badge mức giá */
.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.price-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.price-badge.lvl-1 {
    background: #dcfce7;
    color: #15803d
}

.price-badge.lvl-2 {
    background: #d1fae5;
    color: #047857
}

.price-badge.lvl-3 {
    background: #fef3c7;
    color: #a16207
}

.price-badge.lvl-4 {
    background: #ffedd5;
    color: #c2410c
}

.price-badge.lvl-5 {
    background: #fee2e2;
    color: #b91c1c
}

.price-badge.lvl-x {
    background: #dbeafe;
    color: #1d4ed8
}

/* CTA + Footnote ở dưới bảng */
.prisguide-footer {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.prisguide-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px;
    background: #f9fafb;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 12px;
    font-size: 13px;
    color: #374151;
    line-height: 1.55;
}

.prisguide-note-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--navy-900, #0b1e4d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    font-style: italic;
}

.prisguide-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-900, #0b1e4d), var(--navy-600, #102b6b));
    border-radius: 12px;
    padding: 18px 22px;
    color: #fff;
}

.prisguide-cta h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
    
}

.prisguide-cta p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .75);
    margin: 0 0 12px;
    line-height: 1.5;
}

.prisguide-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--yellow, #fbbf24);
    color: var(--navy-900, #0b1e4d);
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s;
    align-self: flex-start;
    display: none;
}

.prisguide-cta a:hover {
    background: #f59e0b
}

/* Empty state */
.prisguide-empty {
    display: none;
    padding: 50px 20px;
    text-align: center;
    color: var(--text-soft, #6b7280);
    font-size: 14px;
}

.prisguide-empty.show {
    display: block
}

/* ===== RESPONSIVE ===== */
@media (max-width:768px) {
    .prisguide-section {
        padding: 50px 0
    }

    .prisguide-head h2 {
        font-size: 22px
    }

    .prisguide-footer {
        grid-template-columns: 1fr
    }

    /* Ẩn hàng header trên mobile */
    .prisguide-row.is-head {
        display: none
    }

    /* Mỗi item chuyển thành card xếp dọc */
    .prisguide-row.is-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px 16px;
    }

    .prisguide-col {
        display: flex;
        align-items: center;
        gap: 10px
    }

    .prisguide-col[data-label]::before {
        content: attr(data-label);
        font-size: 11px;
        color: var(--text-soft, #6b7280);
        text-transform: uppercase;
        letter-spacing: .5px;
        font-weight: 600;
        min-width: 80px;
    }

    /* Cột Tjänst không hiển thị label */
    .prisguide-col-service {
        align-items: center
    }

    .prisguide-col-service[data-label]::before {
        display: none
    }
    .prisguide-filters {
        flex-wrap: nowrap;
        justify-content: left;
        overflow-x: scroll;
    }
    .prisguide-filter {
        flex-shrink: 0;
    }
}
@media (max-width: 767px) {
    .pricing-dots {
        display: flex;
    }
    .vuta-footer .footer-cpr ul {
        flex-wrap: wrap;
        gap: 0;
    }
    .vuta-footer .footer-cpr ul li {
    margin-right: 20px;
    }
}

@media (max-width:400px) {
    .hero .box-content .hero-title {
        font-size: 24px;
    }
    .process-step {
        flex: 0 0 46% !important;
        padding: 15px;
        border: 1px solid rgba(30, 58, 138, 0.06);
        padding: 18px 20px;
        box-shadow: 0 10px 24px rgba(30, 58, 138, 0.1);
        border-radius: 16px;
        background: #fff;
        height: 100%;
    }
    .process-steps {
        flex-wrap: wrap;
        gap: 10px !important;
    }

}

.pricing-v2 {
    position: relative;
    background: #0a1a45;
    color: #fff;
    padding: 80px 0 50px;
    overflow: hidden;
}

/* 2 ảnh nhân viên ở góc trái/phải, mờ chìm vào nền */
.pricing-v2::before,
.pricing-v2::after {
    content: '';
    position: absolute;
    top: 0;
    width: 30%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: .55;
    pointer-events: none;
    z-index: 0;
}
.vuta-header.fixed-top.fadeindown .logo a img {
    max-height: 50px !important;
}
.pricing-v2::before {
    left: 0;
    background-image: url('/storage/xe-container-anh-1.webp');
    mask-image: linear-gradient(to right, #000 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 0%, transparent 100%);
}

.pricing-v2::after {
    right: 0;
    background-image: url('/storage/anh-mo-ta.webp');
    mask-image: linear-gradient(to left, #000 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, #000 0%, transparent 100%);
}

.pricing-v2 .container {
    position: relative;
    z-index: 2
}

.pricing-v2-head {
    text-align: center;
    margin-bottom: 24px
}

.pricing-v2-head h2 {
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
    
}

.pricing-v2-head p {
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

/* Toggle */
.pricing-v2-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, .08);
    border-radius: 50px;
    padding: 4px;
    margin: 20px auto 50px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, .12);
}

.pricing-v2-toggle button {
    background: transparent;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pricing-v2-toggle button.active {
    background: var(--indigo, #4F46E5);
    color: #fff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, .4);
}

.pricing-v2-toggle .save-tag {
    background: var(--yellow, #fbbf24);
    color: var(--navy-900, #0b1e4d);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 10px;
}

/* Grid 3 cột */
.pricing-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
    margin: 0 auto;
}



/* Card chung */
.pricing-v2-card {
    position: relative;
    background: #fff;
    color: var(--text, #1f2937);
    border-radius: 18px;
    padding: 32px 28px 26px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
}

/* Icon trên đầu card */
.pricing-v2-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #eef2ff;
    color: var(--indigo, #4F46E5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.pricing-v2-icon svg {
    width: 26px;
    height: 26px
}

.pricing-v2-name {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-align: center;
    color: var(--navy-900, #0b1e4d);
    margin: 0 0 4px;
    
}

.pricing-v2-desc {
    font-size: 13px;
    color: var(--text-soft, #6b7280);
    text-align: center;
    margin: 0 0 22px;
}

/* Giá */
.pricing-v2-price {
    text-align: center;
    margin-bottom: 6px;
    font-size: 36px;
    font-weight: 600;
    color: var(--navy-900, #0b1e4d);
    line-height: 1;
    
}

.pricing-v2-price.is-free {
    color: var(--indigo, #4F46E5)
}

.pricing-v2-price .unit {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft, #6b7280)
}

.pricing-v2-moms {
    text-align: center;
    font-size: 12px;
    color: var(--text-soft, #6b7280);
    margin: 0 0 20px;
    min-height: 18px;
}

/* Nút */
.pricing-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: var(--navy-900, #0b1e4d);
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    font-family: inherit;
    margin-bottom: 22px;
}

.pricing-v2-btn:hover {
    border-color: var(--navy-900, #0b1e4d);
    background: var(--navy-900, #0b1e4d);
    color: #fff;
}

.pricing-v2-btn-yellow {
    background: var(--yellow, #fbbf24);
    color: var(--navy-900, #0b1e4d);
    border-color: var(--yellow, #fbbf24);
}

.pricing-v2-btn-yellow:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    color: var(--navy-900, #0b1e4d);
}

/* Features list - dùng dấu ✓ outlined navy */
.pricing-v2-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.pricing-v2-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text, #1f2937);
    line-height: 1.4;
}

.pricing-v2-features li:last-child {
    margin-bottom: 0;
}

.pricing-v2-features li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.8px solid var(--navy-900, #0b1e4d);
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1e4d' stroke-width='3.5'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Khối Kostnad per uppdrag */
.pricing-v2-cost {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
}

.pricing-v2-cost-head {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-900, #0b1e4d);
    margin-bottom: 4px;
}

.pricing-v2-cost-head .info-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1.3px solid currentColor;
    font-size: 10px;
    font-weight: 700;
    font-style: italic;
}

.pricing-v2-cost-percent {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-900, #0b1e4d);
    margin-bottom: 12px;
}

/* Info box ví dụ tính */
.pricing-v2-example {
    position: relative;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 38px 12px 36px;
    font-size: 11.5px;
    color: #475569;
    line-height: 1.55;
}

.pricing-v2-example .info-i {
    position: absolute;
    left: 12px;
    top: 13px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.3px solid var(--navy-900, #0b1e4d);
    color: var(--navy-900, #0b1e4d);
    font-size: 10px;
    font-weight: 700;
    font-style: italic;
}

.pricing-v2-example .calc-icon {
    position: absolute;
    right: 10px;
    bottom: 8px;
    color: #94a3b8;
}

.pricing-v2-example .calc-icon svg {
    width: 22px;
    height: 22px
}

.pricing-v2-example strong {
    color: var(--navy-900, #0b1e4d);
    font-weight: 600
}

/* ===== Card PRO featured ===== */
.pricing-v2-card.is-featured {
    background: linear-gradient(180deg, #0b1e4d 0%, #0a1a45 100%);
    color: #fff;
    border: 2px solid var(--yellow, #fbbf24);
    box-shadow:
        0 0 0 1px rgba(251, 191, 36, .15),
        0 20px 50px rgba(0, 0, 0, .3),
        0 0 40px rgba(251, 191, 36, .12);
  
}

.pricing-v2-card.is-featured .pricing-v2-icon {
    background: rgba(251, 191, 36, .15);
    color: var(--yellow, #fbbf24);
}

.pricing-v2-card.is-featured .pricing-v2-name {
    color: #fff
}

.pricing-v2-card.is-featured .pricing-v2-desc {
    color: rgba(255, 255, 255, .7)
}

.pricing-v2-card.is-featured .pricing-v2-price {
    color: var(--yellow, #fbbf24)
}

.pricing-v2-card.is-featured .pricing-v2-price .unit {
    color: rgba(255, 255, 255, .75)
}

.pricing-v2-card.is-featured .pricing-v2-moms {
    color: rgba(255, 255, 255, .6)
}

.pricing-v2-card.is-featured .pricing-v2-features li {
    color: rgba(255, 255, 255, .95)
}

.pricing-v2-card.is-featured .pricing-v2-features li::before {
    border-color: var(--yellow, #fbbf24);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fbbf24' stroke-width='3.5'><polyline points='20 6 9 17 4 12'/></svg>");
}

.pricing-v2-card.is-featured .pricing-v2-cost {
    border-top-color: rgba(255, 255, 255, .15);
}

.pricing-v2-card.is-featured .pricing-v2-cost-head {
    color: var(--yellow, #fbbf24)
}

.pricing-v2-card.is-featured .pricing-v2-cost-percent {
    color: #fff
}

.pricing-v2-card.is-featured .pricing-v2-example {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
}
.badge-open {
    color: var(--color-success-text) !important; 
}
.badge-warning {
    color: var(--color-warning-text) !important
}
.pricing-v2-card.is-featured .pricing-v2-example strong {
    color: #fff
}

.pricing-v2-card.is-featured .pricing-v2-example .info-i {
    border-color: var(--yellow, #fbbf24);
    color: var(--yellow, #fbbf24);
}

.pricing-v2-card.is-featured .pricing-v2-example .calc-icon {
    color: rgba(255, 255, 255, .4)
}

/* Ribbon MEST POPULÄR - lá cờ pennant đè lên cạnh trên card */
.pricing-v2-ribbon {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--yellow, #fbbf24);
    color: var(--navy-900, #0b1e4d);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    padding: 7px 16px 12px;
    /* chữ V cắt xuống ở cạnh đáy */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 70%, 0 100%);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .25));
}

/* ===== Footer band "Viktigt att veta" ===== */
.pricing-v2-foot {
    margin-top: 30px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 26px;
    display: grid;
    grid-template-columns: minmax(280px, auto) 1fr;
    gap: 30px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
}

.pricing-v2-foot-left {
    display: flex;
    align-items: center;
    gap: 14px
}

/* Icon chồng đồng xu vàng */
.pricing-v2-foot-coin {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    position: relative;
}

.pricing-v2-foot-coin .coin {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #fde047, #f59e0b);
    border: 1.5px solid #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c2d12;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
}

.pricing-v2-foot-coin .coin-bottom {
    width: 46px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(180deg, #facc15, #d97706);
    border: 1.5px solid #b45309;
    left: 4px;
    bottom: 2px;
}

.pricing-v2-foot-coin .coin-mid {
    width: 46px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fde047, #eab308);
    border: 1.5px solid #d97706;
    left: 4px;
    bottom: 14px;
}

.pricing-v2-foot-coin .coin-top {
    width: 46px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 30% 30%, #fef9c3, #facc15 70%);
    border: 1.5px solid #d97706;
    left: 4px;
    top: 4px;
    font-size: 14px;
    padding-top: 2px;
}

.pricing-v2-foot-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-900, #0b1e4d);
    margin: 0 0 4px;
    
}

.pricing-v2-foot-text p {
    font-size: 12.5px;
    color: var(--text-soft, #6b7280);
    margin: 0;
    line-height: 1.5;
    max-width: 260px;
}

.pricing-v2-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.pricing-v2-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text, #1f2937);
    line-height: 1.35;
    flex-shrink: 0;
}

.pricing-v2-step-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #eef2ff;
    color: var(--navy-900, #0b1e4d);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-v2-step-icon svg {
    width: 18px;
    height: 18px
}

.pricing-v2-step-arrow {
    color: #cbd5e1;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.pricing-v2-step-arrow svg {
    width: 16px;
    height: 16px
}

/* Trust line cuối */
.pricing-v2-trust {
    text-align: center;
    margin-top: 18px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-v2-trust svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, .5);
    flex-shrink: 0
}
.about .right .main-card {
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--border-2);
    position: relative;
}
.about .right .box-img {
    position: relative;
    border-radius: 16px;
}
.about .right .box-img::before {
    content: "";
    position: absolute;
    bottom: 0;
    z-index: 2;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(transparent, #0d1830);
}
.about .right .bottom-card {
    width: 270px;
    aspect-ratio: 4/6;
    border-radius: 18px;
    border: 1.5px solid rgba(245, 184, 0, .35);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .55);
    position: absolute;
    right: -50px;
    z-index: 3;
    bottom: -50px;
}
.about .left .box-title h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}
.about .left .box-title h2 span {
    color: var(--gold);
}
.about .left .stat-card {
    text-align: center;
}
.about .left .stat-card svg {
    margin: 0 auto;
    margin-bottom: 10px;
    height: 40px !important;
    width: 40px !important;
}
.about .left .stats {
    margin-top: 30px;
}
.about .left .stat-card .stat-value {
    font-weight: 600;
    font-size: 20px;
}
.about .left .ctas {
    margin-top: 40px;
}
.about .left .ctas a {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 5px 20px !important;
}
.about .left .ctas a span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
}
@media (max-width:1400px) {
    .pricing-v2-foot {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
.price-pro {
    padding-top: 200px;
}
section {
    overflow: hidden;
}
/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {

    /* Horizontal scroll + snap to center */
    .pricing-v2-grid-wrap {
        position: relative;
        margin: 0 -24px;
        /* bù padding container để scroll mép-tới-mép */
        overflow: hidden;
    }

    .pricing-v2-grid {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        max-width: none;
        margin: 0;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        /* Padding 2 đầu = (viewport - card) / 2 để card đầu/cuối snap đúng giữa */
        padding: 16px max(24px, calc((100vw - 320px) / 2 - 7px)) 30px;
        /* Ẩn scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pricing-v2-grid::-webkit-scrollbar {
        display: none
    }

    .pricing-v2-card {
        flex: 0 0 320px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .pricing-v2-card.is-featured {
        transform: none
    }

    /* Dot indicators */
    .pricing-v2-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 4px;
    }

    .pricing-v2-dots button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .25);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: all .25s;
    }

    .pricing-v2-dots button.active {
        background: var(--yellow, #fbbf24);
        width: 24px;
        border-radius: 4px;
    }

    .pricing-v2-foot {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .pricing-v2-steps {
        flex-wrap: wrap;
        justify-content: flex-start
    }
}

/* Ẩn dots khi không phải mobile */
@media (min-width:1025px) {
    .pricing-v2-dots {
        display: none
    }
    
}

@media (max-width:996px) {
    .pricing-v2 {
        padding: 50px 0 40px
    }
    .price-pro {
        padding-top: 80px;
    }
    .pricing-v2::before,
    .pricing-v2::after {
        display: none
    }

    .pricing-v2-head h2 {
        font-size: 26px
    }

    .pricing-v2-card {
        padding: 26px 22px 22px
    }

    .pricing-v2-price {
        font-size: 30px
    }

    .pricing-v2-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pricing-v2-step-arrow {
        display: none
    }
}
.prisguide-service-detail {
    padding-top: 10px;
}
.prisguide-service-detail ul {
    display: flex;

    gap: 10px;
    flex-wrap: wrap;
}
.prisguide-service-detail ul li {
    width: calc(50% - 5px);
    padding-left: 15px;
    font-size: 12px;
    position: relative;
}
.prisguide-service-detail  p {
    padding-left: 15px;
    font-size: 12px;
    position: relative;
    margin-bottom: 10px;
}
.prisguide-service-detail  p::before,
.prisguide-service-detail ul li::before {
    content: "\f058";
    font-family: fontawesome;
    position: absolute;
    color: var(--primary);
    left: 0;
}
#prisguideList .prisguide-row {
    align-items: start;
    grid-template-columns: 3fr 1fr 1fr 1fr !important;
}
.prisguide-service .box-img {
    position: relative;
}
.prisguide-service .box-img .category-badge {
    position: absolute;
    font-size: 10px;
    padding: 5px 15px;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    left: 5px;
    top: 5px;
    background:var(--indigo) ;
    color: #fff;
}
.prisguide-col .prisguide-vendor-chip {
    display: flex;
    height: 37px;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: #e0f2fe;
    border: 1px solid #38bdf8;
    box-shadow: 0 2px 8px rgba(56, 189, 248, .2);
    color: #0369a1;
    
}
.prisguide-col .prisguide-vendor-chip:hover {
    border: 1px solid var(--indigo, #4F46E5);
    background: var(--indigo, #4F46E5);
    color: #fff;
}
.prisguide-vendor-name  {
    display: flex;
    flex-direction: column;
}
.prisguide-vendor-name .text-sm {
   color: #000;
   font-size: 16px;
}
.prisguide-vendor-name .text-slate-400 {
    color: var(--primary);
    font-weight: 500 !important;
}
.prisguide-service .box-img {
    border-radius: 10px;
    aspect-ratio: 3/2;
    overflow: hidden;
    width: 230px;
    flex-shrink: 0;
}
@media (max-width: 768px) {

    .prisguide-list {
        border: none;
        background: transparent;
    }

    .prisguide-row.is-head {
        display: none;
    }

    .prisguide-row.is-item {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 18px;
        border-radius: 20px;
        background: #fff;
        margin-bottom: 16px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 20px rgba(15, 23, 42, .04);
    }

    .prisguide-col {
        width: 100% !important;
        padding: 0 !important;
        border: none !important;
    }

    /* SERVICE */
    .prisguide-service {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .prisguide-service .box-img {
        width: 100%;
    }
    .prisguide-service-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .prisguide-service-icon .material-symbols-outlined {
        font-size: 24px;
    }

    .prisguide-service-name {
        font-size: 18px;
        line-height: 1.3;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 4px;
    }

    .prisguide-service-unit {
        font-size: 13px;
        color: #64748b;
        margin-bottom: 10px;
    }

    /* DETAIL */
    .prisguide-service-detail ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-left: 0;
        margin: 0;
    }

    .prisguide-service-detail li {
        list-style: none;
        position: relative;
        padding-left: 24px;
        font-size: 14px;
        line-height: 1.5;
        width: 100% !important;
        color: #334155;
    }
    .prisguide-vendor-name .text-sm {
        font-size: 11px;
    }

    /* PRICE */
  

    /* COMPANY */
    .agent-info {
        margin-top: 10px;
    }

    .prisguide-vendor-avatar {
        width: 42px;
        height: 42px;
        border-radius: 999px;
        object-fit: cover;
    }

    /* BUTTON */
    .prisguide-vendor-chip {
        width: 100%;
        height: 52px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
    }

}