/* ============================================================
   INTERIOR DESIGN — Cream & Beige Elegant Theme
   ============================================================ */

/* --- Google Fonts --- */

/* --- Design Tokens --- */

:root {
    --bg: #FFFFFF;
    --gold-on-light: #F5A800;
    --bg-secondary: #F8F6F2;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FDF8EE;
    --gold: #F5A800;
    --gold-light: #F5A800;
    --gold-dark: #F5A800;
    --green: #0A7A4B;
    --green-light: #0A7A4B;
    --green-dark: #0A7A4B;
    --text: #2D2A26;
    --text-muted: #6B6560;
    --text-dark: #1a1a1a;
    --border: rgba(245, 168, 0, 0.2);
    --border-strong: rgba(245, 168, 0, 0.35);
    --success: #2e7d32;
    --danger: #d32f2f;
    --overlay: rgba(10, 122, 75, 0.7);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1370px;
    --header-h: 72px;
    --topbar-h: 0px;
}

.est2-wrapper {
    padding: 20px 0 0px 0px !important;
}

.est2-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 5px 0 !important;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    font-size: 0.95rem;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: var(--gold-light)
}

::selection {
    background: var(--green);
    color: #fff
}

/* --- Global section spacing (compact default, override per-section via admin) --- */
[class*="section-"] {
    padding-top: 10px !important;
    padding-bottom: 10px !important
}

.section-hero-fullscreen,
.section-hero-pro,
[class*="section-hero"] {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.section-cta-premium {
    padding-top: 10px !important;
    padding-bottom: 10px !important
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text)
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    letter-spacing: -0.02em
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem)
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.35rem)
}

h5 {
    font-size: clamp(1rem, 1.5vw, 1.15rem)
}

h6 {
    font-size: clamp(0.9rem, 1.2vw, 1rem)
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold, #E8A811);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold, #E8A811)
}

.section-title {
    margin-bottom: 16px;
    color: #0A7A4B;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.8
}

/* --- Rich Content (Classic Editor / Post / Page content) --- */
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 0.5em 0
}

.rich-content p,
.entry-content p {
    margin: 0 0 0.5em;
    line-height: 1.6
}

.rich-content ul,
.entry-content ul,
.rich-content ol,
.entry-content ol {
    margin: 0 0 1em 0;
    padding-left: 1.8em;
    line-height: 1.6
}

.rich-content li,
.entry-content li {
    margin-bottom: 0.3em
}

.rich-content blockquote,
.entry-content blockquote {
    border-left: 4px solid var(--gold, #F5A800);
    margin: 1.5em 0;
    padding: 12px 20px;
    background: #f9f7f2;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-muted)
}

/* Images spacing & mobile overflow prevention */
.rich-content img,
.entry-content img,
article img,
.the-content img,
.post-content img {
    margin: 1.2em auto;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    height: auto !important;
    box-sizing: border-box;
    display: block
}

/* Fix WP caption wrapper with inline width (e.g. style="width:1200px") */
.wp-caption,
figure[style*="width"],
figure.wp-caption {
    max-width: 800px !important;
    width: 100% !important;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto
}

/* Ensure image inside caption fills the container */
.wp-caption img,
figure.wp-caption img,
.wp-block-image img {
    width: 100%;
    max-width: 800px;
    height: auto !important;
    display: block;
    border-radius: 8px
}

.rich-content,
.entry-content,
.the-content,
.post-content {
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: justify
}

/* Only constrain width inside blog post layout */
.blog-main .rich-content,
.blog-main .entry-content {
    max-width: 100%;
}

@media(max-width:768px) {

    .rich-content img,
    .entry-content img,
    article img,
    .the-content img,
    .post-content img {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important
    }

    .wp-caption,
    figure[style*="width"] {
        max-width: 100% !important;
        width: auto !important
    }

    table {
        display: block;
        overflow-x: auto;
        max-width: 100%
    }
}

.rich-content p img,
.entry-content p img {
    margin: 0.5em auto;
    display: block
}

.rich-content .wp-block-image,
.entry-content .wp-block-image,
.rich-content figure,
.entry-content figure {
    margin: 0.3em auto;
    text-align: center
}

.rich-content figure img,
.entry-content figure img,
.rich-content .wp-block-image img,
.entry-content .wp-block-image img {
    margin-bottom: 0;
}

/* Captions */
.rich-content figcaption,
.entry-content figcaption,
.rich-content .wp-caption-text,
.entry-content .wp-caption-text,
.rich-content .wp-element-caption,
.entry-content .wp-element-caption {
    font-size: 0.85em;
    font-style: italic;
    text-align: center;
    color: var(--text-muted);
    margin-top: 4px;
    margin-bottom: 0.15em;
    line-height: 1.4
}

/* Tables */
.rich-content table,
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 0.95rem
}

.rich-content th,
.entry-content th {
    background: var(--green, #0A7A4B);
    color: #fff;
    font-weight: 600;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--green-dark, #086b40)
}

.rich-content td,
.entry-content td {
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    vertical-align: top
}

.rich-content tr:nth-child(even),
.entry-content tr:nth-child(even) {
    background: #f9f9f9
}

.rich-content tr:hover,
.entry-content tr:hover {
    background: #f0f7f3
}

/* Links in content */
.rich-content a:not(.ctphome-toc-link),
.entry-content a:not(.ctphome-toc-link) {
    color: var(--green, #0A7A4B);
    text-decoration: underline;
    text-decoration-color: rgba(10, 122, 75, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s
}

.rich-content a:hover,
.entry-content a:hover {
    color: var(--gold, #F5A800);
    text-decoration-color: var(--gold, #F5A800)
}

/* Strong/bold highlight */
.rich-content strong,
.entry-content strong {
    color: var(--text-dark, #1a1a1a)
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 50px 0
}

.section-dark {
    background: var(--bg-secondary)
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px
}

.btn-gold {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 122, 75, 0.35);
    color: #fff
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--green);
    color: var(--green)
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1rem
}

/* --- Top Bar (hidden in cream theme) --- */
.top-bar {
    display: none
}

/* --- Header / Nav (single row, matching PDF) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(253, 248, 240, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border)
}

body.has-transparent-header .site-header {
    background: rgba(253, 248, 240, 0.95) !important
}

.site-header.scrolled {
    background: rgba(253, 248, 240, 0.98) !important;
    box-shadow: 0 2px 20px rgba(245, 168, 0, 0.08)
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0
}

.site-logo img {
    height: 48px;
    width: auto
}

.logo-text {
    display: flex;
    flex-direction: column
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
    line-height: 1.1
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase
}

/* Desktop Nav */
.main-nav {
    display: flex;
    flex: 1;
    justify-content: center
}

.nav-menu {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center
}

.nav-menu>li {
    position: relative
}

.nav-menu>li>a {
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 22px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s
}

.nav-menu>li:hover>a::after,
.nav-menu>li>a.active::after {
    transform: scaleX(1)
}

.nav-menu>li:hover>a,
.nav-menu>li>a.active {
    color: var(--gold)
}

.nav-arrow {
    font-size: 0.55rem;
    transition: transform 0.2s;
    opacity: 0.5
}

.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
    opacity: 1
}

/* Header Right: Search + Hotline */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0
}

/* Search toggle icon */
.header-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s
}

.header-search-toggle:hover {
    border-color: var(--gold);
    color: var(--gold)
}

/* Search dropdown bar */
.header-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(253, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    opacity: 0;
    z-index: 50
}

.header-search-dropdown.open {
    max-height: 80px;
    opacity: 1
}

.header-search-dropdown-form {
    padding: 14px 0
}

.header-search-dropdown-input {
    flex: 1;
    padding: 10px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: border-color 0.2s
}

.header-search-dropdown-input::placeholder {
    color: var(--text-muted)
}

.header-search-dropdown-input:focus {
    outline: none;
    border-color: var(--gold)
}

.header-search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.2s;
    flex-shrink: 0
}

.header-search-close:hover {
    color: var(--gold)
}

.header-hotline {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s
}

.header-hotline:hover {
    color: var(--gold-dark)
}

/* Hamburger */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    padding: 0
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text);
    left: 0;
    transition: all 0.3s
}

.mobile-toggle span:nth-child(1) {
    top: 0
}

.mobile-toggle span:nth-child(2) {
    top: 11px
}

.mobile-toggle span:nth-child(3) {
    top: 22px
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 600px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08)
}

.has-dropdown:hover>.mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.mega-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px
}

.mega-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
    transition: color 0.2s
}

.mega-heading i {
    color: var(--gold);
    width: 20px;
    text-align: center;
    font-size: 0.9rem
}

.mega-heading:hover {
    color: var(--gold)
}

.mega-sub {
    list-style: none;
    padding: 0
}

.mega-sub li a {
    display: block;
    padding: 6px 0 6px 30px;
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: all 0.2s;
    position: relative
}

.mega-sub li a::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--border);
    transition: all 0.2s
}

.mega-sub li a:hover {
    color: var(--gold);
    padding-left: 36px
}

.mega-sub li a:hover::before {
    background: var(--gold);
    width: 14px
}

/* Simple Dropdown */
.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    list-style: none;
    pointer-events: none;
    transform: translateY(8px)
}

.has-dropdown:hover>.simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto
}

.simple-dropdown li {
    position: relative;
    break-inside: avoid
}

.simple-dropdown li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.2s;
    white-space: nowrap
}

.simple-dropdown li a:hover {
    color: var(--gold);
    background: rgba(245, 168, 0, 0.06);
    padding-left: 28px
}

.simple-dropdown li a i.fa-chevron-right {
    font-size: 0.55rem;
    opacity: 0.5;
    transition: transform 0.2s;
    margin-left: 12px
}

.simple-dropdown li:hover>a i.fa-chevron-right {
    opacity: 1
}

/* Level 2 submenu: fly right, AUTO 2-column grid */
.simple-dropdown .simple-dropdown {
    top: 0;
    left: 100%;
    transform: translateX(8px) translateY(0);
    min-width: 280px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 8px 4px;
    gap: 0
}

.simple-dropdown .has-dropdown:hover>.simple-dropdown {
    transform: translateX(0) translateY(0);
    pointer-events: auto
}

.simple-dropdown .simple-dropdown li a {
    padding: 8px 12px;
    white-space: normal;
    font-size: 0.82rem
}

/* Mega Menu — optional multi-column for level 1 via CSS class */
/* Usage: Add class "mega-2col" / "mega-3col" / "mega-4col" to menu item in WP Admin > Menus */
.has-mega>.simple-dropdown {
    min-width: 480px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 12px
}

.has-mega[data-mega-cols="3"]>.simple-dropdown {
    min-width: 600px;
    grid-template-columns: repeat(3, 1fr)
}

.has-mega[data-mega-cols="4"]>.simple-dropdown {
    min-width: 720px;
    grid-template-columns: repeat(4, 1fr)
}

.has-mega>.simple-dropdown>li>a {
    white-space: normal;
    font-weight: 500
}



/* Mobile Menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 42, 38, 0.4);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--bg);
    z-index: 1600;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid var(--border)
}

.mobile-menu.open {
    right: 0
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border)
}

.mobile-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-close:hover {
    color: var(--gold)
}

.mobile-nav {
    list-style: none;
    padding: 12px 0;
    flex: 1
}

.mobile-nav>li {
    border-bottom: 1px solid var(--border)
}

.mobile-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mobile-nav-row>a {
    flex: 1;
    padding: 14px 20px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500
}

.mobile-expand {
    background: none;
    border: none;
    border-left: 1px solid var(--border);
    color: var(--gold);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem
}

.mobile-sub {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
    background: rgba(245, 168, 0, 0.04)
}

.has-sub.expanded>.mobile-sub {
    max-height: 600px
}

.mobile-sub li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 32px;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s
}

.mobile-sub li a i {
    color: var(--gold);
    width: 18px;
    text-align: center;
    font-size: 0.8rem
}

.mobile-sub li a:hover {
    color: var(--gold)
}

/* Level 3 submenu (nested inside .mobile-sub) */
.mobile-sub .mobile-sub-2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
    background: rgba(245, 168, 0, 0.07);
    border-left: 2px solid var(--gold);
    margin-left: 20px;
    border-radius: 0 0 var(--radius) 0
}

.mobile-sub .has-sub.expanded>.mobile-sub-2 {
    max-height: 600px
}

.mobile-sub-2 li {
    border-bottom: 1px solid rgba(245, 168, 0, 0.08)
}

.mobile-sub-2 li:last-child {
    border-bottom: none
}

.mobile-sub-2 li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px 9px 18px;
    font-size: 0.8rem;
    color: var(--text-muted)
}

.mobile-sub-2 li a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0
}

.mobile-sub-2 li a:hover {
    color: var(--gold)
}

/* Expand button for level 2 items inside mobile-sub */
.mobile-sub .mobile-nav-row-sub {
    border-bottom: none
}

.mobile-sub .mobile-nav-row-sub .mobile-expand {
    width: 40px;
    height: 40px;
    font-size: 0.7rem
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(253, 248, 240, 0.92) 0%, rgba(253, 248, 240, 0.5) 100%);
    z-index: 1
}

.section-hero-banner {
    display: flex;
    flex-direction: column;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
}

.hero-align-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-align-left {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-align-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-subtitle {
    color: var(--gold);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.2;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero-title .gold {
    color: var(--gold);
}

.hero-desc {
    color: var(--text-muted);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(253, 248, 240, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border)
}

.hero-stats-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: center;
    gap: 60px
}

.hero-stat {
    text-align: center
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold)
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px
}

/* --- Cards --- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition)
}

.card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06)
}

.card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.card:hover .card-img img {
    transform: scale(1.05)
}

.card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition)
}

.card:hover .card-img-overlay {
    opacity: 1
}

.card-body {
    padding: 20px;
    text-align: center
}

.card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 6px
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.85rem
}

.card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(10, 122, 75, 0.1);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px
}

/* --- Project Grid --- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.project-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.project-filter button {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition)
}

.project-filter button.active,
.project-filter button:hover {
    background: var(--gold);
    color: var(--text-dark);
    border-color: var(--gold)
}

/* --- Service Cards --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.service-card {
    text-align: center;
    padding: 48px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    transition: all var(--transition)
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px)
}

.service-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 168, 0, 0.1);
    color: var(--gold);
    font-size: 1.5rem
}

.service-card h3 {
    margin-bottom: 12px
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem
}

/* --- Stats Counter --- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 60px 0
}

.stat-item {
    text-align: center
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px
}

/* --- Process Timeline --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border)
}

.process-step {
    text-align: center;
    position: relative
}

.process-step-num {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--gold);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 1
}

.process-step h3 {
    margin-bottom: 8px;
    font-size: 1.1rem
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.85rem
}

/* --- Testimonials --- */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 28px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-muted)
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold)
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem
}

.testimonial-title {
    font-size: 0.8rem;
    color: var(--text-muted)
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 16px
}

/* --- Gallery (Swiper + Lightbox) --- */
.gallery-swiper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    max-width: 100%
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: var(--gold)
}

.gallery-swiper .swiper-wrapper {
    display: flex
}

.gallery-swiper .swiper-slide {
    flex-shrink: 0;
    width: 100%
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    cursor: pointer;
    display: block
}

.gallery-thumbs {
    margin-top: 12px;
    position: relative
}

.gallery-thumbs .swiper-button-next,
.gallery-thumbs .swiper-button-prev {
    opacity: 0;
    transition: opacity 0.3s;
    transform: scale(0.55);
    margin-top: -18px;
    color: var(--gold)
}

.gallery-thumbs:hover .swiper-button-next,
.gallery-thumbs:hover .swiper-button-prev {
    opacity: 1
}

.gallery-thumbs .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--gold)
}

.gallery-thumbs .swiper-slide img {
    height: 80px;
    object-fit: cover
}

/* Lightbox — Fullscreen Swiper Gallery */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.97);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.lightbox.active {
    display: flex
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10010;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.2s
}

.lightbox-close:hover {
    background: rgba(245, 168, 0, 0.4)
}

.lightbox-counter {
    position: absolute;
    top: 24px;
    left: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    z-index: 10010
}

.lightbox-main {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 0
}

.lightbox-main .swiper {
    width: 100%;
    height: 100%
}

.lightbox-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center
}

.lightbox-main .swiper-slide img {
    max-width: 92vw;
    max-height: calc(100vh - 140px);
    object-fit: contain;
    border-radius: var(--radius)
}

.lightbox-main .swiper-button-next,
.lightbox-main .swiper-button-prev {
    color: var(--gold)
}

.lightbox-thumbs {
    width: 100%;
    max-width: 800px;
    padding: 12px 0 16px;
    margin: 0 auto
}

.lightbox-thumbs .swiper-slide {
    opacity: 0.4;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s
}

.lightbox-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--gold)
}

.lightbox-thumbs .swiper-slide img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    display: block
}

@media(max-width:768px) {
    .lightbox-main .swiper-slide img {
        max-width: 100vw;
        max-height: calc(100vh - 120px);
        border-radius: 0
    }

    .lightbox-close {
        top: 8px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem
    }

    .lightbox-thumbs .swiper-slide img {
        height: 48px
    }

    .gallery-swiper .swiper-slide img {
        height: 300px !important
    }

    .gallery-thumbs .swiper-slide img {
        height: 50px !important
    }

    .gallery-thumbs .swiper-button-next,
    .gallery-thumbs .swiper-button-prev {
        display: none !important
    }
}

@media(max-width:1024px) {
    [style*="grid-template-columns:1fr 340px"] {
        grid-template-columns: 1fr !important
    }

    [style*="grid-template-columns: 1fr 340px"] {
        grid-template-columns: 1fr !important
    }
}

/* --- Cost Estimator --- */
.estimator-wrap {
    max-width: 800px;
    margin: 0 auto
}

.estimator-step {
    display: none
}

.estimator-step.active {
    display: block
}

.estimator-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.estimator-option {
    padding: 24px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition)
}

.estimator-option:hover,
.estimator-option.selected {
    border-color: var(--gold);
    background: rgba(245, 168, 0, 0.08)
}

.estimator-option .icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px
}

.estimator-option h3 {
    font-size: 0.95rem;
    margin-bottom: 4px
}

.estimator-option p {
    font-size: 0.78rem;
    color: var(--text-muted)
}

.estimator-result {
    text-align: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg)
}

.estimator-result .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold)
}

.estimator-progress {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px
}

.estimator-progress .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    transition: all var(--transition)
}

.estimator-progress .dot.active {
    background: var(--gold);
    width: 32px;
    border-radius: 6px
}

/* --- Footer --- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.8
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold, #E8A811);
    margin-bottom: 20px
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--transition)
}

.footer-links a:hover {
    color: var(--gold)
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all var(--transition)
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 168, 0, 0.1)
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted)
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.88rem
}

.footer-contact-item i {
    color: var(--gold);
    width: 18px;
    text-align: center
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.8rem
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.breadcrumb a {
    color: var(--text-muted)
}

.breadcrumb a:hover {
    color: var(--gold)
}

.breadcrumb .sep {
    color: var(--text-muted);
    opacity: 0.4
}

.breadcrumb .current {
    color: var(--gold)
}

/* --- Forms --- */
.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color var(--transition)
}

.form-control:focus {
    outline: none;
    border-color: var(--gold)
}

textarea.form-control {
    min-height: 120px;
    resize: vertical
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease
}

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

/* Force visibility inside content areas — never hide project/article content */
.rich-content .reveal,
.rich-content .reveal-left,
.rich-content .reveal-right,
.entry-content .reveal,
.entry-content .reveal-left,
.entry-content .reveal-right,
.project-content .reveal,
.project-content .reveal-left,
.project-content .reveal-right,
figure .reveal,
figure .reveal-left,
figure .reveal-right,
.rich-content h3,
.rich-content h2,
.rich-content section,
.rich-content figure {
    opacity: 1 !important;
    transform: none !important
}

/* --- Page Builder Sections --- */
.pb-row {
    position: relative;
    background-size: cover;
    background-position: center
}

.pb-row-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.pb-row-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.pb-col {
    min-width: 0
}

.pb-col-1 {
    flex: 0 0 100%
}

.pb-col-1-2 {
    flex: 0 0 calc(50% - 12px)
}

.pb-col-1-3 {
    flex: 0 0 calc(33.333% - 16px)
}

.pb-col-2-3 {
    flex: 0 0 calc(66.666% - 8px)
}

.pb-col-1-4 {
    flex: 0 0 calc(25% - 18px)
}

.pb-col-3-4 {
    flex: 0 0 calc(75% - 6px)
}

/* Feature Grid (like CTP Home image) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.feature-card {
    text-align: center;
    padding: 36px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    transition: all var(--transition)
}

.feature-card:hover {
    border-color: var(--gold)
}

.feature-card .num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px
}

.feature-card .icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px
}

.feature-card h4 {
    font-size: 1rem;
    margin-bottom: 10px
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.83rem;
    line-height: 1.7
}

/* Photo Strip */
.photo-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory
}

.photo-strip::-webkit-scrollbar {
    display: none
}

.photo-strip img {
    height: 220px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: var(--radius);
    scroll-snap-align: start
}

.photo-strip-caption {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    margin-top: 8px;
    border-radius: var(--radius)
}

.photo-strip-caption .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted)
}

.photo-strip-caption .item i {
    color: var(--gold)
}

/* Before/After Compare */
.compare-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: ew-resize
}

.compare-slider img {
    width: 100%;
    display: block
}

.compare-after {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 50%
}

.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: ew-resize
}

.compare-handle::after {
    content: '⇔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--border)
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    transition: color var(--transition)
}

.faq-question:hover {
    color: var(--gold)
}

.faq-question i {
    color: var(--gold);
    transition: transform var(--transition)
}

.faq-item.open .faq-question i {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease
}

.faq-item.open .faq-answer {
    max-height: 500px
}

.faq-answer p {
    padding: 0 0 20px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.92rem
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    overflow: hidden
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 56, 34, 0.85)
}

.cta-banner-content {
    position: relative;
    z-index: 1
}

.cta-banner h2 {
    margin-bottom: 16px
}

.cta-banner p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem
}

/* --- Responsive --- */
@media(max-width:1024px) {

    .project-grid,
    .service-grid,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-bar,
    .process-steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-stats-inner {
        gap: 32px
    }

    .pb-col-1-2,
    .pb-col-1-3,
    .pb-col-2-3,
    .pb-col-1-4,
    .pb-col-3-4 {
        flex: 0 0 100%
    }

    .mega-dropdown {
        min-width: 480px
    }
}

@media(max-width:768px) {
    :root {
        --header-h: 64px
    }

    .section {
        padding: 60px 0
    }

    .site-header {
        top: 0 !important
    }

    .main-nav {
        display: none
    }

    .header-hotline {
        display: none
    }

    .mobile-toggle {
        display: block
    }

    .hero {
        min-height: 700px;
        height: auto;
        padding: 120px 0 240px;
        align-items: flex-start
    }

    .hero-content {
        margin-top: 0
    }

    .hero-stats-inner {
        flex-wrap: wrap;
        gap: 16px
    }

    .hero-stat {
        flex: 1 0 40%
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-left: -12px;
        margin-right: -12px
    }

    .project-grid .card {
        border-radius: var(--radius)
    }

    .project-grid .card-body {
        padding: 12px 8px;
        text-align: center
    }

    .project-grid .card-body h3 {
        font-size: 0.85rem;
        margin-bottom: 4px
    }

    .project-grid .card-body p {
        font-size: 0.75rem
    }

    .project-grid .card-tag {
        font-size: 0.65rem;
        padding: 2px 8px;
        margin-bottom: 4px
    }

    .service-grid,
    .feature-grid,
    .estimator-options {
        grid-template-columns: 1fr
    }

    .stats-bar,
    .process-steps {
        grid-template-columns: 1fr
    }

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

    .hero-buttons {
        flex-direction: column
    }

    .gallery-swiper .swiper-slide img {
        height: 300px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }

    [style*="grid-template-columns:2fr 1fr"],
    [style*="grid-template-columns:1fr 340px"] {
        grid-template-columns: 1fr !important
    }

    .breadcrumb {
        padding: 32px 0 16px
    }
}

/* ===== SECTION INTERIOR (si-*) ===== */

/* Global container override — content stays centered */
.page-sections .container,
.section-interior .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Boxed layout — constrain all sections to max-width with padding */
.page-sections {
    max-width: var(--max-width, 1370px);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    overflow: visible;
}


.page-sections>.reveal>section,
.page-sections>section {
    width: 100%;
}

/* Fix: tất cả sections đều rộng — bỏ padding/max-width thừa bên trong page-sections */
.page-sections .container,
.page-sections .bo-products,
.page-sections .cta-box,
.page-sections .section-divider,
.page-sections .est2-container,
.page-sections div[style*="padding: 0 20px"],
.page-sections div[style*="padding:0 20px"],
.page-sections div[style*="margin: 0 auto"][style*="max-width"] {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Keep announce bars intentionally narrow & centered */
.page-sections .hp-announce,
.page-sections .hp1-announce {
    max-width: 900px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Slider prev/next buttons: nằm trên slider, không nằm ngoài */
.page-sections .slider-nav.slider-prev,
.page-sections .slider-prev,
.page-sections .ds-prev {
    left: 10px !important;
}

.page-sections .slider-nav.slider-next,
.page-sections .slider-next,
.page-sections .ds-next {
    right: 10px !important;
}

/* Hero background images are now full-width at section level — break out of .page-sections container */
.page-sections > .reveal > .hero-pro,
.page-sections > .hero-pro,
.page-sections > .reveal > .hero-pro-1,
.page-sections > .hero-pro-1 {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.page-sections>.reveal {
    overflow: visible;
}

/* Hero content container */
.section-hero-banner .hero-content {
    max-width: var(--max-width, 1370px);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
}

.si-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    font-weight: 700;
    text-align: center;
    margin: 0 0 32px;
    color: #0A7A4B;
}

.si-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0 0 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.si-grid {
    display: grid;
    gap: 30px;
    width: 100%;
}

/* Cards */
.si-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.si-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
}

.si-card h3,
.si-card h4 {
    font-family: var(--font-heading);
    color: var(--text);
    margin: 12px 0 8px;
    font-size: 1.05rem;
}

.si-card p {
    color: var(--text-muted);
    font-size: .85rem;
    line-height: 1.6;
    margin: 0;
}

.si-icon {
    font-size: 2rem;
    color: var(--gold);
}

.si-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

/* Stats */
.si-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.si-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.si-stat-label {
    display: block;
    color: var(--text-muted);
    font-size: .9rem;
    margin-top: 8px;
}

/* Timeline / Process */
.si-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    position: relative;
}

.si-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--border);
}

.si-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 8px;
}

.si-timeline-number {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.si-timeline-content h3 {
    font-family: var(--font-heading);
    color: var(--text);
    margin: 0 0 6px;
    font-size: 1rem;
}

.si-timeline-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: .85rem;
    line-height: 1.6;
}

/* Pricing */
.si-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.si-pricing-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 0 0 32px;
    margin-top: 16px;
    text-align: left;
    transition: all 0.35s ease;
    position: relative;
    overflow: visible;
}

.si-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.si-pricing-popular {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #FF6B35, #E91E63);
    color: #fff;
    padding: 6px 18px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 0 0 12px;
    z-index: 2;
}

.si-pricing-highlight {
    border-color: var(--gold, #F5A800);
    box-shadow: 0 8px 30px rgba(245, 168, 0, 0.15);
}

.si-pricing-badge {
    position: absolute;
    top: -1px;
    left: 24px;
    display: inline-block;
    background: linear-gradient(135deg, #F5A800, #FF8C00);
    color: #fff;
    padding: 8px 28px;
    border-radius: 0 0 14px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.si-pricing-highlight .si-pricing-badge {
    background: linear-gradient(135deg, #FF6B35, #E91E63);
}

.si-pricing-price {
    padding: 0 28px;
    margin: 44px 0 20px;
}

.si-pricing-amount {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.si-pricing-features {
    list-style: none;
    padding: 0 28px;
    margin: 0 0 28px;
    text-align: left;
}

.si-pricing-features li {
    padding: 9px 0;
    color: #555;
    font-size: .88rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.si-pricing-features li + li {
    border-top: 1px solid #f0f0f0;
}

.si-pricing-features li i {
    color: var(--gold, #F5A800);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.82rem;
}

.si-pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 28px;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--gold, #F5A800), #FF8C00);
    border: none;
    color: #fff;
    font-family: var(--font-body, sans-serif);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(245, 168, 0, 0.3);
}

.si-pricing-btn i {
    background: rgba(255,255,255,0.25);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    transition: transform 0.3s;
}

.si-pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 168, 0, 0.4);
    color: #fff;
}

.si-pricing-btn:hover i {
    transform: translateX(3px);
}

.si-pricing-highlight .si-pricing-btn {
    background: linear-gradient(135deg, #FF6B35, #E91E63);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.si-pricing-highlight .si-pricing-btn:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* FAQ Accordion */
.si-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.si-accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.si-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.si-accordion-btn i {
    color: var(--gold);
    transition: transform .3s;
    flex-shrink: 0;
}

.si-accordion-item.active .si-accordion-btn i {
    transform: rotate(180deg);
}

.si-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.si-accordion-item.active .si-accordion-body {
    max-height: 500px;
}

.si-accordion-body p {
    padding: 0 20px 18px;
    margin: 0;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

/* Project Cards */
.si-project-card {
    display: block;
    text-decoration: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.si-project-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
}

.si-project-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.si-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.si-project-card:hover .si-project-img img {
    transform: scale(1.05);
}

.si-project-info {
    padding: 20px;
}

.si-project-info h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

/* Project Specs Bar */
.si-project-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 8px 14px;
    border-top: 1px solid #eee;
}
.si-project-specs .si-spec {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 2px 0;
}
.si-project-specs .si-spec svg {
    flex-shrink: 0;
    color: var(--gold, #F5A800);
    stroke: var(--gold, #F5A800);
}

/* Estimator Form */
.si-estimator-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.si-form-row {
    margin-bottom: 16px;
}

.si-form-row label {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: .9rem;
    font-weight: 500;
}

/* Responsive */
@media(max-width:768px) {
    .si-grid {
        grid-template-columns: repeat(var(--cols-mobile, 1), 1fr) !important;
        max-width: 100%;
        overflow: hidden;
    }

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

    .si-pricing-grid {
        grid-template-columns: 1fr;
    }

    .si-timeline {
        grid-template-columns: 1fr;
        padding-left: 50px;
        gap: 0;
    }

    .si-timeline::before {
        top: 0;
        bottom: 0;
        left: 24px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .si-timeline-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 20px 0;
        gap: 16px;
    }

    .si-timeline-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        position: absolute;
        left: -50px;
        margin-bottom: 0;
    }
}

/* ===== CONTACT FORM SECTION ===== */
.section-contact-form {
    padding: 80px 0;
    background: var(--bg-secondary)
}

.cf-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start
}

.cf-compact {
    grid-template-columns: 1fr
}

.cf-info {
    padding: 32px 0
}

.cf-benefits {
    list-style: none;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.cf-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.88rem
}

.cf-benefits i {
    color: var(--gold);
    font-size: 0.85rem
}

.cf-hotline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 20px;
    background: rgba(245, 168, 0, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg)
}

.cf-hotline>i {
    font-size: 2rem;
    color: var(--gold)
}

.cf-hotline span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block
}

.cf-hotline strong {
    font-size: 1.2rem;
    color: var(--gold)
}

.cf-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.cf-field.full {
    grid-column: span 2;
    margin-bottom: 16px
}

.cf-field label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px
}

.cf-field label i {
    color: var(--gold);
    font-size: 0.75rem
}

.cf-field input,
.cf-field select,
.cf-field textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--text);
    font-size: 0.88rem;
    transition: border-color 0.2s;
    font-family: inherit
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    outline: none;
    border-color: var(--gold)
}

.cf-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px
}

.cf-result {
    padding: 16px;
    border-radius: var(--radius);
    margin-top: 16px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px
}

.cf-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2)
}

.cf-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2)
}

/* ===== COST ESTIMATOR COMPACT ===== */
.section-estimator {
    padding: 0
}

.est-compact {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card)
}

.est-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 0;
    align-items: end
}

.est-field {
    padding: 20px;
    border-right: 1px solid var(--border)
}

.est-field label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px
}

.est-field select,
.est-field input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 14px;
    color: var(--text);
    font-size: 0.88rem;
    font-family: inherit
}

.est-field select:focus,
.est-field input:focus {
    outline: none;
    border-color: var(--gold)
}

.est-btn {
    border-radius: 0;
    height: 100%;
    padding: 20px 28px;
    border: none;
    white-space: nowrap
}

.est-result {
    border-top: 1px solid var(--border);
    padding: 32px;
    text-align: center;
    background: rgba(245, 168, 0, 0.03)
}

.est-result-inner {
    max-width: 500px;
    margin: 0 auto
}

.est-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px
}

.est-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px
}

.est-detail {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 16px
}

.est-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    opacity: 0.7
}

/* ===== WHY CHOOSE US ===== */
.section-why-us {
    padding: 80px 0
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.why-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    transition: all 0.3s
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px)
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 168, 0, 0.1);
    color: var(--gold);
    font-size: 1.5rem
}

.why-card h3,
.why-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6
}

.why-highlight {
    margin-top: 12px;
    padding: 6px 14px;
    background: rgba(245, 168, 0, 0.08);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block
}

@media(max-width:768px) {
    .cf-wrapper {
        grid-template-columns: 1fr
    }

    .cf-row {
        grid-template-columns: 1fr
    }

    .cf-field.full {
        grid-column: span 1
    }

    .est-inputs {
        grid-template-columns: 1fr
    }

    .est-field {
        border-right: none;
        border-bottom: 1px solid var(--border)
    }

    .est-btn {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg)
    }

    .why-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:480px) {
    .why-grid {
        grid-template-columns: 1fr
    }
}

/* ===== CREAM HERO SECTION ===== */
.cream-hero {
    padding: 0;
    position: relative;
    overflow: hidden
}

.cream-hero-announce {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 14px 0;
    text-align: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px
}

.cream-hero-announce span {
    color: #fff;
    opacity: 0.85
}

.cream-hero-announce strong {
    font-size: 1rem;
    margin: 0 4px
}

.cream-hero-body {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px clamp(16px, 3vw, 32px) 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    min-height: 520px
}

.cream-hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.cream-hero-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px
}

.cream-hero-logo-icon {
    width: 48px;
    height: 48px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    background: rgba(245, 168, 0, 0.08)
}

.cream-hero-logo-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    letter-spacing: 1px;
    line-height: 1.2
}

.cream-hero-logo-text small {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.5px
}

.cream-hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    margin: 0;
    display: block
}

.cream-hero-announce .hp-announce-title {
    font-size: 0.95rem;
    margin: 0;
    letter-spacing: 1.5px
}

.cream-hero-announce .hp-announce-title .tx-black {
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase
}

.cream-hero-announce .hp-announce-title .tx-gold {
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 900
}

.cream-hero-heading .gold {
    color: var(--gold)
}

.cream-hero-sub {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0
}

.cream-hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0 8px
}

.cream-hero-feat {
    text-align: center;
    padding: 12px 8px
}

.cream-hero-feat i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: rgba(245, 168, 0, 0.1);
    color: var(--gold);
    font-size: 1.1rem
}

.cream-hero-feat span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3
}

.cream-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius);
    letter-spacing: 0.5px;
    transition: all 0.3s;
    text-decoration: none;
    align-self: flex-start
}

.cream-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 168, 0, 0.35);
    color: #fff
}

.cream-hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    position: relative;
    min-height: 400px
}

.cream-hero-panel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px
}

.cream-hero-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cream-hero-panel:nth-child(1) {
    grid-row: 1/3
}

.cream-hero-panel:nth-child(2),
.cream-hero-panel:nth-child(3) {
    min-height: 0
}

.cream-hero-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.5), transparent);
    display: flex;
    align-items: flex-end;
    padding: 16px
}

.cream-hero-panel-overlay span {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500
}

.cream-hero-stats {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 28px 0
}

.cream-hero-stats-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center
}

.cream-hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block
}

.cream-hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px
}

/* Header hotline button */
.btn-header-hotline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.3s;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap
}

.btn-header-hotline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 168, 0, 0.3);
    color: #fff
}

.header-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.2s;
    cursor: pointer;
    background: none
}

.header-search:hover {
    border-color: var(--gold);
    color: var(--gold)
}

/* ===== PRESS LOGOS ===== */
.section-press {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg)
}

.press-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap
}

.press-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    white-space: nowrap
}

.press-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center
}

.press-logo {
    height: 32px;
    opacity: 0.5;
    transition: opacity 0.3s;
    filter: grayscale(100%)
}

.press-logo:hover {
    opacity: 1;
    filter: grayscale(0)
}

.press-logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.4;
    transition: opacity 0.3s;
    text-decoration: none
}

.press-logo-text:hover {
    opacity: 0.8;
    color: var(--gold)
}

/* ===== DARK FOOTER (matching PDF template) ===== */
.footer-dark {
    background: #0A7A4B;
    color: #fff
}

.footer-dark-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px clamp(16px, 4vw, 48px) 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 40px
}

.footer-dark-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px
}

.footer-dark-col p {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0 0 8px
}

.footer-dark-col p i {
    color: var(--gold);
    margin-right: 8px;
    width: 16px
}

.footer-dark-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s
}

.footer-dark-col a:hover {
    color: var(--gold)
}

.footer-dark-logo {
    display: inline-block;
    margin-bottom: 12px
}

.footer-dark-logo img {
    height: 42px;
    width: auto;
    filter: brightness(1.2)
}

.footer-dark-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff
}

.footer-dark-socials {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

.footer-dark-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s
}

.footer-dark-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 168, 0, 0.1)
}

.footer-dark-form input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-family: inherit
}

.footer-dark-form input::placeholder {
    color: rgba(255, 255, 255, 0.35)
}

.footer-dark-form input:focus {
    outline: none;
    border-color: var(--gold)
}

.footer-dark-form button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.footer-dark-form button:hover {
    box-shadow: 0 4px 15px rgba(245, 168, 0, 0.3)
}

.footer-dark-zalo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(245, 168, 0, 0.15);
    border: 1px solid rgba(245, 168, 0, 0.3);
    border-radius: var(--radius);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s
}

.footer-dark-zalo-btn:hover {
    background: var(--gold);
    color: #fff
}

.footer-dark-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px clamp(16px, 4vw, 48px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.78rem;
    color: #fff
}

/* Footer extra elements */
.fdc-company {
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 8px
}

.fdc-label {
    color: var(--gold);
    font-weight: 500
}

.footer-dark-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-dark-links li {
    margin-bottom: 8px
}

.footer-dark-links li a {
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s
}

.footer-dark-links li a:hover {
    color: var(--gold)
}

.footer-hotline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff !important;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius);
    margin-top: 12px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap
}

.footer-hotline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 168, 0, 0.35);
    color: #fff !important
}

.footer-hotline-btn i {
    font-size: 0.8rem
}

.footer-dmca {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #fff
}

.footer-dmca-badge {
    background: rgba(245, 168, 0, 0.15);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.7rem
}

.footer-dmca-badge i {
    margin-right: 4px
}

.footer-zalo-qr {
    text-align: center
}

.footer-zalo-qr a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none
}

.footer-zalo-qr img {
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1)
}

.footer-zalo-qr span {
    color: #fff;
    font-size: 0.78rem
}

.footer-fb-embed {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden
}

.footer-dark-map-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08)
}

.footer-dark-map-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px clamp(16px, 4vw, 48px)
}

.footer-map-col {
    max-width: 100%
}

.footer-map-wrap {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 8px
}

.footer-map-wrap iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 8px
}

/* Floating bottom bar: Zalo + Hotline + Back-to-top */
.floating-bottom-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
    align-items: center
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2)
}

.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3)
}

.float-zalo {
    background: #0068FF;
    padding: 0;
    overflow: hidden
}

.float-zalo img {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover
}

.float-phone {
    background: #e53935
}

.float-top {
    background: var(--green, #0A7A4B);
    display: none
}

@media(max-width:1024px) {
    .cream-hero-body {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .cream-hero-right {
        min-height: 300px
    }

    .cream-hero-stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-dark-main {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .cream-hero-features {
        grid-template-columns: repeat(2, 1fr)
    }

    .cream-hero-right {
        grid-template-columns: 1fr 1fr;
        min-height: 250px
    }

    .cream-hero-panel:nth-child(1) {
        grid-row: auto
    }

    .cream-hero-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .footer-dark-main {
        grid-template-columns: 1fr
    }

    .footer-dark-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .press-logos {
        gap: 24px
    }

    /* Mobile: horizontal bottom bar */
    .floating-bottom-bar {
        bottom: 16px;
        left: 16px;
        right: 16px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        background: none
    }

    .float-btn {
        width: 52px;
        height: 52px
    }

    .float-zalo img {
        width: 52px !important;
        height: 52px !important
    }
}


/* ===== HERO PRO SECTION v6 (Folder Tab Cards + Stats Box) ===== */
.hero-pro {
    background: var(--hp-bg, #FFFFFF);
    padding-top: clamp(30px, 4vw, 60px);
    margin-top: calc(var(--header-h, 72px) + 40px);
    position: relative;
    display: flex;
    justify-content: center;
    overflow: visible;
    width: 100%;
}

/* Full-width background image */
.hp-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hp-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Wide gradient overlay on the background image — fades gradually from white to transparent */
.hp-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.88) 20%, rgba(255,255,255,0.7) 35%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0.15) 65%, transparent 80%);
    z-index: 1;
    pointer-events: none;
}

/* hp-left-overlay now hidden — replaced by section-level gradient on .hp-bg-image::after */
.hp-left-overlay {
    display: none;
}

/* Announcement bar */
.hp-announce {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F9F9F9;
    text-align: center;
    padding: 25px 40px;
    width: 90%;
    max-width: 900px;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hp-announce-inner {
    margin: 0 auto;
}

.hp-announce-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.hp-announce-title .tx-black {
    color: #2D2A26;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.hp-announce-title .tx-gold {
    color: var(--gold, #E8A811);
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.hp-announce p {
    font-size: 0.85rem;
    color: #444;
    margin: 10px auto 0;
    line-height: 1.6;
}

/* The Body Grid Layout */
.hp-body {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    background: transparent;
    position: relative;
    z-index: 1;
    overflow: visible;
    --side-padding: 0px;
    padding: 0 var(--side-padding);
}

/* LEFT column */
.hp-left {
    flex: 0 0 45%;
    padding: clamp(20px, 3vw, 40px) clamp(20px, 3vw, 40px) clamp(20px, 2vw, 30px) 30px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

/* All content inside hp-left must sit above the frosted overlay */
.hp-left > *:not(.hp-left-overlay) {
    position: relative;
    z-index: 1;
}

.hp-logo-block {
    margin-bottom: clamp(10px, 1.5vw, 25px);
}

.hp-logo-block img {
    height: 60px;
    width: auto;
    display: block;
}

.hp-h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--hp-h1-fs, clamp(2rem, 3vw, 2.6rem));
    font-weight: 900;
    color: #111;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    display: block;
}

.hp-h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--hp-h2-fs, clamp(2.2rem, 3.5vw, 2.9rem));
    font-weight: 900;
    margin: 0 0 15px;
    line-height: 1;
    color: var(--gold, #E8A811);
    text-transform: uppercase;
}

.hp-sub {
    font-size: 0.95rem;
    color: #444;
    margin: 0 0 30px;
    line-height: 1.5;
    font-weight: 500;
}

/* 4 Features */
.hp-feats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 30px;
    position: relative;
}

.hp-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.hp-feat:last-child {
    border-right: none;
}

.hp-feat-ic {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 12px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-feat-ic img {
    max-height: 100%;
    object-fit: contain;
}

.hp-feat-tx {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hp-feat-tx strong {
    font-size: 0.55rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.hp-feat-tx span {
    font-size: 0.5rem;
    color: #555;
    line-height: 1.3;
}

/* CTA button */
.hp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #E8A811;
    color: #111;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    align-self: flex-start;
    margin-bottom: 30px;
    border: none;
}

.hp-cta-btn:hover {
    background: #a87930;
    color: #fff;
}

.hp-cta-btn i {
    font-size: 0.85rem;
}

/* Stats Box (White background) */
.hp-stats-bar {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    align-self: stretch;
    margin-top: auto;
    width: 140%;
    max-width: 850px;
    position: relative;
    z-index: 10;
}

.hp-st {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 12px;
    margin-right: 12px;
}

.hp-st:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.hp-st-ic {
    color: #E8A811;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.hp-st-tx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.hp-st-tx strong {
    font-size: 1.3rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #111;
    line-height: 1;
    display: block;
}

.hp-st-tx span {
    font-size: 0.55rem;
    text-transform: uppercase;
    font-weight: 500;
    color: #444;
    line-height: 1.3;
    display: block;
    white-space: normal;
}

/* RIGHT column */
.hp-right {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hp-gallery {
    flex-grow: 1;
    position: relative;
    min-height: clamp(320px, 35vw, 500px);
}

/* Legacy hp-img-main kept for backward compat — now unused, image is in .hp-bg-image */
.hp-img-main { display: none; }

/* Folder Tab & Cards Group */
.hp-cards-group {
    position: absolute;
    bottom: -35px;
    right: 30px;
    left: auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Canh giữa các ảnh */
    max-width: 1000px;
}

/* Badge (The Text Box) */
.hp-badge {
    background: #0A110D;
    border: 2px solid #E8A811;
    border-radius: 12px;
    /* Bo tròn tất cả các góc */
    display: inline-flex;
    gap: 14px;
    align-items: flex-start;
    /* Aligns icon and text to top */
    padding: 18px 24px 45px 24px;
    /* Thêm padding-bottom để chứa phần bị đè */
    position: relative;
    z-index: 1;
    margin-bottom: -40px;
    /* Nằm dưới 3 ảnh con (1/3) */
}

.hp-badge-ic {
    color: #E8A811;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.hp-badge-tx {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hp-badge-tx strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: #E8A811;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp-badge-tx span {
    font-size: 0.65rem;
    color: #FFF;
    line-height: 1.4;
}

/* Cards Wrapper */
.hp-bf-cards-wrap {
    background: transparent;
    position: relative;
    z-index: 2;
    /* Nằm trên badge */
    width: 100%;
}

.hp-bf-cards {
    display: flex;
    gap: 15px;
}

.hp-bf-card {
    flex: 1;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    transform: skewX(-12deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    border: 2px solid #E8A811;
    /* Viền vàng riêng từng tấm */
}

.hp-bfc-img {
    height: var(--card-h, 110px);
    max-height: 180px;
    width: 100%;
    overflow: hidden;
}

.hp-bfc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: skewX(12deg) scale(1.15);
}

.hp-bfc-body {
    padding: 12px;
    display: flex;
    align-items: center;
    background: #fff;
}

.hp-bfc-body-inner {
    display: flex;
    gap: 10px;
    align-items: center;
    transform: skewX(12deg);
}

.hp-bfc-ic {
    color: #333;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.hp-bfc-tx {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hp-bfc-tx strong {
    font-size: 0.55rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    line-height: 1.2;
}

.hp-bfc-tx span {
    font-size: 0.5rem;
    color: #666;
    line-height: 1.3;
}

/* Tagline */
.hp-tagline {
    padding: 30px 30px 24px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(253, 248, 240, 0.9) 0%, rgba(253, 248, 240, 0.6) 40%, transparent 70%);
    position: relative;
    z-index: 10;
    margin-top: 30px;
}

.hp-tg-b {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.8);
}

.hp-tg-s {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: #E8A811;
    font-weight: 700;
    font-style: italic;
    display: block;
    margin-top: 8px;
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.8);
}


/* Responsive */
@media(max-width: 1024px) {
    .hero-pro {
        flex-direction: column;
        padding-top: clamp(15px, 3vw, 30px);
        margin-top: calc(var(--header-h, 72px) + 10px);
        align-items: center;
        overflow: hidden;
    }

    /* 1. Announce bar đầu tiên, canh giữa */
    .hp-announce {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px 0;
        padding: 20px 15px;
        order: -1;
    }

    .hp-body {
        display: flex;
        flex-direction: column;
        padding-left: 0;
        width: 100%;
    }

    /* Dùng display: contents để tháo bung .hp-left, gom chung vào hp-body để dễ đảo thứ tự */
    .hp-left {
        display: contents;
    }

    /* Hide frosted overlay on mobile since hp-left is dissolved */
    .hp-left-overlay {
        display: none;
    }

    /* 2. Logo đến CTA (phần thứ 2, canh giữa) */
    .hp-logo-block,
    .hp-h1,
    .hp-h2,
    .hp-sub,
    .hp-cta-btn {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        order: 1;
        width: 100%;
        padding: 0 15px;
    }

    .hp-h1 {
        font-size: var(--hp-h1-fs-m, clamp(1.4rem, 5vw, 2rem));
    }

    .hp-h2 {
        font-size: var(--hp-h2-fs-m, clamp(1.6rem, 6vw, 2.2rem));
    }

    .hp-logo-block img {
        margin: 0 auto;
    }

    .hp-cta-btn {
        width: auto;
        margin: 15px auto 30px;
    }

    /* Thiết kế sáng tạo (hiển thị 2 cột, canh giữa) */
    .hp-feats {
        order: 1;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin: 20px 0 30px;
        padding: 0 15px;
    }

    .hp-feat {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hp-feat-tx strong {
        display: block;
        margin-bottom: 5px;
    }

    /* 3. Phần background lớn, text, 3 hình, slogan */
    .hp-right {
        order: 5;
        width: 100%;
        margin-top: 10px;
    }

    .hp-img-main {
        width: 100%;
    }

    .hp-gallery {
        min-height: auto;
        padding-top: 40px;
        /* Cho background hở ra 1 chút */
    }

    .hp-cards-group {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        margin: 0 15px;
        align-items: center;
        /* Canh giữa khối chữ đen */
        max-width: 100%;
    }

    .hp-badge {
        margin-bottom: -20px;
        /* Giảm độ lún trên mobile */
        padding: 15px 15px 35px 15px;
    }

    .hp-bf-cards-wrap {
        width: 100%;
    }

    .hp-bf-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hp-bf-card {
        transform: none;
        /* Bỏ vát chéo trên mobile */
        border-radius: 8px;
        max-width: 100%;
        margin: 0;
    }

    .hp-bfc-img img,
    .hp-bfc-body-inner {
        transform: none;
        /* Bỏ un-skew */
    }

    /* 4. Cuối cùng là 500+ khách hàng (chia làm 2 cột) */
    .hp-stats-bar {
        order: 10;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 0;
        padding: 30px 15px;
        background: #fff;
        border-radius: 0;
        box-shadow: none;
    }

    .hp-st {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border: none;
        padding: 0;
    }
}

/* ========================================================================= */
/* HERO PRO 1 (NEW LAYOUT)
/* ========================================================================= */
.hero-pro-1 {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: var(--hp1-bg, #FDFDFD);
    overflow: visible;
    padding-top: clamp(20px, 3vw, 40px);
    margin-top: calc(var(--header-h, 72px) + 40px);
    clip-path: inset(-100px 0 0 0);
}


/* Full-width background image for hero-pro-1 */
.hp1-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Wide gradient overlay on the background image — fades gradually from white to transparent */
.hp1-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(253,253,253,0.95) 0%, rgba(253,253,253,0.88) 20%, rgba(253,253,253,0.7) 35%, rgba(253,253,253,0.45) 50%, rgba(253,253,253,0.15) 65%, transparent 80%);
    z-index: 1;
    pointer-events: none;
}

/* hp1-left-overlay now hidden — replaced by section-level gradient on .hp1-bg-image::after */
.hp1-left-overlay {
    display: none;
}

/* Announcement Bar — sits half above section, half inside */
.hp1-announce {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    text-align: center;
    padding: 22px 30px;
    background: #F5F5F5;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    z-index: 20;
    border-radius: 2px;
}

.hp1-an-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    margin: 0;
}

.hp1-an-title .hp1-text-gold {
    color: #E8A811;
}

.hp1-an-desc {
    font-size: 0.88rem;
    color: #555;
    margin-top: 6px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Body Container */
.hp1-body {
    display: flex;
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-top: clamp(10px, 2vw, 30px);
    padding-left: 0;
    padding-right: 0;
    padding-bottom: clamp(120px, 12vw, 160px);
}

/* Left Column */
.hp1-left {
    flex: 0 0 55%;
    padding: clamp(10px, 1.5vw, 20px) 4% clamp(15px, 2vw, 30px) 3%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

/* All content inside hp1-left must sit above the frosted overlay */
.hp1-left > *:not(.hp1-left-overlay) {
    position: relative;
    z-index: 1;
}

.hp1-logo-block {
    margin-bottom: clamp(10px, 1.5vw, 30px);
}

.hp1-logo-block img {
    height: 70px;
    object-fit: contain;
}

.hp1-h1 {
    font-family: var(--font-heading);
    font-size: var(--hp1-h1-fs, 3vw);
    line-height: 1.1;
    color: #111;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.hp1-h1 span {
    display: block;
}

.hp1-text-gold {
    color: #E8A811;
    font-size: var(--hp1-h2-fs, inherit);
}

.hp1-sub {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Features */
.hp1-feats {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    width: calc(100% + 20px);
    margin-left: -10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 16px 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hp1-feat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 10px;
}

.hp1-feat:last-child {
    border-right: none;
}

.hp1-feat-ic {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #E8A811;
    background: rgba(197, 145, 62, 0.1);
    border-radius: 50%;
    margin-bottom: 8px;
}

.hp1-feat-tx strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.3;
    display: block;
    margin-bottom: 2px;
}

.hp1-feat-tx span {
    font-size: 0.6rem;
    color: #777;
    line-height: 1.3;
    display: block;
}

/* CTA Button */
.hp1-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #E8A811;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
    position: relative;
    z-index: 15;
}

.hp1-cta-btn:hover {
    background: #A67830;
    transform: translateY(-2px);
    color: #fff;
}

/* Right Column — now just a spacer, image is section-level background */
.hp1-right {
    flex: 0 0 45%;
    position: relative;
    z-index: 1;
}

/* Legacy — hidden, image now in .hp1-bg-image */
.hp1-img-main { display: none; }
.hp1-img-overlay { display: none; }

/* Bottom Wrap — default is full-width */
.hp1-bottom-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    overflow: hidden;
}

/* When no cards, remove the negative margin */
.hp1-bottom-wrap.hp1-no-cards {
    margin-top: 0;
}

/* When bottom bar is hidden, reduce body padding */
.hp1-no-bottom .hp1-body {
    padding-bottom: clamp(20px, 3vw, 40px);
}

/* Content-width mode — only stats bar is constrained, body stays full-width */
.hp1-stats-content .hp1-body {
    padding-bottom: clamp(60px, 8vw, 90px);
}

.hp1-stats-content .hp1-stats-bar {
    width: fit-content;
    padding-right: clamp(20px, 4vw, 50px);
    border-top-right-radius: 40px;
}

@media(max-width: 1024px) {
    .hp1-stats-content .hp1-stats-bar {
        width: 100%;
        clip-path: none;
    }
    .hp1-stats-content .hp1-stats-inner {
        padding-left: clamp(16px, 3%, 40px);
    }
    .hp1-stats-content .hp1-bottom-wrap {
        max-width: 100%;
    }
}

.hp1-stats-content .hp1-bottom-wrap.hp1-no-cards {
    margin-top: 0;
}

/* Cards Wrapper */
.hp1-cards-wrap {
    width: 100%;
    padding: 0 6% 0 3%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: -65px;
    position: relative;
    z-index: 12;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
}

.hp1-cards {
    display: grid;
    grid-template-columns: repeat(var(--d-cols, 4), 1fr);
    gap: 10px;
    width: var(--cards-w, 54%);
}

.hp1-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.hp1-card {
    height: 100%;
    background: #000;
    border: 2px solid #E8A811;
    border-radius: 10px;
    overflow: hidden;
    transform: skewX(-8deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hp1-card-inner {
    transform: skewX(8deg);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hp1-card-img {
    height: var(--card-h, 100px);
    max-height: 180px;
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
}

.hp1-card-tx {
    padding: 8px 8px;
    text-align: center;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    background: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Stats Bar */
.hp1-stats-bar {
    background: var(--green);
    color: #fff;
    padding: 28px 0 8px;
    min-height: 80px;
    position: relative;
    z-index: 11;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 0 !important;
}

.hp1-stats-inner {
    display: flex;
    max-width: 480px;
    padding-left: clamp(16px, 3%, 40px);
}


.hp1-st {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 5px;
    justify-content: flex-start;
}

.hp1-st:first-child {
    padding-left: 0;
}

.hp1-st:last-child {
    border-right: none;
    padding-right: 0;
}

.hp1-st-ic {
    color: #E8A811;
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.hp1-st-tx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.hp1-st-tx strong {
    font-size: 1.3rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #E8A811;
    line-height: 1;
    display: block;
    white-space: nowrap;
}

.hp1-st-tx span {
    font-size: 0.55rem;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    display: block;
    white-space: nowrap;
}

/* Responsive */
@media(max-width: 1200px) {
    .hp1-cards {
        width: 60%;
    }

    .hp1-stats-inner {
        max-width: 100%;
    }
}

@media(max-width: 1024px) {
    .hero-pro-1 {
        padding-top: clamp(15px, 3vw, 30px);
        margin-top: calc(var(--header-h, 72px) + 10px);
        min-height: auto;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .hp1-announce {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
        left: 0;
        transform: none;
        padding: 16px 20px;
        order: -1;
        margin-bottom: 15px;
        box-sizing: border-box;
    }

    .hp1-an-title {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hp1-an-desc {
        font-size: 0.78rem;
    }

    .hp1-body {
        flex-direction: column;
        padding-top: 10px;
        padding-bottom: 10px;
        position: relative;
        min-height: auto;
    }

    .hp1-left {
        width: 100%;
        flex: none;
        padding: 15px 20px 10px;
        text-align: center;
        position: relative;
        z-index: 3;
        align-items: center;
    }

    .hp1-logo-block {
        margin: 0 auto 8px;
    }

    .hp1-logo-block img {
        height: 40px;
    }

    .hp1-h1 {
        font-size: var(--hp1-h1-fs-m, 1.6rem);
        margin-bottom: 4px;
        color: #fff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .hp1-text-gold {
        color: #E8A811 !important;
        font-size: var(--hp1-h2-fs-m, inherit);
    }

    .hp1-sub {
        font-size: 0.85rem;
        margin-bottom: 14px;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }

    .hp1-cta-btn {
        margin: 0 auto 12px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .hp1-feats {
        width: 100%;
        margin-left: 0;
        flex-wrap: wrap;
        padding: 10px 6px;
        gap: 6px 0;
        background: rgba(255, 255, 255, 0.92);
    }

    .hp1-feat {
        flex: 0 0 50%;
        border-right: none;
        padding: 4px 8px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .hp1-feat:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

    .hp1-feat:nth-child(n+3) {
        border-bottom: none;
    }

    .hp1-feat-ic {
        width: 28px;
        height: 28px;
        font-size: 12px;
        margin-bottom: 4px;
    }

    /* Image is now section-level background, hp1-right is just a spacer - hide on mobile */
    .hp1-right {
        display: none;
    }

    /* On mobile, make the overlay darker for readability over full bg */
    .hp1-left-overlay {
        background: rgba(0, 0, 0, 0.55);
    }

    .hp1-bottom-wrap {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 0;
    }

    .hp1-cards-wrap {
        justify-content: center;
        margin-bottom: -20px;
        padding: 0 10px;
    }

    .hp1-cards {
        width: 100%;
        gap: 8px;
        grid-template-columns: repeat(var(--m-cols, 4), 1fr);
    }

    .hp1-card {
        transform: skewX(-4deg);
    }

    .hp1-card-inner {
        transform: skewX(4deg);
    }

    .hp1-card-img {
        height: 80px;
    }

    .hp1-card-tx {
        font-size: 0.55rem;
        padding: 6px 4px;
    }

    .hp1-stats-bar {
        padding: 30px 15px 12px;
        clip-path: none;
        border-radius: 20px 20px 0 0;
    }

    .hp1-stats-inner {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        gap: 0;
    }

    .hp1-st,
    .hp1-st:first-child,
    .hp1-st:last-child {
        flex: 0 0 50%;
        border-right: none;
        padding: 12px 10px;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        box-sizing: border-box;
    }

    .hp1-st:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hp1-st:nth-child(n+3) {
        border-bottom: none;
    }

    .hp1-st-ic {
        font-size: 15px;
    }

    .hp1-st-tx strong {
        font-size: 0.9rem;
    }

    .hp1-st-tx span {
        font-size: 0.6rem;
    }
}

@media(max-width: 480px) {
    .hp1-announce {
        padding: 12px 14px;
    }

    .hp1-an-title {
        font-size: 0.72rem;
    }

    .hp1-an-desc {
        font-size: 0.7rem;
    }

    .hp1-right {
        height: 220px;
    }

    .hp1-feats {
        padding: 10px 4px;
    }

    .hp1-feat-tx strong {
        font-size: 0.62rem;
    }

    .hp1-feat-tx span {
        font-size: 0.58rem;
    }

    .hp1-cards {
        gap: 6px;
    }

    .hp1-card {
        transform: none;
        border-radius: 6px;
    }

    .hp1-card-inner {
        transform: none;
    }

    .hp1-card-img {
        height: 70px;
        transform: none;
    }

    .hp1-card-tx {
        font-size: 0.55rem;
    }
}


/* ========================================================================= */
/* WHY CHOOSE US SECTION
/* ========================================================================= */
.section-why-us {
    padding: 50px 0;
}

.section-why-us .section-label {
    color: var(--gold, #E8A811);
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-why-us .section-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #0A7A4B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

/* Gold underline */
.section-why-us .section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold, #E8A811);
}

.section-why-us .section-title span,
.section-why-us .section-title .tx-gold {
    color: var(--gold, #E8A811);
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.why-card {
    padding: 36px 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: #fff;
    transition: all 0.4s ease;
    position: relative;
}

.why-card:hover {
    background: #FDFAF3;
    box-shadow: 0 8px 30px rgba(197, 145, 62, 0.08);
}

/* Icon */
.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--gold, #E8A811);
    background: rgba(197, 145, 62, 0.08);
    border-radius: 10px;
    transition: all 0.3s;
}

.why-card:hover .why-icon {
    background: var(--gold, #E8A811);
    color: #fff;
    transform: scale(1.05);
}

/* Text */
.why-card h3 {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-card h3 .tx-gold {
    color: var(--gold, #E8A811);
}

.why-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Highlight badge */
.why-highlight {
    margin-top: 16px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(197, 145, 62, 0.1);
    color: var(--gold, #E8A811);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-why-us {
        padding: 50px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 32px;
    }

    .why-card {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: none;
    }

    .why-card:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
}

/* ========================================================================= */
/* SHOWCASE GRID SECTION (1 large + N small, slider when >2 small)
/* ========================================================================= */
.showcase-grid-section {
    padding: 50px 0;
}

.showcase-grid-header {
    margin-bottom: 48px;
}

/* === GRID LAYOUT === */
.showcase-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 12px;
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
}

/* Right container (holds all small items) */
.showcase-right {
    display: grid;
    grid-template-rows: repeat(auto-fit, 1fr);
    gap: 12px;
}

/* When slider mode: vertical scroll on desktop */
.showcase-right--slider {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    scroll-snap-type: y mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 145, 62, 0.4) transparent;
}

.showcase-right-wrapper {
    position: relative;
    height: 100%;
    min-height: 100%;
}

.showcase-right--slider::-webkit-scrollbar {
    width: 6px;
}

.showcase-right--slider::-webkit-scrollbar-track {
    background: transparent;
}

.showcase-right--slider::-webkit-scrollbar-thumb {
    background: rgba(197, 145, 62, 0.4);
    border-radius: 3px;
}

.showcase-right--slider::-webkit-scrollbar-thumb:hover {
    background: rgba(197, 145, 62, 0.7);
}

.showcase-right--slider .showcase-item--small {
    flex: 0 0 calc((100% - 12px) / 2);
    min-height: 200px;
    scroll-snap-align: start;
}

/* Items */
.showcase-item {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border-radius: 8px;
    height: 100%;
}

.showcase-item--large {
    min-height: 100%;
}

.showcase-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-item:hover img {
    transform: scale(1.06);
}

.showcase-item-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8dcc8, #d4c4a8);
    color: var(--gold, #E8A811);
    font-size: 3rem;
}

/* Overlay */
.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.4s;
}

.showcase-item:hover .showcase-overlay {
    opacity: 0.2 !important;
}

/* Label — Bottom Gradient (default) */
.showcase-label {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.showcase-label--bottom_gradient {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.showcase-label--bottom_solid {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.showcase-label--center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    backdrop-filter: blur(6px);
}

.showcase-label-cat {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold, #E8A811);
}

.showcase-label-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    color: #E8A811;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin: 0;
    padding: 5px 12px;
    display: inline-block;
    text-align: center;
    border: 1px solid rgba(197, 145, 62, 0.6);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    text-shadow:
        0 0 8px rgba(197, 145, 62, 0.6),
        0 0 20px rgba(197, 145, 62, 0.3);
    box-shadow:
        0 0 8px rgba(197, 145, 62, 0.3),
        0 0 20px rgba(197, 145, 62, 0.15),
        inset 0 0 8px rgba(197, 145, 62, 0.1);
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-label-title {
    color: #D4A853;
    border-color: rgba(212, 168, 83, 0.9);
    text-shadow:
        0 0 12px rgba(212, 168, 83, 0.8),
        0 0 30px rgba(212, 168, 83, 0.5),
        0 0 50px rgba(212, 168, 83, 0.2);
    box-shadow:
        0 0 12px rgba(212, 168, 83, 0.5),
        0 0 30px rgba(212, 168, 83, 0.25),
        inset 0 0 12px rgba(212, 168, 83, 0.15);
}

.showcase-item--large .showcase-label-title {
    font-size: 1rem;
    padding: 6px 16px;
}

/* ===== SHOWCASE LIGHTBOX ===== */
.showcase-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.showcase-lightbox.active {
    display: flex;
}

.showcase-lb-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 100000;
    line-height: 1;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.showcase-lb-close:hover {
    background: var(--gold, #E8A811);
    border-color: var(--gold, #E8A811);
}

.showcase-lb-inner {
    width: 100%;
    max-width: 850px;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.showcase-lb-main {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-lb-content {
    flex: 1;
    width: 100%;
    max-height: 60vh;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-lb-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 60vh;
    display: block;
}

.showcase-lb-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
    border-radius: 4px;
}

.showcase-lb-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    font-family: var(--font-heading, sans-serif);
    padding: 4px 0;
}

.showcase-lb-nav {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .3s;
}

.showcase-lb-nav:hover {
    border-color: var(--gold, #E8A811);
    color: var(--gold, #E8A811);
    background: rgba(0, 0, 0, 0.7);
}

/* Thumbnails */
.showcase-lb-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 145, 62, 0.4) transparent;
    justify-content: center;
    flex-wrap: nowrap;
}

.showcase-lb-thumbs::-webkit-scrollbar {
    height: 4px;
}

.showcase-lb-thumbs::-webkit-scrollbar-thumb {
    background: rgba(197, 145, 62, 0.4);
    border-radius: 2px;
}

.showcase-lb-thumbs img {
    flex: 0 0 110px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    opacity: 0.45;
    transition: all .3s;
    object-fit: cover;
    width: 110px;
}

.showcase-lb-thumbs img.active {
    border-color: var(--gold, #E8A811);
    opacity: 1;
}

.showcase-lb-thumbs img:hover {
    opacity: 0.8;
}

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

    .showcase-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-item--large {
        aspect-ratio: 16/9;
    }

    /* Normal mode (<=2 small): 2 columns side by side */
    .showcase-right-wrapper {
        height: auto;
        min-height: auto;
    }

    .showcase-right {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .showcase-right .showcase-item--small {
        aspect-ratio: 4/3;
    }

    /* Slider mode (>2 small): horizontal scroll on mobile */
    .showcase-right--slider {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        height: auto;
        max-height: none;
        position: relative;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .showcase-right--slider::-webkit-scrollbar {
        height: 4px;
        width: auto;
    }

    .showcase-right--slider .showcase-item--small {
        flex: 0 0 65%;
        min-height: auto;
        scroll-snap-align: start;
        aspect-ratio: 4/3;
    }

    .showcase-label-title {
        font-size: 0.72rem;
    }

    .showcase-item--large .showcase-label-title {
        font-size: 0.85rem;
    }

    .showcase-lb-inner {
        max-width: 100%;
        gap: 8px;
    }

    .showcase-lb-content {
        max-height: 45vh;
    }

    .showcase-lb-content img {
        max-height: 45vh;
    }

    .showcase-lb-nav {
        display: none;
    }

    .showcase-lb-close {
        top: 5px;
        right: 5px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .showcase-lb-thumbs img {
        flex: 0 0 75px;
        height: 45px;
        width: 75px;
    }

    .showcase-lb-title {
        font-size: 0.85rem;
    }
}

@media(max-width: 480px) {
    .showcase-lb-thumbs img {
        flex: 0 0 60px;
        height: 38px;
        width: 60px;
    }
}

/* Video Slider */
.video-card:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5) !important;
}

.video-card:hover .play-btn {
    transform: scale(1.1);
    background: #fff !important;
    color: var(--gold, #E8A811) !important;
}

.video-card:hover img {
    transform: scale(1.05);
}

/* Lined Title Style */
.section-title.lined-title,
.si-title.lined-title,
.split-stats-title.lined-title,
.estimator-title.lined-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    width: 100%;
}

.section-title.lined-title>span,
.si-title.lined-title>span,
.estimator-title.lined-title>span {
    display: contents;
}

.section-title.lined-title::before,
.section-title.lined-title::after,
.si-title.lined-title::before,
.si-title.lined-title::after,
.split-stats-title.lined-title::before,
.split-stats-title.lined-title::after,
.estimator-title.lined-title::before,
.estimator-title.lined-title::after {
    content: "";
    flex: 1 1 0;
    height: 1px;
    background-color: currentColor;
    opacity: 0.5;
    min-width: 20px;
}

@media (max-width: 768px) {

    .section-title.lined-title,
    .si-title.lined-title,
    .split-stats-title.lined-title,
    .estimator-title.lined-title {
        gap: 10px;
    }

    .section-title.lined-title::before,
    .section-title.lined-title::after,
    .si-title.lined-title::before,
    .si-title.lined-title::after,
    .split-stats-title.lined-title::before,
    .split-stats-title.lined-title::after,
    .estimator-title.lined-title::before,
    .estimator-title.lined-title::after {
        flex-grow: 1;
    }
}

/* Text section responsive grids */
@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== Blog Layout (2-column with sidebar) ===== */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
    max-width: 1150px;
    margin: 0 auto;
}

.blog-main {
    min-width: 0;
}

.blog-main > header {
    max-width: 100%;
}

/* Author Box */
.author-box {
    max-width: 100%;
    margin-top: 36px;
    padding: 24px;
    background: #f9f9f7;
    border-radius: 12px;
    border: 1px solid #eee;
}

.author-box-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0A7A4B;
    max-width: none !important;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.author-name a {
    color: #1a1a1a;
    text-decoration: none;
}

.author-name a:hover {
    color: #0A7A4B;
}

.author-title {
    font-size: 0.82rem;
    color: #0A7A4B;
    font-weight: 600;
    margin-bottom: 8px;
}

.author-bio {
    font-size: 0.84rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: justify;
}

.author-socials {
    display: flex;
    gap: 10px;
}

.author-socials a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    font-size: 0.85rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.author-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

@media (max-width: 600px) {
    .author-box-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .author-avatar img {
        width: 70px !important;
        height: 70px !important;
        max-width: 70px !important;
    }
    .author-bio {
        text-align: center;
    }
    .author-socials {
        justify-content: center;
    }
}

.post-breadcrumb {
    max-width: 100%;
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 14px;
    margin-bottom: 18px;
}

.post-breadcrumb ol {
    white-space: normal;
    word-break: break-word;
}

.post-breadcrumb li {
    display: inline;
}

.blog-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 24px)
}

/* Sidebar widgets */
.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px
}

.sidebar-widget .widget-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    color: var(--text)
}

.sidebar-cats {
    list-style: none;
    padding: 0;
    margin: 0
}

.sidebar-cats li {
    border-bottom: 1px solid var(--border)
}

.sidebar-cats li:last-child {
    border-bottom: none
}

.sidebar-cats li a {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s
}

.sidebar-cats li a:hover,
.sidebar-cats li.active a {
    color: var(--gold);
    font-weight: 600
}

.sidebar-cats li a span {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6
}

/* Sidebar post card */
.sidebar-post {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: opacity 0.2s
}

.sidebar-post:last-child {
    border-bottom: none
}

.sidebar-post:hover {
    opacity: 0.8
}

.sidebar-post-img {
    width: 70px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sidebar-post-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0
}

.sidebar-post-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4
}

/* Blog category tabs */
.blog-cat-tab {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.2s;
    text-transform: capitalize
}

.blog-cat-tab:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.blog-cat-tab.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

/* Responsive */
@media (max-width:960px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .blog-main {
        padding-left: 0;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px
    }
}

/* Pagination Styles */
.pagination {
    margin: 40px 0;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f8f9fa;
    color: var(--text, #1a4b30);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.pagination .page-numbers:hover:not(.dots):not(.current) {
    background: rgba(232, 168, 17, 0.1);
    color: var(--gold, #E8A811);
    border-color: rgba(232, 168, 17, 0.3);
    transform: translateY(-2px);
}

.pagination .page-numbers.current {
    background: var(--gold, #E8A811);
    color: #fff;
    border-color: var(--gold, #E8A811);
    box-shadow: 0 4px 12px rgba(232, 168, 17, 0.3);
}

.pagination .page-numbers.dots {
    background: transparent;
    border-color: transparent;
    color: var(--text-muted, #666);
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
    width: auto;
    padding: 0 15px;
}

/* Force estimator title to be white against dark green background */
.section-estimator .si-title,
.section-estimator .si-title.lined-title {
    color: #FFF !important;
}

/* ═══ Content Typography: Heading spacing + List indent ═══ */
.entry-content h1,
.the-content h1,
.post-content h1,
article h1,
.rich-content h1,
.lienhe-company-desc h1 {
    font-size: 1.75rem;
    line-height: 1.3;
}

.entry-content h2,
.the-content h2,
.post-content h2,
article h2,
.rich-content h2,
.lienhe-company-desc h2 {
    font-size: 1.35rem;
    line-height: 1.35;
}

.entry-content h3,
.the-content h3,
.post-content h3,
article h3,
.rich-content h3,
.lienhe-company-desc h3 {
    font-size: 1.15rem;
    line-height: 1.4;
}

.entry-content h4,
.the-content h4,
.post-content h4,
article h4,
.rich-content h4,
.lienhe-company-desc h4 {
    font-size: 1rem;
    line-height: 1.4;
}

.entry-content h5,
.the-content h5,
.post-content h5,
article h5,
.rich-content h5,
.lienhe-company-desc h5 {
    font-size: 0.95rem;
    line-height: 1.45;
}

.entry-content h6,
.the-content h6,
.post-content h6,
article h6,
.rich-content h6,
.lienhe-company-desc h6 {
    font-size: 0.85rem;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.the-content h1,
.the-content h2,
.the-content h3,
.the-content h4,
.the-content h5,
.the-content h6,
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
article h1,
article h2,
article h3,
article h4,
article h5,
article h6,
.lienhe-company-desc h1,
.lienhe-company-desc h2,
.lienhe-company-desc h3,
.lienhe-company-desc h4,
.lienhe-company-desc h5,
.lienhe-company-desc h6 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: var(--text-dark, #1a1a1a);
}

.entry-content h1:first-child,
.the-content h1:first-child,
.post-content h1:first-child,
article h1:first-child,
.entry-content h2:first-child,
.the-content h2:first-child,
.post-content h2:first-child,
article h2:first-child,
.entry-content h3:first-child,
.the-content h3:first-child,
.post-content h3:first-child,
article h3:first-child {
    margin-top: 0;
}

.entry-content ul,
.entry-content ol,
.the-content ul,
.the-content ol,
.post-content ul,
.post-content ol,
article ul,
article ol,
.lienhe-company-desc ul,
.lienhe-company-desc ol {
    padding-left: 1.2em;
    margin-bottom: 0.8em;
}

.entry-content li,
.the-content li,
.post-content li,
article li,
.lienhe-company-desc li {
    margin-bottom: 0.3em;
    line-height: 1.7;
}

.entry-content ul ul,
.entry-content ol ol,
.the-content ul ul,
.the-content ol ol,
.post-content ul ul,
.post-content ol ol,
article ul ul,
article ol ol {
    padding-left: 1em;
    margin-top: 0.3em;
}

/* ===== Page Builder: tighter section spacing ===== */
.page-sections>.reveal>section,
.page-sections>section,
.page-sections section[class*="section-"] {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.page-sections .section-estimator {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.page-sections>.reveal {
    margin: 0;
    padding: 0;
}

/* ===== Testimonial Pro Section ===== */
.ctph-testimonial-section {
    position: relative;
    overflow: hidden;
}

/* --- Slider Track --- */
.ctph-tm-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Grid Mode --- */
.ctph-tm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* --- Row Mode --- */
.ctph-tm-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.ctph-tm-row::-webkit-scrollbar { display: none; }
.ctph-tm-row .ctph-tm-card {
    scroll-snap-align: start;
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
}

/* --- Card --- */
.ctph-tm-card {
    flex-shrink: 0;
}
.ctph-tm-card-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ctph-tm-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

/* --- Image Background --- */
.ctph-tm-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform 0.5s ease;
}
.ctph-tm-card-inner:hover .ctph-tm-img {
    transform: scale(1.05);
}

/* --- Overlay --- */
.ctph-tm-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 55%;
}

.ctph-tm-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.ctph-tm-stars {
    color: #F5A800;
    font-size: 0.8rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.ctph-tm-text {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Navigation Arrows --- */
.ctph-tm-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #0A7A4B;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s;
    z-index: 5;
}
.ctph-tm-arrow:hover {
    background: #0A7A4B;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}
.ctph-tm-prev { left: 8px; }
.ctph-tm-next { right: 8px; }

/* --- Responsive --- */
@media (max-width: 992px) {
    .ctph-tm-grid {
        grid-template-columns: 1fr;
    }
    .ctph-tm-row .ctph-tm-card {
        min-width: 85%;
    }
    .ctph-tm-card-inner {
        height: 340px;
    }
}
@media (max-width: 768px) {
    .ctph-tm-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ctph-tm-row .ctph-tm-card {
        min-width: 85%;
    }
    .ctph-tm-card-inner {
        height: 255px;
    }
    .ctph-tm-overlay {
        padding: 10px 10px 8px;
        min-height: 60%;
    }
    .ctph-tm-name {
        font-size: 0.80rem;
        margin-bottom: 2px;
    }
    .ctph-tm-stars {
        margin-bottom: 4px;
        font-size: 0.70rem;
        letter-spacing: 1px;
    }
    .ctph-tm-text {
        font-size: 0.72rem;
        line-height: 1.45;
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }
    .ctph-tm-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

/* Desktop typography adjustments for single pages and posts */
@media (min-width: 992px) {
    .entry-content p,
    .the-content p,
    .post-content p,
    .rich-content p,
    .entry-content li,
    .the-content li,
    .post-content li,
    .rich-content li {
        font-size: 14.5px !important;
        line-height: 1.75;
    }

    .entry-content h3,
    .the-content h3,
    .post-content h3,
    article h3,
    .rich-content h3,
    .lienhe-company-desc h3 {
        font-size: 1.15rem !important;
    }

    .entry-content h4,
    .the-content h4,
    .post-content h4,
    article h4,
    .rich-content h4,
    .lienhe-company-desc h4 {
        font-size: 1.02rem !important;
    }

    .entry-content h5,
    .the-content h5,
    .post-content h5,
    article h5,
    .rich-content h5,
    .lienhe-company-desc h5 {
        font-size: 0.88rem !important;
    }

    .entry-content h6,
    .the-content h6,
    .post-content h6,
    article h6,
    .rich-content h6,
    .lienhe-company-desc h6 {
        font-size: 0.80rem !important;
    }
}

/* Image + Text section: mobile stacking */
@media (max-width: 768px) {
    .pb-imgtext-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    /* When image is on the right (text first in DOM), reorder so image shows on top */
    .pb-imgtext-right {
        direction: ltr;
    }
    .pb-imgtext-right > div:last-child {
        order: -1;
    }

    /* Mobile typography: slightly smaller */
    .entry-content p,
    .the-content p,
    .post-content p,
    .rich-content p,
    .entry-content li,
    .the-content li,
    .post-content li,
    .rich-content li {
        font-size: 13.5px !important;
        line-height: 1.7;
    }

    .entry-content h3,
    .the-content h3,
    .post-content h3,
    .rich-content h3 {
        font-size: 1.05rem !important;
    }

    .entry-content h4,
    .the-content h4,
    .post-content h4,
    .rich-content h4 {
        font-size: 0.95rem !important;
    }

    .entry-content h5,
    .the-content h5,
    .post-content h5,
    .rich-content h5 {
        font-size: 0.82rem !important;
    }

    .entry-content h6,
    .the-content h6,
    .post-content h6,
    .rich-content h6 {
        font-size: 0.75rem !important;
    }

    .entry-content figcaption,
    .rich-content figcaption,
    .entry-content .wp-caption-text,
    .rich-content .wp-caption-text,
    .entry-content .wp-element-caption,
    .rich-content .wp-element-caption {
        font-size: 0.75em !important;
    }
}

/* ===== Related Posts Grid ===== */
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}