/*
Theme Name: Akina Design
Theme URI: https://noithatakina.com/
Author: Akina Design
Author URI: https://noithatakina.com/
Description: A professional WordPress theme for architecture and interior design firms, inspired by Akina Design. Features modern layout with project galleries, service sections, and contact integration.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: akina-design
Tags: architecture, interior-design, business, portfolio, custom-menu, featured-images, responsive-layout, translation-ready
*/

/* =============================================
   RESET & BASE STYLES
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #f0b429;
    --color-primary-dark: #c8930a;
    --color-secondary: #ffd060;
    --color-accent: #f0b429;
    --color-bg: #0d0d0d;
    --color-bg-light: #141414;
    --color-bg-dark: #1a1a1a;
    --color-bg-darker: #111111;
    --color-bg-black: #000000;
    --color-text: #ffffff;
    --color-text-light: #ffffff;
    --color-border: #252525;
    --color-white: #ffffff;
    --color-gold: #f0b429;
    --color-gold-light: #ffd060;
    --color-charcoal: #272727;
    --font-primary: 'Nunito', sans-serif;
    --font-heading: 'Nunito', sans-serif;
    --header-height: 80px;
    --header-sticky-height: 70px;
    --transition: all 0.3s ease;
    --shadow: 9px 8px 10px rgba(78,78,78,0.11);
    --shadow-hover: 0 20px 48px rgba(0,0,0,0.18);
    --shadow-gold: 0 8px 32px rgba(240,180,41,0.4);
    --border-radius: 50px;
    --border-radius-sm: 6px;
    --border-radius-lg: 8px;
    --container-max: 1320px;
    --container-padding: 0 30px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--color-primary-dark);
}

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.01em;
}

p, span, li, td, th, label, a {
    color: inherit;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-padding {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .section-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 16px;
    text-align: center;
    padding-bottom: 8px;
    position: relative;
}

.section-title .section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 2px;
}

/* Wrapper cần center để inline-block căn giữa */
.section-title {
    text-align: center;
}

.section-title h2 {
    font-size: 50px;
    color: var(--color-text);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    font-weight: 800;
    line-height: 1.15;
}

.section-title h2::after {
    display: none;
}

.section-title p {
    color: var(--color-text-light);
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 14px 38px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

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

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-text);
    border-color: var(--color-white);
}

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

.btn-dark {
    background: var(--color-bg-dark);
    color: var(--color-white);
    border-color: var(--color-bg-dark);
}

.btn-dark:hover {
    background: var(--color-bg-black);
    border-color: var(--color-bg-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

/* =============================================
   HEADER
   ============================================= */
#site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #0d0d0d;
    border-bottom: 1px solid #1e1e1e;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.header-top {
    background: #061d49;
    padding: 10px 0;
}

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

.header-top-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-top-contact a {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-top-contact a i,
.header-top-contact span i {
    color: var(--color-primary);
    font-size: 12px;
}

.header-top-contact span {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-top-contact a:hover {
    color: var(--color-primary);
}

.header-top-social {
    display: flex;
    gap: 8px;
}

.header-top-social a {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.header-top-social a:hover {
    color: var(--color-white);
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.header-main {
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: height 0.3s ease;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-logo {
    flex-shrink: 0;
}

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

.site-logo .site-title-text {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.1;
}

.site-logo .site-tagline {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 1px;
    margin-top: 1px;
}

/* =============================================
   NAVIGATION — DESKTOP
   ============================================= */
.main-navigation {
    display: flex;
    align-items: stretch;
    height: 100%;
}

/* Top-level list */
.main-navigation > ul {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    gap: 0;
}

.main-navigation > ul > li {
    position: relative;
    display: flex;
    align-items: stretch;
}

/* Top-level links */
.main-navigation > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 16px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.78);
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s;
    line-height: 1;
    text-decoration: none;
    border: none;
}

/* Underline removed per design */
.main-navigation > ul > li > a::after {
    display: none;
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 28px);
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 1px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.main-navigation > ul > li > a:hover::after,
.main-navigation > ul > li.current-menu-item > a::after,
.main-navigation > ul > li.current-menu-parent > a::after,
.main-navigation > ul > li.current-menu-ancestor > a::after {
    transform: translateX(-50%) scaleX(1);
}

.main-navigation > ul > li > a .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    color: var(--color-gold);
    margin-right: 6px;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.main-navigation > ul > li > a:hover .nav-icon,
.main-navigation > ul > li.current-menu-item > a .nav-icon {
    opacity: 1;
}

/* Dropdown arrow */
.main-navigation > ul > li.menu-item-has-children > a .nav-arrow {
    font-size: 8px;
    margin-left: 1px;
    opacity: 0.45;
    transition: transform 0.25s, opacity 0.25s;
}

.main-navigation > ul > li:hover > a .nav-arrow,
.main-navigation > ul > li.current-menu-item > a .nav-arrow,
.main-navigation > ul > li.current-menu-parent > a .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Hover / Active color */
.main-navigation > ul > li > a:hover,
.main-navigation > ul > li.current-menu-item > a,
.main-navigation > ul > li.current-menu-parent > a,
.main-navigation > ul > li.current-menu-ancestor > a {
    color: var(--color-gold);
}

/* ---- DROPDOWN ---- */
.main-navigation .sub-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: #111;
    min-width: 240px;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
    border-top: 2px solid var(--color-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.main-navigation .sub-menu > li {
    position: relative;
}

.main-navigation .sub-menu > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--color-text);
    border-left: 2px solid transparent;
    transition: all 0.25s;
    text-decoration: none;
    line-height: 1.3;
}

.main-navigation .sub-menu > li > a .nav-icon {
    font-size: 15px;
    color: var(--color-gold);
    opacity: 0.8;
    font-style: normal;
    line-height: 1;
    flex-shrink: 0;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.main-navigation .sub-menu > li > a:hover {
    color: var(--color-gold);
    background: var(--color-bg-light);
    border-left-color: var(--color-gold);
    padding-left: 24px;
}

.main-navigation .sub-menu > li > a:hover .nav-icon {
    opacity: 1;
}

/* Divider between sub-items */
.main-navigation .sub-menu > li + li {
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Nested sub-menu (level 3) */
.main-navigation .sub-menu .sub-menu {
    top: -9px;
    left: 100%;
    border-top: none;
    border-left: 3px solid var(--color-secondary);
    border-radius: 0 6px 6px 0;
}

/* =============================================
   HEADER ACTIONS
   ============================================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-text);
    font-size: 15px;
    transition: var(--transition);
}

.header-search-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* CTA Button in header */
.header-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: var(--color-gold);
    color: var(--color-white) !important;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--color-gold);
    cursor: pointer;
}

.header-cta-btn:hover {
    background: var(--color-charcoal);
    border-color: var(--color-charcoal);
    color: var(--color-white) !important;
    box-shadow: var(--shadow-gold);
}

.header-cta-btn .btn-pulse {
    width: 7px;
    height: 7px;
    background: #68d391;
    border-radius: 50%;
    flex-shrink: 0;
    animation: btnPulse 1.8s infinite;
}

@keyframes btnPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

/* ── Sonar ring effect on header CTA ── */
@keyframes ctaSonar {
    0%   { box-shadow: 0 0 0 0   rgba(240,180,41,0.55); }
    70%  { box-shadow: 0 0 0 18px rgba(240,180,41,0); }
    100% { box-shadow: 0 0 0 0   rgba(240,180,41,0); }
}
.header-cta-btn {
    animation: ctaSonar 2.4s ease-out infinite;
}
.header-cta-btn:hover {
    animation: none;
}

/* =============================================
   HAMBURGER BUTTON
   ============================================= */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: border-color 0.25s;
}

.mobile-menu-toggle:hover {
    background: #1a1a1a;
    border-color: var(--color-gold);
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle:hover span {
    background: #fff;
}

/* X state */
.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu-toggle.is-open {
    background: #1a1a1a;
    border-color: var(--color-gold);
}
.mobile-menu-toggle.is-open span {
    background: rgba(255,255,255,0.9);
}

/* =============================================
   STICKY HEADER
   ============================================= */
#site-header.sticky .header-main {
    height: var(--header-sticky-height);
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

#site-header.sticky {
    background: rgba(10,10,10,0.97);
    box-shadow: 0 1px 0 #1e1e1e, 0 8px 32px rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
}

#site-header.sticky .site-logo img {
    max-height: 50px;
}

/* =============================================
   MOBILE MENU — SLIDE PANEL
   ============================================= */

/* Overlay backdrop */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 10000; /* above header (9999), below panel (10001) */
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-overlay.visible {
    opacity: 1;
}

/* =============================================
   MOBILE NAV PANEL
   ============================================= */

/* Side panel */
.mobile-nav-panel {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 300px;
    max-width: 90vw;
    background: #101010;
    z-index: 10001; /* above header (9999) */
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -16px 0 60px rgba(0,0,0,0.55);
}
.mobile-nav-panel.open { transform: translateX(0); }

/* Panel header */
.mobile-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #0a0a0a;
    border-bottom: 1px solid #1e1e1e;
    flex-shrink: 0;
}

.mobile-panel-logo {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mobile-panel-logo img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}
.mobile-panel-logo .custom-logo-link { line-height: 0; }

/* Close button — minimal square */
.mobile-panel-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1e1e;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.mobile-panel-close:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Panel scrollable area */
.mobile-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 6px 0 0;
}
.mobile-panel-body::-webkit-scrollbar { width: 3px; }
.mobile-panel-body::-webkit-scrollbar-track { background: transparent; }
.mobile-panel-body::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }

/* Menu list */
.mobile-panel-body .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0 0 16px;
}

.mobile-panel-body .mobile-menu-list li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Top-level items — flex row so link + toggle sit side by side */
.mobile-panel-body .mobile-menu-list > li {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

/* Top-level links — text only, left border accent */
.mobile-panel-body .mobile-menu-list > li > a {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    gap: 0;
}

.mobile-panel-body .mobile-menu-list > li > a .nav-icon {
    display: none;
}

.mobile-panel-body .mobile-menu-list > li > a:hover,
.mobile-panel-body .mobile-menu-list > li.current-menu-item > a {
    color: var(--color-gold);
    background: rgba(229,144,1,0.05);
    border-left-color: var(--color-gold);
}

/* Sub-menu toggle — slim chevron, no boxy button */
.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    margin-left: auto;
    margin-right: 0;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 0;
    transition: color 0.2s, transform 0.2s;
}
.mobile-submenu-toggle:hover { color: var(--color-gold); background: none; }
.mobile-submenu-toggle.open { color: var(--color-gold); }
.mobile-submenu-toggle.open i { transform: rotate(180deg); }
.mobile-submenu-toggle i { transition: transform 0.3s ease; }

/* Sub-menu — full width below the parent row */
.mobile-sub-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 0 0 100%;
    background: rgba(0,0,0,0.25);
    border-left: 2px solid rgba(229,144,1,0.3);
}
.mobile-sub-menu > li > a {
    display: flex;
    align-items: center;
    padding: 13px 20px 13px 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: color 0.2s, background 0.2s;
    gap: 10px;
    letter-spacing: 0.03em;
}
.mobile-sub-menu > li > a .nav-icon {
    display: inline-flex;
    font-size: 15px;
    font-style: normal;
    color: var(--color-gold);
    opacity: 0.7;
    line-height: 1;
    flex-shrink: 0;
}
.mobile-sub-menu > li:last-child > a { border-bottom: none; }
.mobile-sub-menu > li > a:hover {
    color: var(--color-gold);
    background: rgba(229,144,1,0.06);
}

/* Panel footer */
.mobile-panel-footer {
    padding: 16px 20px 20px;
    background: #080808;
    border-top: 1px solid #1a1a1a;
    flex-shrink: 0;
}

/* CTA phone button */
.mobile-panel-footer .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--color-gold);
    color: #fff;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 14px;
    transition: background 0.25s, transform 0.2s;
}
.mobile-panel-footer .mobile-cta:hover {
    background: #c47000;
    color: #fff;
    transform: translateY(-1px);
}

/* Social links */
.mobile-panel-footer .mobile-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.mobile-panel-footer .mobile-social a {
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mobile-panel-footer .mobile-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

/* Body lock when menu open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Hide on mobile */
@media (max-width: 850px) {
    .d-none-mobile { display: none !important; }
}

/* =============================================
   HERO SECTION — FULL SLIDER
   ============================================= */
.hero-section {
    position: relative;
    height: clamp(580px, 88vh, 1020px) !important;
    min-height: 580px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background: var(--color-bg-darker);
}

/* ── Slide backgrounds stacked absolutely ── */
.hero-slides-track {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

/* Use <img> for reliable quality — no upscaling artifacts */
.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-slide-bg.active {
    opacity: 1;
}

/* Shared dark overlay — lighter so image stays sharp and detailed */
.hero-slides-track::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(5,5,8,0.62) 0%,
        rgba(0,0,0,0.25) 60%,
        rgba(0,0,0,0.38) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Content sits above the overlay — must be full-width so it aligns with header logo */
.hero-section > .container {
    position: relative;
    z-index: 2;
    width: 100%;
    align-self: flex-start;
}

/* ── Prev / Next arrows ── */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    backdrop-filter: blur(6px);
}

.hero-arrow:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* ── Dot indicators ── */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active {
    background: var(--color-gold);
    width: 28px;
    border-radius: 4px;
}

/* ── Legacy single-slide still works ── */
.hero-slide {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,30,0.82) 0%, rgba(0,0,0,0.45) 100%);
}

@media (max-width: 768px) {
    .hero-arrow { display: none !important; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    color: var(--color-white);
    padding: 28px 0 40px;
    text-align: left !important;
}

.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229,144,1,0.12);
    color: var(--color-gold-light);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    padding: 8px 20px;
    border: 1px solid rgba(229,144,1,0.35);
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 68px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--color-gold-light);
    font-style: italic;
}

.hero-content p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 38px;
    opacity: 0.85;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 55px;
    padding-top: 35px;
    border-top: 1px solid rgba(184,150,90,0.25);
}

.hero-stat-item {
    text-align: left;
    padding-right: 40px;
    border-right: 1px solid rgba(255,255,255,0.1);
    margin-right: 40px;
}

.hero-stat-item:last-child {
    border-right: none;
    margin-right: 0;
}

.hero-stat-item .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--color-gold-light);
    line-height: 1;
}

.hero-stat-item .stat-label {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 400;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
    display: block;
}

/* Overlay layer - replaces the ::before pseudo-element */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content is above overlay — full width to match header logo alignment */
.hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Placeholder hero (no image) */
.hero-no-image {
    background: linear-gradient(135deg, var(--color-bg-darker) 0%, #2c2a27 100%);
}

/* Hero parallax */
.hero-parallax {
    background-attachment: fixed;
}

/* Hero content alignment variants */
.hero-section .hero-content[style*="center"] {
    max-width: 800px;
}
.hero-section .hero-content[style*="center"] .hero-buttons {
    justify-content: center;
}
.hero-section .hero-content[style*="center"] .hero-stats {
    justify-content: center;
}
.hero-section .hero-content[style*="right"] {
    margin-left: auto;
}
.hero-section .hero-content[style*="right"] .hero-buttons {
    justify-content: flex-end;
}
.hero-section .hero-content[style*="right"] .hero-stats {
    justify-content: flex-end;
}

/* =============================================
   WHY CHOOSE US SECTION
   ============================================= */
.why-choose-section {
    padding: 90px 0;
    background: var(--color-bg);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

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

.why-choose-card {
    background: var(--color-white);
    padding: 44px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.why-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card .card-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 300;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.35s;
}

.why-choose-card:hover .card-number {
    color: rgba(184,150,90,0.15);
}

.why-choose-card .card-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--color-gold);
    transition: all 0.35s;
}

.why-choose-card:hover .card-icon {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.why-choose-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.why-choose-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
    padding: 90px 0;
    background: var(--color-bg-light);
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--color-border);
    overflow-x: auto;
}

.process-tab {
    padding: 14px 28px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.process-tab:hover,
.process-tab.active {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.process-content {
    display: none;
}

.process-content.active {
    display: block;
}

.process-step-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-step-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.process-step-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.process-step-image .process-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--color-bg-light), var(--color-border));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.process-step-text .step-number {
    font-family: var(--font-heading);
    font-size: 96px;
    font-weight: 300;
    color: rgba(184,150,90,0.12);
    line-height: 1;
    margin-bottom: 8px;
}

.process-step-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 18px;
}

.process-step-text p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.process-step-text ul {
    list-style: none;
    margin-top: 15px;
}

.process-step-text ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 14px;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
}

.process-step-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* =============================================
   PROJECTS / PORTFOLIO SECTION
   ============================================= */
.projects-section {
    padding: 90px 0;
    background: var(--color-bg);
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 9px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-light);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.project-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.project-card-image figure,
.project-card-image .wp-post-image-wrapper {
    margin: 0; padding: 0;
    width: 100%; height: 100%;
    display: block; line-height: 0;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0; padding: 0; vertical-align: top;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.08);
}

.project-card-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-light), var(--color-border));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-text-light);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,30,0.9) 0%, rgba(26,26,30,0.3) 60%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-overlay .overlay-content {
    color: var(--color-white);
}

.project-card-overlay .overlay-content h4 {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 5px;
}

.project-card-overlay .overlay-content p {
    font-size: 13px;
    opacity: 0.85;
}

.project-card-overlay .overlay-link {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.25s;
}

.project-card-overlay .overlay-link:hover {
    background: var(--color-gold-light);
}

.project-card-body {
    padding: 20px;
}

.project-card-body .project-category {
    font-family: var(--font-primary);
    font-size: 10px;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
}

.project-card-body h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.project-card-body h3 a {
    color: var(--color-text);
}

.project-card-body h3 a:hover {
    color: var(--color-primary);
}

.project-card-body p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* =============================================
   SERVICES SECTION — ARCH CARD STYLE
   ============================================= */
.services-section {
    padding: 100px 0 110px;
    background: #0d0d0d;
    position: relative;
}

.services-section .section-label { color: var(--color-gold) !important; }
.services-section .section-title h2 { color: #fff; }
.services-section .section-title p { color: rgba(255,255,255,0.5); }
.services-section .section-title-line { background: var(--color-gold); }

/* Grid — 2 cols desktop (4 items = 2×2) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
}

/* Card — arch / dome top shape */
.service-card {
    position: relative;
    height: 480px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    border-top-left-radius: 50% 12%;
    border-top-right-radius: 50% 12%;
    background: #141414;
    transition: transform 0.4s cubic-bezier(.34,1.2,.64,1), box-shadow 0.4s;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 64px rgba(0,0,0,0.55);
    z-index: 2;
}

/* Image — top 58% */
.service-card-image {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60%;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s ease;
}
.service-card:hover .service-card-image { transform: scale(1.06); }

/* Placeholder when no image */
.service-card-placeholder {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1c1c1c 0%, #0a0a0a 100%);
    transition: transform 0.65s ease;
}
.service-card:hover .service-card-placeholder { transform: scale(1.04); }
.service-card-placeholder i {
    font-size: 64px;
    color: rgba(229,144,1,0.18);
    transition: transform 0.4s, color 0.3s;
}
.service-card:hover .service-card-placeholder i {
    transform: scale(1.1);
    color: rgba(229,144,1,0.28);
}

/* Orange body — bottom 42% */
.service-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 43%;
    background: linear-gradient(135deg, #e59001 0%, #c07000 100%);
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
}

/* Curved wave transition between image and body */
.service-card-body::before {
    content: '';
    position: absolute;
    top: -28px; left: -8%;
    width: 116%;
    height: 56px;
    background: linear-gradient(135deg, #e59001 0%, #c07000 100%);
    border-radius: 50%;
    z-index: 0;
}
.service-card-body > * { position: relative; z-index: 1; }

/* Category label — small uppercase */
.service-cat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.7);
    line-height: 1.2;
}

/* Main title — large bold */
.service-card-body h3 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Tìm hiểu link */
.service-read-more {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    margin-top: 2px;
    transition: gap 0.3s, color 0.2s;
}
.service-card:hover .service-read-more {
    color: #fff;
    gap: 11px;
}
.service-read-more i { font-size: 11px; transition: transform 0.3s; }
.service-card:hover .service-read-more i { transform: translateX(3px); }

/* =============================================
   STATS / COUNTER SECTION
   ============================================= */
.stats-section {
    padding: 90px 0;
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(184,150,90,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(184,150,90,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    position: relative;
}

.stat-item {
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    color: var(--color-gold-light);
    line-height: 1;
    display: block;
    letter-spacing: -1px;
}

.stat-item .stat-number span {
    color: var(--color-gold-light);
}

.stat-item .stat-label {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.6;
    margin-top: 10px;
    display: block;
}

.stat-item .stat-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
}

/* =============================================
   NEWS / BLOG SECTION
   ============================================= */
.news-section {
    padding: 90px 0;
    background: var(--color-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* ── News card: modern overlay style ── */
.news-card {
    position: relative;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    background: #1a1a1a;
    transition: transform 0.4s cubic-bezier(.34,1.2,.64,1), box-shadow 0.4s;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

/* Image fills entire card */
.news-card-image {
    position: absolute;
    inset: 0;
    height: 100%;
    overflow: hidden;
}

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

.news-card:hover .news-card-image img {
    transform: scale(1.07);
}

/* Dark gradient overlay — removed per user request */
.news-card-image::after {
    display: none;
}

.news-card-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: rgba(255,255,255,0.15);
}

/* Category badge — top left, above gradient */
.news-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: var(--color-gold);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
}

/* Body overlaid at bottom, above gradient */
.news-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    background: none;
}

.news-card-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
}

.news-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-card-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.news-card-body h3 a {
    color: #fff;
}

.news-card-body h3 a:hover {
    color: var(--color-gold);
}

/* Hide excerpt — overlay card doesn't have room for it */
.news-card-body p {
    display: none;
}

.news-card-body .read-more {
    color: var(--color-gold);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s, color 0.2s;
}

.news-card-body .read-more:hover {
    color: var(--color-gold-light);
    gap: 10px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: 100px 0;
    background: var(--color-bg-darker);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background image layer — blurred, dark-tinted */
.cta-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px) brightness(0.35) saturate(0.7);
    transform: scale(1.06); /* hide blur edges */
    pointer-events: none;
}

/* Radial glow overlay */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 0%,   rgba(229,144,1,0.1)  0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(229,144,1,0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Top hairline */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    z-index: 2;
    background: linear-gradient(90deg, transparent, rgba(229,144,1,0.5), transparent);
}

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

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    opacity: 0.75;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-phone {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 500;
    color: var(--color-gold-light);
    margin-bottom: 32px;
    display: block;
    letter-spacing: 1px;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    padding: 90px 0;
    background: var(--color-bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    position: relative;
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-gold);
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
    border-top-color: var(--color-gold);
    transform: translateY(-4px);
}

.testimonial-card .quote-icon {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 300;
    color: var(--color-gold);
    opacity: 0.25;
    line-height: 0.8;
    margin-bottom: 18px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

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

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-size: 15px;
    color: var(--color-text);
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--color-text-light);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    padding: 90px 0;
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-item .icon {
    width: 46px;
    height: 46px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-item .info-content h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 3px;
}

.contact-info-item .info-content p,
.contact-info-item .info-content a {
    font-size: 15px;
    color: var(--color-text);
    font-weight: 700;
}

.contact-info-item .info-content a:hover {
    color: var(--color-primary);
}

.contact-form {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-text);
    background: var(--color-bg-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(184,150,90,0.08);
}

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

/* =============================================
   CONSULTATION FORM — UNIFIED (compact)
   ============================================= */

/* Tất cả form-group trong consult form — margin nhỏ hơn */
.akina-consult-form .form-group {
    margin-bottom: 10px;
}

.akina-consult-form .form-row {
    gap: 10px;
}

/* Label nhỏ gọn */
.akina-consult-form .form-group label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

/* Input / select / textarea nhỏ hơn */
.akina-consult-form .form-group input,
.akina-consult-form .form-group select,
.akina-consult-form .form-group textarea {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 6px;
}

/* Textarea ngắn hơn */
.akina-consult-form .form-group textarea {
    height: 65px;
    resize: none;
}

/* Nút gửi gọn hơn */
.akina-consult-form .consult-submit-btn {
    padding: 11px 20px;
    font-size: 14px;
    letter-spacing: 0.06em;
}

.budget-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.budget-radio {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
}

.budget-radio input[type="radio"] {
    display: none;
}

.budget-radio span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
}

.budget-radio span::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}

.budget-radio input[type="radio"]:checked + span {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.budget-radio input[type="radio"]:checked + span::before {
    background: #fff;
    border-color: #fff;
}

.budget-radio:hover span {
    border-color: var(--color-gold);
    color: #fff;
}

.budget-radio:hover span::before {
    border-color: var(--color-gold);
}

.consult-submit-btn {
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 14px 20px;
}

/* Below-article consultation form box */
.post-consult-form {
    background: var(--color-bg-light, #f9f6f2);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 40px;
    border: 1px solid var(--color-border, #e8e2da);
}

.post-consult-form-header {
    margin-bottom: 16px;
}

.post-consult-form-header h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.post-consult-form-header p {
    font-size: 13px;
    color: var(--color-text-light);
    margin: 0;
}

@media (max-width: 600px) {
    .budget-radio-group { gap: 8px; }
    .budget-radio span { padding: 7px 12px; font-size: 12px; }
    .post-consult-form { padding: 24px 20px; }
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
    background: var(--color-bg-dark);
    color: #9a9590;
}

.footer-main {
    padding: 60px 0 40px;
}

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

.footer-widget h4 {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 3.5px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(184,150,90,0.3);
    display: inline-block;
}

.footer-about .footer-logo {
    margin-bottom: 15px;
}

.footer-about .footer-logo img {
    max-height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.footer-about .footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    color: var(--color-white);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: #7a7570;
    margin-bottom: 24px;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(184,150,90,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a7570;
    font-size: 13px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

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

.footer-links li a {
    color: #7a7570;
    font-size: 13px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links li a::before {
    content: '—';
    color: var(--color-gold);
    font-size: 12px;
    opacity: 0.5;
}

.footer-links li a:hover {
    color: var(--color-gold-light);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: flex-start;
    font-size: 14px;
    color: #aaaaaa;
}

.footer-contact-list li .fc-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list li a {
    color: #aaaaaa;
}

.footer-contact-list li a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    background: var(--color-bg-darker);
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    color: #504d4a;
    border-top: 1px solid rgba(184,150,90,0.08);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    color: #888888;
}

.footer-bottom a:hover {
    color: var(--color-white);
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    position: relative;
    text-decoration: none;
}

/* Phone — gold sonar */
@keyframes sonarPhone {
    0%   { box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 0 0   rgba(240,180,41,0.6); }
    70%  { box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 0 20px rgba(240,180,41,0);   }
    100% { box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 0 0   rgba(240,180,41,0);   }
}
.floating-btn.phone {
    animation: sonarPhone 2.4s ease-out infinite;
}

/* Zalo — blue sonar */
@keyframes sonarZalo {
    0%   { box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 0 0   rgba(0,104,255,0.6); }
    70%  { box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 0 20px rgba(0,104,255,0);   }
    100% { box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 0 0   rgba(0,104,255,0);   }
}
.floating-btn.zalo {
    animation: sonarZalo 2.4s ease-out infinite;
    animation-delay: 0.6s;
}

/* Messenger — purple sonar */
@keyframes sonarMessenger {
    0%   { box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 0 0   rgba(118,63,228,0.6); }
    70%  { box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 0 20px rgba(118,63,228,0);   }
    100% { box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 0 0   rgba(118,63,228,0);   }
}
.floating-btn.messenger {
    animation: sonarMessenger 2.4s ease-out infinite;
    animation-delay: 1.2s;
}

.floating-btn:hover {
    transform: scale(1.1);
    animation-play-state: paused;
    color: var(--color-white);
}

.floating-btn.phone {
    background: var(--color-accent);
}

.floating-btn.zalo {
    background: #0068ff;
    font-size: 0; /* hide default font */
}

.floating-btn.zalo .zalo-text {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #fff;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.floating-btn.messenger {
    background: linear-gradient(135deg, #0668e1, #7b3fe4);
}

.floating-btn .tooltip {
    position: absolute;
    right: 60px;
    background: var(--color-bg-dark);
    color: var(--color-white);
    font-size: 12px;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    background: var(--color-charcoal);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    z-index: 9997;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(184,150,90,0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* pulse keyframe removed — replaced by floatWave */

/* =============================================
   PAGE TEMPLATES
   ============================================= */
.page-hero {
    position: relative;
    padding: 80px 0 68px;
    background: var(--color-bg-darker);
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184,150,90,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184,150,90,0.3), transparent);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.3px;
    line-height: 1.15;
}

/* Đường vàng dưới tiêu đề */
.page-hero h1::after {
    content: '';
    display: block;
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin: 18px auto 0;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.6;
    max-width: 580px;
    margin: 14px auto 0;
}

/* Breadcrumb hòa vào hero — bỏ nền trắng */
.page-hero .breadcrumb-wrap {
    background: transparent !important;
    border: none !important;
    padding: 16px 0 0 !important;
    margin: 0;
}

.page-hero .breadcrumb-list {
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
}

.page-hero .breadcrumb-list a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.page-hero .breadcrumb-list a:hover {
    color: #fff;
}

.page-hero .breadcrumb-sep {
    color: rgba(255,255,255,0.3) !important;
}

/* Legacy breadcrumbs class */
.breadcrumbs {
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumbs a {
    color: var(--color-secondary);
}

.breadcrumbs span {
    margin: 0 8px;
}

.content-area {
    padding: 70px 0;
}

.content-area .container {
    display: block;
}

.content-area .main-content {
    max-width: 900px;
    margin: 0 auto;
}

.main-content h1,
.main-content h2,
.main-content h3 {
    margin-bottom: 15px;
    margin-top: 30px;
}

.main-content h1:first-child,
.main-content h2:first-child {
    margin-top: 0;
}

.main-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.main-content img {
    border-radius: 8px;
    margin: 20px 0;
}

/* Sidebar */
.sidebar .widget {
    background: var(--color-bg-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar .widget-title {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-gold);
}

.sidebar .widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.sidebar .widget ul li:last-child {
    border-bottom: none;
}

.sidebar .widget ul li a {
    color: var(--color-text-light);
}

.sidebar .widget ul li a:hover {
    color: var(--color-primary);
}

/* Full width content */
.content-area.no-sidebar .container {
    grid-template-columns: 1fr;
}

/* =============================================
   SEARCH FORM
   ============================================= */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-overlay input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-text);
}

.search-overlay-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumb-wrap {
    padding: 12px 0;
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--color-text-light);
    flex-wrap: wrap;
}

.breadcrumb-list a {
    color: var(--color-text-light);
}

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

.breadcrumb-sep {
    margin: 0 3px;
    color: var(--color-border);
}

/* =============================================
   SINGLE POST
   ============================================= */
.post-header {
    margin-bottom: 30px;
}

.post-title {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.post-meta a {
    color: var(--color-primary);
}

.post-thumbnail {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.post-thumbnail img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.post-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 12px;
}

.post-content h1 { font-size: 28px; }
.post-content h2 { font-size: 24px; margin-top: 35px; margin-bottom: 15px; }
.post-content h3 { font-size: 20px; margin-top: 25px; }
.post-content h4 { font-size: 18px; }
.post-content h5 { font-size: 16px; }
.post-content h6 { font-size: 14px; color: rgba(255,255,255,0.75); }

/* Override any Gutenberg palette color applied to headings */
.post-content h1[class*="has-"],
.post-content h2[class*="has-"],
.post-content h3[class*="has-"],
.post-content h4[class*="has-"],
.post-content h5[class*="has-"],
.post-content h6[class*="has-"],
.post-content .wp-block-heading {
    color: #ffffff !important;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul, .post-content ol {
    margin: 15px 0 15px 20px;
}

.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }

.post-content li {
    margin-bottom: 8px;
}

.post-content blockquote {
    border-left: 4px solid var(--color-primary);
    margin: 25px 0;
    padding: 20px 25px;
    background: var(--color-bg-light);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 16px;
}

.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.post-tags .tag-label {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.post-tags a {
    background: var(--color-bg-light);
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 12px;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
}

.post-tags a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* =============================================
   PAGINATION — unified for the_posts_pagination()
   and paginate_links()
   ============================================= */

/* Wrapper */
.pagination-wrap,
.navigation.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

/* The actual flex pill — targets both nav-links (the_posts_pagination)
   and direct page-numbers list (paginate_links) */
.navigation.pagination .nav-links,
.pagination-wrap > .page-numbers,
.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 60px;
    padding: 6px;
    list-style: none;
}

/* Hide screen-reader heading */
.navigation.pagination .screen-reader-text {
    display: none;
}

/* Every page number item */
.navigation.pagination .nav-links .page-numbers,
.pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    background: transparent;
    border: none;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    line-height: 1;
}

/* Hover */
.navigation.pagination .nav-links a.page-numbers:hover,
.pagination-wrap a.page-numbers:hover {
    background: rgba(240,180,41,0.14);
    color: var(--color-gold);
}

/* ── ACTIVE / CURRENT ── */
.navigation.pagination .nav-links .page-numbers.current,
.pagination-wrap .page-numbers.current {
    background: var(--color-gold);
    color: #111 !important;
    font-weight: 700;
    box-shadow: 0 0 0 3px rgba(240,180,41,0.25), 0 4px 16px rgba(240,180,41,0.4);
    pointer-events: none;
}

/* Dots */
.navigation.pagination .nav-links .page-numbers.dots,
.pagination-wrap .page-numbers.dots {
    min-width: 28px;
    color: rgba(255,255,255,0.2);
    pointer-events: none;
    letter-spacing: 2px;
}

/* Prev / Next arrow buttons */
.navigation.pagination .nav-links .prev,
.navigation.pagination .nav-links .next,
.pagination-wrap .prev,
.pagination-wrap .next {
    min-width: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.55);
    gap: 6px;
}

.navigation.pagination .nav-links .prev:hover,
.navigation.pagination .nav-links .next:hover,
.pagination-wrap .prev:hover,
.pagination-wrap .next:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(240,180,41,0.1);
}

@media (max-width: 600px) {
    .navigation.pagination .nav-links,
    .pagination-wrap {
        gap: 4px;
        padding: 4px;
        border-radius: 40px;
    }
    .navigation.pagination .nav-links .page-numbers,
    .pagination-wrap .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
        padding: 0 10px;
    }
}

/* =============================================
   404 PAGE
   ============================================= */
.error-404-section {
    padding: 100px 0;
    text-align: center;
}

.error-404-section h1 {
    font-size: 150px;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.2;
}

.error-404-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.error-404-section p {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto 40px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 42px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
    :root {
        --header-height: 65px;
        --header-sticky-height: 55px;
    }

    .header-top { display: none; }

    /* Hide desktop nav, show hamburger */
    .main-navigation { display: none !important; }
    .mobile-menu-toggle { display: flex; }

    .hero-content h1 { font-size: 32px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }

    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }
    .content-area .container { grid-template-columns: 1fr; }

    .process-step-content { grid-template-columns: 1fr; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .section-title h2 { font-size: 26px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 549px) {
    .hero-content h1 { font-size: 26px; }
    .hero-buttons { flex-direction: column; }
    .projects-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 10px; }
    .section-padding { padding: 50px 0; }
}

/* ===== PROCESS TABS MOBILE — MODERN CARD GRID ===== */
@media (max-width: 850px) {
    .process-tabs {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        border-bottom: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin-bottom: 28px !important;
        overflow: visible !important;
    }

    .process-tab {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        background: #fff !important;
        border: 1.5px solid #e8e2d9 !important;
        border-radius: 14px !important;
        padding: 14px 14px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        letter-spacing: 0 !important;
        color: #555 !important;
        text-align: left !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
        transition: all 0.22s ease !important;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    /* Số thứ tự nhỏ ở góc */
    .process-tab::before {
        content: attr(data-tab);
        display: none !important;
    }

    /* Viền trái màu khi active */
    .process-tab.active {
        background: var(--color-gold) !important;
        border-color: var(--color-gold) !important;
        color: #fff !important;
        box-shadow: var(--shadow-gold) !important;
        transform: translateY(-2px) !important;
    }

    .process-tab:hover:not(.active) {
        border-color: var(--color-gold) !important;
        color: var(--color-gold) !important;
        box-shadow: 0 4px 14px rgba(184,150,90,0.15) !important;
    }

    /* Tab cuối (thứ 5) chiếm full width nếu lẻ */
    .process-tab:last-child:nth-child(odd) {
        grid-column: 1 / -1 !important;
    }
}

/* =============================================
   LUXURY REFINEMENTS — SUPPLEMENTAL OVERRIDES
   ============================================= */

/* ===== NAVIGATION DROPDOWN — DARK LUXURY ===== */
.main-navigation .sub-menu {
    background: var(--color-bg-dark);
    border-top-color: var(--color-gold);
}

.main-navigation .sub-menu > li > a {
    color: rgba(255,255,255,0.75);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-left-color: transparent;
}

.main-navigation .sub-menu > li > a:hover {
    color: var(--color-gold-light);
    background: rgba(184,150,90,0.08);
    border-left-color: var(--color-gold);
}

.main-navigation .sub-menu > li + li {
    border-top: 1px solid rgba(255,255,255,0.04);
}

.main-navigation .sub-menu .sub-menu {
    background: var(--color-bg-darker);
    border-left: 2px solid var(--color-gold);
}

/* ===== MOBILE MENU — DARK LUXURY ===== */
.mobile-nav-panel {
    background: #0e0e12;
}

.mobile-panel-header {
    background: #0a0a0d;
    border-bottom: 1px solid rgba(184,150,90,0.15);
}

.mobile-panel-logo {
    color: var(--color-gold-light);
}

.mobile-panel-close:hover {
    background: rgba(184,150,90,0.15);
    color: var(--color-gold-light);
}

.mobile-panel-body {
    background: #0e0e12;
}

.mobile-panel-body .mobile-menu-list li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-panel-body .mobile-menu-list > li > a {
    color: rgba(255,255,255,0.82);
}

.mobile-panel-body .mobile-menu-list > li > a .nav-icon {
    background: rgba(184,150,90,0.08);
    border: 1px solid rgba(184,150,90,0.18);
    color: var(--color-gold);
}

.mobile-panel-body .mobile-menu-list > li > a:hover,
.mobile-panel-body .mobile-menu-list > li.current-menu-item > a {
    color: var(--color-gold-light);
    background: rgba(184,150,90,0.05);
}

.mobile-panel-body .mobile-menu-list > li > a:hover .nav-icon,
.mobile-panel-body .mobile-menu-list > li.current-menu-item > a .nav-icon {
    background: rgba(184,150,90,0.18);
    border-color: var(--color-gold);
}

.mobile-sub-menu {
    background: #080810;
    border-left: 2px solid rgba(184,150,90,0.3);
    border-top: 1px solid rgba(255,255,255,0.03);
}

.mobile-sub-menu > li > a {
    color: rgba(255,255,255,0.55);
}

.mobile-sub-menu > li > a .nav-icon {
    color: var(--color-gold);
    opacity: 0.6;
}

.mobile-sub-menu > li > a:hover {
    color: var(--color-gold-light);
    background: rgba(184,150,90,0.05);
}

.mobile-panel-footer {
    background: #080810;
    border-top: 1px solid rgba(184,150,90,0.1);
}

.mobile-panel-footer .mobile-social a {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
}

.mobile-panel-footer .mobile-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

/* ===== LOGO TEXT ===== */
.logo-text {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 24px;
}

/* ===== PROCESS — SUPPLEMENTAL ===== */
.process-step-text ul li::before {
    color: var(--color-gold);
}

/* ===== SERVICES SECTION — DARK BG ===== */
.services-section .section-title h2,
.services-section .section-title p {
    color: var(--color-white);
}

.services-section .section-title h2::after {
    display: none;
}

.services-section .section-title p {
    color: rgba(255,255,255,0.55);
}

/* ===== STATS — Gold border lines ===== */
.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184,150,90,0.25), transparent);
}

/* ===== FLOAT BUTTONS ===== */
.floating-contact {
    gap: 12px;
    right: 22px;
    bottom: 88px;
}

.floating-btn {
    width: 52px;
    height: 52px;
    font-size: 19px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
    animation: none;
}

.floating-btn.phone {
    background: var(--color-gold);
}

@keyframes ring-pulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ===== SCROLL TO TOP ===== */
#scrollToTop {
    background: var(--color-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

#scrollToTop:hover {
    background: var(--color-primary-dark);
    transform: translateY(-4px);
}

/* ===== RESPONSIVE LUXURY ===== */
@media (max-width: 768px) {
    .hero-section {
        height: auto !important;
        min-height: calc(100svh - var(--header-height)) !important;
        align-items: flex-start;
    }
    .hero-content {
        padding: 36px 0 48px;
    }
    .hero-arrow { display: none !important; }
    .hero-content h1 { font-size: 36px; }
    .section-title h2 { font-size: 32px; }
    .cta-section h2 { font-size: 32px; }
    .section-padding { padding: 70px 0; }
}

@media (max-width: 549px) {
    .hero-section {
        height: auto !important;
        min-height: calc(100svh - var(--header-height)) !important;
    }
    .hero-content {
        padding: 24px 0 40px;
    }
    .hero-content h1 { font-size: 28px; }
    .section-title h2 { font-size: 26px; }
}


/* ==============================================
   CATEGORY PAGE TEMPLATE
   ============================================= */

.cat-page-area {
    padding: 60px 0 80px;
}

.cat-page-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.cat-badge {
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    padding: 6px 18px;
    border-radius: var(--border-radius);
}

.cat-count {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.5px;
}

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

/* Pagination */
.cat-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.cat-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 5px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
}

.cat-pagination .page-numbers li a,
.cat-pagination .page-numbers li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
    letter-spacing: 0.02em;
}

.cat-pagination .page-numbers li a:hover {
    background: rgba(240,180,41,0.12);
    color: var(--color-gold);
    transform: none;
    box-shadow: none;
}

.cat-pagination .page-numbers li span.current {
    background: var(--color-gold);
    color: #111;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(240,180,41,0.4);
}

/* Empty state */
.no-posts-found {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(160deg, #fdf9f4, #f8f4ee);
    border-radius: 16px;
    border: 1px solid rgba(201,168,76,0.15);
}

.no-posts-found .no-posts-icon {
    font-size: 56px;
    color: rgba(201,168,76,0.35);
    margin-bottom: 20px;
}

.no-posts-found h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #333;
}

.no-posts-found p {
    color: #888;
    margin-bottom: 28px;
}

@media (max-width: 900px) {
    .cat-page-layout {
        grid-template-columns: 1fr;
    }
    .cat-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cat-posts-grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================
   UI IMPROVEMENTS — CARD & GLOBAL REDESIGN
   ============================================= */

/* 1. Logo vertical alignment */
.site-logo { display: flex; align-items: center; height: 100%; }
.site-logo > a { display: flex; align-items: center; text-decoration: none; }

/* 2. Hide search button */
.header-search-btn { display: none !important; }

/* 3. Process tabs larger */
.process-tab { font-size: 15px !important; font-weight: 600 !important; letter-spacing: 0.3px !important; text-transform: none !important; padding: 18px 30px !important; }
.process-tab.active { font-size: 15px !important; font-weight: 700 !important; }
.process-step-text p { font-size: 16px; line-height: 1.8; }
.process-step-text ul li { font-size: 15px; line-height: 1.7; }
.process-step-text h3 { font-size: 26px; }

/* 4. News grid 2 cols inside sidebar layout */
.content-area .main-content .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 16px;
}

/* ===================================================
   NEWS CARD — PREMIUM REDESIGN
   =================================================== */
.news-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: none;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}
.news-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f5f1eb;
    flex-shrink: 0;
}
.news-card-img-link { display: block; width: 100%; height: 100%; }

/* Reset WordPress figure wrapper inside card image */
.news-card-image figure,
.news-card-image .wp-post-image-wrapper {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    line-height: 0;
}

.news-card-image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
    margin: 0; padding: 0; vertical-align: top;
}
.news-card:hover .news-card-image img { transform: scale(1.06); }
.news-card-image .image-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, #f0ebe2 0%, #e8ddd0 50%, #ddd3c5 100%);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.5s ease;
    font-size: inherit;
}
.news-card:hover .image-placeholder { transform: scale(1.04); }
.placeholder-letter {
    font-family: var(--font-heading);
    font-size: 72px; font-weight: 600; font-style: italic;
    color: rgba(184,150,90,0.2); line-height: 1; user-select: none;
}
.news-card-category {
    position: absolute; top: 14px; left: 14px;
    background: var(--color-gold) !important;
    color: var(--color-white) !important;
    font-family: var(--font-primary);
    font-size: 11px; font-weight: 700; letter-spacing: 0;
    text-transform: none; padding: 5px 14px; border-radius: var(--border-radius);
    text-decoration: none !important; transition: background 0.2s; z-index: 2;
}
.news-card-category:hover { background: var(--color-primary-dark) !important; }
.news-card-body {
    padding: 22px 24px 24px;
    display: flex; flex-direction: column; flex: 1;
}
.news-card-meta { font-size: 12px; color: #bbb; margin-bottom: 10px; display: flex; gap: 12px; }
.news-card-meta span { display: flex; align-items: center; gap: 5px; }
.news-card-meta i { color: var(--color-gold); opacity: 0.55; font-size: 11px; }
.news-card-title {
    font-family: var(--font-heading) !important;
    font-size: 19px !important; font-weight: 600 !important;
    line-height: 1.35 !important; margin-bottom: 10px !important; margin-top: 0 !important;
}
.news-card-title a { color: #1a1a1a; text-decoration: none; transition: color 0.2s; }
.news-card-title a:hover { color: var(--color-gold); }
.news-card-excerpt {
    font-size: 14px !important; color: #909090 !important;
    line-height: 1.65 !important; margin-bottom: 18px !important; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}
.news-card-readmore {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-primary);
    font-size: 11px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: var(--color-gold) !important;
    text-decoration: none; border-bottom: 1px solid rgba(184,150,90,0.3);
    padding-bottom: 3px; transition: all 0.25s ease;
    align-self: flex-start; margin-top: auto;
}
.news-card-readmore svg { transition: transform 0.25s ease; flex-shrink: 0; }
.news-card-readmore:hover { border-color: var(--color-gold); color: var(--color-primary-dark) !important; }
.news-card-readmore:hover svg { transform: translateX(4px); }

/* ===================================================
   SIDEBAR CTA WIDGET
   =================================================== */
.sidebar-cta-widget {
    background: var(--color-bg-dark) !important;
    color: #fff; text-align: center; border-radius: 20px;
    padding: 32px 24px !important; border: 1px solid rgba(184,150,90,0.2);
}
.sidebar-cta-widget .widget-title {
    color: #ffffff !important;
    border-bottom-color: rgba(184,150,90,0.2) !important;
    font-family: var(--font-heading); font-size: 20px;
}
.sidebar-cta-widget p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }

/* Registration form inside sidebar */
.sidebar-register-form { text-align: left; margin: 0 0 4px; }
.srf-field { margin-bottom: 10px; }
.srf-field input,
.srf-field textarea {
    width: 100%; background: rgba(255,255,255,0.07);
    border: 1px solid rgba(184,150,90,0.25); border-radius: 8px;
    color: #fff; font-size: 13px; padding: 10px 14px;
    outline: none; transition: border-color 0.2s; resize: none;
    font-family: var(--font-primary);
}
.srf-field input::placeholder,
.srf-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.srf-field input:focus,
.srf-field textarea:focus { border-color: var(--color-gold); }
.sidebar-cta-submit {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--color-gold); color: #fff;
    border: none; border-radius: var(--border-radius);
    font-family: var(--font-primary); font-weight: 700; font-size: 14px;
    padding: 13px 16px; cursor: pointer; transition: background 0.25s; margin-top: 4px;
}
.sidebar-cta-submit:hover { background: var(--color-primary-dark); }

.sidebar-cta-phone {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: transparent; color: rgba(255,255,255,0.6) !important;
    border: 1px solid rgba(184,150,90,0.25);
    font-family: var(--font-primary);
    font-weight: 600; font-size: 14px; padding: 11px 16px; letter-spacing: 0;
    border-radius: var(--border-radius); text-decoration: none; margin-bottom: 10px; transition: all 0.25s;
}
.sidebar-cta-phone:hover { border-color: var(--color-gold); color: var(--color-gold-light) !important; }

/* ===================================================
   GLOBAL BUTTONS — GOLD LUXURY
   =================================================== */
.btn { border-radius: var(--border-radius) !important; }
.btn-primary {
    background: var(--color-gold) !important;
    color: #fff !important;
    border: 1px solid var(--color-gold) !important;
    box-shadow: none !important;
}
.btn-primary:hover {
    background: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-gold) !important;
}
/* Active/focus — always gold, never browser-default red/blue */
.btn:focus,
.btn:active,
.btn-primary:focus,
.btn-primary:active {
    outline: none !important;
    background: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
    color: #fff !important;
    box-shadow: 0 0 0 3px rgba(229,144,1,0.35) !important;
}
/* Pagination active/hover — gold */
.pagination .page-numbers:hover,
.pagination .page-numbers.current,
.cat-pagination .page-numbers:hover,
.cat-pagination .page-numbers.current {
    background: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
    color: #fff !important;
}
.header-cta-btn { border-radius: var(--border-radius) !important; }

/* Ẩn widget Tìm kiếm và Bình luận gần đây trong sidebar */
.sidebar .widget_search,
.sidebar .widget_recent_comments { display: none !important; }

/* Responsive */
@media (max-width: 900px) {
    .content-area .main-content .news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .news-card-image { height: 180px; }
    .placeholder-letter { font-size: 52px; }
}

/* ===================================================
   CATEGORY PAGE — MODERN HERO
   =================================================== */
.cat-hero {
    position: relative;
    background: #0d0d0d;
    border-top: none;
    border-bottom: 1px solid rgba(229,144,1,0.15);
    overflow: hidden;
    padding: 0;
}

/* Multi-layer background: radial gold glow + diagonal gradient */
.cat-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 50%, rgba(229,144,1,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(229,144,1,0.05) 0%, transparent 40%),
        linear-gradient(135deg, #111111 0%, #0d0d0d 60%, #131008 100%);
    pointer-events: none;
}

/* Decorative horizontal gold line accent at top */
.cat-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 30%, var(--color-gold-light) 60%, transparent 100%);
    z-index: 2;
}

.cat-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 64px;
    padding-bottom: 64px;
    position: relative;
    z-index: 1;
    gap: 40px;
}

/* Left: text */
.cat-hero-text {
    flex: 1;
    min-width: 0;
}

.cat-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.cat-hero-label span {
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 2px;
}

.cat-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 20px;
}

.cat-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 480px;
}

/* Breadcrumb */
.cat-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 6px 16px;
}

.cat-hero-breadcrumb a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}

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

.cat-hero-breadcrumb span:last-child {
    color: var(--color-gold);
    font-weight: 600;
}

/* Right: decorative */
.cat-hero-deco {
    flex-shrink: 0;
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-hero-deco-ring {
    position: absolute;
    border-radius: 50%;
}

.ring-1 {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(229,144,1,0.2);
}

.ring-2 {
    width: 140px;
    height: 140px;
    border: 1px dashed rgba(229,144,1,0.12);
    animation: ring-spin 18s linear infinite;
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.cat-hero-deco-number {
    font-family: var(--font-heading);
    font-size: 110px;
    font-weight: 800;
    font-style: italic;
    background: linear-gradient(135deg, rgba(229,144,1,0.25) 0%, rgba(229,144,1,0.06) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    user-select: none;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .cat-hero-deco { display: none; }
    .cat-hero-title { font-size: 36px; letter-spacing: -0.5px; }
    .cat-hero-inner { padding-top: 44px; padding-bottom: 44px; }
}


/* === FIX: Đảm bảo dropdown menu con hoạt động === */
.main-navigation > ul > li {
    position: relative !important;
}

.main-navigation .sub-menu {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(8px) !important;
    z-index: 9999 !important;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s !important;
    background: #1a1a1a !important;
    border-top: 2px solid var(--color-gold) !important;
    min-width: 240px !important;
    border-radius: 8px !important;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

/* =============================================
   LUXURY SCROLL ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-24px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes goldShimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Scroll-reveal classes added by JS */
.animate-fade-up {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-fade-left {
    animation: fadeInLeft 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Stagger delays for grid items */
.why-choose-card:nth-child(1) { animation-delay: 0s; }
.why-choose-card:nth-child(2) { animation-delay: 0.1s; }
.why-choose-card:nth-child(3) { animation-delay: 0.2s; }
.why-choose-card:nth-child(4) { animation-delay: 0.3s; }

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.08s; }
.service-card:nth-child(3) { animation-delay: 0.16s; }
.service-card:nth-child(4) { animation-delay: 0.08s; }
.service-card:nth-child(5) { animation-delay: 0.16s; }
.service-card:nth-child(6) { animation-delay: 0.24s; }

/* Selection accent */
::selection {
    background: rgba(184,150,90,0.25);
    color: var(--color-text);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
    background: rgba(184,150,90,0.4);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Gold shimmer text effect for hero h1 span */
.hero-content h1 span {
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
}

/* Section dividers — thin gold hairline */
.why-choose-section,
.services-section,
.projects-section,
.testimonials-section,
.news-section,
.contact-section {
    position: relative;
}

/* Image hover brightness */
.project-card-image img,
.service-card-image,
.news-card-image img {
    filter: brightness(1);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.project-card:hover .project-card-image img,
.news-card:hover .news-card-image img {
    filter: brightness(1.04);
}

/* Form label gold on focus */
.form-group:focus-within label {
    color: var(--color-gold);
}

/* =============================================
   ABOUT SECTION — 3XDESIGN STYLE
   ============================================= */
.about-section {
    padding: 100px 0;
    background: var(--color-bg);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    max-height: 560px;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 480px;
    background: linear-gradient(145deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    border-radius: 12px;
}

.about-image-placeholder i {
    font-size: 72px;
    color: var(--color-gold);
    opacity: 0.4;
}

.about-image-badge {
    position: absolute;
    bottom: 28px;
    right: -24px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 20px;
    padding: 20px 28px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.about-image-badge .badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge .badge-text {
    display: block;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.9;
    margin-top: 4px;
    white-space: nowrap;
}

.about-image-dot {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.about-content {
    padding-left: 10px;
}

.about-content .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-align: left;
}

.about-content h2 {
    font-size: 46px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-content h2 span {
    color: var(--color-gold);
}

.about-content > p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: 28px;
}

.about-features {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text);
    font-weight: 500;
}

.about-features li i {
    width: 22px;
    height: 22px;
    background: rgba(229,144,1,0.12);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.about-phone-link:hover {
    color: var(--color-gold);
}

.about-phone-link .phone-icon {
    width: 44px;
    height: 44px;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 16px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.about-phone-link:hover .phone-icon {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

/* =============================================
   PROCESS SECTION — STEPS LAYOUT
   ============================================= */
.process-cards-section {
    padding: 100px 0 120px;
    background: #111111;
    position: relative;
    overflow: hidden;
}

.process-cards-section::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(229,144,1,0.06) 0%, transparent 68%);
    pointer-events: none; z-index: 0;
}

.process-cards-section .section-label { color: var(--color-gold) !important; }
.process-cards-section .section-title h2 { color: #fff; }
.process-cards-section .section-title p { color: rgba(255,255,255,0.5); }
.process-cards-section .section-title-line { background: var(--color-gold); }
.process-cards-section .container { position: relative; z-index: 1; }

/* ── Desktop: 2-row grid of 9 steps (5 + 4) ── */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 64px;
    position: relative;
    row-gap: 48px;
}

/* No single container track line — use per-step connectors instead */
.process-steps::before {
    display: none;
}

/* Each step column — 20% = 5 per row */
.process-step {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

/* Connector line: edge-to-edge (stops at circle boundary, not through it) */
.process-step::after {
    content: '';
    position: absolute;
    top: 31px; /* center of 64px node minus 1px */
    left: calc(50% + 36px);   /* right edge of node + small gap */
    right: calc(36px - 50%);  /* left edge of next node - small gap */
    height: 1px;
    background: linear-gradient(to right,
        rgba(184,150,90,0.5),
        rgba(184,150,90,0.15) 60%,
        rgba(255,255,255,0.05));
    z-index: 0;
}

/* Arrowhead at right end of connector */
.process-step::before {
    content: '';
    position: absolute;
    top: 27px;
    right: calc(36px - 50% - 4px);
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid rgba(184,150,90,0.4);
    z-index: 1;
}

/* Hide connector + arrow on last of row 1 and last item */
.process-step:nth-child(5)::after,
.process-step:nth-child(5)::before,
.process-step:last-child::after,
.process-step:last-child::before {
    display: none;
}

/* Number circle */
.process-step-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(184,150,90,0.25);
    box-shadow: 0 0 0 6px rgba(184,150,90,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s, transform 0.3s;
}

.process-step:first-child .process-step-node {
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 8px rgba(229,144,1,0.12), 0 6px 24px rgba(229,144,1,0.35);
}

/* Hover */
.process-step:hover .process-step-node {
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 8px rgba(229,144,1,0.12), 0 6px 24px rgba(229,144,1,0.35);
    transform: scale(1.1);
}

.node-num {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s;
    line-height: 1;
}

.process-step:first-child .node-num,
.process-step:hover .node-num {
    color: #fff;
}

/* Title */
.process-step-info h3 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    line-height: 1.4;
}

.process-step:hover .process-step-info h3 {
    color: var(--color-gold-light);
}

/* Description */
.process-step-info p {
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    line-height: 1.65;
}

/* Deprecated old classes — hide if still in DOM */
.process-cards-grid, .process-step-card,
.process-timeline, .process-bar-wrap, .process-nodes,
.process-step-contents { display: none; }

/* =============================================
   PARTNERS SECTION
   ============================================= */
.partners-section {
    padding: 60px 0;
    background: var(--color-bg-dark);
    overflow: hidden;
}

.partners-section .section-title h2 {
    color: var(--color-white);
}

.partners-section .section-title .section-label {
    color: var(--color-gold);
}

.partners-section .section-title h2::after {
    display: none;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
}

.partner-logo-item {
    width: 160px;
    height: 80px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 12px 16px;
    cursor: default;
}

/* Hover: subtle lift, border lightens */
.partner-logo-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Logo image: grayscale + dim by default */
.partner-logo-item img {
    max-width: 100%;
    max-height: 44px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.65;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

/* On hover: show true colors */
.partner-logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Fallback text when no logo uploaded */
.partner-logo-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    text-align: center;
    transition: color 0.3s;
}

.partner-logo-item:hover .partner-logo-text {
    color: rgba(255,255,255,0.75);
}

/* =============================================
   SECTION-TITLE WITH LABEL — 3XDESIGN STYLE
   ============================================= */
.section-title .section-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 12px;
    text-align: center;
}

.section-title h2 {
    display: block;
}

.section-title .section-label::before {
    display: none;
}

/* Dark bg overrides for section labels */
.services-section .section-title .section-label,
.stats-section .section-title .section-label,
.cta-section .section-label {
    color: var(--color-gold-light);
}

.services-section .section-title .section-label::before,
.services-section .section-title .section-label::after,
.stats-section .section-title .section-label::before,
.stats-section .section-title .section-label::after {
    background: var(--color-gold-light);
}

/* =============================================
   WHY-CHOOSE — IMPROVED ICON CARDS
   ============================================= */
.why-choose-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.why-choose-card .card-bg-number {
    position: absolute;
    top: -10px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 800;
    color: var(--color-border);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s;
    user-select: none;
    opacity: 0.5;
}

.why-choose-card:hover .card-bg-number {
    color: rgba(229,144,1,0.1);
    opacity: 1;
}

/* =============================================
   HERO SECTION — ENHANCED OVERLAY TEXT
   ============================================= */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold-light);
    margin-bottom: 18px;
}

.hero-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--color-gold-light);
    border-radius: 2px;
}

/* =============================================
   RESPONSIVE — NEW SECTIONS
   ============================================= */
@media (max-width: 850px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-image-badge { right: 0; }
    .about-content { padding-left: 0; }
    .about-content h2 { font-size: 36px; }
    /* Timeline tablet — shrink circles + text */
    .process-step-node { width: 48px; height: 48px; margin-bottom: 14px; }
    .node-num { font-size: 14px; }
    /* Connector: edge-to-edge for 48px node (radius=24+gap=28) */
    .process-step::after { top: 23px; left: calc(50% + 28px); right: calc(28px - 50%); }
    .process-step::before { top: 19px; right: calc(28px - 50% - 4px); }
    .process-step-info h3 { font-size: 12px; }
    .process-step-info p { font-size: 11px; }
    .process-step { padding: 0 6px; }
    .partners-logos { gap: 8px; }
    .partner-logo-item { width: 130px; height: 60px; }
}

@media (max-width: 600px) {
    /* Timeline mobile — vertical layout */
    .process-steps {
        flex-direction: column;
        flex-wrap: nowrap;
        row-gap: 0;
        gap: 0;
        padding-left: 36px;
        margin-top: 44px;
        position: relative;
    }
    /* Vertical connecting line along left side */
    .process-steps::before {
        display: block;
        content: '';
        position: absolute;
        top: 24px;
        left: 24px;
        right: auto;
        bottom: 24px;
        width: 2px;
        height: auto;
        background: rgba(255,255,255,0.1);
    }
    /* Hide horizontal step connectors + arrows on mobile */
    .process-step::after,
    .process-step::before { display: none; }
    /* Each step: circle on left, content on right */
    .process-step {
        flex: 0 0 auto;
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 0 0 32px 0;
        gap: 18px;
    }
    .process-step:last-child { padding-bottom: 0; }
    .process-step-node {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        margin-bottom: 0;
        position: relative;
        left: -36px;
        margin-right: -18px;
    }
    .node-num { font-size: 16px; }
    .process-step-info { padding-top: 10px; }
    .process-step-info h3 { font-size: 15px; margin-bottom: 6px; }
    .process-step-info p { font-size: 13px; }
    .process-step-content h3 { font-size: 12px; }
    .process-step-content p { font-size: 11px; line-height: 1.55; }
}

@media (max-width: 549px) {
    .about-section { padding: 70px 0; }
    .about-content h2 { font-size: 28px; }
    .process-cards-section { padding: 70px 0; }
    .partner-logo-item { width: 110px; }
}

/* =============================================
   DARK THEME — CARD & ELEMENT OVERRIDES
   ============================================= */

/* White cards → dark cards */
.why-choose-card {
    background: #181818 !important;
    border: 1px solid #252525 !important;
    color: var(--color-text) !important;
}
.why-choose-card h3 { color: #f0f0f0 !important; }

.project-card {
    background: #181818 !important;
    border: 1px solid #252525 !important;
}
.project-card-body h3 a { color: #e8e8e8 !important; }
.project-category { color: var(--color-gold) !important; }

.news-card {
    background: #181818 !important;
    border: 1px solid #252525 !important;
}
.news-card-body h3 a { color: #e8e8e8 !important; }

.testimonial-card {
    background: #181818 !important;
    border: 1px solid #252525 !important;
}
.testimonial-author-name { color: #e0e0e0 !important; }

/* Contact form */
.contact-form {
    background: #161616 !important;
    border: 1px solid #252525 !important;
}

/* Form inputs */
.contact-form input,
.contact-form textarea,
.contact-form select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
    background: #111111 !important;
    border-color: #2a2a2a !important;
    color: #e0e0e0 !important;
}
input::placeholder, textarea::placeholder { color: #555 !important; }
input:focus, textarea:focus { border-color: var(--color-gold) !important; }

/* Dropdowns (nav) */
.main-navigation .dropdown-menu {
    background: #161616 !important;
    border: 1px solid #252525 !important;
}
.main-navigation .dropdown-menu a { color: #ddd !important; }
.main-navigation .dropdown-menu a:hover { color: var(--color-gold) !important; background: #1f1f1f !important; }

/* Mobile menu */
.mobile-menu {
    background: #111 !important;
    border-top: 1px solid #252525 !important;
}

/* btn-white needs dark text */
.btn-white { color: #111111 !important; }

/* About section section-title on now-dark bg */
.about-section .section-label { color: var(--color-gold); }

/* Project filter buttons */
.filter-btn {
    background: #1a1a1a !important;
    border: 1px solid #2a2a2a !important;
    color: #aaa !important;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
    color: #fff !important;
}

/* Scrollbar subtle */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0d0d0d; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold); }

/* Services responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .service-card { height: 440px; }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { height: 380px; }
    .service-card-body h3 { font-size: 22px; }
    .service-card-body { padding: 0 18px 20px; }
}

/* =============================================
   PHOTO STRIP — scrolling marquee
   ============================================= */
.photo-strip {
    width: 100%;
    overflow: hidden;
    background: var(--color-bg-darker);
    padding: 0;
    position: relative;
    /* Top & bottom subtle gold hairlines */
    border-top: 1px solid rgba(184,150,90,0.15);
    border-bottom: 1px solid rgba(184,150,90,0.15);
}

/* Fade edges */
.photo-strip::before,
.photo-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.photo-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-darker), transparent);
}
.photo-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-darker), transparent);
}

.photo-strip-track {
    display: flex;
    width: max-content;
    animation: photoStripScroll var(--strip-speed, 40s) linear infinite;
    will-change: transform;
}
.photo-strip-track:hover { animation-play-state: paused; }

.photo-strip-item {
    flex-shrink: 0;
    width: 280px;
    height: 190px;
    overflow: hidden;
    border-radius: 6px;
    margin-right: 6px;
}
.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.85) saturate(0.9);
}
.photo-strip-item:hover img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1);
}

@keyframes photoStripScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
    .photo-strip-item { width: 200px; height: 140px; }
}

/* =============================================
   SRF SELECT — sidebar form dropdown
   ============================================= */
.srf-field select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(184,150,90,0.25);
    border-radius: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.2s;
    font-family: var(--font-primary);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(184,150,90,0.7)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}
.srf-field select:focus { border-color: var(--color-gold); }
.srf-field select option { background: #1a1a1a; color: #fff; }

/* Projects dynamic column count */
.projects-grid-2col { grid-template-columns: repeat(2, 1fr) !important; }
.projects-grid-3col { grid-template-columns: repeat(3, 1fr) !important; }
.projects-grid-4col { grid-template-columns: repeat(4, 1fr) !important; }
@media (max-width: 900px) {
    .projects-grid-4col { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
    .projects-grid-2col, .projects-grid-3col, .projects-grid-4col { grid-template-columns: 1fr !important; }
}

/* ── Text trắng — targeted, không phá layout ── */
.section-title p { color: #fff; }
.news-card-meta, .news-card-meta span { color: #fff; }
.news-card-excerpt { color: #fff; }
.news-card-title a { color: #fff; }
.process-step-info p { color: #fff; }
.node-num { color: rgba(255,255,255,0.5); }
.process-step:first-child .node-num,
.process-step:hover .node-num { color: #fff; }
.footer-links li a { color: #fff; }
.footer-contact-list li a,
.footer-contact-list li span { color: #fff; }
#site-footer .footer-widget h4,
#site-footer .footer-widget p,
#site-footer .footer-bottom,
#site-footer .footer-bottom p,
#site-footer .footer-bottom span { color: #fff; }
.about-content p { color: #fff; }
.about-features li { color: #fff; }
.why-choose-text p { color: #fff; }
.service-card-body p { color: #fff; }
.testimonial-text { color: #fff; }
.testimonial-author { color: #fff; }
.stat-label { color: #fff; }
.hero-content p { color: #fff; }
.filter-btn { color: #fff; }
.sidebar-cta-widget p { color: #fff; }
.entry-content p,
.entry-content li { color: #fff; }
::placeholder { color: rgba(255,255,255,0.4); }

/* =============================================
   PHONE ICON — xoay đúng chiều
   ============================================= */
.fa-phone, .fa-phone-alt {
    transform: scaleX(-1);
}

/* =============================================
   DESKTOP MENU — ẩn icon menu cha, hiện icon menu con
   ============================================= */
.main-navigation > ul > li > a .nav-icon {
    display: none !important;
}
.main-navigation .sub-menu > li > a .nav-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 18px;
    font-size: 12px;
    color: var(--color-gold);
    opacity: 0.85;
    margin-right: 8px;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.main-navigation .sub-menu > li > a:hover .nav-icon { opacity: 1; }

/* =============================================
   HERO — tăng độ rõ nét ảnh nền
   ============================================= */
.hero-slides-track::after {
    background: linear-gradient(
        160deg,
        rgba(5,5,8,0.45) 0%,
        rgba(0,0,0,0.12) 55%,
        rgba(0,0,0,0.28) 100%
    ) !important;
}
.hero-slide::before {
    background: linear-gradient(135deg, rgba(15,15,18,0.58) 0%, rgba(0,0,0,0.22) 100%) !important;
}

/* =============================================
   HIỆU ỨNG HIỆN ĐẠI — scroll reveal & glow
   ============================================= */

/* Glow vàng nhẹ ở section title */
.section-title .section-label {
    position: relative;
}

/* Glassmorphism card hover */
.service-card:hover,
.news-card:hover {
    box-shadow: 0 8px 32px rgba(184,150,90,0.18), 0 2px 8px rgba(0,0,0,0.4);
}

/* Gold shimmer trên button primary */
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::after { left: 140%; }

/* Animated underline cho nav links */
.main-navigation > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.main-navigation > ul > li > a:hover::after,
.main-navigation > ul > li.current-menu-item > a::after { width: 100%; }
.main-navigation > ul > li > a { position: relative; }

/* floating-btn.phone uses floatSonar from ::before/::after above */

/* Entrance fade-up cho các section khi scroll */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.section-padding { animation: fadeUp 0.7s ease both; }

/* Gradient border trên service cards */
.service-card {
    border: 1px solid rgba(184,150,90,0.12);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    border-color: rgba(184,150,90,0.45);
    transform: translateY(-4px);
}

/* Stats số đếm — highlight */
.stat-number {
    text-shadow: 0 0 24px rgba(184,150,90,0.4);
}

/* Subtle grid overlay trên hero */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(240,180,41,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240,180,41,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* =============================================
   MODERN BACKGROUND EFFECTS
   ============================================= */

/* Hero canvas particles */
#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Dot matrix — why-choose & services */
.why-choose-section,
.services-section {
    position: relative;
    overflow: hidden;
}
.why-choose-section::before,
.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(240,180,41,0.11) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Gold radial glow — about section */
.about-section {
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(240,180,41,0.08) 0%, transparent 65%);
    top: -220px;
    right: -220px;
    border-radius: 50%;
    pointer-events: none;
}
.about-section::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(240,180,41,0.05) 0%, transparent 65%);
    bottom: -130px;
    left: -130px;
    border-radius: 50%;
    pointer-events: none;
}

/* Center radial glow — testimonials */
.testimonials-section {
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    width: 860px;
    height: 860px;
    background: radial-gradient(circle, rgba(240,180,41,0.06) 0%, transparent 58%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

/* Animated scan line — process section */
.process-cards-section {
    position: relative;
    overflow: hidden;
}
@keyframes akina-scan {
    from { top: -1px; }
    to   { top: 100%; }
}
.process-cards-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(240,180,41,0.5) 25%,
        rgba(240,180,41,1)   50%,
        rgba(240,180,41,0.5) 75%,
        transparent 100%
    );
    animation: akina-scan 5s linear infinite;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Corner accent brackets — news section */
.news-section {
    position: relative;
}
.news-section::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    width: 52px;
    height: 52px;
    border-top: 2px solid rgba(240,180,41,0.22);
    border-left: 2px solid rgba(240,180,41,0.22);
    pointer-events: none;
}
.news-section::after {
    content: '';
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-bottom: 2px solid rgba(240,180,41,0.22);
    border-right: 2px solid rgba(240,180,41,0.22);
    pointer-events: none;
}

/* Gold glow blob — contact section */
.contact-section {
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(240,180,41,0.07) 0%, transparent 65%);
    bottom: -180px;
    right: -150px;
    border-radius: 50%;
    pointer-events: none;
}

/* Shimmer sweep — section label */
.section-title .section-label {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
@keyframes akina-label-shine {
    0%   { left: -100%; }
    35%  { left: 130%;  }
    100% { left: 130%;  }
}

/* Shine sweep — primary button */
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: akina-btn-shine 3.5s ease infinite;
    pointer-events: none;
}
@keyframes akina-btn-shine {
    0%   { left: -100%; }
    40%  { left: 130%;  }
    100% { left: 130%;  }
}

/* Stats glow — updated to new gold */
.stat-number {
    text-shadow: 0 0 28px rgba(240,180,41,0.55);
}

/* =============================================
   VISUAL EFFECTS v2
   ============================================= */

/* ── Cursor glow ── */
#akina-cursor-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,180,41,0.055) 0%, transparent 65%);
    pointer-events: none;
    z-index: 9990;
    transform: translate(-50%, -50%);
    transition: left 0.09s linear, top 0.09s linear;
    mix-blend-mode: screen;
}

/* ── Scroll progress bar ── */
#akina-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
    background-size: 200% auto;
    z-index: 100000;
    box-shadow: 0 0 10px rgba(240,180,41,0.8), 0 0 4px rgba(240,180,41,0.6);
    animation: progressGlow 2s linear infinite;
    transition: width 0.12s linear;
    pointer-events: none;
}
@keyframes progressGlow {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── Animated hero title span ── */
#hero-title span,
.hero-title span {
    background: linear-gradient(90deg,
        var(--color-gold) 0%,
        #fff8d0 35%,
        var(--color-gold-light) 55%,
        var(--color-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleFlow 4s linear infinite;
}
@keyframes heroTitleFlow {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── Hero aurora background ── */
.hero-aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 75%, rgba(240,180,41,0.09) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(240,180,41,0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(240,180,41,0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: auroraPulse 10s ease-in-out infinite alternate;
}
@keyframes auroraPulse {
    0%   { opacity: 0.6; transform: scale(1);    }
    100% { opacity: 1;   transform: scale(1.06); }
}

/* ── Hero floating geometric shapes ── */
.hero-geo {
    position: absolute;
    border: 1px solid rgba(240,180,41,0.12);
    pointer-events: none;
    animation: geoFloat linear infinite;
}
@keyframes geoFloat {
    0%, 100% { transform: translateY(0px)  rotate(0deg);   opacity: 0.35; }
    50%       { transform: translateY(-22px) rotate(180deg); opacity: 0.75; }
}

/* ── Ripple on button click ── */
.akina-ripple {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.25);
    width: 0; height: 0;
    animation: rippleExpand 0.65s ease-out forwards;
    pointer-events: none;
}
@keyframes rippleExpand {
    to { width: 300px; height: 300px; opacity: 0; }
}

/* ── Section h2 underline — disabled ── */
.section-title h2::after {
    display: none;
}
.section-title h2.h2-line-visible::after {
    display: none;
}

/* ── Card tilt: smooth reset ── */
.service-card,
.project-card,
.news-card,
.why-choose-card {
    will-change: transform;
    transform-style: preserve-3d;
}

/* ── Card hover glow upgrade ── */
.service-card:hover {
    box-shadow:
        0 0 0 1px rgba(240,180,41,0.3),
        0 24px 52px rgba(0,0,0,0.5),
        0 0 32px rgba(240,180,41,0.12) !important;
}
.project-card:hover,
.news-card:hover {
    box-shadow:
        0 0 0 1px rgba(240,180,41,0.2),
        0 20px 48px rgba(0,0,0,0.5) !important;
}

/* ── Magnetic button smooth reset ── */
.btn-primary {
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.25s ease,
                box-shadow 0.25s ease !important;
}

/* =============================================
   AKINA GALLERY BLOCK  [akina_gallery]
   ============================================= */
.akina-gallery-block {
    margin: 36px 0;
}

.agb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.agb-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agb-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 !important;
}

.agb-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 600;
}

.agb-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--color-gold);
    color: #111 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}
.agb-view-all:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

/* Grid */
.agb-grid {
    display: grid;
    gap: 6px;
}
.agb-cols-2 { grid-template-columns: repeat(2, 1fr); }
.agb-cols-3 { grid-template-columns: repeat(3, 1fr); }
.agb-cols-4 { grid-template-columns: repeat(4, 1fr); }

.agb-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    background: #1a1a1a;
}
.agb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    transition: transform 0.4s ease;
}
.agb-item:hover img {
    transform: scale(1.06);
}
.agb-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    border-radius: 6px;
}
.agb-item:hover::after {
    background: rgba(0,0,0,0.15);
}

/* +N overlay */
.agb-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    z-index: 2;
    backdrop-filter: blur(2px);
}
.agb-more-overlay span {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Lightbox */
.agb-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: agbFadeIn 0.22s ease forwards;
}
@keyframes agbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.agb-lightbox-inner {
    position: relative;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.agb-lightbox-inner img {
    max-width: 90vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.8);
    display: block;
    margin: 0;
}
.agb-lb-close {
    position: fixed;
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}
.agb-lb-close:hover {
    background: rgba(255,255,255,0.22);
}
.agb-lb-caption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .agb-cols-3,
    .agb-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .agb-more-overlay span { font-size: 28px; }
    .agb-title { font-size: 17px !important; }
}

@media (max-width: 1023px) {
    #akina-cursor-glow { display: none; }
    .hero-geo { display: none; }
}
