/* =========================================================
   LV.T LUXURY
   DU AN THIET KE
   PREMIUM ARCHITECTURE PORTFOLIO
   ========================================================= */

:root {
    --design-black: #080808;
    --design-dark: #101010;
    --design-card: #141414;
    --design-card-hover: #191919;

    --design-gold: #d4af37;
    --design-gold-light: #e6c85c;

    --design-white: #ffffff;
    --design-text: #eeeeee;
    --design-gray: #999999;

    --design-border: rgba(212, 175, 55, 0.22);

    --design-container: 1380px;
}


/* =========================================================
   PAGE
   ========================================================= */

.du-an-page {
    background: var(--design-black);
    color: var(--design-text);
    min-height: 100vh;
}

.du-an-page main {
    background: var(--design-black);
}


/* =========================================================
   MAIN SECTION
   ========================================================= */

.du-an-section {
    width: 100%;
    padding: 90px 20px 120px;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(212, 175, 55, 0.055),
            transparent 38%),
        var(--design-black);
}

.du-an-container {
    width: min(100%, var(--design-container));
    margin: 0 auto;
}


/* =========================================================
   PAGE HEADER
   ========================================================= */

.du-an-header {
    max-width: 900px;
    margin: 0 auto 60px;

    text-align: center;
}

.du-an-title {
    margin: 0;

    color: var(--design-white);

    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 400;

    letter-spacing: 0.03em;
}

.du-an-title::after {
    content: "";

    display: block;

    width: 70px;
    height: 1px;

    margin: 28px auto 0;

    background: var(--design-gold);
}

.du-an-desc {
    max-width: 760px;

    margin: 25px auto 0;

    color: var(--design-gray);

    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300;
}


/* =========================================================
   CURRENT PROJECT INFO
   ========================================================= */

.project-current-info {
    position: relative;

    margin-bottom: 35px;
    padding: 30px 35px;

    background:
        linear-gradient(90deg,
            rgba(212, 175, 55, 0.045),
            transparent),
        var(--design-dark);

    border-left: 2px solid var(--design-gold);

    border-top: 1px solid var(--design-border);
    border-right: 1px solid rgba(255, 255, 255, .04);
    border-bottom: 1px solid var(--design-border);
}

.project-title-active {
    margin: 0 0 12px;

    color: var(--design-white);

    font-family: "Playfair Display", serif;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.2;
    font-weight: 400;
}

.project-location-active {
    color: var(--design-gray);

    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 14px;

    letter-spacing: .06em;
}

.project-location-active i {
    margin-right: 7px;

    color: var(--design-gold);
}

.view-detail-link {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    color: var(--design-gold) !important;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: .18em;

    transition:
        color .3s ease,
        gap .3s ease;
}

.view-detail-link:hover {
    color: var(--design-gold-light) !important;

    gap: 14px;
}


/* =========================================================
   GALLERY AREA
   ========================================================= */

.position-relative {
    position: relative;
}


/* =========================================================
   LOADING
   ========================================================= */

.loading-overlay {
    position: absolute;

    inset: 0;

    z-index: 20;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 400px;

    background: rgba(8, 8, 8, .86);

    backdrop-filter: blur(6px);

    transition: opacity .4s ease;
}

.spinner {
    width: 45px;
    height: 45px;

    border: 2px solid rgba(212, 175, 55, .18);

    border-top-color: var(--design-gold);

    border-radius: 50%;

    animation: lvtDesignSpin 1s linear infinite;
}

@keyframes lvtDesignSpin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   FEATURED GALLERY
   ========================================================= */

.gallery-layout {
    display: grid;

    grid-template-columns: 1.35fr .65fr;

    gap: 8px;

    width: 100%;
    min-height: 680px;
}


/* =========================================================
   LARGE IMAGE
   ========================================================= */

.gallery-left {
    position: relative;

    width: 100%;
    min-height: 680px;

    overflow: hidden;

    background: #111;
}

.main-image-container {
    width: 100%;
    height: 100%;

    overflow: hidden;
}

.main-image-container img {
    width: 100%;
    height: 100%;

    min-height: 680px;

    display: block;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2, .6, .2, 1),
        filter .5s ease;
}

.gallery-left:hover .main-image-container img {
    transform: scale(1.025);

    filter: brightness(.90);
}


/* =========================================================
   RIGHT IMAGE GRID
   ========================================================= */

.gallery-right {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);

    gap: 8px;

    min-width: 0;
}

.gallery-item {
    position: relative;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    background: #111;

    cursor: pointer;
}

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .48),
            transparent 50%);

    opacity: 0;

    pointer-events: none;

    transition: opacity .35s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2, .6, .2, 1),
        filter .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);

    filter: brightness(.82);
}


/* =========================================================
   SLIDER BUTTONS
   ========================================================= */

.slider-btn {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    transform: translateY(-50%);

    border: 1px solid rgba(255, 255, 255, .35);

    background: rgba(0, 0, 0, .55);

    color: #fff;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}

.slider-btn:hover {
    background: var(--design-gold);

    border-color: var(--design-gold);

    color: #000;
}

.slider-btn-prev {
    left: 20px;
}

.slider-btn-next {
    right: 20px;
}


/* =========================================================
   PROJECT COLLECTION
   ========================================================= */

.projects-grid-list-wrapper {
    width: 100%;

    margin-top: 110px !important;

    padding-top: 0 !important;
}


/* =========================================================
   COLLECTION TITLE
   ========================================================= */

.section-title-wrapper {
    max-width: 850px;

    margin-left: auto;
    margin-right: auto;
}

.section-title-wrapper h2 {
    margin-bottom: 20px;

    color: var(--design-white) !important;

    font-family: "Playfair Display", serif;

    font-size: clamp(28px, 4vw, 44px);

    font-weight: 400;

    line-height: 1.2;

    letter-spacing: .04em;
}

.section-title-wrapper p {
    max-width: 650px;

    margin-left: auto;
    margin-right: auto;

    color: var(--design-gray) !important;

    font-family: "Be Vietnam Pro", sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PROJECT GRID (STRICT 3-COLUMN LAYOUT)
   ========================================================= */

#projects-grid-list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 32px !important;
    width: 100% !important;
    max-width: 1520px !important;
    margin: 0 auto !important;
}

#projects-grid-list>.col,
#projects-grid-list>div {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    padding: 0 !important;
    min-width: 0 !important;
}

@media (max-width: 1399.98px) and (min-width: 992px) {
    #projects-grid-list {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 991.98px) and (min-width: 768px) {
    #projects-grid-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767.98px) {
    #projects-grid-list {
        grid-template-columns: 1fr !important;
    }
}


/* =========================================================
   PROJECT CARD
   ========================================================= */

.project-card {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: var(--design-card);

    border: 1px solid rgba(255, 255, 255, .06);

    transition:
        transform .45s cubic-bezier(.2, .6, .2, 1),
        border-color .35s ease,
        background .35s ease;
}

.project-card:hover {
    transform: translateY(-8px);

    background: var(--design-card-hover);

    border-color: var(--design-border);
}


/* =========================================================
   PROJECT CARD IMAGE
   ========================================================= */

.project-card-image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #111;
}

.project-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2, .6, .2, 1),
        filter .5s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.06);

    filter: brightness(.78);
}


/* =========================================================
   PROJECT CARD OVERLAY
   ========================================================= */

.project-card-overlay {
    position: absolute;

    inset: 0;

    z-index: 5;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, .28);

    opacity: 0;

    transition: opacity .4s ease;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-view {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 20px;

    background: rgba(0, 0, 0, .65);

    border: 1px solid var(--design-gold);

    color: var(--design-gold);

    font-size: 10px;

    letter-spacing: .18em;

    text-transform: uppercase;
}


/* =========================================================
   PROJECT CARD CONTENT
   ========================================================= */

.project-card-content {
    padding: 25px 25px 28px;
}

.project-card-category {
    margin-bottom: 10px;

    color: var(--design-gold);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .18em;
}

.project-card-title {
    margin: 0 0 18px;

    color: var(--design-white);

    font-family: "Playfair Display", serif;

    font-size: 22px;

    line-height: 1.35;

    font-weight: 400;
}

.project-card-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 16px;

    padding-top: 17px;

    border-top: 1px solid rgba(255, 255, 255, .08);

    color: var(--design-gray);

    font-size: 11px;

    letter-spacing: .03em;
}

.project-card-meta span {
    display: inline-flex;

    align-items: center;

    gap: 6px;
}

.project-card-meta i {
    color: var(--design-gold);
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.design-empty {
    width: 100%;

    padding: 100px 20px;

    text-align: center;

    color: var(--design-gray);
}

.design-empty h3 {
    margin-bottom: 12px;

    color: var(--design-white);

    font-family: "Playfair Display", serif;

    font-weight: 400;
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, .96);
}

.lightbox.active {
    display: flex;
}

.lightbox-content-wrapper {
    width: 100%;

    max-width: 1200px;

    text-align: center;
}

.lightbox-image {
    display: block;

    max-width: 100%;
    max-height: 78vh;

    margin: 0 auto;

    object-fit: contain;
}

.lightbox-caption {
    margin-top: 18px;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 20px;
}

.lightbox-counter {
    margin-top: 8px;

    color: var(--design-gray);

    font-size: 12px;
}


/* =========================================================
   LIGHTBOX BUTTONS
   ========================================================= */

.lightbox-close,
.lightbox-btn {
    position: fixed;

    z-index: 10;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, .2);

    background: rgba(0, 0, 0, .5);

    color: #fff;

    cursor: pointer;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}

.lightbox-close {
    top: 25px;
    right: 30px;

    width: 45px;
    height: 45px;

    font-size: 28px;
}

.lightbox-btn {
    top: 50%;

    width: 50px;
    height: 50px;

    transform: translateY(-50%);
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-close:hover,
.lightbox-btn:hover {
    background: var(--design-gold);

    border-color: var(--design-gold);

    color: #000;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .du-an-section {
        padding-top: 75px;
    }

    .gallery-layout {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .gallery-left {
        min-height: 550px;
    }

    .main-image-container img {
        min-height: 550px;
    }

    .gallery-right {
        min-height: 400px;

        grid-template-rows: repeat(3, 130px);
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .du-an-section {
        padding: 60px 15px 80px;
    }

    .du-an-header {
        margin-bottom: 40px;
    }

    .du-an-title {
        font-size: 36px;
    }

    .du-an-desc {
        font-size: 14px;
    }

    .project-current-info {
        padding: 25px;
    }

    .project-title-active {
        font-size: 27px;
    }

    .gallery-left {
        min-height: 420px;
    }

    .main-image-container img {
        min-height: 420px;
    }

    .gallery-right {
        grid-template-columns: repeat(2, 1fr);

        grid-template-rows: repeat(3, 130px);

        gap: 6px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }

    .projects-grid-list-wrapper {
        margin-top: 80px !important;
    }

    .section-title-wrapper h2 {
        font-size: 30px;
    }

    .project-card-content {
        padding: 20px;
    }

    .project-card-title {
        font-size: 20px;
    }

    .lightbox {
        padding: 20px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

}

/* =========================================================
   FORCING ABSOLUTE VERTICAL STACKING & 4-COLUMN GRID FOR /du-an-thiet-ke.html
   ========================================================= */
#projects-grid-list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

#projects-grid-list>div,
#projects-grid-list>.col,
#projects-grid-list>.col-lg-4,
#projects-grid-list>.col-md-6 {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: 0 !important;
}

/* Card: strict vertical column layout */
#projects-grid-list .lvt-project-card,
#projects-grid-list .project-card,
.lvt-project-card-link {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    background: #111111 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-decoration: none !important;
    color: inherit !important;
    position: relative !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* Image wrapper on top */
#projects-grid-list .lvt-card-thumb,
#projects-grid-list .project-card-image,
#projects-grid-list .lvt-card-img-wrap {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    background: #0d0d0d !important;
    flex-shrink: 0 !important;
    float: none !important;
    display: block !important;
}

#projects-grid-list .lvt-card-thumb img,
#projects-grid-list .project-card-image img,
#projects-grid-list .lvt-card-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}

/* Content wrapper strictly below */
#projects-grid-list .lvt-card-body,
#projects-grid-list .project-card-content {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    width: 100% !important;
    padding: 28px !important;
    background: #111111 !important;
    position: relative !important;
    float: none !important;
}

/* Responsive grid breakpoints */
@media (max-width: 1399.98px) and (min-width: 992px) {
    #projects-grid-list {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 991.98px) and (min-width: 768px) {
    #projects-grid-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767.98px) {
    #projects-grid-list {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   STRICT FIX FOR .lvt-card-badge ON /du-an-thiet-ke.html
   ========================================================= */
#projects-grid-list .lvt-card-badge,
.lvt-card-badge {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    max-height: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 14px !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    background: rgba(8, 8, 8, 0.85) !important;
    color: #C9A227 !important;
    border: 1px solid rgba(201, 162, 39, 0.35) !important;
    z-index: 5 !important;
    pointer-events: none !important;
    box-sizing: border-box !important;
    flex: none !important;
    margin: 0 !important;
    transform: none !important;
}



/* =========================================================
   RESPONSIVE - SMALL PHONE
   ========================================================= */

@media (max-width: 480px) {

    .du-an-section {
        padding: 50px 12px 70px;
    }

    .du-an-title {
        font-size: 30px;
    }

    .project-current-info {
        padding: 20px;
    }

    .project-title-active {
        font-size: 24px;
    }

    .project-location-active {
        font-size: 12px;
    }

    .gallery-left {
        min-height: 330px;
    }

    .main-image-container img {
        min-height: 330px;
    }

    .gallery-right {
        gap: 5px;

        grid-template-rows: repeat(3, 100px);
    }

    .slider-btn {
        width: 38px;
        height: 38px;
    }

    .section-title-wrapper h2 {
        font-size: 27px;
    }

    .project-card-title {
        font-size: 18px;
    }

    .project-card-content {
        padding: 18px;
    }

    .lightbox-caption {
        font-size: 17px;
    }

}

/* =========================================================
   CONSULTATION SECTION
   ĐỒNG BỘ VỚI du-an-chi-tiet.css
   ========================================================= */

.consultation {
    width: 100%;
    background: #101010;
    padding: 30px 0 32px;
}

.consultation .container {
    width: min(calc(100% - 80px), 1180px);
    margin: 0 auto;
}

/* Khung tổng */
.consult-box {
    width: 100%;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    padding: 34px 48px;

    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 55px;

    background: linear-gradient(120deg,
            #111111 0%,
            #0c0c0c 100%);

    box-sizing: border-box;
}

/* =========================================================
   LEFT - NỘI DUNG TƯ VẤN
   ========================================================= */

.consult-intro {
    min-width: 0;
}

.consult-kicker {
    display: block;

    color: #d9a91d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.4;

    margin-bottom: 7px;
}

.consult-intro h2 {
    margin: 7px 0 12px;

    color: #f3f0e8;

    font-family: var(--sans, "DM Sans", Arial, sans-serif);
    font-size: 29px;
    font-weight: 500;
    line-height: 1.2;
}

.consult-intro h2 span {
    color: #d9a91d;
}

.consult-intro p {
    margin: 0 0 22px;

    color: #bbbbbb;

    font-size: 13px;
    line-height: 1.65;
}

/* =========================================================
   BENEFITS
   ========================================================= */

.benefits {
    list-style: none;

    padding: 0;
    margin: 0;

    display: grid;
    gap: 12px;
}

.benefits li {
    display: flex;
    align-items: center;

    gap: 13px;

    min-width: 0;
}

.benefits li>span {
    flex: 0 0 28px;

    width: 28px;

    color: #d9a91d;

    font-size: 24px;
    line-height: 1;

    text-align: center;
}

.benefits b {
    display: block;

    color: #d9a91d;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.4;
}

.benefits small {
    display: block;

    margin-top: 2px;

    color: #888888;

    font-size: 11px;
    line-height: 1.4;
}

/* =========================================================
   RIGHT - FORM
   ========================================================= */

.consult-form {
    width: 100%;

    display: grid;
    gap: 13px;

    min-width: 0;
}

.form-row {
    width: 100%;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 14px;
}

.field {
    position: relative;
    display: block;

    min-width: 0;
}

/* INPUT / SELECT / TEXTAREA */

.field input,
.field select,
.field textarea {
    width: 100%;

    background: #111111;

    border: 1px solid #353535;
    border-radius: 7px;

    color: #eeeeee;

    outline: none;

    font-family: var(--sans, "DM Sans", Arial, sans-serif);
    font-size: 13px;

    box-sizing: border-box;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.field input,
.field select {
    height: 50px;

    padding: 14px 42px 14px 15px;
}

.field textarea {
    min-height: 96px;

    padding: 14px 15px;

    resize: vertical;
}

/* Placeholder */

.field input::placeholder,
.field textarea::placeholder {
    color: #888888;
}

/* Focus */

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #d9a91d;

    box-shadow:
        0 0 0 2px rgba(217, 169, 29, .08);

    background: #121212;
}

/* =========================================================
   ICON TRONG INPUT
   ========================================================= */

.field-icon {
    position: absolute;

    right: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #aaaaaa;

    font-size: 18px;

    pointer-events: none;
}

/* =========================================================
   SELECT
   ========================================================= */

.select-field {
    position: relative;
}

.select-field::after {
    content: "⌄";

    position: absolute;

    right: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #aaaaaa;

    font-size: 16px;

    pointer-events: none;
}

.select-field select {
    appearance: none;

    padding-right: 42px;
}

/* =========================================================
   BOTTOM FORM
   ========================================================= */

.form-bottom {
    display: flex;

    align-items: center;

    gap: 18px;
}

.agree {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #dddddd;

    font-size: 12px;

    line-height: 1.4;
}

.agree input {
    width: 17px;
    height: 17px;

    margin: 0;

    accent-color: #d9a91d;
}

.agree a {
    color: #d9a91d;

    text-decoration: none;
}

.agree a:hover {
    color: #f0bf28;

    text-decoration: underline;
}

/* =========================================================
   BUTTON
   ========================================================= */

.consult-form button {
    margin-left: auto;

    min-width: 330px;
    height: 49px;

    padding: 0 25px;

    border: 0;
    border-radius: 6px;

    background: linear-gradient(180deg,
            #efc33d,
            #dcae21);

    color: #111111;

    font-family: var(--sans, "DM Sans", Arial, sans-serif);

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease;
}

.consult-form button:hover {
    filter: brightness(1.05);

    box-shadow:
        0 8px 25px rgba(217, 169, 29, .16);
}

.consult-form button:active {
    transform: translateY(1px);
}

.consult-form button:disabled {
    opacity: .6;

    cursor: wait;

    box-shadow: none;
}

/* =========================================================
   MESSAGE
   ========================================================= */

.form-message {
    min-height: 20px;

    margin: 0;

    font-size: 12px;
}

.form-message.success {
    color: #9fe08a;
}

.form-message.error {
    color: #ff9696;
}

/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
    width: 100%;

    background: #090909;

    border-top: 1px solid #151515;

    padding: 27px 0;
}

.trust-strip .container {
    width: min(calc(100% - 80px), 1180px);
    margin: 0 auto;
}

.trust-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid>div {
    display: flex;

    gap: 14px;

    padding: 0 30px;

    border-right: 1px solid #2b2b2b;

    min-width: 0;
}

.trust-grid>div:first-child {
    padding-left: 0;
}

.trust-grid>div:last-child {
    border-right: 0;
}

.trust-grid span {
    flex: 0 0 auto;

    color: #d9a91d;

    font-size: 25px;
    line-height: 1;
}

.trust-grid b {
    display: block;

    color: #e7e1d4;

    font-size: 10px;
    letter-spacing: 2px;

    line-height: 1.4;
}

.trust-grid small {
    display: block;

    margin-top: 3px;

    color: #777777;

    font-size: 11px;
    line-height: 1.4;
}

/* =========================================================
   RESPONSIVE - 1100px
   ========================================================= */

@media (max-width: 1100px) {

    .consultation .container,
    .trust-strip .container {
        width: min(calc(100% - 50px), 1180px);
    }

    .consult-box {
        grid-template-columns: 300px minmax(0, 1fr);

        gap: 35px;

        padding: 30px;
    }

    .consult-intro h2 {
        font-size: 27px;
    }

    .consult-form button {
        min-width: 270px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;

        gap: 22px;
    }

    .trust-grid>div:nth-child(2) {
        border-right: 0;
    }

    .trust-grid>div {
        padding: 0;
    }

    .trust-grid>div:nth-child(3),
    .trust-grid>div:nth-child(4) {
        padding-top: 15px;
    }
}

/* =========================================================
   RESPONSIVE - 800px
   ========================================================= */

@media (max-width: 800px) {

    .consultation .container,
    .trust-strip .container {
        width: calc(100% - 34px);
    }

    .consult-box {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 27px 20px;
    }

    .consult-intro h2 {
        font-size: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-bottom {
        display: grid;

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .agree {
        align-items: flex-start;
    }

    .consult-form button {
        width: 100%;

        min-width: 0;

        margin-left: 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid>div,
    .trust-grid>div:nth-child(n) {
        padding: 15px 0;

        border-right: 0;

        border-bottom: 1px solid #242424;
    }

    .trust-grid>div:first-child {
        padding-top: 0;
    }

    .trust-grid>div:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   RESPONSIVE - 480px
   ========================================================= */

@media (max-width: 480px) {

    .consultation {
        padding: 25px 0 28px;
    }

    .consult-box {
        padding: 22px 16px;

        border-radius: 7px;
    }

    .consult-kicker {
        font-size: 10px;

        letter-spacing: 2.5px;
    }

    .consult-intro h2 {
        font-size: 24px;
    }

    .consult-intro p {
        font-size: 12px;
    }

    .benefits {
        gap: 10px;
    }

    .benefits li>span {
        font-size: 21px;
    }

    .benefits b {
        font-size: 12px;
    }

    .benefits small {
        font-size: 10px;
    }

    .field input,
    .field select {
        height: 48px;
    }

    .field textarea {
        min-height: 100px;
    }

    .consult-form button {
        height: 48px;

        font-size: 11px;
    }
}

/* =====================================================
   FOOTER - KHỐI LIÊN HỆ NẰM CỐ ĐỊNH BÊN PHẢI
   ===================================================== */

.lvt-footer-top {
    position: relative;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

/* Phần thương hiệu bên trái */
.lvt-footer-brand {
    width: 45%;
    flex: 0 0 45%;
}

/* KHỐI LIÊN HỆ BÊN PHẢI */
.lvt-footer-contact {
    position: absolute !important;
    top: 0;
    right: 0;

    width: 40%;
    max-width: 480px;

    margin: 0 !important;
    padding: 0 0 0 50px !important;

    min-width: 0 !important;
}

/* Tiêu đề LIÊN HỆ */
.lvt-footer-contact h4 {
    margin: 0 0 25px 0;
    padding: 0;

    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Các dòng liên hệ */
.lvt-footer-contact .lvt-contact-item {
    display: flex;
    align-items: flex-start;

    width: 100%;
    margin-bottom: 20px;
}

/* Icon */
.lvt-footer-contact .lvt-contact-item i,
.lvt-footer-contact .lvt-contact-item svg {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 15px;

    border: 1px solid rgba(197, 168, 128, 0.35);
}

/* Nội dung */
.lvt-footer-contact .lvt-contact-item>div,
.lvt-footer-contact .lvt-contact-item span {
    min-width: 0;
}

/* Label */
.lvt-footer-contact .contact-label {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;

    opacity: 0.55;
}

/* Text */
.lvt-footer-contact .contact-value {
    display: block;

    font-size: 14px;
    line-height: 1.6;

    word-break: break-word;
}


/* =====================================================
   DESKTOP LỚN
   ===================================================== */

@media (min-width: 1200px) {
    .lvt-footer-contact {
        right: 0;
        width: 42%;
        max-width: 500px;
        padding-left: 70px !important;
    }
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {
    .lvt-footer-top {
        display: flex !important;
        flex-direction: column;
    }

    .lvt-footer-brand {
        width: 100%;
        flex: none;
        margin-bottom: 40px;
    }

    .lvt-footer-contact {
        position: static !important;

        width: 100%;
        max-width: none;

        padding: 0 !important;
    }
}

/* =========================================
   FIX ICON FOOTER - KHÔNG CHỒNG 2 Ô VUÔNG
   ========================================= */

.lvt-footer-contact .lvt-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

/* Chỉ để 1 khung duy nhất */
.lvt-footer-contact .lvt-contact-item i,
.lvt-footer-contact .lvt-contact-item svg {
    box-sizing: border-box;

    width: 42px !important;
    height: 42px !important;

    min-width: 42px;
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid rgba(197, 168, 128, 0.45) !important;
    outline: none !important;
    box-shadow: none !important;

    background: transparent;
}

/* Nếu icon đang có pseudo-element tạo thêm ô */
.lvt-footer-contact .lvt-contact-item i::before,
.lvt-footer-contact .lvt-contact-item i::after,
.lvt-footer-contact .lvt-contact-item svg::before,
.lvt-footer-contact .lvt-contact-item svg::after {
    border: none !important;
    box-shadow: none !important;
}

/* Nội dung bên phải icon */
.lvt-footer-contact .lvt-contact-item>div {
    flex: 1;
    min-width: 0;
}

/* Label */
.lvt-footer-contact .contact-label {
    margin: 0 0 5px;
}

/* Giá trị */
.lvt-footer-contact .contact-value {
    margin: 0;
    line-height: 1.6;
}