/* =============================================
   The NEST - Midori Park | style.css
   Fully responsive, premium landing page
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Custom fonts */
@font-face {
    font-family: 'SVN-Poppins';
    src: url('assets/SVN-Poppins.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SVN-Poppins';
    src: url('assets/SVN-PoppinsSemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'SVN-Poppins';
    src: url('assets/SVN-PoppinsBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'NVN-Signature';
    src: url('assets/NVNMotherlandSignature-Reg.woff2') format('woff2');
    font-weight: 400;
}

:root {
    --orange: #e76c00;
    --orange-dark: #c55a00;
    --dark-blue: #262F4C;
    --dark-blue-80: rgba(38, 47, 76, .85);
    --white: #fff;
    --light-gray: #f6f6f6;
    --text-body: #3a3a3a;
    --font-main: 'SVN-Poppins', 'Philosopher', sans-serif;
    --font-display: 'NVN-Signature', 'Philosopher', serif;
    --transition: .3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    line-height: 1.25;
}

figure {
    margin: 0;
}

p {
    margin-bottom: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Grid */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    flex-direction: row-reverse;
}

.row.no-gutter {
    margin: 0;
}

[class*="col-"] {
    padding: 0 15px;
    width: 100%;
}

@media(min-width:576px) {
    .col-sm-6 {
        width: 50%;
    }
}

@media(min-width:768px) {
    .col-md-4 {
        width: 33.333%;
    }

    .col-md-6 {
        width: 50%;
    }
}

@media(min-width:992px) {
    .col-lg-4 {
        width: 33.333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-8 {
        width: 66.667%;
    }

    .row.no-gutter>[class*="col-"] {
        padding: 0;
    }
}

/* Utilities */
.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff !important;
}

.font-bold {
    font-weight: 700;
}

.font-light {
    font-weight: 300;
}

.text-underline {
    text-decoration: underline;
}

.gap-4 {
    gap: 16px;
}

.gap-5 {
    gap: 20px;
}

.opacity-60 {
    opacity: .6;
}

.opacity-80 {
    opacity: .8;
}

.vstack {
    display: flex;
    flex-direction: column;
}

.bg-gray-50 {
    background: #f6f6f6;
}

.bg-primary-2 {
    background: var(--dark-blue);
}

.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

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


.mt-3 {
    margin-top: 12px !important;
}

.mt-4 {
    margin-top: 16px !important;
}

.mt-5 {
    margin-top: 20px !important;
}

.mt-6 {
    margin-top: 24px !important;
}

.mt-8 {
    margin-top: 32px !important;
}

.mb-3 {
    margin-bottom: 12px !important;
}

.mb-6 {
    margin-bottom: 24px !important;
}

.mb-8 {
    margin-bottom: 32px !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

@media(min-width:992px) {
    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .mt-lg-6 {
        margin-top: 24px !important;
    }

    .mt-lg-8 {
        margin-top: 32px !important;
    }

    .mt-lg-10 {
        margin-top: 40px !important;
    }

    .mt-lg-12 {
        margin-top: 48px !important;
    }

    .mt-lg-15 {
        margin-top: 60px !important;
    }

    .mb-lg-6 {
        margin-bottom: 24px !important;
    }

    .mb-lg-8 {
        margin-bottom: 32px !important;
    }

    .mb-lg-10 {
        margin-bottom: 40px !important;
    }

    .pt-lg-0 {
        padding-top: 0 !important;
    }

    .pb-lg-0 {
        padding-bottom: 0 !important;
    }

    .pr-lg-10 {
        padding-right: 40px !important;
    }

    .pr-lg-18 {
        padding-right: 72px !important;
    }

    .pl-lg-4 {
        padding-left: 16px !important;
    }

    .pl-lg-20 {
        padding-left: 80px !important;
    }

    .py-lg-20 {
        padding: 80px 0 !important;
    }

    .d-lg-none {
        display: none !important;
    }

    .text-lg-left {
        text-align: left !important;
    }

    .flex-lg-row {
        flex-direction: row !important;
    }

    .items-lg-center {
        align-items: center !important;
    }

    .justify-lg-between {
        justify-content: space-between !important;
    }

    .section-large {
        padding: 100px 0;
    }
}

/* Typography */
.heading-1 {
    font-family: 'Philosopher', var(--font-main);
    font-size: clamp(24px, 3.5vw, 46px);
    font-weight: 700;
    color: var(--dark-blue);
}

.heading-2 {
    font-family: 'Philosopher', var(--font-main);
    font-size: clamp(20px, 3vw, 38px);
    font-weight: 700;
    color: var(--dark-blue);
}

.heading-3 {
    font-size: clamp(17px, 2vw, 26px);
    font-weight: 700;
    color: var(--dark-blue);
}

.heading-4 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
}

.heading-5 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
}

.body-1 {
    font-size: 18px;
    line-height: 1.8;
}

.body-2 {
    font-size: 15px;
    line-height: 1.8;
}

.body-3 {
    font-size: 14px;
    line-height: 1.75;
}

.body-4 {
    font-size: 12px;
}

.font-display {
    font-family: var(--font-display);
}

.display-text-2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 60px);
    line-height: 1.2;
}

.text-primary-1 {
    color: var(--orange) !important;
}

.general-content p {
    margin-bottom: 8px;
}

/* =============================================
   HEADER
   ============================================= */
.global-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    transition: box-shadow var(--transition);
}

.global-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-link img {
    height: 46px;
    width: auto;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 24px;
}

.header-nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-blue);
    letter-spacing: .3px;
    transition: color var(--transition);
    position: relative;
    padding-bottom: 3px;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--orange);
}

.header-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.header-utils {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    position: relative;
    user-select: none;
    padding: 4px 8px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 6px 0;
    min-width: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.lang-btn:hover .lang-dropdown {
    opacity: 1;
    pointer-events: auto;
}

.lang-dropdown a {
    display: block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
}

.lang-dropdown a:hover {
    color: var(--orange);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-blue);
    border-radius: 2px;
    transition: var(--transition);
}

@media(min-width:992px) {
    .header-nav {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .header-wrap {
        height: 72px;
    }
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-inner {
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-blue);
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    display: block;
}

.mobile-nav a:hover {
    color: var(--orange);
}

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, .4);
}

.mobile-nav-backdrop.show {
    display: block;
}

/* =============================================
   SECTION 1 — HERO
   ============================================= */
.section-about-1 {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 70px;
    position: relative;
}

.section-about-1::before {
    content: '';
    position: absolute;
    inset: 0;
}
.section-about-4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 10, 30, .25) 0%, rgba(5, 10, 30, .65) 55%, rgba(5, 10, 30, .5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Philosopher', serif;
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: .5px;
}

.hero-slogan {
    font-family: var(--font-display);
    font-size: clamp(22px, 4.5vw, 35px);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 28px;
}

.hero-slogan em {
    font-style: normal;
    color: var(--orange);
}

.hero-body {
    font-size: 15px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 20px;
}

.hero-signature {
    font-size: 14px;
    color: #fff;
    text-align: right;
    max-width: 680px;
    margin: 0 auto;
}

.hero-signature .name {
    color: var(--orange);
    font-weight: 700;
}

/* =============================================
   SECTION 2 — HÀNH TRÌNH
   ============================================= */
.section-about-2 {
    background: var(--light-gray);
    height: 100vh;
}
.section-connect-banner {
    background: var(--light-gray);
    height: 100vh;
}


.section-heading {
    margin-bottom: 40px;
}

.content-wrapper {
    display: flex;
    gap: 32px;
    position: relative;
    flex-direction: column;
}

.path {
    width: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
}

.path img {
    width: 100%;
    object-fit: contain;
}

.content-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 10px 0;
}

.content-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border-radius: 10px;
    padding: 18px 22px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.content-item:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 22px rgba(231, 108, 0, .12);
}

.content-item .icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.content-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-item .text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
}

.section-about-2 .image {
    margin-top: 40px;
}

.section-about-2 .image img {
    width: 100%;
    border-radius: 8px;
}

@media(max-width:991px) {
    .content-wrapper {
        flex-direction: column;
    }

    .path {
        display: none;
    }
}

/* =============================================
   SECTION 3 — THÔNG TIN DỰ ÁN
   ============================================= */
.section-about-3 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.section-about-3::before {
    content: '';
    position: absolute;
    inset: 0;
}

.section-about-3 .container {
    position: relative;
    z-index: 2;
}

.project-info-box {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    padding: 40px 36px;
}

.section-about-3 table {
    width: 100%;
    border-collapse: collapse;
}

.section-about-3 td {
    padding: 10px 12px;
    font-size: 13.5px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    vertical-align: top;
    word-break: normal;
}

.section-about-3 td:first-child {
    width: 38%;
    font-weight: 600;
    opacity: .75;
    white-space: nowrap;
}

.section-about-3 td ul {
    padding-left: 0;
}

.section-about-3 td ul li {
    padding: 2px 0;
    list-style: disc inside;
    font-size: 13px;
}

.section-about-3 .body-1 {
    font-style: italic;
    border-left: 3px solid var(--orange);
    padding-left: 20px;
    color: rgba(0, 0, 0, 0.9);
}

@media(max-width:767px) {
    .project-info-box {
        padding: 24px 20px;
    }

    .section-about-3 td:first-child {
        width: auto;
        display: block;
        white-space: normal;
        font-size: 12px;
    }

    .section-about-3 td {
        display: block;
        padding: 6px 0;
    }

    .section-about-3 tr {
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .section-about-3 tr td {
        border-bottom: none;
    }
}

/* =============================================
   SECTION 4 — VỊ TRÍ
   ============================================= */
.section-about-4 {
    padding: 70px 0;
}

.section-about-4 .row {
    align-items: center;
}

.section-about-4 .image img {
    width: 100%;
    border-radius: 12px;
}

/* =============================================
   SECTION 5 — CHỦ ĐẦU TƯ
   ============================================= */
.section-about-5 {
    overflow: hidden;
}

.section-about-5 .row.no-gutter {
    align-items: stretch;
}

.section-about-5 .image-col {
    overflow: hidden;
}

.section-about-5 .image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
    display: block;
}

.section-about-5 .content-wrapper {
    padding: 50px 40px;
    word-break: normal;
    overflow-wrap: break-word;
}

.section-about-5 .icon img {
    height: 56px;
    width: auto;
    margin: 18px 0;
}

.stat-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.stat-item .heading-4 {
    color: var(--orange);
    font-size: clamp(28px, 3.5vw, 46px);
}

.stat-item .body-2 {
    color: #555;
    font-size: 14px;
    margin-top: 4px;
}

.stat-item sup {
    font-size: 14px;
    font-weight: 400;
}

@media(min-width:992px) {
    .stat-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-about-5 .content-wrapper {
        padding: 60px 50px;
    }
}

@media(max-width:767px) {
    .section-about-5 .content-wrapper {
        padding: 36px 24px;
    }

    .stat-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   SECTION 6 — INVESTOR SLIDER
   ============================================= */
.section-about-6 {}

.section-about-6-slider {}

.section-about-6 .item {
    padding: 60px 0;
}

.section-about-6 .swiper-slide .container {
    max-width: 1280px;
}

.section-about-6 .content-wrapper {
    padding-right: 0;
    word-break: normal;
    overflow-wrap: break-word;
}

.section-about-6 .content-wrapper .body-3 {
    font-size: 14px;
    line-height: 1.75;
}

.section-about-6 .icon img {
    height: 48px;
    width: auto;
    margin: 16px 0;
}

.section-about-6 .image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 400px;
}

.swiper-navigation {
    display: flex;
    gap: 12px;
}

.swiper-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 16px;
}

.swiper-btn:hover {
    background: var(--orange);
    color: #fff;
}

@media(max-width:991px) {
    .section-about-6 .item {
        padding: 40px 0;
    }

    .section-about-6 .image {
        margin-bottom: 24px;
    }

    .section-about-6 .image img {
        height: 260px;
    }

    .section-about-6 .content-wrapper {
        order: 2;
    }

    .section-about-6 .image-col {
        order: 1;
    }
}

/* =============================================
   SECTION 7 — WAVE SLIDER
   ============================================= */
.section-about-7 {}

.wave-slider {
    overflow: hidden;
    padding: 10px 0;
}

.wave-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    margin: 0 6px;
}

.wave-item figure img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter var(--transition);
}

.wave-item:hover figure img {
    filter: grayscale(0);
}

/* =============================================
   SECTION 8 — AWARDS
   ============================================= */
.section-about-8 {
    background: var(--dark-blue);
}

.award-slider {
    position: relative;
    padding: 0 50px;
}

.swiper-navigation.is-between {
    position: absolute;
    top: 50%;
    left: -10px;
    right: -10px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.swiper-navigation.is-between .swiper-btn {
    pointer-events: auto;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .25);
    color: #fff;
}

.swiper-navigation.is-between .swiper-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.award-item-image img {
    width: 100%;
    border-radius: 8px;
}

.award-item .body-3 {
    color: rgba(255, 255, 255, .85);
    font-size: 12px;
}

@media(max-width:576px) {
    .award-slider {
        padding: 0 40px;
    }
}

/* =============================================
   SECTION 9 — PARTNERS
   ============================================= */
.section-about-9 {}

.col-6 {
    width: 50%;
}

@media(min-width:576px) {
    .col-sm-4 {
        width: 33.333%;
    }
}

.partner-item {
    background: #fff;
    border-radius: 10px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
    margin-bottom: 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
}

.partner-item-image img {
    height: 64px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter var(--transition);
}

.partner-item:hover .partner-item-image img {
    filter: grayscale(0);
}

.partner-item .heading-5 {
    margin-top: 14px;
    color: #555;
}

/* =============================================
   SECTION 10 — 5 LÝ DO
   ============================================= */
.section-why {
    background: linear-gradient(135deg, #faf7f4 0%, #fff 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 40px;
}

@media(min-width:768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width:1100px) {
    .why-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.why-item {
    background: #fff;
    border-radius: 14px;
    padding: 30px 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    border-bottom: 3px solid transparent;
    transition: all var(--transition);
}

.why-item:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(231, 108, 0, .13);
}

.why-num {
    font-size: 44px;
    font-weight: 700;
    color: rgba(231, 108, 0, .13);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Philosopher', serif;
}

.why-icon img {
    height: 44px;
    width: auto;
    object-fit: contain;
    margin: 8px 0 14px;
}

.why-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.why-text {
    font-size: 13.5px;
    color: #666;
    line-height: 1.7;
}

/* =============================================
   SECTION 11 — GIÁ & THANH TOÁN
   ============================================= */
.section-pricing {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.pricing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 12, 40, .88) 0%, rgba(38, 47, 76, .8) 100%);
}

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

.section-pricing .row {
    align-items: center;
}

.pricing-box {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 44px 38px;
    color: #fff;
}
.info-box {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 44px 38px;
    color: #000;
}

.pricing-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.pricing-value {
    font-family: 'Philosopher', serif;
    font-size: clamp(38px, 6vw, 70px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.pricing-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    margin-top: 8px;
}

.pricing-benefits {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-benefits li {
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.pricing-benefits .check {
    min-width: 22px;
    height: 22px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
    margin-top: 28px;
}

.btn-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.product-types {
    color: #fff;
    padding: 50px 0 50px 48px;
}

.product-row {
    display: grid;
    grid-template-columns: 130px 100px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.product-row:last-child {
    border-bottom: none;
}

.product-name {
    font-weight: 700;
    font-size: 14px;
}

.product-size {
    color: var(--orange);
    font-weight: 600;
    font-size: 13px;
}

.product-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
}

@media(max-width:991px) {
    .product-types {
        padding: 36px 0 0;
    }

    .product-row {
        grid-template-columns: 110px 90px 1fr;
        gap: 8px;
        font-size: 13px;
    }
}

@media(max-width:576px) {
    .pricing-box {
        padding: 30px 22px;
    }

    .product-row {
        grid-template-columns: 100px 80px 1fr;
        font-size: 12px;
    }
}

/* =============================================
   SECTION 12 — TIẾN ĐỘ BÀN GIAO
   ============================================= */
.timeline-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.timeline-item {
    flex: 1;
    min-width: 260px;
    max-width: 400px;
    background: #fff;
    border-radius: 18px;
    padding: 44px 34px;
    text-align: center;
    box-shadow: 0 4px 28px rgba(0, 0, 0, .08);
    border-top: 4px solid var(--orange);
    transition: transform var(--transition);
}

.timeline-item:hover {
    transform: translateY(-6px);
}

.tl-tower {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--orange);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.tl-date {
    font-family: 'Philosopher', serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1;
}

.tl-desc {
    font-size: 14px;
    color: #888;
    margin-top: 16px;
    line-height: 1.6;
}

.tl-badge {
    display: inline-block;
    background: rgba(231, 108, 0, .1);
    color: var(--orange);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 20px;
}

.timeline-divider {
    width: 80px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tl-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--orange), rgba(231, 108, 0, .2));
    border-radius: 2px;
}

.timeline-legal {
    background: #fff;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    color: #555;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width:767px) {
    .timeline-row {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-divider {
        width: auto;
        height: 30px;
    }

    .tl-line {
        width: 60px;
        height: 2px;
    }

    .timeline-item {
        width: 100%;
        max-width: 100%;
    }
}

/* =============================================
   SECTION 13 — VỊ TRÍ KẾT NỐI
   ============================================= */
.connect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media(min-width:768px) {
    .connect-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.connect-item {
    background: var(--light-gray);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.connect-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(231, 108, 0, .13);
}

.connect-icon {
    font-size: 30px;
    color: var(--orange);
    margin-bottom: 12px;
}

.connect-time {
    font-family: 'Philosopher', serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
    line-height: 1.1;
}

.connect-desc {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
}

.tod-pillars {
    padding-top: 56px;
    border-top: 1px solid #eee;
    margin-top: 56px;
}

.tod-item {
    background: var(--light-gray);
    border-radius: 14px;
    padding: 32px 26px;
    height: 100%;
    margin-bottom: 20px;
}

.tod-num {
    font-size: 50px;
    font-weight: 700;
    color: rgba(231, 108, 0, .15);
    font-family: 'Philosopher', serif;
    line-height: 1;
    margin-bottom: 12px;
}

.tod-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.tod-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* =============================================
   SECTION 14 — TIỆN ÍCH
   ============================================= */
.section-amenities {
    background: #fff;
}

.amenity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media(min-width:768px) {
    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:992px) {
    .amenity-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.amenity-card {
    background: var(--light-gray);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 30px 24px;
    transition: all var(--transition);
}


.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(231, 108, 0, .13);
}

.amenity-icon {
    font-size: 34px;
    color: var(--orange);
    margin-bottom: 16px;
}

.amenity-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 14px;
}

.amenity-list li {
    font-size: 13.5px;
    color: rgba(0, 0, 0, 0.8);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    gap: 9px;
}

.amenity-list li:last-child {
    border-bottom: none;
}

.amenity-list li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
}

@media(max-width:576px) {
    .amenity-grid {
        grid-template-columns: 1fr;
    }

    .amenity-card {
        padding: 24px 20px;
    }
}

/* =============================================
   SECTION 15 — CONTACT
   ============================================= */
.section-contact {
    background: var(--light-gray);
}

.section-contact .row {
    align-items: center;
}

.contact-commitments {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.contact-commitments li {
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-commitments i {
    color: var(--orange);
    font-size: 19px;
    flex-shrink: 0;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-outline:hover {
    background: var(--dark-blue);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--dark-blue);
    border-color: #fff;
}

.btn-white:hover {
    background: rgba(255, 255, 255, .85);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-border-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-border-white:hover {
    background: #fff;
    color: var(--dark-blue);
}

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 18px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .08);
}

.vstack.gap-4 {
    gap: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--text-body);
    background: #fff;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 96px;
}

.form-success {
    text-align: center;
    padding: 50px 20px;
}

.success-icon {
    font-size: 56px;
    margin-bottom: 18px;
}

.form-success h3 {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

@media(max-width:767px) {
    .contact-form-wrap {
        padding: 28px 22px;
    }
}

/* =============================================
   FOOTER
   ============================================= */
.global-footer {
    background: linear-gradient(135deg, #1a0d03 0%, #6b2a00 35%, var(--orange) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.global-footer .decor {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

.global-footer .container {
    position: relative;
    z-index: 2;
}

.global-footer .row {
    align-items: flex-start;
}

.footer-logo img {
    height: 52px;
    width: auto;
}

.footer-info .body-2 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-info .body-3 {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
}

.footer-info .body-3 a {
    color: rgba(255, 255, 255, .9);
    text-decoration: underline;
}

.social-list ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-list li a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    transition: var(--transition);
}

.social-list li a:hover {
    background: rgba(255, 255, 255, .25);
    border-color: rgba(255, 255, 255, .6);
}

.social-list li a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.view-catalog a {
    color: #fff;
    font-size: 13px;
}

.view-map a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, .9);
}

.view-map img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
}

.copyright p {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 4px;
}

.copyright a {
    color: rgba(255, 255, 255, .7);
    text-decoration: underline;
}

.footer-form {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 40px 36px;
    border: 1px solid rgba(255, 255, 255, .15);
}

.footer-contact-form .form-group input,
.footer-contact-form .form-group textarea {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
}

.footer-contact-form .form-group input::placeholder,
.footer-contact-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, .55);
}

.footer-contact-form .form-group input:focus,
.footer-contact-form .form-group textarea:focus {
    border-color: rgba(255, 255, 255, .65);
}

.flex-row-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

@media(max-width:767px) {
    .footer-form {
        margin-top: 36px;
        padding: 28px 22px;
    }

    .global-footer .col-lg-6 {
        padding: 15px;
    }
}

/* =============================================
   FIXED FLOATING BUTTONS
   ============================================= */
.fixed-stuff {
    position: fixed;
    right: 14px;
    bottom: 24px;
    z-index: 500;
}

.fixed-stuff ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.back-to-top {
    width: 40px;
    height: 40px;
    background: var(--dark-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--orange);
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg, var(--orange));
    color: #fff;
    border-radius: 28px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .22);
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .28);
}

.cta-button .shake-lr {
    font-size: 18px;
    display: flex;
    align-items: center;
    animation: shakeLR 2.5s ease infinite;
}

.cta-button .shake-lr img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.cta-button .content p {
    font-size: 12px;
    white-space: nowrap;
    line-height: 1.2;
}

/* Compact on small screens */
@media(max-width:480px) {
    .fixed-stuff {
        right: 10px;
        bottom: 16px;
    }

    .cta-button {
        padding: 8px 12px;
        gap: 6px;
        font-size: 12px;
        border-radius: 22px;
    }

    .cta-button .shake-lr {
        font-size: 16px;
    }

    .cta-button .content p {
        display: none;
    }

    .back-to-top {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes shakeLR {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-3px);
    }

    40% {
        transform: translateX(3px);
    }

    60% {
        transform: translateX(-2px);
    }

    80% {
        transform: translateX(2px);
    }
}

.animate-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .65s ease, transform .65s ease;
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.row-tien-ich {
    display: flex; /* Enables Flexbox */
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
    padding: 0 4px;
}

.column-tien-ich {
    flex: 33.33%; /* Creates three equal columns */
    padding: 0 4px;
}

.column-tien-ich img {
    margin-top: 8px; /* Adds vertical spacing between images */
    vertical-align: middle;
    width: 100%; /* Makes images responsive and fill their container */
    height: auto;
    display: block; /* Ensures images behave as block elements for margin */
}

/* Responsive layout: makes columns stack on top of each other on small screens */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
  }
}