/* =========================================================
   LV.T LUXURY — PREMIUM HERO
   ========================================================= */

:root {
    --lvt-black: #050505;
    --lvt-black-soft: #0a0a0a;
    --lvt-gold: #d4af37;
    --lvt-gold-dark: #9d7b16;
    --lvt-white: #f5f5f5;
    --lvt-gray: #999999;
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    background:
        radial-gradient(circle at 82% 48%,
            rgba(212, 175, 55, 0.055),
            transparent 27%),
        radial-gradient(circle at 15% 80%,
            rgba(255, 255, 255, 0.025),
            transparent 25%),
        #050505;

    color: #fff;

    display: flex;
    align-items: center;

    isolation: isolate;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.hero-bg-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: 50%;

    transform: translateY(-50%);

    background:
        radial-gradient(circle,
            rgba(212, 175, 55, 0.08),
            transparent 65%);

    filter: blur(30px);

    pointer-events: none;

    z-index: -3;
}


.hero-noise {
    position: absolute;

    inset: 0;

    opacity: 0.025;

    pointer-events: none;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");

    z-index: -2;
}


/* =========================================================
   RIGHT GOLD LINES
   ========================================================= */

.hero-decoration {
    position: absolute;

    right: 25px;
    top: 8%;

    height: 80%;

    display: flex;
    gap: 8px;

    opacity: 0.55;

    pointer-events: none;
}


.hero-decoration span {
    width: 1px;
    height: 100%;

    background:
        linear-gradient(to bottom,
            transparent,
            rgba(212, 175, 55, .55),
            transparent);
}


.hero-decoration span:nth-child(2) {
    opacity: .7;
}

.hero-decoration span:nth-child(3) {
    opacity: .45;
}

.hero-decoration span:nth-child(4) {
    opacity: .25;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.hero-container {

    width: min(1380px, 92%);

    margin: 0 auto;

    min-height: 100vh;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr) minmax(0, 1.05fr);

    align-items: center;

    gap: 70px;

    padding:
        100px 0 80px;

}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.hero-content {

    position: relative;

    z-index: 5;

    max-width: 650px;

}


/* =========================================================
   BADGE
   ========================================================= */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    padding:
        10px 23px;

    margin-bottom: 55px;

    border:

        1px solid rgba(212, 175, 55, .35);

    border-radius: 100px;

    color: #d4af37;

    font-size: 11px;

    letter-spacing: 2.4px;

    font-weight: 500;

    text-transform: uppercase;

    background:
        rgba(212, 175, 55, .025);

}


.hero-badge-dot {

    width: 6px;
    height: 6px;

    background: var(--lvt-gold);

    border-radius: 50%;

    box-shadow:
        0 0 12px rgba(212, 175, 55, .7);

}


/* =========================================================
   TITLE
   ========================================================= */

.hero-title {

    margin: 0;

    padding: 0;

    display: flex;

    flex-direction: column;

    gap: 2px;

    font-family:
        "Times New Roman",
        Georgia,
        serif;

    font-weight: 400;

    letter-spacing: 2px;

    line-height: 1.08;

}


.hero-title span {

    display: block;

    font-size:
        clamp(38px,
            3.35vw,
            66px);

    white-space: nowrap;

}


.hero-title-white {

    color: #f4f4f4;

}


.hero-title-gold {

    color: var(--lvt-gold);

}


/* =========================================================
   DIVIDER
   ========================================================= */

.hero-divider {

    width: 62px;

    height: 1px;

    background:
        var(--lvt-gold);

    margin:
        42px 0 38px;

}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.hero-description {

    max-width: 560px;

    margin: 0;

    color: #a7a7a7;

    font-size: 15px;

    line-height: 1.95;

    font-weight: 300;

    letter-spacing: .15px;

}


.hero-description-second {

    margin-top: 7px;

}


/* =========================================================
   FEATURE
   ========================================================= */

.hero-feature {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 55px;

    color: #dedede;

    font-size: 12px;

    letter-spacing: 1.2px;

    font-weight: 500;

}


.hero-check {

    width: 34px;
    height: 34px;

    border:
        1px solid rgba(212, 175, 55, .55);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--lvt-gold);

    background:
        rgba(212, 175, 55, .035);

}


.hero-check i {

    font-size: 14px;

}


/* =========================================================
   CTA
   ========================================================= */

.hero-project-link {

    display: inline-flex;

    align-items: center;

    gap: 35px;

    margin-top: 48px;

    color: var(--lvt-gold);

    text-decoration: none;

    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 500;

    transition:
        .35s ease;

}


.hero-project-link:hover {

    color: #f0d477;

    gap: 45px;

}


.hero-arrow {

    position: relative;

    width: 105px;

    display: flex;

    align-items: center;

}


.hero-arrow::before {

    content: "";

    width: 100%;

    height: 1px;

    background:
        var(--lvt-gold);

}


.hero-arrow i {

    position: absolute;

    right: 0;

    font-size: 17px;

}


/* =========================================================
   RIGHT VISUAL
   ========================================================= */

.hero-visual {

    position: relative;

    width: 100%;

    height: 700px;

}


/* =========================================================
   MAIN IMAGE
   ========================================================= */

.hero-image-main {

    position: absolute;

    width: 69%;

    height: 76%;

    right: 11%;

    top: 3%;

    overflow: hidden;

    border-radius: 10px;

    border:
        1px solid rgba(212, 175, 55, .45);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .6);

    z-index: 2;

}


.hero-image-main::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .05),
            rgba(0, 0, 0, .4));

}


.hero-image-main img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    filter:
        brightness(.76) contrast(1.05) saturate(.85);

    transition:
        transform 1.2s ease;

}


.hero-section:hover .hero-image-main img {

    transform: scale(1.035);

}


/* =========================================================
   SMALL IMAGE
   ========================================================= */

.hero-image-small {

    position: absolute;

    width: 49%;

    height: 55%;

    right: 0;

    bottom: 13%;

    overflow: hidden;

    border-radius: 10px;

    border:
        1px solid rgba(212, 175, 55, .5);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .8);

    z-index: 5;

}


.hero-image-small img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    filter:
        brightness(.92) contrast(1.02) saturate(.88);

    transition:
        transform .9s ease;

}


.hero-image-small:hover img {

    transform: scale(1.04);

}


/* =========================================================
   MARBLE PANEL
   ========================================================= */

.hero-marble {

    position: absolute;

    width: 36%;

    height: 76%;

    right: 2%;

    bottom: 0;

    border-radius: 8px;

    border:
        1px solid rgba(212, 175, 55, .25);

    background:

        linear-gradient(145deg,
            rgba(255, 255, 255, .02),
            rgba(0, 0, 0, .35));

    z-index: 1;

    opacity: .9;

}


.hero-marble::before {

    content: "";

    position: absolute;

    width: 130%;

    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(212, 175, 55, .45),
            transparent);

    transform:
        rotate(48deg);

    top: 60%;

    left: -15%;

}


/* =========================================================
   EXPERIENCE BADGE
   ========================================================= */

.hero-experience {

    position: absolute;

    left: 2%;

    bottom: 17%;

    width: 355px;

    min-height: 104px;

    padding:
        20px 30px;

    display: flex;

    align-items: center;

    gap: 28px;

    background:
        rgba(12, 12, 12, .92);

    backdrop-filter:
        blur(15px);

    border:
        1px solid var(--lvt-gold);

    border-radius: 9px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .7);

    z-index: 10;

}


.experience-number {

    color:
        var(--lvt-gold);

    font-family:
        Georgia,
        serif;

    font-size: 43px;

    font-weight: 400;

    line-height: 1;

}


.experience-text {

    color: #f4f4f4;

    font-size: 11px;

    line-height: 1.65;

    letter-spacing: 1.8px;

}


/* =========================================================
   SCROLL
   ========================================================= */

.hero-scroll {

    position: absolute;

    left: 50%;

    bottom: 30px;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

    color: var(--lvt-gold);

    font-size: 10px;

    letter-spacing: 3px;

}


.scroll-line {

    width: 1px;

    height: 48px;

    background:
        linear-gradient(to bottom,
            var(--lvt-gold),
            transparent);

}


/* =========================================================
   HEADER — TRANSPARENT LUXURY
   ========================================================= */

.site-header {

    position: absolute !important;

    top: 0;

    left: 0;

    width: 100%;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .65),
            transparent) !important;

    border-bottom:
        1px solid rgba(255, 255, 255, .035) !important;

    backdrop-filter:
        blur(4px);

    z-index: 1000;

}


.site-header .header-container {

    height: 82px;

}


.site-header .menu a {

    color: rgba(255, 255, 255, .8);

    font-size: 11px;

    letter-spacing: 1.5px;

}


.site-header .menu a:hover {

    color: var(--lvt-gold);

}


.site-header .logo-title {

    color: #fff;

}


.site-header .logo-subtitle {

    color: #999;

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1100px) {

    .hero-container {

        grid-template-columns:
            1fr;

        padding:
            140px 0 100px;

    }

    .hero-content {

        max-width: 760px;

        margin: 0 auto;

        text-align: center;

    }

    .hero-badge {

        margin-bottom: 35px;

    }

    .hero-divider {

        margin:
            30px auto;

    }

    .hero-description {

        margin-left: auto;
        margin-right: auto;

    }

    .hero-feature {

        justify-content: center;

    }

    .hero-project-link {

        justify-content: center;

    }

    .hero-visual {

        max-width: 800px;

        margin:
            0 auto;

        height: 600px;

    }

}


@media (max-width: 700px) {

    .hero-section {

        min-height:
            auto;

    }

    .hero-container {

        width: 90%;

        padding:
            125px 0 90px;

        gap: 45px;

    }

    .hero-title span {

        font-size:
            clamp(29px,
                8vw,
                42px);

        white-space:
            normal;

    }

    .hero-description {

        font-size: 13px;

        line-height: 1.8;

    }

    .hero-feature {

        font-size: 10px;

        letter-spacing: 1px;

    }

    .hero-visual {

        height: 430px;

    }

    .hero-image-main {

        width: 82%;

        height: 75%;

        right: 5%;

    }

    .hero-image-small {

        width: 58%;

        height: 55%;

        right: 0;

        bottom: 4%;

    }

    .hero-marble {

        display: none;

    }

    .hero-experience {

        left: 0;

        bottom: 0;

        width: 245px;

        min-height: 78px;

        padding: 15px 18px;

        gap: 16px;

    }

    .experience-number {

        font-size: 32px;

    }

    .experience-text {

        font-size: 8px;

        letter-spacing: 1.2px;

    }

    .hero-decoration {

        display: none;

    }

    .hero-scroll {

        display: none;

    }

}


@media (max-width: 480px) {

    .hero-container {

        padding-top: 110px;

    }

    .hero-badge {

        font-size: 8px;

        letter-spacing: 1.5px;

        padding:
            8px 14px;

    }

    .hero-title span {

        font-size: 28px;

        letter-spacing: 1px;

    }

    .hero-feature {

        justify-content: flex-start;

        text-align: left;

    }

    .hero-project-link {

        justify-content: flex-start;

    }

    .hero-visual {

        height: 350px;

    }

    .hero-experience {

        width: 220px;

    }

}

/* =========================================================
   LV.T LUXURY — CONSULTATION HORIZONTAL FINAL
   IMAGE LEFT — FORM RIGHT
   ========================================================= */

#dang-ky-tu-van {
    width: 100% !important;
    margin: 0 !important;
    padding: 120px 0 !important;
    background: #050505 !important;
    color: #fff !important;
    overflow: visible !important;
}


/* ===============================
   MAIN CONTAINER
   =============================== */

#dang-ky-tu-van .consultation-editorial-container {
    width: min(1400px, calc(100% - 80px)) !important;
    margin: 0 auto !important;

    display: grid !important;

    /* QUAN TRỌNG */
    grid-template-columns: minmax(450px, .9fr) minmax(550px, 1.1fr) !important;

    gap: 80px !important;

    align-items: center !important;

    max-width: 1400px !important;
}


/* ===============================
   LEFT — IMAGE
   =============================== */



/* ===============================
   IMAGE WRAPPER
   =============================== */

#dang-ky-tu-van .consultation-image-wrapper {
    position: relative !important;

    width: 100% !important;
    height: 620px !important;

    overflow: visible !important;
}


/* ===============================
   MAIN IMAGE
   =============================== */

#dang-ky-tu-van .consultation-main-img {
    display: block !important;

    width: 100% !important;
    height: 620px !important;

    object-fit: cover !important;
    object-position: center !important;

    border-radius: 8px !important;

    border: 1px solid rgba(212, 175, 55, .6) !important;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .65) !important;
}


/* Nếu img nằm trong wrapper */

#dang-ky-tu-van .consultation-image-wrapper img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
}


/* ===============================
   TRUST CARD
   =============================== */

#dang-ky-tu-van .consultation-badge-box {
    position: absolute !important;

    right: -45px !important;
    bottom: 35px !important;

    z-index: 20 !important;

    width: 340px !important;
    min-height: 125px !important;

    padding: 25px 30px !important;

    display: flex !important;
    align-items: center !important;

    gap: 20px !important;

    background: rgba(15, 15, 15, .96) !important;

    border: 1px solid #d4af37 !important;

    border-radius: 8px !important;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .8) !important;

    backdrop-filter: blur(15px) !important;
}


/* ===============================
   RIGHT — FORM
   =============================== */


/* ===============================
   FORM CARD
   =============================== */




/* ===============================
   HEADER
   =============================== */

#dang-ky-tu-van .consultation-eyebrow {
    display: block !important;

    margin-bottom: 15px !important;

    color: #d4af37 !important;

    font-size: 12px !important;

    letter-spacing: 2.5px !important;

    text-transform: uppercase !important;
}


#dang-ky-tu-van .consultation-card-luxury h2 {
    margin: 0 0 20px !important;

    color: #f5f5f5 !important;

    font-size: 44px !important;

    line-height: 1.15 !important;

    font-weight: 700 !important;
}


#dang-ky-tu-van .consultation-card-luxury>p {
    margin: 0 0 35px !important;

    color: #999 !important;

    font-size: 15px !important;

    line-height: 1.8 !important;
}


/* ===============================
   FORM
   =============================== */

#dang-ky-tu-van #consultationForm {
    width: 100% !important;

    display: flex !important;

    flex-direction: column !important;

    gap: 22px !important;
}


/* ===============================
   NAME + PHONE NẰM NGANG
   =============================== */

#dang-ky-tu-van .form-row-dual {
    width: 100% !important;

    display: grid !important;

    grid-template-columns: 1fr 1fr !important;

    gap: 25px !important;
}


/* ===============================
   FORM GROUP
   =============================== */

#dang-ky-tu-van .form-group {
    width: 100% !important;

    display: flex !important;

    flex-direction: column !important;

    gap: 8px !important;

    margin: 0 !important;
}


/* ===============================
   LABEL
   =============================== */

#dang-ky-tu-van .form-group label {
    color: #aaa !important;

    font-size: 12px !important;

    margin: 0 !important;
}


/* ===============================
   INPUT
   =============================== */

#dang-ky-tu-van .luxury-input,
#dang-ky-tu-van .luxury-select,
#dang-ky-tu-van .luxury-textarea {
    width: 100% !important;

    border: 1px solid #303030 !important;

    background: #151515 !important;

    color: #fff !important;

    border-radius: 7px !important;

    outline: none !important;

    font-size: 14px !important;
}


#dang-ky-tu-van .luxury-input,
#dang-ky-tu-van .luxury-select {
    height: 68px !important;

    padding: 0 20px !important;
}


/* ===============================
   SELECT
   =============================== */

#dang-ky-tu-van .luxury-select {
    appearance: none !important;
    -webkit-appearance: none !important;

    cursor: pointer !important;

    background-image:
        linear-gradient(45deg, transparent 50%, #d4af37 50%),
        linear-gradient(135deg, #d4af37 50%, transparent 50%) !important;

    background-position:
        calc(100% - 22px) 29px,
        calc(100% - 16px) 29px !important;

    background-size:
        6px 6px,
        6px 6px !important;

    background-repeat: no-repeat !important;
}


#dang-ky-tu-van .luxury-select option {
    background: #111 !important;
    color: #fff !important;
}


/* ===============================
   TEXTAREA
   =============================== */

#dang-ky-tu-van .luxury-textarea {
    width: 100% !important;

    min-height: 140px !important;

    padding: 18px 20px !important;

    resize: vertical !important;

    line-height: 1.6 !important;
}


/* ===============================
   PLACEHOLDER
   =============================== */

#dang-ky-tu-van input::placeholder,
#dang-ky-tu-van textarea::placeholder {
    color: #666 !important;
}


/* ===============================
   FOCUS
   =============================== */

#dang-ky-tu-van .luxury-input:focus,
#dang-ky-tu-van .luxury-select:focus,
#dang-ky-tu-van .luxury-textarea:focus {
    border-color: #d4af37 !important;

    box-shadow:
        0 0 0 3px rgba(212, 175, 55, .06) !important;
}


/* ===============================
   BUTTON
   =============================== */

#dang-ky-tu-van .consultation-submit {
    width: 100% !important;

    height: 68px !important;

    margin-top: 5px !important;

    border: none !important;

    border-radius: 7px !important;

    background:
        linear-gradient(90deg,
            #c59a27,
            #e3bc50) !important;

    color: #080808 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 18px !important;

    font-size: 13px !important;

    font-weight: 700 !important;

    letter-spacing: 1.8px !important;

    cursor: pointer !important;
}


#dang-ky-tu-van .consultation-submit:hover {
    filter: brightness(1.08) !important;

    transform: translateY(-2px) !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {


    #dang-ky-tu-van .consultation-card-luxury {

        padding: 40px !important;
    }


    #dang-ky-tu-van .consultation-card-luxury h2 {

        font-size: 34px !important;
    }


    #dang-ky-tu-van .consultation-badge-box {

        right: -20px !important;

        width: 280px !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    #dang-ky-tu-van {

        padding: 80px 0 !important;
    }


    #dang-ky-tu-van .consultation-editorial-container {

        width: calc(100% - 32px) !important;

        grid-template-columns: 1fr !important;

        gap: 60px !important;
    }


    #dang-ky-tu-van .consultation-image-wrapper {

        height: 430px !important;
    }



    #dang-ky-tu-van .consultation-card-luxury {

        min-height: auto !important;

        padding: 30px 22px !important;
    }


    #dang-ky-tu-van .consultation-card-luxury h2 {

        font-size: 30px !important;
    }


    #dang-ky-tu-van .form-row-dual {

        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   LV.T LUXURY
   CONSULTATION / SURVEY
   PREMIUM EDITORIAL LAYOUT
   ========================================================= */

#dang-ky-tu-van.consultation-section {

    position: relative;

    width: 100%;

    padding: 120px 0;

    background:
        radial-gradient(circle at 20% 50%,
            rgba(212, 175, 55, .035),
            transparent 35%),
        radial-gradient(circle at 85% 50%,
            rgba(255, 255, 255, .018),
            transparent 35%),
        #080808;

    color: #fff;

    overflow: visible;
}


/* =========================================================
   CONTAINER
   ========================================================= */

#dang-ky-tu-van .consultation-container {

    width: min(1400px,
            calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, .85fr) minmax(0, 1.15fr);

    gap: 80px;

    align-items: center;
}


/* =========================================================
   LEFT
   ========================================================= */

#dang-ky-tu-van .consultation-left {

    position: relative;

    min-width: 0;

    width: 100%;
}


/* =========================================================
   IMAGE WRAPPER
   ========================================================= */

#dang-ky-tu-van .consultation-image-wrapper {

    position: relative;

    width: 100%;

    height: 620px;

    overflow: visible;
}


/* =========================================================
   BACKGROUND PANEL
   ========================================================= */

#dang-ky-tu-van .consultation-image-back {

    position: absolute;

    left: -45px;
    top: 170px;

    width: 100%;
    height: 440px;

    border: 1px solid rgba(212, 175, 55, .16);

    border-radius: 12px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .025),
            rgba(0, 0, 0, .45));

    z-index: 0;
}


/* =========================================================
   MAIN IMAGE
   ========================================================= */

#dang-ky-tu-van .consultation-main-image {

    position: absolute;

    left: 0;
    top: 30px;

    width: 88%;

    height: 540px;

    object-fit: cover;

    object-position: center;

    display: block;

    border-radius: 10px;

    border: 1px solid rgba(212, 175, 55, .65);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .7);

    z-index: 2;

    filter:
        brightness(.88) contrast(1.04) saturate(.9);

    transition:
        transform .8s ease;
}


#dang-ky-tu-van .consultation-image-wrapper:hover .consultation-main-image {

    transform: scale(1.015);
}


/* =========================================================
   GOLD DECORATIVE LINES
   ========================================================= */

#dang-ky-tu-van .consultation-lines {

    position: absolute;

    top: -30px;

    right: 7%;

    height: 180px;

    display: flex;

    gap: 8px;

    z-index: 1;

    pointer-events: none;
}


#dang-ky-tu-van .consultation-lines span {

    display: block;

    width: 1px;

    height: 100%;

    background:
        linear-gradient(to bottom,
            transparent,
            rgba(212, 175, 55, .65),
            transparent);
}


#dang-ky-tu-van .consultation-lines span:nth-child(2) {

    height: 140px;

    opacity: .65;
}


#dang-ky-tu-van .consultation-lines span:nth-child(3) {

    height: 110px;

    opacity: .4;
}


/* =========================================================
   TRUST CARD
   ========================================================= */

#dang-ky-tu-van .consultation-trust-card {

    position: absolute;

    right: -40px;

    bottom: 40px;

    width: 340px;

    min-height: 120px;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    gap: 22px;

    background:
        rgba(15, 15, 15, .96);

    border:
        1px solid #d4af37;

    border-radius: 8px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .8);

    backdrop-filter:
        blur(18px);

    z-index: 10;
}


/* =========================================================
   TRUST ICON
   ========================================================= */

#dang-ky-tu-van .consultation-trust-icon {

    flex-shrink: 0;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #d4af37;

    font-size: 34px;
}


#dang-ky-tu-van .consultation-trust-icon i {

    color: #d4af37;
}


/* =========================================================
   TRUST TEXT
   ========================================================= */

#dang-ky-tu-van .consultation-trust-content h4 {

    margin: 0 0 8px;

    color: #fff;

    font-size: 16px;

    line-height: 1.3;

    font-weight: 700;
}


#dang-ky-tu-van .consultation-trust-content p {

    margin: 0;

    color: #999;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   RIGHT
   ========================================================= */

#dang-ky-tu-van .consultation-right {

    width: 100%;

    min-width: 0;
}


/* =========================================================
   FORM CARD
   ========================================================= */

#dang-ky-tu-van .consultation-form-card {

    width: 100%;

    min-height: 620px;

    padding: 60px;

    background:
        linear-gradient(145deg,
            #111111,
            #0d0d0d);

    border:
        1px solid rgba(255, 255, 255, .10);

    border-radius: 20px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .5);

    box-sizing: border-box;
}


/* =========================================================
   EYEBROW
   ========================================================= */

#dang-ky-tu-van .consultation-eyebrow {

    display: block;

    margin-bottom: 16px;

    color: #d4af37;

    font-size: 12px;

    line-height: 1;

    letter-spacing: 3px;

    font-weight: 500;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

#dang-ky-tu-van .consultation-form-card h2 {

    margin: 0 0 22px;

    color: #f5f5f5;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -.5px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

#dang-ky-tu-van .consultation-description {

    max-width: 620px;

    margin: 0 0 34px;

    color: #999;

    font-size: 15px;

    line-height: 1.8;

    font-weight: 300;
}


/* =========================================================
   FORM
   ========================================================= */

#dang-ky-tu-van #consultationForm {

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 24px;
}


/* =========================================================
   NAME + PHONE
   ========================================================= */

#dang-ky-tu-van .consultation-form-row {

    width: 100%;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 24px;
}


/* =========================================================
   FIELD
   ========================================================= */

#dang-ky-tu-van .consultation-field {

    width: 100%;

    margin: 0;

    position: relative;
}


/* =========================================================
   INPUT
   ========================================================= */

#dang-ky-tu-van .consultation-input {

    width: 100%;

    height: 68px;

    padding:
        0 20px;

    box-sizing: border-box;

    border:
        1px solid #303030;

    border-radius: 7px;

    outline: none;

    background: #141414;

    color: #fff;

    font-size: 14px;

    font-family: inherit;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   SELECT
   ========================================================= */

#dang-ky-tu-van .consultation-select {

    width: 100%;

    height: 74px;

    padding:
        10px 55px 10px 20px;

    box-sizing: border-box;

    border:
        1px solid #303030;

    border-radius: 7px;

    outline: none;

    background-color: #141414;

    color: #fff;

    font-size: 14px;

    font-family: inherit;

    cursor: pointer;

    appearance: none;

    -webkit-appearance: none;

    background-image:
        linear-gradient(45deg,
            transparent 50%,
            #d4af37 50%),
        linear-gradient(135deg,
            #d4af37 50%,
            transparent 50%);

    background-position:
        calc(100% - 24px) 31px,
        calc(100% - 18px) 31px;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}


#dang-ky-tu-van .consultation-select option {

    background: #111;

    color: #fff;
}


/* =========================================================
   TEXTAREA
   ========================================================= */

#dang-ky-tu-van .consultation-textarea {

    width: 100%;

    min-height: 145px;

    padding: 20px;

    box-sizing: border-box;

    resize: vertical;

    border:
        1px solid #303030;

    border-radius: 7px;

    outline: none;

    background: #141414;

    color: #fff;

    font-size: 14px;

    line-height: 1.6;

    font-family: inherit;
}


/* =========================================================
   PLACEHOLDER
   ========================================================= */

#dang-ky-tu-van .consultation-input::placeholder,

#dang-ky-tu-van .consultation-textarea::placeholder {

    color: #777;

    opacity: 1;
}


/* =========================================================
   FOCUS
   ========================================================= */

#dang-ky-tu-van .consultation-input:focus,

#dang-ky-tu-van .consultation-select:focus,

#dang-ky-tu-van .consultation-textarea:focus {

    border-color:
        rgba(212, 175, 55, .7);

    box-shadow:
        0 0 0 3px rgba(212, 175, 55, .06);
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

#dang-ky-tu-van .consultation-submit {

    width: 100%;

    height: 68px;

    margin-top: 0;

    padding: 0 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    border: none;

    border-radius: 7px;

    background:
        linear-gradient(90deg,
            #c69a2b,
            #e5bd50);

    color: #080808;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.8px;

    cursor: pointer;

    transition:
        transform .3s ease,
        filter .3s ease;
}


#dang-ky-tu-van .consultation-submit:hover {

    transform:
        translateY(-2px);

    filter:
        brightness(1.08);

}


#dang-ky-tu-van .consultation-submit i {

    font-size: 20px;

    transition:
        transform .3s ease;
}


#dang-ky-tu-van .consultation-submit:hover i {

    transform:
        translateX(5px);
}


/* =========================================================
   DESKTOP LARGE
   ========================================================= */

@media (min-width: 1400px) {

    #dang-ky-tu-van .consultation-container {

        gap: 90px;
    }

    #dang-ky-tu-van .consultation-form-card {

        padding: 60px 62px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    #dang-ky-tu-van {

        padding: 90px 0;
    }


    #dang-ky-tu-van .consultation-container {

        width:
            calc(100% - 50px);

        grid-template-columns:
            minmax(0, 1fr) minmax(0, 1fr);

        gap: 45px;
    }


    #dang-ky-tu-van .consultation-image-wrapper {

        height: 560px;
    }


    #dang-ky-tu-van .consultation-main-image {

        height: 500px;

        width: 90%;
    }


    #dang-ky-tu-van .consultation-trust-card {

        right: -20px;

        width: 300px;
    }


    #dang-ky-tu-van .consultation-form-card {

        padding: 45px;
    }


    #dang-ky-tu-van .consultation-form-card h2 {

        font-size: 34px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    #dang-ky-tu-van {

        padding: 80px 0;
    }


    #dang-ky-tu-van .consultation-container {

        width:
            calc(100% - 32px);

        display: grid;

        grid-template-columns:
            1fr;

        gap: 70px;
    }


    #dang-ky-tu-van .consultation-image-wrapper {

        height: 470px;
    }


    #dang-ky-tu-van .consultation-main-image {

        width: 92%;

        height: 420px;

        top: 20px;
    }


    #dang-ky-tu-van .consultation-image-back {

        left: 0;

        top: 100px;

        height: 380px;
    }


    #dang-ky-tu-van .consultation-lines {

        display: none;
    }


    #dang-ky-tu-van .consultation-trust-card {

        right: 0;

        bottom: 0;

        width: 285px;

        min-height: 100px;

        padding: 20px;

        gap: 15px;
    }


    #dang-ky-tu-van .consultation-trust-icon {

        width: 45px;

        height: 45px;

        font-size: 28px;
    }


    #dang-ky-tu-van .consultation-trust-content h4 {

        font-size: 14px;
    }


    #dang-ky-tu-van .consultation-trust-content p {

        font-size: 11px;
    }


    #dang-ky-tu-van .consultation-form-card {

        min-height: auto;

        padding: 32px 22px;

        border-radius: 14px;
    }


    #dang-ky-tu-van .consultation-form-card h2 {

        font-size: 30px;

        line-height: 1.2;
    }


    #dang-ky-tu-van .consultation-description {

        font-size: 14px;

        line-height: 1.7;
    }


    #dang-ky-tu-van .consultation-form-row {

        grid-template-columns:
            1fr;

        gap: 24px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    #dang-ky-tu-van .consultation-container {

        width:
            calc(100% - 24px);
    }


    #dang-ky-tu-van .consultation-image-wrapper {

        height: 400px;
    }


    #dang-ky-tu-van .consultation-main-image {

        height: 360px;
    }


    #dang-ky-tu-van .consultation-trust-card {

        width: 260px;

        right: 0;

        padding: 16px;
    }


    #dang-ky-tu-van .consultation-form-card {

        padding: 28px 18px;
    }


    #dang-ky-tu-van .consultation-form-card h2 {

        font-size: 27px;
    }

}

/* ============================================================
   LV.T LUXURY FULL-SCREEN HERO CAROUSEL STYLES
   ============================================================ */

.lv-hero {
  min-height: 100svh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--lvt-black);
}

.lv-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lv-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

.lv-hero__slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.lv-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.6) 50%, rgba(8,8,8,0.2) 100%),
              linear-gradient(0deg, rgba(8,8,8,0.7) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.lv-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media(max-width: 992px) {
  .lv-hero__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 0 20px;
  }
}

.lv-hero__content {
  max-width: 720px;
}

.lv-hero__title {
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--lvt-white);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.lv-hero__title .gold-accent {
  color: var(--lvt-gold);
  font-weight: 400;
  display: block;
}

.lv-hero__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #b0b0b0;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 580px;
}

.lv-hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.lv-hero__brand-info {
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 24px 32px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  text-align: left;
}

.brand-info-num {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--lvt-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.brand-info-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lvt-cream);
  line-height: 1.4;
}

/* Controls */
.lv-hero__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: var(--lvt-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.lv-hero__control:hover {
  background: var(--lvt-gold);
  color: var(--lvt-black);
  border-color: var(--lvt-gold);
}

.lv-hero__control--prev { left: 30px; }
.lv-hero__control--next { right: 30px; }

@media(max-width: 768px) {
  .lv-hero__control { display: none; }
}

/* Pagination Dots */
.lv-hero__pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 30px;
  align-items: center;
}

.lv-dot {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 6px;
}

.lv-dot::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #444444;
  transition: all 0.3s ease;
}

.lv-dot.active {
  color: var(--lvt-gold);
}

.lv-dot.active::after {
  background: var(--lvt-gold);
}


/* ============================================================
   ABOUT HERO FULL-WIDTH SLIDESHOW (gioithieu.html)
   ============================================================ */

.about-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 760px;
  height: 90svh;
  overflow: hidden;
  background-color: var(--lvt-black);
}

.about-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 760px;
  overflow: hidden;
}

.about-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 1.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.about-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.about-hero-slide.active img {
  transform: scale(1);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.18) 100%),
              linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.about-hero-content {
  position: absolute;
  z-index: 3;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 760px;
  width: 90%;
}

@media (max-width: 768px) {
  .about-hero-content {
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 80px;
    transform: none;
  }
}

.about-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0.03em;
  color: var(--lvt-white);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-hero-title .gold-accent {
  color: var(--lvt-gold);
  font-weight: 400;
  display: block;
}

.about-hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
  max-width: 600px;
  margin-bottom: 36px;
  font-weight: 300;
}

.about-hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Controls */
.about-hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: var(--lvt-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.about-hero-control:hover {
  background: var(--lvt-gold);
  color: var(--lvt-black);
  border-color: var(--lvt-gold);
}

.about-hero-control--prev { left: 30px; }
.about-hero-control--next { right: 30px; }

@media(max-width: 768px) {
  .about-hero-control { display: none; }
}

/* Pagination Dots / Indicators */
.about-hero-pagination {
  position: absolute;
  bottom: 35px;
  right: 8%;
  z-index: 5;
  display: flex;
  gap: 25px;
  align-items: center;
}

.about-dot {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #888888;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.about-dot::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #444444;
  transition: all 0.3s ease;
}

.about-dot.active {
  color: var(--lvt-gold);
}

.about-dot.active::after {
  background: var(--lvt-gold);
}
/* =====================================================
   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;
}