/**
 * CSS Variables & Design Tokens (Unified)
 * HungLoc Property Template
 * Version: 3.0 - Unified System
 *
 * Structure:
 * 1. Colors - Main palette
 * 2. Legacy Mappings - For backwards compatibility
 * 3. Spacing
 * 4. Typography
 * 5. Border Radius
 * 6. Shadows
 * 7. Transitions
 * 8. Layout
 * 9. Breakpoints
 */

:root {
    /* ========================================
       1. COLORS - Primary Palette (hl- prefix)
       ======================================== */
    --hl-primary: #179CAB;
    --hl-primary-dark: #0D8888;
    --hl-primary-light: #A8E6EF;
    --hl-primary-deep: #087B84;

    --hl-secondary: #6B8D96;
    --hl-secondary-dark: #4C6970;
    --hl-secondary-soft: #E1ECEE;

    --hl-accent: #1595A3;
    --hl-accent-dark: #0B7B86;
    --hl-accent-light: #8CD1DA;
    --hl-accent-soft: #D6EEF1;

    --hl-background: #FAF7F3;
    --hl-background-soft: #FAF7F3;
    --hl-background-teal-soft: #E6F6F7;
    --hl-surface: #FFFFFF;

    --hl-text: #1F2D2F;
    --hl-text-muted: #66777A;

    --hl-border: #D8EAEC;

    --hl-dark-bg: #179CAB;
    --hl-dark-surface: #1AAABB;

    --hl-success: #27ae60;
    --hl-danger: #e74c3c;
    --hl-warning: #f59e0b;
    
    --hl-gold: #E5A54B;
    --hl-gold-light: #F5C87A;
    --hl-gold-dark: #B87A28;

    /* ========================================
       2. LEGACY MAPPINGS (backwards compatibility)
       ======================================== */
    /* Colors */
    --primary: var(--hl-primary);
    --primary-dark: var(--hl-primary-dark);
    --primary-light: var(--hl-primary-light);
    --primary-deep: var(--hl-primary-deep);

    --secondary: var(--hl-secondary);
    --secondary-dark: var(--hl-secondary-dark);
    --secondary-soft: var(--hl-secondary-soft);

    --accent: var(--hl-accent);
    --accent-dark: var(--hl-accent-dark);
    --accent-light: var(--hl-accent-light);
    --accent-soft: var(--hl-accent-soft);

    --background: var(--hl-background);
    --background-soft: var(--hl-background-soft);
    --background-teal-soft: var(--hl-background-teal-soft);
    --surface: var(--hl-surface);

    --text-main: var(--hl-text);
    --text-muted: var(--hl-text-muted);
    --text-secondary: var(--hl-text-muted);

    --border: var(--hl-border);
    --dark-bg: var(--hl-dark-bg);
    --dark-surface: var(--hl-dark-surface);

    /* Utility colors */
    --success: var(--hl-success);
    --danger: var(--hl-danger);
    --warning: var(--hl-warning);

    /* Legacy color names */
    --white: #FFFFFF;
    --primary-color: var(--primary);
    --primary-dark-color: var(--primary-dark);
    --gold: var(--accent);
    --gold-light: var(--secondary);
    --gold-rgb: 196, 133, 117;
    --light-bg: var(--background-soft);
    --text-primary: var(--text-main);
    --text-light: #999999;
    --red-hot: var(--danger);
    --green-success: var(--success);

    /* ========================================
       3. SPACING (8px base system)
       ======================================== */
    --hl-space-xs: 5px;
    --hl-space-sm: 10px;
    --hl-space-md: 15px;
    --hl-space-lg: 20px;
    --hl-space-xl: 30px;
    --hl-space-2xl: 40px;
    --hl-space-3xl: 50px;
    --hl-space-4xl: 60px;
    --hl-space-section: 100px;

    /* Legacy spacing names */
    --space-xs: var(--hl-space-xs);
    --space-sm: var(--hl-space-sm);
    --space-md: var(--hl-space-md);
    --space-lg: var(--hl-space-lg);
    --space-xl: var(--hl-space-xl);
    --space-2xl: var(--hl-space-2xl);
    --space-3xl: var(--hl-space-3xl);
    --space-4xl: var(--hl-space-4xl);
    --space-section: var(--hl-space-section);

    /* ========================================
       4. TYPOGRAPHY
       ======================================== */
    --hl-font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --hl-font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --font-primary: var(--hl-font-body);
    --font-display: var(--hl-font-heading);

    --hl-text-xs: 12px;
    --hl-text-sm: 14px;
    --hl-text-base: 16px;
    --hl-text-lg: 18px;
    --hl-text-xl: 20px;
    --hl-text-2xl: 24px;
    --hl-text-3xl: 28px;
    --hl-text-4xl: 32px;

    /* Legacy text sizes */
    --text-xs: var(--hl-text-xs);
    --text-sm: var(--hl-text-sm);
    --text-base: var(--hl-text-base);
    --text-lg: var(--hl-text-lg);
    --text-xl: var(--hl-text-xl);
    --text-2xl: var(--hl-text-2xl);
    --text-3xl: var(--hl-text-3xl);
    --text-4xl: var(--hl-text-4xl);

    /* ========================================
       5. BORDER RADIUS
       ======================================== */
    --hl-radius-sm: 6px;
    --hl-radius-md: 8px;
    --hl-radius-lg: 12px;
    --hl-radius-pill: 20px;
    --hl-radius-circle: 50%;

    --radius-sm: var(--hl-radius-sm);
    --radius-md: var(--hl-radius-md);
    --radius-lg: var(--hl-radius-lg);
    --radius-pill: var(--hl-radius-pill);
    --radius-circle: var(--hl-radius-circle);

    /* ========================================
       6. SHADOWS
       ======================================== */
    --hl-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --hl-shadow-md: 0 10px 30px rgba(0,0,0,0.05);
    --hl-shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
    --hl-shadow-primary: 0 10px 30px rgba(23, 156, 171, 0.3);

    --shadow-sm: var(--hl-shadow-sm);
    --shadow-md: var(--hl-shadow-md);
    --shadow-lg: var(--hl-shadow-lg);
    --shadow-primary: var(--hl-shadow-primary);

    /* ========================================
       7. TRANSITIONS
       ======================================== */
    --hl-transition: cubic-bezier(0.4, 0, 0.2, 1);
    --hl-transition-fast: 0.3s ease;
    --hl-transition-medium: 0.4s ease;
    --hl-transition-slow: 0.6s ease;
    --hl-transition-animation: 0.8s cubic-bezier(0.5, 0, 0, 1);

    --transition: var(--hl-transition);
    --transition-fast: var(--hl-transition-fast);
    --transition-medium: var(--hl-transition-medium);
    --transition-slow: var(--hl-transition-slow);

    --focus-ring: 0 0 0 3px rgba(15, 155, 171, 0.25);
    --focus-ring-strong: 0 0 0 4px rgba(15, 155, 171, 0.35);

    /* ========================================
       8. LAYOUT
       ======================================== */
    --hl-container: 1200px;
    --hl-padding: 20px;
    --hl-nav-height: 80px;
    --hl-nav-scrolled-height: 60px;

    --container-max: var(--hl-container);
    --container-padding: var(--hl-padding);
    --navbar-height: var(--hl-nav-height);
    --navbar-scrolled-height: var(--hl-nav-scrolled-height);

    /* ========================================
       9. BREAKPOINTS (for reference in JS)
       ======================================== */
    --bp-xs: 375px;
    --bp-sm: 576px;
    --bp-md: 768px;
    --bp-lg: 992px;
    --bp-xl: 1200px;
}/**
 * CSS Reset & Box Sizing
 * HungLoc Property Template
 */

/* === BOX SIZING === */
html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 576px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    * {
        max-width: 100%;
    }
}

/* === TYPOGRAPHY RESET === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--text-main);
    line-height: 1.2;
}

p {
    margin-bottom: 1em;
}

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

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

/* === LIST RESET === */
ul, ol {
    list-style: none;
}

/* === FORM RESET === */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
}

/* === UTILITY CLASSES === */
.primary-text {
    color: var(--primary);
}

.accent-text {
    color: var(--accent);
}

.gold-text {
    color: #C87057;
}

.bg-gray {
    background-color: var(--background-soft);
}

.bg-primary {
    background-color: var(--text-main);
}

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

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

.w-100 {
    width: 100%;
}
/**
 * Typography Styles
 * HungLoc Property Template
 */

/* === HEADINGS === */
h1 {
    font-size: 56px;
    font-weight: 700;
    font-family: var(--font-primary);
}

h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: var(--space-2xl);
}

h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: var(--space-md);
}

h4 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-primary);
}

h5, h6 {
    font-family: var(--font-primary);
}

/* === SECTION TYPOGRAPHY === */
.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background-color: rgba(200, 112, 87, 0.15);
    color: #C87057;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: 40px;
    margin-bottom: var(--space-2xl);
    color: var(--primary-color);
}

/* === BODY TEXT === */
.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-lg {
    font-size: 18px;
}

.text-sm {
    font-size: 14px;
}

.text-xs {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === LOCATION TEXT === */
.location {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: var(--space-lg);
}

.location i {
    color: var(--gold);
    margin-right: 5px;
}

/* === RESPONSIVE TYPOGRAPHY === */
@media (max-width: 992px) {
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
}
/**
 * Layout & Grid System
 * HungLoc Property Template
 */

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

/* === SECTIONS === */
.section {
    padding: var(--space-section) 0;
}

section[id] {
    scroll-margin-top: calc(var(--navbar-scrolled-height) + 20px);
}

/* === FLEX LAYOUTS === */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.container-flex {
    display: flex;
    gap: var(--space-4xl);
}

/* === GRID SYSTEM === */
.grid {
    display: grid;
    gap: var(--space-xl);
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* === AUTO-FILL GRID === */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.hl-project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
}

.hl-project-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.hl-project-filter:hover {
    background: var(--primary-light);
    color: var(--primary-deep);
    border-color: rgba(0, 102, 255, 0.25);
}

.hl-project-filter.is-active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    justify-content: center;
}

.team-grid .hl-team-card {
    width: 380px;
    max-width: 100%;
    flex-shrink: 0;
}

.team-grid-wrapper {
    display: block;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

/* === 2-COLUMN LAYOUT === */
.intro-container,
.contact-container {
    display: flex;
    align-items: center;
    gap: var(--space-4xl);
}

.intro-text,
.intro-image,
.why-content,
.process-content,
.contact-info,
.contact-form {
    flex: 1;
}

/* === FOOTER GRID === */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-4xl);
}

/* === VALUES GRID (Generic 2x2) === */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* === RESPONSIVE GRIDS === */
@media (max-width: 992px) {
    .container-flex,
    .intro-container,
    .contact-container {
        flex-direction: column;
        gap: var(--space-2xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    :root {
        --container-padding: 12px;
    }
    
    .team-grid,
    .news-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-circle);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

@media (max-width: 576px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}
/**
 * Header & Navigation
 * HungLoc Property Template
 */

/* === ADMIN BAR COMPATIBILITY === */
.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .navbar {
        top: 46px;
    }
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg) 0;
    background-color: transparent;
    transition: all var(--transition-medium);
    z-index: 1000;
}

.navbar.scrolled {
    padding: var(--space-md) 0;
    background-color: var(--dark-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* === NAV CONTAINER === */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* === LOGO === */
.logo {
    display: flex;
    align-items: center;
}

.logo img,
.custom-logo {
    height: 50px !important;
    width: auto !important;
    max-width: 180px;
    object-fit: contain;
    transition: height var(--transition-medium);
}

.navbar.scrolled .logo img,
.navbar.scrolled .custom-logo {
    height: 40px !important;
    max-width: 150px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-text-only {
    font-size: 24px;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--white);
}

.logo-text-only .primary-text {
    color: var(--white);
}

/* === NAV LINKS === */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

.nav-links > li:not(.has-submenu) > a:hover::after,
.nav-links > li.active > a::after {
    width: 100%;
}

.nav-links > li.active > a {
    color: var(--white);
    font-weight: 700;
    text-shadow: none;
}

/* === CONTACT BUTTON === */
.nav-contact-btn {
    background-color: #C87057;
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    border: 2px solid #C87057;
}

.nav-contact-btn:hover {
    background-color: transparent;
    border-color: var(--white);
}

/* === SUBMENU / DROPDOWN === */
.has-submenu {
    position: relative;
}

.has-submenu > a::after {
    display: none;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-submenu:hover > a i {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 240px;
    background: var(--primary);
    border-top: 3px solid var(--accent);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 1000;
}

.submenu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 30px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--accent);
}

.submenu::after {
    content: '';
    position: absolute;
    left: 0;
    top: -25px;
    width: 100%;
    height: 25px;
}

.submenu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.submenu a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0;
    transition: all var(--transition-fast);
}

.submenu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding-left: 25px;
}

.submenu a::after {
    display: none;
}

/* === HAMBURGER MENU === */
.hamburger {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: var(--radius-sm);
    -webkit-tap-highlight-color: transparent;
    appearance: none;
}

/* === MOBILE MENU === */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding-top: max(100px, env(safe-area-inset-top) + 60px);
        transition: right var(--transition-medium);
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links > li {
        position: relative;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    
    .nav-links > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
        font-size: 15px;
    }
    
    .nav-links > li > a::after {
        display: none;
    }
    
    .nav-links > li > a i {
        font-size: 12px;
    }
    
    .nav-links > li.active > a i {
        transform: rotate(180deg);
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(3, 56, 64, 0.95);
        border-top: none;
        border-left: 3px solid #C87057;
        box-shadow: none;
        display: none;
        border-radius: 0;
    }
    
    .nav-links > li.active > .submenu {
        display: block;
    }
    
    .submenu::before {
        display: none;
    }
    
    .submenu::after {
        display: none;
    }
    
    .submenu a {
        padding: 12px 40px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .submenu a:hover {
        padding-left: 45px;
        background: rgba(200, 112, 87, 0.2);
    }
    
    .nav-contact-btn {
        margin: 20px 30px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .nav-links {
        width: 85%;
    }
    
    .submenu {
        max-width: 100vw;
    }
}
/**
 * Hero Section
 * HungLoc Property Template
 */

/* === HERO === */
.hero,
#home.hero,
body.home .hero,
.site-main > .hero {
    height: 100vh !important;
    min-height: 600px !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    background-color: #0d1b2a !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* === HERO OVERLAY === */
.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.8) 0%, rgba(13, 27, 42, 0.4) 100%);
}

/* === HERO CONTENT === */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
}

.hero-title .highlight {
    color: var(--white);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto var(--space-2xl);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

/* === HERO HOTLINE === */
.hero-hotline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: var(--space-xl);
    font-size: 22px;
    color: var(--white);
}

.hero-hotline i {
    font-size: 24px;
    color: var(--secondary, #C87057);
}

.hero-hotline .hotline-label {
    font-weight: 400;
    opacity: 0.8;
}

.hero-hotline .hotline-number {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1px;
}

.hero-buttons .btn-primary {
    background-color: #C87057;
    color: var(--white);
    border: 2px solid #C87057;
}

.hero-buttons .btn-primary:hover {
    background-color: transparent;
    border-color: var(--white);
}

.hero-buttons .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: #C87057;
}

/* === RESPONSIVE HERO === */
@media (max-width: 992px) {
    .hero {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* === HERO SLIDER (SWIPER) === */
.hero.swiper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero > .swiper {
    height: 100%;
}

.hero .swiper-wrapper {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    background-color: var(--primary);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.hero-slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 1;
}

/* === HERO PAGINATION === */
.hero-pagination {
    position: absolute;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.hero-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

/* === HERO NAVIGATION BUTTONS === */
.hero-button-prev,
.hero-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
}

.hero-button-prev {
    left: 30px;
}

.hero-button-next {
    right: 30px;
}

.hero-button-prev::after,
.hero-button-next::after {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.hero-button-prev:hover,
.hero-button-next:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.hero-button-prev:hover::after,
.hero-button-next:hover::after {
    color: var(--white);
}

.hero-button-prev.swiper-button-disabled,
.hero-button-next.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* === RESPONSIVE HERO SLIDER === */
@media (max-width: 992px) {
    .hero-slide {
        background-attachment: scroll;
    }

    .hero-button-prev,
    .hero-button-next {
        width: 42px;
        height: 42px;
    }

    .hero-button-prev::after,
    .hero-button-next::after {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-button-prev,
    .hero-button-next {
        display: none;
    }
}

/* === BANNER === */
.banner {
    background-color: var(--primary);
    padding: var(--space-lg) 0;
    text-align: center;
    border-top: 3px solid var(--primary-dark);
}

.banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.banner-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.banner-hotline {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .banner-text {
        font-size: 16px;
    }

    .banner-hotline {
        font-size: 14px;
    }
}
/**
 * Page Sections
 * HungLoc Property Template
 */

/* ========================================
   SEARCH BAR SECTION
   ======================================== */
.luxury-search-wrapper {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

.luxury-search-box {
    background: var(--primary);
    border: 1px solid var(--primary-dark);
    padding: 25px;
    display: flex;
    gap: var(--space-lg);
    align-items: flex-end;
    box-shadow: 0 20px 40px rgba(23, 156, 171, 0.2);
    border-radius: var(--radius-md);
}

.ls-field {
    flex: 1;
}

.ls-field .custom-select__trigger {
    font-size: 15px;
}

.ls-field select {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--white);
    font-size: 15px;
    padding: 10px 28px 10px 0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color var(--transition-fast);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 14px 14px;
}

.ls-field select:focus {
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.ls-field select option {
    background: var(--primary);
    color: var(--white);
    padding: 10px;
}

.ls-btn {
    padding: 12px 30px;
    height: 44px;
    margin-bottom: 2px;
    background-color: var(--accent);
    border: none;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.intro-image {
    position: relative;
}

.intro-image > img {
    width: 100%;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-primary);
    border-bottom: 4px solid var(--accent);
}

.experience-badge .number {
    display: block;
    font-size: 40px;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .experience-badge {
        left: 20px;
        bottom: -20px;
    }
}

/* ========================================
   CORE VALUES SECTION
   ======================================== */
.values-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

@media (max-width: 992px) {
    .values-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid-full {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: var(--space-xl);
    }
}

/* ========================================
   ACIEVEMENTS SECTION
   ======================================== */
.achievements {
    background-color: var(--primary);
}

.counter-number {
    font-size: 48px;
    font-family: var(--font-primary);
    color: var(--white);
}

.counter-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-top: var(--space-sm);
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.project-card .badge {
    z-index: 2;
}

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

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.project-info {
    padding: var(--space-xl);
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: var(--space-sm);
    color: #C87057;
}

/* ========================================
   WHY US & PROCESS SECTION
   ======================================== */
.feature-list {
    margin-top: var(--space-xl);
}

/* Feature box styles are in components.css */

.process-timeline {
    margin-top: var(--space-xl);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(23, 156, 171, 0.2);
}

/* Process step styles are in components.css */

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
/* Testimonial styles are in components.css */

/* ========================================
   TEAM SECTION
   ======================================== */
/* Team card styles are in components.css */

/* ========================================
   NEWS SECTION
   ======================================== */
/* News card styles are in components.css */

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-shell {
    display: flex;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.contact-info {
    background: var(--dark-bg);
    color: var(--white);
    padding: var(--space-4xl);
}

.contact-info .section-title {
    color: var(--white);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-shell .info-item i {
    color: var(--white);
    font-size: 20px;
}

.contact-form {
    padding: var(--space-4xl);
    border-left: 1px solid rgba(255,255,255,0.15);
    flex: 1 1 540px;
    max-width: 540px;
    background: var(--white);
}

/* ========================================
   PARTNERS SECTION - SIMPLE (Index Page)
   ======================================== */
.partners {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    background: var(--primary);
}

.partners.partners--simple .partner-heading {
    font-family: var(--font-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-2xl);
    color: var(--white);
    font-weight: 600;
}

.partners.partners--simple .partner-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.partners.partners--simple .p-logo {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--white);
    opacity: 0.7;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    font-weight: 700;
}

.partners.partners--simple .p-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partners.partners--simple .p-logo-img {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.9;
    transition: all var(--transition-normal);
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.partners.partners--simple .p-logo-img:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.35);
}

/* ========================================
   PARTNERS SECTION - DETAILED (Giới thiệu Page)
   ======================================== */
.partners.partners--detailed {
    padding: 80px 0;
    background: var(--primary);
}

.partners.partners--detailed .partners-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.partners.partners--detailed .partner-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partners.partners--detailed .partner-item:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.partners.partners--detailed .partner-item img {
    height: 60px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: all var(--transition);
}

.partners.partners--detailed .partner-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive for detailed partners */
@media (max-width: 992px) {
    .partners.partners--detailed .partners-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .partners.partners--detailed .partners-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners.partners--detailed .partner-item {
        min-height: 120px;
        padding: var(--space-xl);
    }
}

@media (max-width: 576px) {
    .partners.partners--detailed .partners-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .partners.partners--detailed .partner-item {
        min-height: 100px;
        padding: var(--space-lg);
    }
    
    .partners.partners--detailed .partner-item img {
        height: 45px;
        max-width: 85px;
    }
}

/* ========================================
   PROJECT PRICE & FILTER
   ======================================== */
.project-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 12px 0;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.price-label {
    font-size: 13px;
    color: var(--text-muted);
}

.price-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.project-filter-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

@media (max-width: 768px) {
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ========================================
   PROJECT LISTINGS
   ======================================== */
/* Other project-related styles continue here */

.project-hero-info .project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.project-hero-info .project-location i {
    color: var(--white);
    font-size: 16px;
}

.price-from {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

/* Responsive Project Hero */
@media (max-width: 768px) {
    .project-detail-hero {
        height: auto !important;
        min-height: 400px;
    }

    .project-hero-content {
        max-width: 100%;
        padding: var(--space-lg) 0;
    }
    
    .project-hero-info {
        margin-top: var(--space-lg);
        gap: var(--space-md);
        width: 100%;
    }

    .project-hero-info .project-title {
        font-size: 28px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }

    .project-hero-info .project-location {
        font-size: 15px;
        word-wrap: break-word;
    }

    .hero-price-wrapper {
        padding: 12px 18px;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .price-amount {
        font-size: 26px;
    }

    .price-from {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .project-detail-hero {
        min-height: 320px;
    }

    .project-hero-content {
        padding: var(--space-md) 0;
    }

    .project-hero-info .project-title {
        font-size: 22px;
    }

    .project-hero-info .project-location {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .hero-price-wrapper {
        padding: 10px 14px;
    }

    .price-amount {
        font-size: 22px;
    }
}

/* Quick Info Bar */
.project-quick-info {
    background: var(--white);
    padding: var(--space-xl) 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.quick-info-item > i {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.quick-info-item .info-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.quick-info-item .info-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quick-info-item .info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Utilities Grid */
.utilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.utility-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.utility-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary);
    font-size: 28px;
}

/* Unit Types */
.unit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.unit-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.unit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.unit-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.unit-card:hover .unit-image img {
    transform: scale(1.1);
}

.unit-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.unit-info {
    padding: var(--space-lg);
}

.unit-info h3 {
    font-size: 16px;
    margin-bottom: var(--space-sm);
}

.unit-specs {
    display: flex;
    gap: var(--space-lg);
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.unit-specs i {
    margin-right: 6px;
}

.unit-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.unit-price .price-label {
    font-size: 13px;
    color: var(--text-muted);
}

.unit-price .price-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

/* Location */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.location-advantages {
    list-style: none;
    padding: 0;
    margin-top: var(--space-xl);
}

.location-advantages li {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    align-items: flex-start;
}

.location-advantages li > i {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.location-advantages strong {
    display: block;
    font-size: 15px;
    color: var(--text-main);
}

.location-advantages span {
    font-size: 13px;
    color: var(--text-muted);
}

.map-placeholder {
    background: #f0f0f0;
    border-radius: var(--radius-md);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

/* Progress Timeline */
.progress-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: var(--space-3xl);
}

.progress-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #ddd;
}

.progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
}

.progress-dot {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    z-index: 1;
    margin-bottom: var(--space-md);
}

.progress-item.completed .progress-dot {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.progress-item.in-progress .progress-dot {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    animation: pulse 2s infinite;
}

.progress-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.progress-item p {
    font-size: 12px;
    color: var(--text-muted);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(23, 156, 171, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(23, 156, 171, 0); }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-3xl);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    height: 408px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Custom Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 30px;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

@media (max-width: 768px) {
    .gallery-item.large {
        grid-column: span 1;
        height: 200px;
    }
}

/* Payment Info */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.payment-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.payment-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary);
    font-size: 24px;
}

.payment-card h3 {
    font-size: 16px;
    margin-bottom: var(--space-sm);
}

.payment-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Project Tag */
.project-tag {
    position: absolute;
    top: 20px;
    right: 20px;
}

.project-hot-badge {
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.tag-primary {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
}

/* Responsive Project Tag */
@media (max-width: 768px) {
    .project-tag {
        top: 12px;
        right: 12px;
    }

    .project-hot-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .project-tag {
        top: 8px;
        right: 8px;
    }

    .project-hot-badge {
        padding: 5px 10px;
        font-size: 10px;
    }
}

/* Responsive Project Detail */
@media (max-width: 992px) {
    .quick-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .utilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .unit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .project-detail-hero {
        height: auto;
        min-height: 60dvh;
        padding: max(100px, env(safe-area-inset-top) + 60px) 0 60px;
        background-attachment: scroll;
    }
    
    .project-hero-info .project-title {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .utilities-grid,
    .unit-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-timeline {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .progress-timeline::before {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
}
/**
 * Footer Styles
 * HungLoc Property Template
 */

.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-brand p {
    margin-top: var(--space-lg);
    max-width: 400px;
    font-size: 14px;
}

.footer-address,
.footer-phone {
    margin-top: var(--space-sm);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-address i,
.footer-phone i {
    color: var(--white);
    opacity: 0.8;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-phone {
    margin-top: var(--space-xs);
}

.footer-links h3,
.footer-social h3 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    min-height: 44px;
    padding: 10px 0;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: var(--space-md);
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-circle);
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: var(--space-lg) 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}/**
 * Animations & Effects
 * HungLoc Property Template
 */

/* === REVEAL ANIMATIONS === */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity var(--transition-animation), transform var(--transition-animation);
    will-change: transform, opacity;
}

/* Elementor Builder Preview - disable reveal animations so widgets are visible */
body.elementor-editor-active .reveal-up,
body.elementor-editor-active .reveal-left,
body.elementor-editor-active .reveal-right,
body.elementor-editor-preview .reveal-up,
body.elementor-editor-preview .reveal-left,
body.elementor-editor-preview .reveal-right {
    opacity: 1 !important;
    transform: none !important;
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* === HOVER EFFECTS === */
.card-hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.image-hover-zoom img {
    transition: transform var(--transition-slow);
}

.image-hover-zoom:hover img {
    transform: scale(1.1);
}

/* === BUTTON ANIMATIONS === */
.btn-animate {
    position: relative;
    overflow: hidden;
}

.btn-animate::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-circle);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-animate:active::after {
    width: 300px;
    height: 300px;
}

/* === LINK ANIMATIONS === */
.link-arrow i {
    transition: transform var(--transition-fast);
}

.link-arrow:hover i {
    transform: translateX(5px);
}

/* === LOADING STATES === */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* === FADE IN ANIMATION === */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* === SLIDE UP ANIMATION === */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

/* === STAGGER DELAYS === */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}
/**
 * Responsive Styles
 * HungLoc Property Template
 */

/* === RESPONSIVE BREAKPOINTS ===
   Desktop Large : > 1200px
   Desktop        : 992px - 1199px
   Tablet        : 768px - 991px
   Mobile        : < 768px
   Mobile Small  : < 576px
   Mobile Extra  : < 375px
*/

/* === DESKTOP LARGE === */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

/* === DESKTOP === */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .counter-number {
        font-size: 40px;
    }
    
    .partner-logos {
        gap: var(--space-2xl);
    }
}

/* === TABLET === */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .luxury-search-box {
        flex-direction: column;
    }
    
    .ls-field {
        width: 100%;
        margin-bottom: var(--space-md);
    }
    
    .ls-btn {
        width: 100%;
    }
    
    .team-grid {
        flex-wrap: wrap;
    }
    
    .team-grid .hl-team-card {
        width: calc(50% - var(--space-lg));
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testi-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }

    .contact-shell {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        padding: var(--space-2xl);
    }

    .contact-form {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .experience-badge {
        left: 20px;
        bottom: -20px;
        padding: 20px;
    }
    
    .experience-badge .number {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-links,
    .footer-social {
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .partner-logos {
        gap: var(--space-xl);
    }
    
    .p-logo {
        font-size: 20px;
    }
}

/* === MOBILE === */
@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: var(--space-xl);
    }
    
    .section-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .hero {
        height: auto;
        min-height: 100dvh;
        padding: 120px 0 80px;
        background-attachment: scroll;
        padding-top: max(120px, env(safe-area-inset-top) + 100px);
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-buttons {
        gap: var(--space-md);
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .luxury-search-wrapper {
        margin-top: -30px;
        padding: 0 10px;
    }
    
    .luxury-search-box {
        padding: var(--space-lg);
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .team-grid .hl-team-card {
        width: 100%;
        max-width: 400px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
    
    .counter-number {
        font-size: 32px;
    }
    
    .intro-container {
        gap: var(--space-3xl);
    }
    
    .intro-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-box .icon {
        margin: 0 auto;
    }
    
    .process-timeline::before {
        left: 21px;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
        position: relative;
    }

    .step-number {
        position: absolute;
        left: 0;
        top: 0;
    }

    .process-step .step-text {
        padding-left: 0;
    }

    .contact-info,
    .contact-form {
        padding: var(--space-xl);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 16px 16px;
    }

    .footer {
        padding: 50px 0 0;
    }
    
    .footer-bottom {
        padding: var(--space-md) 0;
    }
    
    .partner-logos {
        gap: var(--space-lg);
    }
    
    .p-logo {
        font-size: 16px;
    }
}

/* === MOBILE SMALL === */
@media (max-width: 375px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .counter-number {
        font-size: 28px;
    }
    
    .project-info {
        padding: var(--space-lg);
    }
    
    .team-info {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .news-info {
        padding: var(--space-lg);
    }
    
    .testi-card {
        padding: var(--space-xl);
    }
}

/* === PRINT STYLES === */
@media print {
    .navbar,
    .hero-buttons,
    .luxury-search-wrapper,
    .btn-link {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: var(--space-2xl) 0;
        background: none !important;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .hero-content {
        color: var(--text-primary);
    }
    
    .hero-title,
    .hero-subtitle {
        color: var(--text-primary);
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
}
/**
 * Projects Slider (Swiper Custom Styles)
 * HungLoc Property Template
 */

/* === PROJECT SLIDER CONTAINER === */
.projects {
    position: relative;
    overflow: visible;
}

.projects > .container {
    position: relative;
}

/* === PROJECT SLIDER CORE === */
.project-slider {
    width: 100%;
    padding: 30px 0 50px;
    margin-top: var(--space-2xl);
    overflow: hidden;
}

.project-slider .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
}

.project-slider .swiper-slide {
    display: flex !important;
    flex-shrink: 0 !important;
    height: auto !important;
}

.project-slider .project-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* === NAVIGATION BUTTONS === */
.projects .swiper-button-prev,
.projects .swiper-button-next {
    position: absolute;
    top: calc(50% - 10px);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.projects .swiper-button-prev {
    left: 15px;
}

.projects .swiper-button-next {
    right: 15px;
}

.projects .swiper-button-prev::after,
.projects .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.projects .swiper-button-prev:hover,
.projects .swiper-button-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.projects .swiper-button-prev:hover::after,
.projects .swiper-button-next:hover::after {
    color: var(--white);
}

/* === PAGINATION === */
.project-slider .swiper-pagination {
    bottom: 0;
}

.project-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(198, 168, 124, 0.4);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.project-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 35px;
    border-radius: 6px;
}

/* === RESPONSIVE === */
@media (max-width: 1400px) {
    .projects .swiper-button-prev {
        left: 15px;
    }
    
    .projects .swiper-button-next {
        right: 15px;
    }
}

@media (max-width: 992px) {
    .projects .swiper-button-prev,
    .projects .swiper-button-next {
        width: 42px;
        height: 42px;
    }
    
    .projects .swiper-button-prev::after,
    .projects .swiper-button-next::after {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .project-slider {
        padding: 20px 0 40px;
    }
    
    .projects .swiper-button-prev,
    .projects .swiper-button-next {
        display: none;
    }
}

/* === VIEW ALL LINK === */
.projects-more-link {
    margin-top: var(--space-xl);
}

.projects-more-link .btn-outline {
    min-width: 280px;
    max-width: 100%;
}

@media (max-width: 576px) {
    .projects-more-link .btn-outline {
        min-width: 0;
        width: 100%;
    }
}

/* === TESTIMONIALS SLIDER CONTAINER === */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials > .container {
    position: relative;
}

/* === TESTIMONIALS SLIDER CORE === */
.testi-slider {
    width: 100%;
    padding: 30px 0 50px;
    margin-top: var(--space-2xl);
    overflow: hidden;
}

.testi-slider,
.testi-slider * {
    box-sizing: border-box;
}

.testi-slider .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
}

.testi-slider .swiper-slide {
    display: flex !important;
    flex-shrink: 0 !important;
    height: auto !important;
    align-items: stretch !important;
}

.testi-slider .testi-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* === TESTIMONIALS NAVIGATION BUTTONS === */
.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 50;
    pointer-events: auto;
}

.testimonials .swiper-button-prev.swiper-button-disabled,
.testimonials .swiper-button-next.swiper-button-disabled {
    pointer-events: none;
}

.testimonials .swiper-button-prev {
    left: 20px;
}

.testimonials .swiper-button-next {
    right: 20px;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
    color: var(--white);
}

/* === TESTIMONIALS PAGINATION === */
.testimonials .swiper-pagination {
    bottom: 0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(198, 168, 124, 0.4);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 35px;
    border-radius: 6px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .testimonials .swiper-button-prev,
    .testimonials .swiper-button-next {
        display: none;
    }
}
/**
 * 404 Error Page CSS
 * HungLoc Property Template
 * Matched from demo1
 */

/* ========================================
   NAVBAR FIX FOR 404
   ======================================== */
body.error404 .navbar,
body.error-page .navbar {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

body.error404 .navbar .logo img,
body.error-page .navbar .logo img {
    height: 40px;
}

/* ========================================
   ERROR PAGE
   ======================================== */
.error-page {
    min-height: calc(100vh - 200px);
    padding: 90px 0 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.error-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.error-message {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

/* Buttons */
.error-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.error-actions .btn-primary {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.error-actions .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.error-actions .btn-secondary-light {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(198, 168, 124, 0.4);
}

.error-actions .btn-secondary-light:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Suggestions */
.error-suggestions {
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
}

.error-suggestions h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestion-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-links li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
}

.suggestion-links li a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.suggestion-links li a i {
    font-size: 12px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .error-code {
        font-size: 80px;
    }

    .error-title {
        font-size: 24px;
    }

    .error-message {
        font-size: 14px;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

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

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

    .suggestion-links li a {
        justify-content: center;
    }
}/**
 * About Page Styles
 * HungLoc Property Template
 */

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-hero-bg--default {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2d42 50%, #0d1b2a 100%);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.5) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: 14px;
    color: white;
}

.breadcrumb a {
    color: var(--accent);
    transition: color var(--transition-fast);
}

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

.breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.breadcrumb span {
    color: var(--white);
}

.page-title {
    font-size: 48px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.page-subtitle {
    font-size: 18px;
    color: #cccccc;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .page-hero {
        background-attachment: scroll;
        min-height: 350px;
    }

    .page-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 280px;
        padding-top: max(80px, env(safe-area-inset-top) + 60px);
    }

    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 14px;
    }
}

/* ========================================
   ABOUT STORY SECTION
   ======================================== */
.about-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(21, 149, 163, 0.2);
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 576px) {
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   MISSION & VISION
   ======================================== */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(198, 168, 124, 0.2);
    padding: var(--space-3xl);
    border-radius: var(--radius-md);
    transition: transform var(--transition), border-color var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(198, 168, 124, 0.5);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.mv-icon i {
    font-size: 28px;
}

.mv-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.mv-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

    .mv-card {
        padding: var(--space-2xl);
    }
}

/* ========================================
   CORE VALUES DETAILED
   ======================================== */
.values-detailed-grid {
    display: grid;
    gap: var(--space-xl);
}

.value-detailed-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.value-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-number {
    font-size: 48px;
    font-family: var(--font-primary);
    font-weight: 700;
    color: rgba(198, 168, 124, 0.2);
    line-height: 1;
    flex-shrink: 0;
}

.value-detailed-card:hover .value-number {
    color: rgba(198, 168, 124, 0.3);
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 20px;
    margin-bottom: var(--space-md);
}

.value-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.value-detailed-card .value-icon {
    width: 60px;
    height: 60px;
    background: rgba(198, 168, 124, 0.1);
    color: var(--gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-detailed-card .value-icon i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .value-detailed-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .value-number {
        font-size: 36px;
    }
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.why-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    border-bottom: 3px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gold);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(198, 168, 124, 0.1);
    color: var(--gold);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
}

.why-icon i {
    font-size: 32px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: var(--space-md);
}

.why-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   ABOUT CTA SECTION
   ======================================== */
.about-cta {
    position: relative;
    background-color: var(--light-bg);
}

.about-cta .cta-content h2 {
    font-size: 36px;
    color: var(--text-main);
    margin-bottom: var(--space-lg);
}

.about-cta .cta-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    padding: var(--space-xl) 0;
}

.cta-buttons .hl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    text-align: center;
}

.cta-buttons .hl-btn--primary {
    background-color: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
}

.cta-buttons .hl-btn--primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

.cta-buttons .hl-btn--secondary-light {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.cta-buttons .hl-btn--secondary-light:hover {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

@media (max-width: 576px) {
    .about-cta .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }

    .cta-buttons .hl-btn {
        width: 100%;
    }
}

/* ========================================
   UTILITY CLASSES (Reusing from 02-reset.css)
   These classes are now defined in 02-reset.css
   ======================================== */
/**
 * Article Detail Page CSS
 * HungLoc Property Template
 */

/* ========================================
   GLOBAL RESET & BASE
   Note: Base styles are inherited from 02-reset.css
   ======================================== */

/* ========================================
   ARTICLE HERO SECTION
   ======================================== */
.article-hero {
    height: 65vh;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-top: -80px;
}

.article-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 27, 42, 0.85) 0%, rgba(13, 27, 42, 0.35) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 20px) 48px;
}

.article-hero-info {
    margin-top: 24px;
}

.article-hero .breadcrumb {
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}

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

.article-hero .breadcrumb a:hover {
    color: var(--accent);
}

.article-hero .breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    margin: 0 8px;
}

.article-hero .breadcrumb span {
    color: var(--gold, #c6a87c);
    font-weight: 500;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.article-hero .article-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 16px 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.article-meta span {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta i {
    color: var(--gold, #c6a87c);
    font-size: 14px;
}

.article-meta .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   MAIN CONTENT AREA
   ======================================== */
.article-main {
    background: var(--light-bg, #f8f9fa);
    padding: 36px 0 80px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.article-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    align-self: flex-start;
}

/* Article Summary Box */
.article-summary {
    background: #fff;
    border-left: 4px solid var(--primary);
    padding: 22px 26px;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.article-summary p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary, #333);
    font-style: italic;
    margin: 0;
}

/* Table of Contents */
.article-toc {
    background: #fff;
    padding: 20px 24px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.article-toc h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color, #0d1b2a);
    margin-bottom: 14px;
}

.article-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-toc ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.article-toc ul li:last-child {
    border-bottom: none;
}

.article-toc ul li a {
    color: var(--text-secondary, #666);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    display: block;
}

.article-toc ul li a:hover {
    color: var(--gold, #c6a87c);
}

/* ========================================
   ARTICLE BODY CONTENT
   ======================================== */
.article-body {
    background: #fff;
    padding: 32px 36px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary, #333);
    font-family: var(--font-primary, 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

.article-body h2 {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color, #0d1b2a);
    margin-top: 36px;
    margin-bottom: 18px;
    padding-top: 22px;
    border-top: 1px solid #eee;
}

.article-body h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color, #0d1b2a);
    /* margin-top: 20px; */
    margin-bottom: 14px;
}

.article-body p {
    margin-bottom: 18px;
    color: #333;
}

.article-body ul,
.article-body ol {
    margin-bottom: 18px;
    padding-left: 22px;
}

.article-body li {
    margin-bottom: 8px;
}

/* Article Image */
.article-image {
    margin: 28px 0;
}

.article-image img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.article-image figcaption {
    text-align: center;
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin-top: 8px;
}

/* Highlight List */
.article-highlight {
    background: linear-gradient(135deg, rgba(198, 168, 124, 0.06), rgba(198, 168, 124, 0.12));
    padding: 22px 26px;
    border-radius: 6px;
    margin: 26px 0;
    list-style: none;
    padding-left: 0;
    border-left: 3px solid var(--primary);
}

.article-highlight li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(198, 168, 124, 0.15);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-highlight li:last-child {
    border-bottom: none;
}

.article-highlight strong {
    color: var(--gold, #c6a87c);
    min-width: 130px;
    font-weight: 600;
}

/* Blockquote */
.article-quote {
    background: var(--primary-color, #0d1b2a);
    color: #fff;
    padding: 28px 32px;
    border-radius: 6px;
    margin: 30px 0;
    position: relative;
    border-left: 4px solid #0dc2d7;
}

.article-quote::before {
    content: '\201C';
    font-family: var(--font-primary);
    font-size: 72px;
    color: #25e9ff;
    opacity: 0.35;
    position: absolute;
    top: 8px;
    left: 24px;
    line-height: 1;
}

.article-quote p {
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    padding-left: 20px;
    color: #fff;
}

.article-quote cite {
    color: #3cf4af;
    font-size: 13px;
    font-style: normal;
    display: block;
    padding-left: 20px;
    font-weight: 600;
}

/* Table */
.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 26px 0;
    font-size: 14px;
}

.article-table th,
.article-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
    border-right: 1px solid #E5E7EB;
}

.article-table th {
    background: var(--primary-color, #0d1b2a);
    color: #fff;
    font-weight: 600;
}

.article-table th:first-child {
    border-radius: 4px 0 0 0;
}

.article-table th:last-child {
    border-radius: 0 4px 0 0;
    border-right: none;
}

.article-table tr:hover td {
    background: #fafafa;
}

.article-table td:last-child {
    border-right: none;
}

/* Recommendations */
.article-recommendations {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

.recommendation-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 6px;
}

.rec-icon {
    width: 36px;
    height: 36px;
    background: var(--gold, #c6a87c);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.rec-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color, #0d1b2a);
    margin-bottom: 6px;
}

.rec-content p {
    font-size: 14px;
    color: var(--text-secondary, #666);
    margin: 0;
    line-height: 1.5;
}

/* CTA Box */
.article-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color, #0d1b2a), #1b263b);
    padding: 24px 28px;
    border-radius: 6px;
    margin-top: 20px;
    gap: 20px}

.cta-content h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 14px;
}

.article-cta .btn {
    flex-shrink: 0;
}

/* ========================================
   ARTICLE FOOTER (Tags & Share)
   ======================================== */
.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.tag-label {
    font-weight: 600;
    color: var(--text-secondary, #666);
    font-size: 13px;
}

.tag {
    background: #f0f0f0;
    color: var(--text-secondary, #666);
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.tag:hover {
    background: var(--gold, #c6a87c);
    color: #fff;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-label {
    font-weight: 600;
    color: var(--text-secondary, #666);
    font-size: 13px;
}

.share-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 14px;
}

.share-btn:hover {
    background: var(--gold, #c6a87c);
    color: #fff;
}

/* ========================================
   AUTHOR BOX
   ======================================== */
.author-box {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 24px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info {
    flex: 1;
    min-width: 0;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color, #0d1b2a);
    margin-bottom: 3px;
}

.author-title {
    color: var(--gold, #c6a87c);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary, #666);
    margin: 0;
}

/* ========================================
   RELATED ARTICLES
   ======================================== */
.related-articles {
    background: #fff;
    padding: 28px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.related-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color, #0d1b2a);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

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

.related-card {
    background: #fafafa;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.related-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-card:hover .related-image img {
    transform: scale(1.04);
}

.related-content {
    padding: 14px;
}

.related-cat {
    font-size: 10px;
    color: var(--gold, #c6a87c);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.related-content h4 {
    font-size: 14px;
    line-height: 1.4;
    margin: 6px 0 10px;
}

.related-content h4 a {
    color: var(--primary-color, #0d1b2a);
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.related-content h4 a:hover {
    color: var(--gold, #c6a87c);
}

.related-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #999;
}

.related-meta i {
    margin-right: 3px;
}

/* ========================================
   SIDEBAR - Article only
   ======================================== */
.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-form .form-group {
    margin-bottom: 12px;
}

.sidebar-form input,
.sidebar-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--font-primary);
    transition: all 0.2s;
    background: #fff;
    box-sizing: border-box;
}

.sidebar-form input:focus,
.sidebar-form select:focus {
    outline: none;
    border-color: var(--accent);
}

.sidebar-form input::placeholder {
    color: #999;
}

.sidebar-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.sidebar-form button {
    padding: 14px 24px;
    margin-top: 8px;
}

/* Category List Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.category-list li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-primary, #333);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.category-list li a:hover {
    color: var(--gold, #c6a87c);
}

.category-list li a span {
    color: #999;
    font-size: 12px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr 300px;
        gap: 24px;
    }

    .article-hero .article-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
        padding: 0;
        max-width: 100%;
    }

    .article-content-wrapper {
        padding: 0 12px;
        order: -1;
    }

    .article-sidebar {
        position: static;
        padding: 0 12px;
    }

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

    .article-hero {
        height: 55vh;
        min-height: 400px;
    }

    .article-hero .article-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .article-main {
        padding: 24px 0 60px;
    }

    .article-body {
        padding: 24px;
    }

    .article-body h2 {
        font-size: 22px;
    }

    .article-body h3 {
        font-size: 17px;
    }

    .article-cta {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .article-summary {
        padding: 18px 20px;
    }

    .article-summary p {
        font-size: 16px;
    }

    .article-toc {
        display: none;
    }

    .article-hero {
        height: 50vh;
        min-height: 360px;
    }

    .article-hero .article-title {
        font-size: 26px;
    }

    .article-hero .article-meta {
        font-size: 12px;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .article-body {
        padding: 16px;
    }

    .article-summary {
        padding: 16px;
    }

    .article-toc {
        padding: 16px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .article-meta {
        gap: 10px;
    }

    .article-meta span {
        font-size: 12px;
    }

    .article-hero .article-title {
        font-size: 22px;
    }

    .rec-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .recommendation-item {
        gap: 12px;
        padding: 14px;
    }
}/**
 * WordPress Comment Form Styles
 * HungLoc Property Theme
 */

/* === OVERRIDE ALL CONFLICTS (FORCE VISIBLE) === */
#comments,
#commentform,
#respond,
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url,
.form-submit {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#commentform input:not([type="checkbox"]):not([type="submit"]),
#commentform textarea {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: auto !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    color: #333 !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    box-shadow: none !important;
}

#commentform select {
    display: block !important;
}

#commentform label {
    display: block !important;
    visibility: visible !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 4px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

#commentform p {
    display: block !important;
    visibility: visible !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

#commentform .comment-notes p {
    margin: 0 !important;
}

#commentform #submit,
.submit {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: var(--primary-dark, #0d1b2a) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 12px 28px !important;
    cursor: pointer !important;
    box-shadow: none !important;
}

#comments {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

#comments .comments-title,
#reply-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark, #0d1b2a);
    margin: 0 0 24px !important;
}

#commentform {
    display: flex !important;
    flex-direction: column;
    gap: 0;
}

.comment-notes {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.comment-notes a {
    color: var(--accent, #c48675);
}

#commentform p {
    margin: 0 0 16px !important;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px !important;
}

#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea {
    width: 100% !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

#commentform input[type="text"]:focus,
#commentform input[type="email"]:focus,
#commentform input[type="url"]:focus,
#commentform textarea:focus {
    border-color: var(--accent, #c48675) !important;
    box-shadow: 0 0 0 3px rgba(196, 134, 117, 0.15) !important;
}

#commentform input[type="text"]::placeholder,
#commentform input[type="email"]::placeholder,
#commentform input[type="url"]::placeholder,
#commentform textarea::placeholder {
    color: #aaa;
}

#commentform textarea {
    min-height: 140px !important;
    resize: vertical !important;
}

#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"] {
    height: 42px !important;
}

/* Cookie consent */
.comment-form-cookies-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 16px !important;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    margin-top: 2px;
    accent-color: var(--accent, #c48675) !important;
    flex-shrink: 0;
}

/* Submit button */
.form-submit {
    margin-top: 4px !important;
}

#commentform #submit,
.submit {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: var(--primary-dark, #0d1b2a) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 12px 28px !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.1s ease;
    letter-spacing: 0.3px;
    display: inline-block !important;
    margin-top: 8px !important;
}

#commentform #submit:hover,
.submit:hover {
    background: #1b263b !important;
    transform: translateY(-1px);
}

#commentform #submit:active,
.submit:active {
    transform: translateY(0);
}

/* Logged in */
.comment-form-author {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .comment-form-author {
        grid-template-columns: 1fr !important;
    }

    #comments .comments-title,
    #reply-title {
        font-size: 20px;
    }
}

/* ========================================
   COMMENT LIST
   ======================================== */
.comment-list {
    list-style: none !important;
    padding: 0;
    margin: 40px 0;
}

.comment-list .comment {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.comment-list .comment:first-child {
    padding-top: 0;
}

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

.comment-list .children {
    list-style: none !important;
    padding-left: 40px;
    margin-top: 16px;
}

.comment-list .children .comment {
    border-bottom: 1px solid #f0f0f0;
}

/* Comment avatar */
.comment-list .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    float: left;
    margin-right: 14px;
}

/* Comment body */
.comment-list .comment-body {
    overflow: hidden;
}

/* Comment meta */
.comment-list .comment-metadata {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

.comment-list .comment-metadata a {
    color: #999;
    text-decoration: none;
}

.comment-list .comment-metadata a:hover {
    color: var(--accent, #c48675);
}

/* Comment author name */
.comment-list .fn,
.comment-list .fn a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark, #0d1b2a);
    font-style: normal;
    text-decoration: none;
}

.comment-list .fn a:hover {
    color: var(--accent, #c48675);
}

/* Comment text */
.comment-list .comment-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-top: 6px;
}

.comment-list .comment-content p {
    margin: 0 0 8px;
}

.comment-list .comment-content p:last-child {
    margin-bottom: 0;
}

/* Reply link */
.comment-list .reply {
    margin-top: 8px;
}

.comment-list .comment-reply-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent, #c48675);
    text-decoration: none;
    transition: color 0.2s ease;
}

.comment-list .comment-reply-link:hover {
    color: var(--primary-dark, #0d1b2a);
    text-decoration: underline;
}

/* Comment awaiting moderation */
.comment-list .comment-awaiting-moderation {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #e67e22;
    font-style: italic;
    margin-top: 6px;
}

/* Cancel reply */
#cancel-comment-reply-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #e74c3c;
    text-decoration: none;
    margin-left: 12px;
}

#cancel-comment-reply-link:hover {
    text-decoration: underline;
}

/* No comments */
.no-comments {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #888;
    text-align: center;
    padding: 20px;
}/**
 * Contact Page Styles
 * HungLoc Property Template
 */

/* ========================================
   CONTACT INFO SECTION
   ======================================== */
.contact-info-section {
    padding: var(--space-section) 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    align-items: stretch;
}

.contact-info-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 180px;
    width: 100%;
    box-sizing: border-box;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.cic-icon {
    width: 70px;
    height: 70px;
    background: rgba(198, 168, 124, 0.1);
    color: var(--gold);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    flex-shrink: 0;
}

.cic-icon i {
    font-size: 28px;
}

.cic-content {
    flex: 1;
    width: 100%;
}

.cic-content h3 {
    font-size: 20px;
    margin-bottom: var(--space-md);
}

.cic-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.cic-content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.cic-content a:hover {
    color: var(--gold);
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-card {
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .contact-info-card {
        padding: var(--space-lg);
        min-height: 160px;
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        padding: var(--space-xl);
        min-height: auto;
    }
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-form-shell {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-main {
    background: var(--white);
    padding: var(--space-3xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-form-main .hl-form-group {
    margin-bottom: var(--space-xl);
}

.contact-form-main .hl-form-group input,
.contact-form-main .hl-form-group select,
.contact-form-main .hl-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 14px;
    transition: all var(--transition-fast);
    background: var(--light-bg);
    box-sizing: border-box;
}

.contact-form-main .hl-form-group input:focus,
.contact-form-main .hl-form-group select:focus,
.contact-form-main .hl-form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(21, 149, 163, 0.1);
}

.contact-form-main .hl-form-group input::placeholder,
.contact-form-main .hl-form-group textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form-main .hl-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-main .hl-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.contact-form-main .hl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.2);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .contact-form-main {
        padding: var(--space-xl);
    }
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    flex: 1;
    padding-right: var(--space-lg);
}

.faq-question i {
    color: var(--gold);
    font-size: 14px;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.is-open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
    padding-top: 25px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 576px) {
    .faq-question {
        padding: var(--space-lg);
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 var(--space-lg) var(--space-lg);
    }
}/**
 * Elementor Preview Styles
 * Hùng Lộc Property Theme
 * 
 * @version 1.0.0
 */

/* =============================================
   PREVIEW MODE CONTAINER STYLES
   ============================================= */

body.elementor-editor-preview .elementor-section-wrap {
    position: relative;
}

body.elementor-editor-preview .elementor-section-wrap::before {
    content: 'Section';
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(198, 168, 124, 0.9);
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 100;
}

body.elementor-editor-preview .elementor-section-wrap:hover::before {
    opacity: 1;
}

/* =============================================
   PREVIEW WIDGET LABELS
   ============================================= */

body.elementor-editor-preview .elementor-widget-wrap::before {
    content: attr(data-widget);
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--gold, #c6a87c);
    color: #fff;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 101;
}

body.elementor-editor-preview .elementor-widget-wrap:hover::before {
    opacity: 1;
}

/* =============================================
   PREVIEW SKELETON LOADERS
   ============================================= */

.hungloc-preview-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: hungloc-shimmer 1.5s infinite;
}

@keyframes hungloc-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* =============================================
   PREVIEW MODE OVERRIDES
   ============================================= */

body.elementor-editor-preview .navbar {
    position: relative;
    z-index: 1000;
}

body.elementor-editor-preview .footer {
    position: relative;
    z-index: 1;
}

/* =============================================
   PREVIEW DRAG & DROP HINT
   ============================================= */

.elementor-element:hover > .elementor-element-overlay {
    border: 2px dashed #c6a87c;
}

/* =============================================
   PREVIEW RESPONSIVE PREVIEW BAR
   ============================================= */

.elementor-panel-footer .elementor-panel-footer-toggle-devices {
    color: #c6a87c;
}

/* =============================================
   PREVIEW EDITOR TOOLBAR
   ============================================= */

.elementor-panel .elementor-panel-header {
    background-color: #0d1b2a;
}

.elementor-panel .elementor-button {
    border-radius: 6px;
}

.elementor-panel .elementor-button-success {
    background-color: #c6a87c;
}

/* =============================================
   PREVIEW SECTIONS
   ============================================= */

.elementor-section-wrap {
    transition: all 0.3s ease;
}

.elementor-section-wrap:hover {
    box-shadow: inset 0 0 0 2px rgba(198, 168, 124, 0.3);
}

/* =============================================
   PREVIEW NAVIGATION
   ============================================= */

body.elementor-editor-preview .elementor-nav-menu {
    position: relative;
}

body.elementor-editor-preview .elementor-nav-menu::after {
    content: 'Navigation Menu';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(198, 168, 124, 0.8);
    color: #fff;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 100;
}

body.elementor-editor-preview .elementor-nav-menu:hover::after {
    opacity: 1;
}

/* =============================================
   PREVIEW TEMPLATE LIBRARY
   ============================================= */

.elementor-template-library-template-preview {
    border-radius: 8px;
    overflow: hidden;
}

.elementor-template-library-template-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* =============================================
   PREVIEW DEVICE PREVIEW
   ============================================= */

.elementor-preview-responsive-wrapper {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.elementor-device-mobile .elementor-preview-responsive-wrapper {
    max-width: 375px;
}

.elementor-device-tablet .elementor-preview-responsive-wrapper {
    max-width: 768px;
}

/* =============================================
   PREVIEW HISTORY
   ============================================= */

.elementor-history {
    background: #fff;
}

.elementor-history__action {
    font-family: 'Montserrat', sans-serif;
}

/* =============================================
   PREVIEW REVISION
   ============================================= */

.elementor-revision-history {
    border-top: 1px solid #e0e0e0;
}

/* =============================================
   PREVIEW GLOBAL COLORS
   ============================================= */

.elementor-panel .color-picker__label {
    font-family: 'Montserrat', sans-serif;
}

/* =============================================
   PREVIEW LAYOUT CONTROLS
   ============================================= */

.elementor-control-content_width .elementor-control-input-wrapper {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
}

/* =============================================
   PREVIEW SECTION EDITOR
   ============================================= */

.elementor-section-wrap {
    min-height: 100px;
}

.elementor-section-wrap.elementor-section-empty {
    min-height: 200px;
    background: repeating-linear-gradient(
        45deg,
        #f8f9fa,
        #f8f9fa 10px,
        #ffffff 10px,
        #ffffff 20px
    );
}

/* =============================================
   PREVIEW WIDGET AREA
   ============================================= */

.elementor-widget-wrap {
    position: relative;
}

.elementor-widget-wrap > .elementor-widget {
    width: 100%;
}

/* =============================================
   PREVIEW DROPDOWN Z-INDEX
   ============================================= */

.elementor-dropdown {
    z-index: 9999;
}

/* =============================================
   PREVIEW ICON PICKER
   ============================================= */

.elementor-icon-list-item {
    font-family: 'Montserrat', sans-serif;
}

.elementor-icon-list-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.elementor-icon-list-item a:hover {
    color: #c6a87c;
}

/* =============================================
   PREVIEW BUTTON STYLE
   ============================================= */

.elementor-button-wrapper .elementor-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.elementor-button-wrapper .elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* =============================================
   PREVIEW IMAGE CAROUSEL
   ============================================= */

.elementor-image-carousel-wrapper {
    position: relative;
}

.elementor-image-carousel .swiper-button-next,
.elementor-image-carousel .swiper-button-prev {
    background-color: rgba(13, 27, 42, 0.8);
    border-radius: 50%;
}

/* =============================================
   PREVIEW TEXT PATH
   ============================================= */

.elementor-text-path {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* =============================================
   PREVIEW Lottie
   ============================================= */

.elementor-lottie svg {
    width: 100%;
    height: auto;
}

/* =============================================
   PREVIEW CODE HIGHLIGHT
   ============================================= */

.elementor-code-block {
    background: #0d1b2a;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

/* =============================================
   PREVIEW FORM FIELDS
   ============================================= */

.elementor-field-group .elementor-field {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.elementor-field-group .elementor-field:focus {
    border-color: #c6a87c;
    outline: none;
}

/* =============================================
   PREVIEW ALERTS
   ============================================= */

.elementor-alert {
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
}

.elementor-alert--info {
    background-color: #e6f2ff;
    border-color: #0066ff;
}

.elementor-alert--success {
    background-color: #ecfdf5;
    border-color: #10b981;
}

.elementor-alert--warning {
    background-color: #fffbeb;
    border-color: #f59e0b;
}

.elementor-alert--error {
    background-color: #fef2f2;
    border-color: #ef4444;
}

/* =============================================
   PREVIEW PROGRESS
   ============================================= */

.elementor-progress-bar {
    background-color: #c6a87c;
    border-radius: 20px;
    height: 8px;
}

/* =============================================
   PREVIEW TESTIMONIAL CAROUSEL
   ============================================= */

.elementor-testimonial__rating {
    color: #c6a87c;
}

/* =============================================
   PREVIEW ACCORDION / TOGGLE
   ============================================= */

.elementor-accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.elementor-accordion-title {
    padding: 15px 20px;
    background: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.elementor-accordion-title:hover {
    background: #f8f9fa;
}

.elementor-accordion-content {
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

/* =============================================
   PREVIEW TABS
   ============================================= */

.elementor-tab-title {
    padding: 15px 25px;
    background: #fff;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.elementor-tab-title:hover,
.elementor-tab-title.elementor-active {
    border-bottom-color: #c6a87c;
    color: #0d1b2a;
}

.elementor-tab-content {
    padding: 20px;
    background: #fff;
}

/* =============================================
   PREVIEW PRICE TABLE
   ============================================= */

.elementor-price-table {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.elementor-price-table__header {
    background: #0d1b2a;
    padding: 30px;
}

.elementor-price-table__price {
    padding: 30px;
}

.elementor-price-table__period {
    color: #666;
}

.elementor-price-table__features-list {
    padding: 0 30px 30px;
}

.elementor-price-table__feature-inner {
    padding: 10px 0;
}

/* =============================================
   PREVIEW SLIDES
   ============================================= */

.elementor-slides .swiper-slide {
    background-size: cover;
    background-position: center;
}

.elementor-slide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* =============================================
   PREVIEW VIDEO
   ============================================= */

.elementor-custom-embed-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(13, 27, 42, 0.8);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.elementor-custom-embed-play:hover {
    background: #c6a87c;
    transform: translate(-50%, -50%) scale(1.1);
}

.elementor-custom-embed-play i {
    color: #fff;
    font-size: 24px;
    margin-left: 4px;
}/* =============================================
   LEAD FORM / CONTACT FORM WIDGET
   Used by HungLoc_Contact_Form_Widget
   ============================================= */
section.contact {
    padding: 60px 0;
    /* No default background - user controls section color via Elementor section background */
}

section.contact .container.contact-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

section.contact .hl-contact-shell {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: var(--white, #fff);
    width: 100%;
}

section.contact .hl-contact-shell__info {
    background: var(--dark-bg);
    color: #fff;
    padding: 48px;
    flex: 1 1 400px;
}

section.contact .hl-contact-shell__info .hl-section-header__title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

section.contact .hl-contact-shell__info .hl-section-header__title .hl-text-gold {
    color: var(--primary);
}

section.contact .hl-contact-shell__info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 32px;
}

section.contact .hl-contact-shell__info-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

section.contact .hl-contact-shell__info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

section.contact .hl-contact-shell__info-item i {
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

section.contact .hl-contact-shell__form {
    padding: 48px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    flex: 1 1 540px;
    max-width: 540px;
    background: var(--white, #fff);
}

section.contact .hungloc-lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Form Group */
section.contact .hl-form-group {
    margin-bottom: 0;
}

section.contact .hl-form-group input,
section.contact .hl-form-group select,
section.contact .hl-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-primary, inherit);
    font-size: 14px;
    transition: all 0.2s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

section.contact .hl-form-group input:focus,
section.contact .hl-form-group select:focus,
section.contact .hl-form-group textarea:focus {
    outline: none;
    border-color: #179CAB;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(23, 156, 171, 0.1);
}

section.contact .hl-form-group input::placeholder,
section.contact .hl-form-group textarea::placeholder {
    color: #9ca3af;
}

/* Custom Select */
section.contact .hl-custom-select {
    min-width: 0;
}

/* Khi dùng custom-select (JS enhanced), select sẽ bị ẩn bởi forms.css.
   Vì elementor-widgets.css được load sau, cần tránh override display:none. */
section.contact .hl-custom-select:not(.custom-select) select {
    display: block;
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-primary, inherit);
    font-size: 14px;
    background: #f8f9fa;
    color: var(--text-main, #1F2D2F);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

section.contact .hl-custom-select:not(.custom-select) select:focus {
    outline: none;
    border-color: #179CAB;
    background-color: #fff;
}

/* Submit Button */
section.contact .hl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

section.contact .hl-btn--primary {
    color: #fff;
}

section.contact .hl-btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.25);
}

section.contact .hl-w-full {
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    section.contact .container.contact-container {
        flex-direction: column;
        gap: 40px;
    }

    section.contact .hl-contact-shell {
        flex-direction: column;
    }

    section.contact .hl-contact-shell__info,
    section.contact .hl-contact-shell__form {
        flex: 1 1 auto;
        max-width: 100%;
    }

    section.contact .hl-contact-shell__form {
        border-left: none;
        border-top: 1px solid #e0e0e0;
    }

    section.contact .hl-contact-shell__info {
        padding: 40px;
    }

    section.contact .hl-contact-shell__form {
        padding: 40px;
    }
}

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

    section.contact .hl-contact-shell__info,
    section.contact .hl-contact-shell__form {
        padding: 32px 24px;
    }

    section.contact .hl-contact-shell__info .hl-section-header__title {
        font-size: 24px;
    }

    section.contact .hungloc-lead-form {
        gap: 12px;
    }
}

/* =============================================
   ELEMENTOR BUILDER PREVIEW FIXES
   Ensure widgets visible in editor
   ============================================= */
/* Reset reveal animations in editor */
body.elementor-editor-active section .reveal-up,
body.elementor-editor-active section .reveal-left,
body.elementor-editor-active section .reveal-right,
body.elementor-editor-preview section .reveal-up,
body.elementor-editor-preview section .reveal-left,
body.elementor-editor-preview section .reveal-right {
    opacity: 1 !important;
    transform: none !important;
}

/* Ensure section min-height for empty sections in editor */
body.elementor-editor-active section:not(:has(> *)),
body.elementor-editor-preview section:not(:has(> *)) {
    min-height: 200px;
}

/* Contact form builder preview */
body.elementor-editor-active .hl-contact-shell__info,
body.elementor-editor-preview .hl-contact-shell__info {
    min-height: 300px;
}
/**
 * Elementor Specific Styles
 * Hùng Lộc Property Theme
 * 
 * @version 1.0.0
 */

/* =============================================
   ELEMENTOR WIDGET CONTAINER STYLES
   ============================================= */

.elementor-widget-hungloc-hero .hero {
    position: relative;
}

.elementor-widget-hungloc-project-card .projects-grid,
.elementor-widget-hungloc-project-slider .partner-project-slider {
    margin-top: 40px;
}

.elementor-widget-hungloc-counter .counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .elementor-widget-hungloc-counter .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .elementor-widget-hungloc-counter .counter-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   ELEMENTOR - Let It Handle Its Own Layouts
   ============================================= */

/* =============================================
   ELEMENTOR PAGE TEMPLATES - FULL WIDTH
   These override any container constraints
   ============================================= */

body.elementor-page-template-canvas .elementor-container,
body.elementor-page-template-full-width .elementor-container {
    max-width: 100% !important;
    width: 100% !important;
}

/* =============================================
   ELEMENTOR EDITOR PREVIEW
   ============================================= */

.elementor-editor-active .site {
    padding-top: 0;
}

.elementor-editor-active .navbar {
    position: relative;
    z-index: 100;
}

/* =============================================
   ELEMENTOR WIDGET ICONS
   ============================================= */

.elementor-widget-hungloc-hero .elementor-widget-icon {
    color: #c6a87c;
}

/* =============================================
   HÙNG LỘC CUSTOM WIDGET CONTAINER
   ============================================= */

.hungloc-widget-container {
    position: relative;
    width: 100%;
}

.hungloc-widget-container .hl-section-header {
    margin-bottom: 40px;
}

/* =============================================
   ELEMENTOR TEMPLATE PREVIEW
   ============================================= */

body.elementor-editor-preview .site-content {
    padding-top: 0;
}

/* =============================================
   CUSTOM ELEMENTOR CONTROLS
   ============================================= */

.elementor-control-section_badge .elementor-control-content {
    font-size: 12px;
    color: #c6a87c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   ELEMENTOR RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .elementor-widget-hungloc-project-card .projects-grid {
        grid-template-columns: 1fr !important;
    }
    
    .elementor-widget-hungloc-project-slider .swiper-button-prev,
    .elementor-widget-hungloc-project-slider .swiper-button-next {
        display: none;
    }
}

/* =============================================
   ELEMENTOR THEME BUILDER TEMPLATES
   ============================================= */

.site-header,
.site-footer {
    width: 100%;
}

.site-header .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.has-transparent-header .site-header .navbar {
    background: transparent;
}

/* =============================================
   ELEMENTOR POPUP STYLES
   ============================================= */

.elementor-popup-modal {
    max-width: 600px !important;
}

.elementor-popup-modal .dialog-message {
    padding: 40px;
}

/* =============================================
   ELEMENTOR SITE LOGO
   ============================================= */

.elementor-widget-site-logo img {
    max-height: 80px;
    width: auto;
}

/* =============================================
   ELEMENTOR GLOBAL SETTINGS
   ============================================= */

:root {
    --elementor-container-width: 1200px;
    --elementor-section-height: 500px;
    --elementor-spacing: 20px;
}

/* Remove container limit - let Elementor handle its own widths */
/* .elementor .elementor-section:not(.elementor-section-full_width) > .elementor-container {
    max-width: var(--elementor-container-width);
} */

.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: calc(var(--elementor-spacing) / 2);
}

/* =============================================
   ELEMENTOR THEME BUILDER - HEADER
   ============================================= */

#site-header.elementor-location-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

#site-footer.elementor-location-footer {
    background-color: var(--primary-color);
    color: var(--white);
}/**
 * News Page - Newspaper Style (v2 - Phase 1)
 * HungLoc Property Template
 */

/* ========================================
   SECTION NAV
   ======================================== */
.section-nav {
    background: var(--white);
    border-bottom: 1px solid #e5e5e5;
}

.section-nav > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.section-nav-list li a {
    display: block;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    min-height: 48px;
    box-sizing: border-box;
}

.section-nav-list li a:hover,
.section-nav-list li a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.section-nav-search {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.search-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 38px;
}

.search-form input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 20px 0 0 20px;
    font-size: 13px;
    width: 180px;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.search-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.search-form button {
    padding: 8px 14px;
    background: var(--primary);
    border: none;
    border-radius: 0 20px 20px 0;
    color: white;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .section-nav-search {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-nav > .container {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .section-nav-list {
        justify-content: flex-start;
    }
    
    .section-nav-list li a {
        padding: 14px 12px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .section-nav-list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        scroll-padding-left: 16px;
    }
    
    .section-nav-list li a {
        padding: 14px 12px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .section-nav-list li a::after {
        display: none;
    }
}

/* ========================================
   MAIN LAYOUT
   ======================================== */
.page-content {
    background: #f8f9fa;
    padding: 24px 0 40px;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: flex-start;
}

.main-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 993px) {
    .sidebar-column {
        position: sticky;
        top: 90px;
    }
}

@media (max-width: 992px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-column {
        order: -1;
    }
}

/* ========================================
   LEAD ARTICLE
   ======================================== */
.lead-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lead-article-image {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.lead-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-category-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.news-card-category-label a {
    background: var(--gold);
    color: white;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lead-article-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-title {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.lead-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.lead-title a:hover {
    color: var(--gold);
}

.lead-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.lead-meta .author {
    color: var(--gold);
    font-weight: 600;
}

.lead-meta .separator {
    margin: 0 10px;
    color: #ddd;
}

.lead-meta .read-time i {
    margin-right: 4px;
}

.lead-summary {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.lead-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.btn-read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-read-more i {
    margin-left: 6px;
    transition: transform 0.2s;
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}

.article-share button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.article-share button:hover {
    background: var(--gold);
    color: white;
}

@media (max-width: 992px) {
    .lead-article {
        grid-template-columns: 1fr;
    }
    
    .lead-article-image {
        height: 280px;
    }
    
    .lead-title {
        font-size: 24px;
    }
}

/* ========================================
   SUB LEADS
   ======================================== */
.sub-leads {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sub-article {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.sub-article-image {
    position: relative;
    height: 130px;
    overflow: hidden;
}

.sub-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sub-article:hover .sub-article-image img {
    transform: scale(1.05);
}

.sub-article-image .article-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
}

.sub-article-content {
    padding: 12px;
}

.sub-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.sub-meta a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

.sub-article h3 {
    font-size: 15px;
    line-height: 1.4;
}

.sub-article h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.sub-article h3 a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .sub-leads {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LATEST NEWS LIST
   ======================================== */
.latest-news-section,
.articles-section {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.section-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-list-item {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-time {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    min-width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 168, 124, 0.12);
    border-radius: 4px;
    text-align: center;
}

.news-list-content h4 {
    font-size: 15px;
    line-height: 1.4;
    margin-top: 4px;
}

.news-list-content h4 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.news-list-content h4 a:hover {
    color: var(--gold);
}

/* ========================================
   ARTICLES GRID
   ======================================== */
.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-card-item {
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.news-card-thumb {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card-item:hover .news-card-thumb img {
    transform: scale(1.08);
}

.thumb-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
}

.news-card-body {
    padding: 12px;
    background: #fafafa;
}

.news-card-cat {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.news-card-body h4 {
    font-size: 15px;
    line-height: 1.35;
    margin: 8px 0;
}

.news-card-body h4 a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.news-card-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

.news-card-footer i {
    margin-right: 4px;
}

@media (max-width: 992px) {
    .news-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   PAGINATION
   ======================================== */
.content-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.page-btn {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.page-btn:hover:not(.disabled):not(.active) {
    border-color: var(--gold);
    color: var(--gold);
}

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

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-ellipsis {
    color: #999;
}

/* ========================================
   WIDGETS
   ======================================== */
.widget {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* Market Widget */
.market-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.row-label {
    font-size: 13px;
    color: #666;
}

.row-value {
    font-weight: 600;
    color: var(--primary-color);
}

.row-change {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
}

.row-change.up {
    background: #e8f5e9;
    color: #2e7d32;
}

.row-change.down {
    background: #ffebee;
    color: #c62828;
}

/* Most Read Widget */
.most-read-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.most-read-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    counter-increment: list-counter;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.most-read-list li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    width: 22px;
}

.most-read-list li a {
    display: block;
    padding-left: 28px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--primary-color);
    text-decoration: none;
    flex: 1;
}

.most-read-list li a:hover {
    color: var(--gold);
}

.view-count {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

.view-count i {
    margin-right: 4px;
}

/* New Posts Widget - Tin moi */
.new-posts-widget {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.new-posts-widget .widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-posts-widget .widget-title i {
    color: var(--gold);
}

.new-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.new-post-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.new-post-thumb {
    width: 60px;
    height: 45px;
    min-width: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.new-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.new-post-content {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.new-post-content a {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin: 0;
}

.new-post-content a:hover {
    color: var(--gold);
}

.new-post-time {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

@media (max-width: 576px) {
    .new-post-thumb {
        width: 50px;
        height: 38px;
        min-width: 50px;
    }
    
    .new-post-content a {
        font-size: 12px;
    }
}

/* Newsletter Widget */
.widget-newsletter p {
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
}

.newsletter-form input {
    width: 100%;
    max-width: 100%;
    /* padding: 12px 14px; */
    border: 1px solid #ddd;
    border-radius: 4px;
    /* margin-bottom: 10px; */
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-submit {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    background: var(--gold);
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #b8966a;
}

/* Ads Widget */
.widget-ads {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.ads-placeholder {
    color: #bbb;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Force remove sticky on mobile */
@media (max-width: 992px) {
    .sidebar-column {
        position: static !important;
    }
}

/* ========================================
   ARCHIVE LIST VIEW
   ======================================== */
.archive-list-section {
    padding: 0;
}

.list-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.list-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white, #fff);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.list-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.list-item-image {
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
}

.list-item-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.list-item:hover .list-item-image img {
    transform: scale(1.05);
}

.list-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.list-item-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #6b7280;
}

.list-item-meta i {
    margin-right: 5px;
}

.list-item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.list-item-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
}

.list-item-title a:hover {
    color: var(--gold, #b8860b);
}

.list-item-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-item-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold, #b8860b);
    text-decoration: none;
    margin-top: auto;
}

.list-item-readmore:hover {
    text-decoration: underline;
}

.list-item-readmore i {
    font-size: 12px;
    transition: transform 0.2s;
}

.list-item-readmore:hover i {
    transform: translateX(4px);
}

/* Pagination */
.content-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.page-btn:hover:not(.disabled):not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

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

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-ellipsis {
    padding: 0 8px;
    color: #9ca3af;
}

/* Widget - Categories */
.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list li {
    border-bottom: 1px solid #f0f0f0;
}

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

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.category-list li a span {
    font-size: 12px;
    color: var(--text-light);
    background: var(--light-bg);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Widget - Popular Posts */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-post-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-item .post-number {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    background: var(--gold);
    border-radius: 4px;
}

.popular-post-content {
    flex: 1;
    min-width: 0;
}

.popular-post-content a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
}

.popular-post-content a:hover {
    color: var(--gold);
}

.popular-post-content .post-views {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ========================================
   ARTICLE CONTENT STYLES
   ======================================== */
.article-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
    margin: 28px 0 12px;
}

.article-content h2 {
    font-size: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
}

.article-content h3 {
    font-size: 20px;
}

.article-content h4 {
    font-size: 18px;
}

.article-content p {
    margin: 0 0 16px;
}

.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.article-content ul {
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.article-content li::marker {
    color: #c8a87c;
}

.article-content a {
    color: #c8a87c;
    text-decoration: underline;
}

.article-content a:hover {
    color: #b8966a;
}

.article-content strong,
.article-content b {
    font-weight: 600;
    color: #1a1a1a;
}

.article-content em,
.article-content i {
    font-style: italic;
}

.article-content blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    background: #f8f9fa;
    border-left: 4px solid #c8a87c;
    font-style: italic;
    color: #555;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 16px 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-content table th,
.article-content table td {
    padding: 10px 12px;
    border: 1px solid #e5e5e5;
    text-align: left;
}

.article-content table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Responsive - Archive List */
@media (max-width: 768px) {
    .list-item {
        flex-direction: column;
        gap: 16px;
    }

    .list-item-image {
        width: 100%;
        height: 200px;
    }

    .list-item-title {
        font-size: 16px;
    }

    .list-item-meta {
        flex-direction: column;
        gap: 6px;
    }

    .article-content {
        font-size: 15px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .article-content h3 {
        font-size: 18px;
    }

    .article-content ul,
    .article-content ol {
        padding-left: 20px;
    }
}/**
 * Page Templates Styles
 * HungLoc Property Theme
 */

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    padding: 80px 0 60px;
}

.page-header .page-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.page-content .entry-content h1,
.page-content .entry-content h2,
.page-content .entry-content h3,
.page-content .entry-content h4,
.page-content .entry-content h5,
.page-content .entry-content h6 {
    font-family: 'Montserrat', sans-serif;
    color: #0d1b2a;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    line-height: 1.3;
}

/* =============================================
   PAGE CONTENT - Main container for page/post content
   Container width giống navbar/footer: 1200px
   Chỉ áp dụng cho WP pages, KHÔNG cho Elementor pages
   ============================================= */
body:not(.elementor-page) .page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: transparent;
}

.page-header + .page-content {
    padding-top: 40px;
}

/* Content text width (tối ưu cho đọc) */
.page-content .entry-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1F2D2F;
    width: 100%;
    max-width: 800px;
    margin: 0;
}

/* Wrap content với full container width nhưng text có max-width riêng */
.page-content .entry-content > *:not(.alignwide):not(.alignfull) {
    max-width: 800px;
    margin-left: 0;
    margin-right: 0;
}

.page-content .entry-content h1 { font-size: 32px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.page-content .entry-content h2 { font-size: 28px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.page-content .entry-content h3 { font-size: 24px; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.page-content .entry-content h4 { font-size: 20px; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.page-content .entry-content h5 { font-size: 18px; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.page-content .entry-content h6 { font-size: 16px; font-family: 'Montserrat', sans-serif; font-weight: 600; }

.page-content .entry-content p {
    margin-bottom: 1.25em;
}

.page-content .entry-content a {
    color: #c6a87c;
    text-decoration: none;
}

.page-content .entry-content a:hover {
    text-decoration: underline;
}

.page-content .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5em 0;
}

.page-content .entry-content ul,
.page-content .entry-content ol {
    margin-bottom: 1.25em;
    padding-left: 1.5em;
}

.page-content .entry-content li {
    margin-bottom: 0.5em;
}

.page-content .entry-content blockquote {
    margin: 2em 0;
    padding: 20px 30px;
    background: #f8f9fa;
    border-left: 4px solid #c6a87c;
    font-style: italic;
}

.page-content .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.page-content .entry-content th,
.page-content .entry-content td {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.page-content .entry-content th {
    background: #0d1b2a;
    color: #ffffff;
    font-weight: 600;
}

/* =============================================
   SINGLE POST SPECIFIC
   ============================================= */
.single-post-featured {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.single-post-featured__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.5) 50%, transparent 100%);
}

.single-post-featured__content {
    position: relative;
    padding-bottom: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.single-post-header {
    background: #0d1b2a;
    padding: 60px 0 40px;
}

.single-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.single-post-meta span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.single-post-meta .post-category a {
    color: #c6a87c;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.single-post-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.single-post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.tags-label {
    font-weight: 600;
    color: #2d3748;
}

.tag-link {
    display: inline-block;
    padding: 5px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 13px;
    color: #4a5568;
}

.tag-link:hover {
    background: #0d1b2a;
    color: #ffffff;
}

.single-post-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
}

.share-label {
    font-weight: 600;
    color: #2d3748;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #4a5568;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #0d1b2a;
    color: #ffffff;
}

/* =============================================
   BLOG LISTING
   ============================================= */
.blog-listing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-card__link {
    display: block;
    text-decoration: none;
}

.blog-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: #c6a87c;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card__content {
    padding: 20px;
}

.blog-card__date {
    display: block;
    font-size: 13px;
    color: #718096;
    margin-bottom: 10px;
}

.blog-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #0d1b2a;
    margin: 0 0 10px;
}

.blog-card__excerpt {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0 0 15px;
}

.blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #c6a87c;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header .page-title {
        font-size: 28px;
    }
    
    .single-post-featured {
        height: 300px;
    }
    
    .single-post-title {
        font-size: 28px;
    }
    
    .page-content .entry-content {
        font-size: 15px;
    }
    
    .page-content .entry-content h1 { font-size: 26px; }
    .page-content .entry-content h2 { font-size: 24px; }
    .page-content .entry-content h3 { font-size: 20px; }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .page-content {
        padding: 0 12px 40px;
    }
    
    .single-post-featured {
        height: 250px;
    }
    
    .single-post-title {
        font-size: 24px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}/**
 * Partner Projects Slider
 * HungLoc Property Template
 */

/* === PARTNER PROJECTS === */
.partner-projects {
    padding: var(--space-3xl) 0;
}

.partner-projects .section-badge {
    background-color: rgba(196, 133, 117, 0.2);
    color: var(--gold);
}

.partner-projects .section-title {
    color: var(--white);
}

/* === PARTNER PROJECT SLIDER === */
.partner-project-slider {
    position: relative;
    margin-top: var(--space-2xl);
    padding-bottom: 60px;
}

.partner-project-slider .swiper-button-prev,
.partner-project-slider .swiper-button-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.partner-project-slider .swiper-button-prev {
    left: 10px !important;
}

.partner-project-slider .swiper-button-next {
    right: 10px !important;
}

.partner-project-slider .swiper-button-prev::after,
.partner-project-slider .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.partner-project-slider .swiper-button-prev:hover,
.partner-project-slider .swiper-button-next:hover {
    background: var(--gold);
}

.partner-project-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.ppc-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-medium);
}

.partner-project-card:hover .ppc-image {
    transform: scale(1.05);
}

.ppc-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: var(--white);
}

.ppc-developer {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.ppc-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    line-height: 1.3;
    color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.ppc-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.ppc-location i {
    color: var(--gold);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .partner-project-card {
        height: 350px;
    }

    .ppc-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .partner-project-card {
        height: 300px;
    }

    .ppc-title {
        font-size: 16px;
    }

    .ppc-overlay {
        padding: var(--space-lg);
    }
}/**
 * Project Detail Page CSS
 * HungLoc Property Theme
 * 
 * Based on demo1 du-an-masterise.html structure
 */

/* ========================================
   PROJECT DETAIL HERO
   ======================================== */
.project-detail-hero {
    height: 65vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-top: -80px;
    z-index: 1;
}

.project-overview,
.project-utilities,
.unit-types,
.project-location,
.project-gallery,
.payment-info,
.project-video,
.projects.section,
.project-progress {
    padding: 60px 0;
}

.project-detail-hero--no-image {
    height: 400px;
    min-height: 350px;
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%) !important;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-top: 0;
}

.project-detail-hero--no-image .hero-overlay {
    display: none;
}

.project-detail-hero--no-image .project-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 32px;
}

.project-detail-hero--no-image .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 20px;
}

.project-detail-hero--no-image .breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-detail-hero--no-image .breadcrumb a:hover {
    color: var(--accent, #C48675);
}

.project-detail-hero--no-image .breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.project-detail-hero--no-image .breadcrumb span {
    color: var(--accent, #C48675);
    font-weight: 500;
}

.project-detail-hero--no-image .project-hero-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.project-detail-hero--no-image .hero-title-wrapper {
    flex: 1;
}

.project-detail-hero--no-image .project-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 12px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.project-detail-hero--no-image .project-location {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-detail-hero--no-image .project-location i {
    color: var(--accent, #C48675);
}

.project-detail-hero--no-image .project-status-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    background: var(--accent, #C48675);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.project-detail-hero--no-image .hero-price-wrapper {
    background: var(--accent, #C48675);
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
    flex-shrink: 0;
}

.project-detail-hero--no-image .price-from {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.project-detail-hero--no-image .price-amount {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.project-detail-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 27, 42, 0.90) 0%, rgba(13, 27, 42, 0.40) 100%);
}

.project-detail-hero .project-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 48px;
}

.project-detail-hero .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 12px;
}

.project-detail-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-detail-hero .breadcrumb a:hover {
    color: var(--accent, #C48675);
}

.project-detail-hero .breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.project-detail-hero .breadcrumb span {
    color: var(--accent, #C48675);
    font-weight: 500;
}

.project-detail-hero .project-hero-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.project-detail-hero .hero-title-wrapper {
    flex: 1;
}

.project-detail-hero .project-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 8px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.project-detail-hero .project-location {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.project-detail-hero .project-location i {
    color: var(--accent, #C48675);
}

.project-detail-hero .project-status-badge {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 8px;
    padding: 5px 12px;
    background: var(--accent, #C48675);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.project-detail-hero .hero-price-wrapper {
    background: var(--accent, #C48675);
    padding: 10px 16px;
    border-radius: 8px;
    text-align: center;
    flex-shrink: 0;
}

.project-detail-hero .price-from {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.project-detail-hero .price-amount {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* ========================================
   QUICK INFO SECTION
   ======================================== */
.project-quick-info {
    background: var(--white, #fff);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-top: 0;
}

.project-quick-info .quick-info-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.project-quick-info .quick-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 6px;
    min-width: 0;
}

.project-quick-info .quick-info-item i {
    font-size: 16px;
    color: var(--primary-dark, #0d1b2a);
    flex-shrink: 0;
}

.project-quick-info .quick-info-item .info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.project-quick-info .quick-info-item .info-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-quick-info .quick-info-item .info-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main, #1F2D2F);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   PROJECT OVERVIEW
   ======================================== */
.project-overview {
    padding: 80px 0;
}

.project-overview .intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-overview .intro-text {
    padding-right: 20px;
}

.project-overview .hl-section-header__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(196, 134, 117, 0.15);
    color: var(--accent, #C48675);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.project-overview .hl-section-header__title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark, #0d1b2a);
    line-height: 1.2;
    margin: 0 0 24px;
}

.project-overview .hl-section-header__title .hl-text-gold {
    color: var(--accent);
}

.project-overview .intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.project-overview .overview-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.project-overview .overview-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-main, #1F2D2F);
}

.project-overview .overview-list li i {
    color: var(--success, #10B981);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.project-overview .intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.project-overview .intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-overview .project-tag {
    position: absolute;
    top: 20px;
    left: 20px;
}

.project-overview .project-hot-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-dark, #0d1b2a);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

/* ========================================
   UTILITIES SECTION
   ======================================== */
.project-utilities {
    padding: 80px 0;
}

.project-utilities .hl-section-header {
    text-align: center;
    margin-bottom: 48px;
}

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

.project-utilities .hl-feature-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.project-utilities .hl-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.project-utilities .hl-feature-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(196, 134, 117, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.project-utilities .hl-feature-card__icon i {
    font-size: 24px;
    color: var(--accent, #C48675);
}

.project-utilities .hl-feature-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark, #0d1b2a);
    margin: 0 0 8px;
}

.project-utilities .hl-feature-card__text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   UNIT TYPES SECTION
   ======================================== */
.unit-types {
    padding: 80px 0;
}

.unit-types .hl-section-header {
    text-align: center;
    margin-bottom: 48px;
}

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

.unit-types .unit-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.unit-types .unit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.unit-types .unit-image {
    height: 180px;
    overflow: hidden;
}

.unit-types .unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unit-types .unit-card:hover .unit-image img {
    transform: scale(1.05);
}

.unit-types .unit-card--no-image {
    background: var(--white, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.unit-types .unit-card--no-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.unit-types .unit-card--no-image .unit-info--no-image {
    padding: 28px 24px;
}

.unit-types .unit-card--no-image .unit-badge-inline {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(196, 134, 117, 0.12);
    color: var(--gold, #c48675);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.unit-types .unit-card--no-image .unit-info--no-image h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary, #1F2D2F);
    margin: 0 0 14px;
}

.unit-types .unit-card--no-image .unit-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.unit-types .unit-card--no-image .unit-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-secondary, #66777A);
    font-size: 13px;
}

.unit-types .unit-card--no-image .unit-specs i {
    color: var(--gold, #c48675);
}

.unit-types .unit-card--no-image .unit-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.unit-types .unit-card--no-image .unit-price .price-label {
    color: var(--text-secondary, #66777A);
    font-size: 13px;
}

.unit-types .unit-card--no-image .unit-price .price-value {
    color: var(--gold, #c48675);
    font-size: 16px;
    font-weight: 700;
}

.unit-types .unit-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--primary-dark, #0d1b2a);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.unit-types .unit-info {
    padding: 20px;
}

.unit-types .unit-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark, #0d1b2a);
    margin: 0 0 12px;
}

.unit-types .unit-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #666;
}

.unit-types .unit-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.unit-types .unit-specs i {
    color: var(--accent, #C48675);
}

.unit-types .unit-price {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.unit-types .price-label {
    font-size: 12px;
    color: #999;
}

.unit-types .price-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent, #C48675);
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.project-location {
    padding: 80px 0;
}

.project-location .hl-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.project-location .location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.project-location .location-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark, #0d1b2a);
    margin: 0 0 16px;
}

.project-location .location-info > p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.project-location .location-advantages {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-location .location-advantages li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.project-location .location-advantages li:last-child {
    border-bottom: none;
}

.project-location .location-advantages li i {
    width: 40px;
    height: 40px;
    background: rgba(196, 134, 117, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, #C48675);
    font-size: 16px;
    flex-shrink: 0;
}

.project-location .location-advantages li strong {
    display: block;
    font-size: 15px;
    color: var(--primary-dark, #0d1b2a);
    margin-bottom: 4px;
}

.project-location .location-advantages li span {
    font-size: 13px;
    color: #666;
}

.project-location .location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.project-location .map-embed iframe,
.project-location .map-placeholder {
    width: 100%;
    min-height: 400px;
    border: none;
}

.project-location .map-placeholder {
    background: var(--bg-light, #f8f9fa);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #999;
}

.project-location .map-placeholder i {
    font-size: 48px;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.project-gallery {
    padding: 80px 0;
}

.project-gallery .hl-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.project-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.project-gallery .gallery-grid--single {
    grid-template-columns: 1fr;
}
.project-gallery .gallery-grid--single .gallery-item {
    aspect-ratio: 16/9;
    height: auto;
}
.project-gallery .gallery-grid--single .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-gallery .gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.project-gallery .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.project-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox .lightbox-close,
.lightbox .lightbox-prev,
.lightbox .lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.2s ease;
}

.lightbox .lightbox-close:hover,
.lightbox .lightbox-prev:hover,
.lightbox .lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 32px;
}

.lightbox .lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox .lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ========================================
   PAYMENT SECTION
   ======================================== */
.payment-info {
    padding: 80px 0;
}

.payment-info .hl-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.payment-info .payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.payment-info .payment-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.payment-info .payment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.payment-info .payment-icon {
    width: 72px;
    height: 72px;
    background: rgba(196, 134, 117, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.payment-info .payment-icon i {
    font-size: 28px;
    color: var(--accent, #C48675);
}

.payment-info .payment-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark, #0d1b2a);
    margin: 0 0 12px;
}

.payment-info .payment-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.project-video {
    padding: 80px 0;
}

.project-video .hl-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.project-video .video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.project-video .video-placeholder {
    background: var(--bg-light, #f8f9fa);
    padding: 60px;
    text-align: center;
    border-radius: 12px;
}

/* ========================================
   CONTACT SECTION (from Lead Form Widget)
   ======================================== */
.project-detail-hero + .contact,
.project-detail-hero ~ .contact {
    /* inherit from elementor-widgets.css .contact */
}

/* ========================================
   RELATED PROJECTS
   ======================================== */
.projects.section {
    padding: 80px 0;
}

.projects .hl-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.projects .project-slider {
    padding-bottom: 48px;
}

.projects .hl-project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
}

.projects .hl-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.projects .hl-project-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.projects .hl-project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.projects .hl-project-card:hover .hl-project-card__image img {
    transform: scale(1.05);
}

.projects .hl-project-card__image .hl-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.projects .hl-badge--hot { background: #e74c3c; color: #fff; }
.projects .hl-badge--new { background: #3498db; color: #fff; }
.projects .hl-badge--soldout { background: #95a5a6; color: #fff; }

.projects .hl-project-card__content {
    padding: 20px;
}

.projects .hl-project-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark, #0d1b2a);
    margin: 0 0 8px;
}

.projects .hl-project-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.projects .hl-project-card__location i {
    color: var(--accent, #C48675);
}

.projects .project-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.projects .project-price .price-label {
    font-size: 12px;
    color: #999;
}

.projects .project-price .price-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent, #C48675);
}

.projects .hl-btn--link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark, #0d1b2a);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.projects .hl-btn--link i {
    transition: transform 0.2s ease;
}

.projects .hl-btn--link:hover {
    color: var(--accent, #C48675);
}

.projects .hl-btn--link:hover i {
    transform: translateX(4px);
}

/* Swiper custom styles */
.swiper-pagination-bullet {
    background: var(--accent, #C48675);
}

.swiper-pagination-bullet-active {
    background: var(--primary-dark, #0d1b2a);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .project-quick-info .quick-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .project-utilities .utilities-grid,
    .unit-types .unit-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .project-gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .project-detail-hero {
        height: auto;
        min-height: 400px;
    }
    
    .project-detail-hero .project-hero-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-detail-hero .project-title {
        font-size: 36px;
    }
    
    .project-detail-hero .hero-price-wrapper {
        align-self: stretch;
    }
    
    .project-quick-info .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-overview .intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-utilities .utilities-grid,
    .unit-types .unit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-location .location-content {
        grid-template-columns: 1fr;
    }
    
    .project-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-info .payment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .project-detail-hero .project-title {
        font-size: 28px;
    }
    
    .project-utilities .utilities-grid,
    .unit-types .unit-grid {
        grid-template-columns: 1fr;
    }
    
    .project-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .project-gallery .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

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

    .project-detail-hero .project-hero-info {
        gap: 20px;
    }

    .project-detail-hero .hero-price-wrapper {
        padding: 12px 20px;
    }

    .project-detail-hero .price-amount {
        font-size: 20px;
    }
}

/* ========================================
   PROGRESS TIMELINE SECTION
   ======================================== */
.project-progress {
    padding: 80px 0;
}

.project-progress .hl-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.project-progress .progress-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 48px;
    padding: 0 20px;
}

.project-progress .progress-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: #ddd;
}

.project-progress .progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 180px;
}

.project-progress .progress-dot {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    z-index: 1;
    margin-bottom: 16px;
    font-size: 14px;
}

.project-progress .progress-item.completed .progress-dot {
    background: var(--primary-dark, #0d1b2a);
    border-color: var(--primary-dark, #0d1b2a);
    color: #fff;
}

.project-progress .progress-item.in-progress .progress-dot {
    background: var(--accent, #C48675);
    border-color: var(--accent, #C48675);
    color: #fff;
    animation: progressPulse 2s infinite;
}

@keyframes progressPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196, 134, 117, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(196, 134, 117, 0); }
}

.project-progress .progress-item.completed .progress-dot i,
.project-progress .progress-item.in-progress .progress-dot i {
    font-size: 16px;
}

.project-progress .progress-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark, #0d1b2a);
    margin: 0 0 6px;
}

.project-progress .progress-item.completed .progress-content h4,
.project-progress .progress-item.in-progress .progress-content h4 {
    color: var(--accent, #C48675);
}

.project-progress .progress-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

@media (max-width: 992px) {
    .project-progress .progress-timeline {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .project-progress .progress-timeline::before {
        display: none;
    }

    .project-progress .progress-item {
        max-width: 140px;
    }
}

@media (max-width: 576px) {
    .project-progress .progress-item {
        max-width: 120px;
    }

    .project-progress .progress-dot {
        width: 36px;
        height: 36px;
    }

    .project-progress .progress-content h4 {
        font-size: 12px;
    }

    .project-progress .progress-content p {
        font-size: 11px;
    }
}/**
 * Recruitment Page Styles
 * HungLoc Property Template
 */

/* Leadership Section */
.leadership-section {
    padding: var(--space-section) 0;
    background: var(--surface);
}

.leadership-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.leadership-header h2 {
    margin-bottom: var(--space-md);
}

.leadership-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.leader-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--background);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.leader-image {
    width: 180px;
    height: 180px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-name {
    font-size: 22px;
    color: var(--text-main);
    margin-bottom: var(--space-xs);
}

.leader-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.leader-quote {
    margin-top: var(--space-md);
    font-style: italic;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Content Tabs */
.content-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    color: var(--white);
}

.content-tab {
    display: none;
}

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

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.post-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.post-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.post-category-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.post-card-content {
    padding: var(--space-lg);
}

.post-card-content h3 {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 13px;
}

.post-meta .date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast);
}

.post-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

.post-link i {
    font-size: 12px;
}

/* CTA Section */
.recruitment-cta {
    padding: var(--space-section) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    text-align: center;
}

.recruitment-cta h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.recruitment-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.recruitment-cta .btn-primary:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Responsive */
@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
    
    .leader-image {
        width: 140px;
        height: 140px;
    }
    
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .leader-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .content-tabs {
        gap: var(--space-sm);
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .leader-image {
        width: 120px;
        height: 120px;
    }
}/**
 * Search Page CSS
 * HungLoc Property Template
 */

/* ========================================
   SEARCH SECTION
   ======================================== */
.search-section {
    padding: 0;
    position: relative;
}

.search-form-wrapper {
    max-width: 1200px;
    margin: -50px auto 0;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

.search-form-box {
    background: var(--hl-primary-dark, #0d1b2a);
    border: 1px solid rgba(198, 168, 124, 0.4);
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-radius: 8px;
    box-sizing: border-box;
}

.search-row-main {
    display: flex;
    gap: 0;
    align-items: stretch;
    margin-bottom: 20px;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-input-wrapper input {
    width: 100%;
    height: 44px;
    padding: 0 130px 0 16px;
    background: #1b263b;
    border: 1px solid rgba(198, 168, 124, 0.4);
    border-right: none;
    border-radius: 6px 0 0 6px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--hl-font-body, 'Montserrat', sans-serif);
    box-sizing: border-box;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: #c6a87c;
}

.search-input-wrapper input::placeholder {
    color: rgba(224, 200, 159, 0.6);
}

.search-input-wrapper .hl-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 0 6px 6px 0;
    min-width: auto;
}

/* ========================================
   SEARCH RESULTS
   ======================================== */
.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.results-title {
    font-size: var(--hl-text-2xl, 24px);
    font-weight: 600;
    color: var(--hl-text, #1F2D2F);
    margin: 0;
}

.search-keyword {
    color: var(--hl-accent, #C48675);
}

.results-count {
    font-size: var(--hl-text-base, 16px);
    color: var(--hl-text-muted, #66777A);
    margin: 0;
}

.results-count strong {
    color: var(--hl-accent, #C48675);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .search-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .search-row-main {
        flex-direction: column;
    }

    .search-input-wrapper input {
        border-right: 1px solid rgba(198, 168, 124, 0.4);
        border-radius: 6px;
        padding-right: 16px;
    }

    .search-input-wrapper .hl-btn {
        position: relative;
        border-radius: 6px;
        padding: 12px 24px;
        width: 100%;
        margin-top: 12px;
    }

    .search-results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .results-title {
        font-size: var(--hl-text-xl, 20px);
    }
}/**
 * Utility Classes
 * HungLoc Property Template
 * Reusable utility classes for common styling needs
 */

/* === TEXT COLORS === */
.primary-text {
    color: var(--primary);
}

.accent-text {
    color: var(--accent);
}

.gold-text {
    color: #C87057;
}

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

.text-main {
    color: var(--text-main);
}

.text-muted {
    color: var(--text-muted);
}

.text-secondary {
    color: var(--text-muted);
}

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

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

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

/* === BACKGROUND COLORS === */
.bg-gray {
    background-color: var(--background-soft);
}

.bg-primary {
    background-color: var(--primary);
}

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

.bg-teal {
    background-color: var(--primary-light);
}

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

.bg-transparent {
    background-color: transparent;
}

/* === DISPLAY UTILITIES === */
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}

.hidden {
    display: none;
}

/* === FLEX UTILITIES === */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.flex-1 {
    flex: 1;
}

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

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

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

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

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

.justify-end {
    justify-content: flex-end;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

/* === SPACING UTILITIES === */
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }
.mr-0 { margin-right: 0; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }

.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }
.pb-xl { padding-bottom: var(--space-xl); }

/* === WIDTH & HEIGHT UTILITIES === */
.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.max-w-full {
    max-width: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

/* === POSITION UTILITIES === */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

/* === OVERFLOW UTILITIES === */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

/* === CURSOR UTILITIES === */
.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

/* === OPACITY UTILITIES === */
.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-100 {
    opacity: 1;
}

/* === VISIBILITY UTILITIES === */
.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

/* === BORDER UTILITIES === */
.rounded {
    border-radius: var(--radius-md);
}

.rounded-sm {
    border-radius: var(--radius-sm);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-full {
    border-radius: var(--radius-circle);
}

.border {
    border: 1px solid #e0e0e0;
}

.border-0 {
    border: none;
}

/* === SHADOW UTILITIES === */
.shadow-none {
    box-shadow: none;
}

.shadow {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* === TEXT UTILITIES === */
.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

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

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.tracking-wide {
    letter-spacing: 1px;
}

.tracking-wider {
    letter-spacing: 2px;
}

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

.underline {
    text-decoration: underline;
}

/* === LINE HEIGHT UTILITIES === */
.leading-tight {
    line-height: 1.2;
}

.leading-normal {
    line-height: 1.5;
}

.leading-relaxed {
    line-height: 1.7;
}

/* === Z-INDEX UTILITIES === */
.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-50 {
    z-index: 50;
}

.z-100 {
    z-index: 100;
}

.z-1000 {
    z-index: 1000;
}

/* === TRANSITION UTILITIES === */
.transition {
    transition: all var(--transition-fast);
}

.transition-none {
    transition: none;
}

/* === RESPONSIVE UTILITIES === */
@media (max-width: 768px) {
    .flex-col-mobile {
        flex-direction: column;
    }

    .hidden-mobile {
        display: none;
    }

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

@media (max-width: 576px) {
    .hidden-xs {
        display: none;
    }
}/**
 * Buttons Component
 * HungLoc Property Template
 * Version: 2.0 - Unified Naming Convention
 *
 * Naming Convention: .hl-btn-{variant}
 * Using BEM-light: block__element--modifier
 */

.hl-btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    line-height: 1;
}

.hl-btn:active {
    transform: translateY(1px);
}

.hl-btn:disabled,
.hl-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.hl-btn:focus-visible {
    box-shadow: var(--focus-ring-strong);
    outline: none;
}

/* Primary Button */
.hl-btn--primary {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.hl-btn--primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

/* Secondary Button - Dark Background */
.hl-btn--secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hl-btn--secondary:hover {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Secondary Button - Light Background */
.hl-btn--secondary-light {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.hl-btn--secondary-light:hover {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Outline Button */
.hl-btn--outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.hl-btn--outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Accent Button */
.hl-btn--accent {
    background-color: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
}

.hl-btn--accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* Link Button */
.hl-btn--link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: transparent;
    color: var(--primary);
    border: none;
    padding: 0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.hl-btn--link:hover {
    color: var(--primary-dark);
}

.hl-btn--link i {
    font-size: 12px;
    transition: transform var(--transition-fast);
}

.hl-btn--link:hover i {
    transform: translateX(4px);
}

/* Button Sizes */
.hl-btn--sm {
    padding: 10px 20px;
    font-size: var(--text-xs);
}

.hl-btn--lg {
    padding: 16px 32px;
    font-size: var(--text-base);
}

/* Button with full width */
.hl-btn--full {
    width: 100%;
    text-align: center;
}/**
 * Cards Component
 * HungLoc Property Template
 * Version: 2.0 - Unified Naming Convention
 *
 * Structure:
 * 1. Card Base
 * 2. Value Card
 * 3. MV Card (Mission/Vision)
 * 4. Why Card
 * 5. Feature Box
 * 6. Process Step
 * 7. Testimonial Card
 * 8. Team Card
 * 9. News Card
 * 10. Project Card
 * 11. Contact Shell
 */

/* ========================================
   1. CARD BASE
   ======================================== */
.hl-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.hl-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   2. VALUE CARD
   ======================================== */
.hl-value-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
    border: 2px solid transparent;
}

.hl-value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.hl-value-card__icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.hl-value-card__icon i,
.hl-value-card__icon svg {
    font-size: 48px;
}

.hl-value-card__icon i {
    color: inherit;
}

.hl-value-card__icon svg {
    fill: currentColor;
}

.hl-value-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    font-family: var(--font-primary);
}

.hl-value-card__text {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* ========================================
   3. MV CARD (Mission/Vision)
   ======================================== */
.hl-mv-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
}

.hl-mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hl-mv-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(23, 156, 171, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    flex-shrink: 0;
}

.hl-mv-card__icon i {
    font-size: 24px;
}

.hl-mv-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.hl-mv-card__text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   4. WHY CARD
   ======================================== */
.hl-why-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-medium);
}

.hl-why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hl-why-card__icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    flex-shrink: 0;
}

.hl-why-card__icon i {
    font-size: 24px;
}

.hl-why-card__title {
    font-size: 18px;
    margin-bottom: var(--space-sm);
}

.hl-why-card__text {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* ========================================
   5. FEATURE BOX
   ======================================== */
.hl-feature-box {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
}

.hl-feature-box:hover {
    border-left-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.hl-feature-box__icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hl-feature-box__icon i {
    font-size: 20px;
}

.hl-feature-box__content {
    flex: 1;
}

.hl-feature-box__title {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.hl-feature-box__text {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ========================================
   6. PROCESS STEP
   ======================================== */
.hl-process-step {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
}

.hl-process-step__number {
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    z-index: 2;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px rgba(23, 156, 171, 0.2);
    transition: all var(--transition-fast);
}

.hl-process-step:hover .hl-process-step__number {
    background: var(--accent);
    color: var(--white);
}

.hl-process-step__content {
    flex: 1;
}

.hl-process-step__title {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.hl-process-step__text {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ========================================
   7. TESTIMONIAL CARD
   ======================================== */
.hl-testi-card {
    background: var(--surface);
    padding: var(--space-2xl);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.hl-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.hl-testi-card__quote {
    color: var(--accent);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.25;
    font-family: 'Montserrat', sans-serif;
}

.hl-testi-card__text {
    font-size: 15px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.hl-testi-card__author-name {
    font-family: var(--font-primary);
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--accent);
    font-weight: 600;
}

.hl-testi-card__author-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ========================================
   8. TEAM CARD
   ======================================== */
.hl-team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition), border-bottom-color var(--transition);
    border-bottom: 3px solid transparent;
}

.hl-team-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent);
}

.hl-team-card__image {
    height: 350px;
    overflow: hidden;
}

.hl-team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hl-team-card__info {
    padding: var(--space-xl) var(--space-md);
}

.hl-team-card__name {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--accent);
}

.hl-team-card__role {
    color: var(--text-muted);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.hl-team-card__socials {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.hl-team-card__socials a {
    width: 35px;
    height: 35px;
    border-radius: var(--radius-circle);
    background: var(--background-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.hl-team-card__socials a:hover {
    background: var(--primary);
    color: white;
}

.hl-team-card__achievements {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
    text-align: left;
}

.hl-team-card__achievements li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.hl-team-card__achievements li:last-child {
    border-bottom: none;
}

.hl-team-card__achievements li i {
    color: var(--primary);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ========================================
   9. NEWS CARD
   ======================================== */
.hl-news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}

.hl-news-card:hover {
    transform: translateY(-10px);
}

.hl-news-card__image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.hl-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hl-news-card:hover .hl-news-card__image img {
    transform: scale(1.1);
}

.hl-news-card__date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 13px;
}

.hl-news-card__content {
    padding: var(--space-xl);
}

.hl-news-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.hl-news-card__title:hover {
    color: var(--primary);
}

.hl-news-card__excerpt {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================
   10. PROJECT CARD
   ======================================== */
.hl-project-card {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.hl-project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.hl-project-card:focus-visible {
    outline: none;
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--focus-ring-strong);
}

.hl-project-card:hover .hl-project-card__title,
.hl-project-card:hover .hl-project-card__location-text {
    color: var(--primary-deep);
}

.hl-project-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.hl-project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hl-project-card:hover .hl-project-card__image img {
    transform: scale(1.1);
}

.hl-project-card__content {
    padding: var(--space-xl);
}

.hl-project-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--accent);
}

.hl-project-card__location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.hl-project-card__location i {
    color: var(--primary);
}

.hl-project-card__location-text {
    color: inherit;
}

/* ========================================
   11. CONTACT SHELL
   ======================================== */
.hl-contact-shell {
    display: flex;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.hl-contact-shell__info {
    background: var(--dark-bg);
    color: var(--white);
    padding: var(--space-4xl);
    flex: 1 1 400px;
}

.hl-contact-shell__info h2 {
    color: var(--white);
    font-size: 28px;
}

.hl-contact-shell__info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
}

.hl-contact-shell__info-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hl-contact-shell__info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.hl-contact-shell__info-item i {
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.hl-contact-shell__form {
    padding: var(--space-4xl);
    border-left: 1px solid rgba(255,255,255,0.15);
    flex: 1 1 540px;
    max-width: 540px;
    background: var(--white);
}

@media (max-width: 992px) {
    .hl-contact-shell {
        flex-direction: column;
    }

    .hl-contact-shell__info,
    .hl-contact-shell__form {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .hl-contact-shell__form {
        border-left: none;
        border-top: 1px solid var(--border);
    }
}/**
 * Forms Component
 * HungLoc Property Template
 * Version: 2.0 - Unified Naming Convention
 *
 * Structure:
 * 1. Form Groups (Legacy + Unified)
 * 2. Custom Select (Dropdown) - Legacy + Unified
 */

/* ========================================
   0. FORM GROUP (Legacy Alias)
   ======================================== */
.form-group {
    margin-bottom: var(--space-xl);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    background: var(--background-soft);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(23, 156, 171, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

/* ========================================
   1. FORM GROUPS (Unified)
   ======================================== */
.hl-form-group {
    margin-bottom: var(--space-xl);
}

.hl-form-group input,
.hl-form-group select,
.hl-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    background: var(--background-soft);
    box-sizing: border-box;
}

.hl-form-group input:focus,
.hl-form-group select:focus,
.hl-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(23, 156, 171, 0.1);
}

.hl-form-group input::placeholder {
    color: var(--text-muted);
}

.hl-form-group input:focus-visible,
.hl-form-group select:focus-visible,
.hl-form-group textarea:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* ========================================
   2. CUSTOM SELECT (DROPDOWN)
   ======================================== */
.hl-custom-select {
    --cs-bg: var(--background-soft);
    --cs-border: var(--border);
    --cs-text: var(--text-main);
    --cs-text-muted: var(--text-muted);
    --cs-accent: var(--primary);
    --cs-accent-light: var(--primary-light);
    --cs-shadow: var(--shadow-md);
    --cs-radius: var(--radius-sm);
    --cs-option-radius: 4px;
    --cs-z: 100;

    position: relative;
    display: block;
    width: 100%;
    min-width: 280px;
}

@media (max-width: 576px) {
    .hl-custom-select {
        min-width: 0;
    }
}

.hl-custom-select select {
    display: none;
}

.hl-custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 40px 14px 20px;
    background: var(--cs-bg);
    border: 1px solid var(--cs-border);
    border-radius: var(--cs-radius);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: var(--cs-text);
    cursor: pointer;
    user-select: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.hl-custom-select__trigger::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.hl-custom-select__trigger:empty::after {
    filter: var(--cs-placeholder-filter, none);
}

.hl-custom-select__trigger span {
    color: var(--cs-text-muted);
}

.hl-custom-select__trigger:hover {
    border-color: var(--primary);
}

.hl-custom-select__trigger:focus,
.hl-custom-select.is-open .hl-custom-select__trigger {
    outline: none;
    border-color: var(--cs-accent);
    box-shadow: 0 0 0 3px rgba(23, 156, 171, 0.15);
}

.hl-custom-select.is-open .hl-custom-select__trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.hl-custom-select__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--cs-radius);
    box-shadow: var(--cs-shadow);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    overflow: hidden;
    max-height: 280px;
    overflow-y: auto;
}

.hl-custom-select.is-open .hl-custom-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hl-custom-select.is-open.is-dropup .hl-custom-select__dropdown {
    top: auto;
    bottom: calc(100% + 6px);
    transform: translateY(0);
}

.hl-custom-select__option {
    padding: 12px 18px;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: var(--cs-text);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
    position: relative;
}

.hl-custom-select__option:first-child {
    border-radius: var(--cs-option-radius) var(--cs-option-radius) 0 0;
}

.hl-custom-select__option:last-child {
    border-radius: 0 0 var(--cs-option-radius) var(--cs-option-radius);
}

.hl-custom-select__option:hover,
.hl-custom-select__option.is-highlighted {
    background: var(--cs-accent-light);
    color: var(--cs-accent);
}

.hl-custom-select__option.is-selected {
    font-weight: 600;
    color: var(--cs-accent);
    background: var(--cs-accent-light);
}

.hl-custom-select__option.is-selected::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A9BAC' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Dark theme modifier */
.hl-custom-select--dark {
    --cs-bg: var(--primary);
    --cs-border: rgba(23, 156, 171, 0.4);
    --cs-text: var(--white);
    --cs-text-muted: rgba(255, 255, 255, 0.6);
    --cs-accent: var(--primary-light);
    --cs-accent-light: rgba(23, 156, 171, 0.15);
    --cs-shadow: var(--shadow-lg);
}

.hl-custom-select--dark .hl-custom-select__trigger {
    padding: 10px 28px 10px 0;
    border: none;
    border-bottom: 1px solid var(--cs-border);
    border-radius: 0;
    background: transparent;
    font-size: var(--text-base);
}

.hl-custom-select--dark .hl-custom-select__trigger::after {
    right: 0;
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.hl-custom-select--dark .hl-custom-select__trigger:empty::after,
.hl-custom-select--dark .hl-custom-select__trigger span {
    color: var(--cs-text-muted);
}

.hl-custom-select--dark .hl-custom-select__trigger:hover {
    border-bottom-color: var(--primary-light);
}

.hl-custom-select--dark .hl-custom-select__trigger:focus,
.hl-custom-select--dark.is-open .hl-custom-select__trigger {
    border-bottom-color: var(--primary-light);
    box-shadow: none;
}

.hl-custom-select--dark .hl-custom-select__dropdown {
    background: var(--primary);
    border: 1px solid rgba(23, 156, 171, 0.25);
    box-shadow: var(--cs-shadow);
}

.hl-custom-select--dark .hl-custom-select__option {
    color: rgba(255, 255, 255, 0.85);
}

.hl-custom-select--dark .hl-custom-select__option:hover,
.hl-custom-select--dark .hl-custom-select__option.is-highlighted {
    background: rgba(23, 156, 171, 0.15);
    color: var(--primary-light);
}

.hl-custom-select--dark .hl-custom-select__option.is-selected {
    color: var(--primary-light);
    background: rgba(23, 156, 171, 0.15);
}

.hl-custom-select--dark .hl-custom-select__option.is-selected::after {
    filter: brightness(0) invert(1);
}

.hl-custom-select--dark .hl-custom-select__trigger {
    padding-left: 0;
}

.hl-custom-select--dark .hl-custom-select__trigger::after {
    right: 2px;
}

/* ========================================
   3. CUSTOM SELECT (Legacy Alias)
   ======================================== */
.custom-select {
    --cs-bg: var(--background-soft);
    --cs-border: var(--border);
    --cs-text: var(--text-main);
    --cs-text-muted: var(--text-muted);
    --cs-accent: var(--primary);
    --cs-accent-light: var(--primary-light);
    --cs-shadow: var(--shadow-md);
    --cs-radius: var(--radius-sm);
    --cs-option-radius: 4px;
    --cs-z: 100;

    position: relative;
    display: block;
    width: 100%;
}

.custom-select select {
    display: none;
}

.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 40px 14px 20px;
    background: var(--cs-bg);
    border: 1px solid var(--cs-border);
    border-radius: var(--cs-radius);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: var(--cs-text);
    cursor: pointer;
    user-select: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.custom-select__trigger::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.custom-select__trigger:empty::after {
    filter: var(--cs-placeholder-filter, none);
}

.custom-select__trigger span {
    color: var(--cs-text-muted);
}

.custom-select__trigger:hover {
    border-color: var(--primary);
}

.custom-select__trigger:focus,
.custom-select.is-open .custom-select__trigger {
    outline: none;
    border-color: var(--cs-accent);
    box-shadow: 0 0 0 3px rgba(23, 156, 171, 0.15);
}

.custom-select.is-open .custom-select__trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--cs-radius);
    box-shadow: var(--cs-shadow);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    overflow: hidden;
    max-height: 280px;
    overflow-y: auto;
}

.custom-select.is-open .custom-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select.is-open.is-dropup .custom-select__dropdown {
    top: auto;
    bottom: calc(100% + 6px);
    transform: translateY(0);
}

.custom-select__option {
    padding: 12px 18px;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: var(--cs-text);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
    position: relative;
}

.custom-select__option:first-child {
    border-radius: var(--cs-option-radius) var(--cs-option-radius) 0 0;
}

.custom-select__option:last-child {
    border-radius: 0 0 var(--cs-option-radius) var(--cs-option-radius);
}

.custom-select__option:hover,
.custom-select__option.is-highlighted {
    background: var(--cs-accent-light);
    color: var(--cs-accent);
}

.custom-select__option.is-selected {
    font-weight: 600;
    color: var(--cs-accent);
    background: var(--cs-accent-light);
}

.custom-select__option.is-selected::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A9BAC' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Sidebar Form Custom Select Override */
.sidebar-form .custom-select {
    margin-bottom: 12px;
}

.sidebar-form .custom-select__trigger {
    padding: 14px 40px 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fff;
}

.sidebar-form .custom-select__trigger:hover {
    border-color: var(--primary);
}

.sidebar-form .custom-select.is-open .custom-select__trigger {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(23, 156, 171, 0.1);
}

.sidebar-form .custom-select__dropdown {
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}/**
 * Icons
 * HungLoc Property Template
 */

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}/**
 * Utilities Component
 * HungLoc Property Template
 * Version: 2.0 - Unified Naming Convention
 *
 * Structure:
 * 1. Badges
 * 2. Section Header
 * 3. Info Item
 * 4. Utility Card
 * 5. Payment Card
 * 6. Text Utilities
 * 7. Background Utilities
 * 8. Display Utilities
 * 9. Spacing Utilities
 */

/* ========================================
   1. BADGES
   ======================================== */
.hl-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hl-badge--hot {
    background: var(--danger);
    color: var(--white);
}

.hl-badge--new {
    background: var(--success);
    color: var(--white);
}

.hl-badge--primary {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   2. SECTION HEADER
   ======================================== */
.hl-section-header {
    margin-bottom: var(--space-2xl);
}

.hl-section-header__badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.hl-section-header__badge--light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.hl-section-header__title {
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    /* color: white; */
}

.hl-section-header__title--light {
    color: var(--white);
}

.hl-section-header__subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    margin-top: var(--space-md);
}

/* ========================================
   3. INFO ITEM
   ======================================== */
.hl-info-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hl-info-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.hl-info-item__text {
    color: inherit;
}

/* ========================================
   4. UTILITY CARD
   ======================================== */
.hl-utility-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.hl-utility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.hl-utility-card__icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary);
    font-size: 28px;
}

.hl-utility-card__title {
    font-size: 16px;
    margin-bottom: var(--space-sm);
}

.hl-utility-card__text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   UNIFIED FEATURE CARD (Why Choose / Utilities)
   ======================================== */
.hl-feature-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-medium);
}

.hl-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.hl-feature-card__icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary);
    font-size: 26px;
    transition: all var(--transition-medium);
}

.hl-feature-card:hover .hl-feature-card__icon {
    background: var(--primary);
    color: var(--white);
}

.hl-feature-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.hl-feature-card__text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

/* Dark background variant */
.hl-feature-card--dark {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.hl-feature-card--dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.hl-feature-card--dark .hl-feature-card__icon {
    background: rgba(23, 156, 171, 0.15);
    color: var(--primary);
}

.hl-feature-card--dark:hover .hl-feature-card__icon {
    background: var(--primary);
    color: var(--white);
}

.hl-feature-card--dark .hl-feature-card__title {
    color: var(--white);
}

.hl-feature-card--dark .hl-feature-card__text {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   FEATURES GRID (Why Choose / Utilities Grid)
   ======================================== */
.features-grid,
.utilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

@media (max-width: 992px) {
    .features-grid,
    .utilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   5. PAYMENT CARD
   ======================================== */
.hl-payment-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.hl-payment-card__icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary);
    font-size: 24px;
}

.hl-payment-card__title {
    font-size: 16px;
    margin-bottom: var(--space-sm);
}

.hl-payment-card__text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   6. TEXT UTILITIES
   ======================================== */
.hl-text-gold {
    color: #C48675;
}

.hl-text-primary {
    color: var(--primary);
}

.hl-text-accent {
    color: var(--accent);
}

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

.hl-text-left {
    text-align: left;
}

.hl-text-right {
    text-align: right;
}

/* ========================================
   7. BACKGROUND UTILITIES
   ======================================== */
.hl-bg-gray {
    background-color: var(--background-soft);
}

.hl-bg-primary {
    background-color: var(--dark-bg);
}

.hl-bg-white {
    background-color: var(--white);
}

/* ========================================
   8. DISPLAY UTILITIES
   ======================================== */
.hl-hidden {
    display: none;
}

.hl-block {
    display: block;
}

.hl-inline {
    display: inline;
}

.hl-inline-block {
    display: inline-block;
}

.hl-flex {
    display: flex;
}

.hl-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hl-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hl-w-full {
    width: 100%;
}

/* ========================================
   9. SPACING UTILITIES
   ======================================== */
.hl-m-0 {
    margin: 0;
}

.hl-mt-0 {
    margin-top: 0;
}

.hl-mb-0 {
    margin-bottom: 0;
}

.hl-p-0 {
    padding: 0;
}

.hl-pt-0 {
    padding-top: 0;
}

.hl-pb-0 {
    padding-bottom: 0;
}
/* ===== PARTNER PROJECTS ===== */

/**
 * Partner Projects Slider
 * HungLoc Property Template
 */

/* === PARTNER PROJECTS === */
.partner-projects {
    padding: var(--space-3xl) 0;
}

.partner-projects .section-badge {
    background-color: rgba(196, 133, 117, 0.2);
    color: var(--gold);
}

.partner-projects .section-title {
    color: var(--white);
}

/* === HL-PROJECT-CARD IN SLIDER === */
.partner-project-slider .hl-project-card {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-project-slider .hl-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.partner-project-slider .hl-project-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.partner-project-slider .hl-project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.partner-project-slider .hl-project-card:hover .hl-project-card__image img {
    transform: scale(1.05);
}

.partner-project-slider .hl-project-card__content {
    padding: 20px;
    background: #fff;
}

.partner-project-slider .hl-project-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.partner-project-slider .hl-project-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.partner-project-slider .hl-project-card__location i {
    color: var(--gold);
}

/* === LEGACY STYLES (for reference) === */
.partner-project-slider {
    position: relative;
    margin-top: var(--space-2xl);
    padding-bottom: 60px;
}

.partner-project-slider .swiper-button-prev,
.partner-project-slider .swiper-button-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.partner-project-slider .swiper-button-prev {
    left: 10px !important;
}

.partner-project-slider .swiper-button-next {
    right: 10px !important;
}

.partner-project-slider .swiper-button-prev::after,
.partner-project-slider .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.partner-project-slider .swiper-button-prev:hover,
.partner-project-slider .swiper-button-next:hover {
    background: var(--gold);
}

.partner-project-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.ppc-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-medium);
}

.partner-project-card:hover .ppc-image {
    transform: scale(1.05);
}

.ppc-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: var(--white);
}

.ppc-developer {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.ppc-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    line-height: 1.3;
    color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.ppc-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.ppc-location i {
    color: var(--gold);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .partner-project-card {
        height: 350px;
    }

    .ppc-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .partner-project-card {
        height: 300px;
    }

    .ppc-title {
        font-size: 16px;
    }

    .ppc-overlay {
        padding: var(--space-lg);
    }
}
/* ========================================
   NEWS PAGE STYLES
   ======================================== */

/* News Category Nav */
.news-cat-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.news-cat-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-cat-list {
    display: flex;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-cat-list li a {
    display: block;
    padding: 16px 20px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.news-cat-list li a:hover,
.news-cat-list li a.active {
    color: #0d1b2a;
    border-bottom-color: #c48675;
}

.news-cat-search .search-form {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
}

.news-cat-search input {
    background: transparent;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    width: 180px;
    outline: none;
}

.news-cat-search button {
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: #888;
    cursor: pointer;
}

/* News Layout */
.news-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding: 48px 0;
}

.news-main-column {
    flex: 1;
}

.news-sidebar {
    width: 340px;
    flex-shrink: 0;
}

/* Lead Story */
.lead-story-section {
    margin-bottom: 40px;
}

.lead-article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.lead-article-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px;
}

.lead-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lead-article-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 48px;
}

.article-category-label {
    position: absolute;
    top: 16px;
    left: 16px;
}

.article-category-label a {
    background: #c48675;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-decoration: none;
}

.lead-article-content {
    padding: 0;
}

.lead-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.lead-title a {
    color: #0d1b2a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lead-title a:hover {
    color: #c48675;
}

.lead-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.lead-meta .author {
    font-weight: 600;
    color: #0d1b2a;
}

.lead-meta .separator {
    color: #ddd;
}

.lead-meta .read-time i {
    margin-right: 4px;
}

.lead-summary {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.lead-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c48675;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.btn-read-more:hover {
    gap: 12px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #888;
}

.article-share a {
    color: #888;
    transition: color 0.2s ease;
}

.article-share a:hover {
    color: #c48675;
}

/* Sub Lead Stories */
.sub-leads {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.sub-article {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sub-article-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
}

.sub-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-article-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 32px;
}

.article-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #c48675;
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
}

.sub-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

.sub-meta a {
    color: #c48675;
    font-weight: 500;
}

.sub-article h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.sub-article h3 a {
    color: #0d1b2a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sub-article h3 a:hover {
    color: #c48675;
}

/* Latest News Section */
.latest-news-section {
    margin-bottom: 48px;
    padding: 24px 0;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 24px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.heading-text {
    font-size: 20px;
    font-weight: 700;
    color: #0d1b2a;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item .news-time {
    flex-shrink: 0;
    width: 50px;
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.news-list-content {
    flex: 1;
}

.news-list-meta {
    margin-bottom: 4px;
}

.category-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #f0ebe6;
    color: #c48675;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
}

.news-list-item h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.news-list-item h4 a {
    color: #0d1b2a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-list-item h4 a:hover {
    color: #c48675;
}

/* Articles Grid */
.articles-section {
    margin-bottom: 40px;
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.news-card-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.news-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-card-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 32px;
}

.thumb-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #0d1b2a;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}

.news-card-body {
    padding: 16px;
}

.news-card-body .article-cat {
    display: inline-block;
    margin-bottom: 8px;
    color: #c48675;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-card-body h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
}

.news-card-body h4 a {
    color: #0d1b2a;
    text-decoration: none;
}

.news-card-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #888;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

/* Pagination */
.content-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.content-pagination .page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 6px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.content-pagination .page-btn:hover,
.content-pagination .page-btn.active {
    background: #0d1b2a;
    border-color: #0d1b2a;
    color: #fff;
}

.content-pagination .page-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.page-ellipsis {
    color: #888;
}

/* Sidebar */
.news-sidebar .widget {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: #f8f9fa;
    font-size: 15px;
    font-weight: 700;
    color: #0d1b2a;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.widget-title i {
    color: #c48675;
}

.new-posts-list {
    padding: 16px;
}

.new-post-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.new-post-item:last-child {
    border-bottom: none;
}

.new-post-thumb {
    width: 70px;
    height: 50px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
}

.new-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-post-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 18px;
}

.new-post-content {
    flex: 1;
}

.new-post-content a {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #0d1b2a;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.new-post-content a:hover {
    color: #c48675;
}

.new-post-time {
    font-size: 12px;
    color: #888;
}

/* Most Read */
.most-read-list {
    list-style: none;
    padding: 16px;
    margin: 0;
    counter-reset: most-read;
}

.most-read-list li {
    position: relative;
    padding: 12px 0 12px 32px;
    border-bottom: 1px solid #f0f0f0;
    counter-increment: most-read;
}

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

.most-read-list li::before {
    content: counter(most-read);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #c48675;
}

.most-read-list li a {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #0d1b2a;
    text-decoration: none;
}

.most-read-list li a:hover {
    color: #c48675;
}

.view-count {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.view-count i {
    margin-right: 4px;
}

/* Ads Placeholder */
.widget-ads {
    background: #f8f9fa;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ads-placeholder {
    color: #aaa;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        width: 100%;
    }

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

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

@media (max-width: 768px) {
    .news-cat-list {
        display: none;
    }

    .sub-leads,
    .news-cards-grid {
        grid-template-columns: 1fr;
    }

    .lead-title {
        font-size: 22px;
    }

    .lead-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ========================================
   ARTICLE DETAIL STYLES
   ======================================== */

/* Article Hero */
.article-hero {
    position: relative;
    height: 450px;
    display: flex;
    align-items: flex-end;
    margin-top: -80px;
}

.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.article-hero-bg--default {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

.article-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 48px;
}

.article-hero-info {
    max-width: 800px;
}

.article-hero .category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #c48675;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.article-hero .article-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.article-hero .article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.article-hero .article-meta i {
    margin-right: 4px;
}

.article-hero .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 48px 0;
}

.article-content-wrapper {
    max-width: 100%;
}

.article-sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* Article Summary */
.article-summary {
    background: #f8f9fa;
    padding: 24px;
    border-left: 4px solid #c48675;
    border-radius: 0 8px 8px 0;
    margin-bottom: 32px;
}

.article-summary p {
    font-size: 18px;
    line-height: 1.7;
    color: #0d1b2a;
    margin: 0;
    font-weight: 500;
}

/* Article Body */
.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #1F2D2F;
}

.article-body h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0d1b2a;
    margin: 40px 0 20px;
}

.article-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0d1b2a;
    margin: 30px 0 16px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.article-body figure {
    margin: 32px 0;
}

.article-body figure img {
    margin: 0;
}

.article-body figcaption {
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: #f8f9fa;
    border-left: 4px solid #c48675;
    font-style: italic;
}

.article-body blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #888;
    font-style: normal;
    font-weight: 500;
}

.article-highlight {
    background: #f0ebe6;
    padding: 20px 24px;
    border-radius: 8px;
    margin: 24px 0;
    list-style: none;
}

.article-highlight li {
    padding: 8px 0;
    border-bottom: 1px solid #e0dcd4;
}

.article-highlight li:last-child {
    border-bottom: none;
}

/* Article Footer */
.article-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.article-tags {
    margin-bottom: 20px;
}

.tags-label {
    font-weight: 600;
    margin-right: 12px;
}

.tag-link {
    display: inline-block;
    padding: 4px 12px;
    background: #f8f9fa;
    color: #555;
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
    margin-right: 8px;
    transition: all 0.2s ease;
}

.tag-link:hover {
    background: #c48675;
    color: #fff;
}

.article-share-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-share-footer > span {
    font-weight: 600;
}

.share-btn {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #555;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: #c48675;
    color: #fff;
}

/* Related Articles */
.related-articles {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related-title {
    font-size: 20px;
    font-weight: 700;
    color: #0d1b2a;
    margin: 0 0 24px;
}

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

.related-item {
    margin-bottom: 0;
}

.related-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #f8f9fa;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 24px;
}

.related-item h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.related-item h4 a {
    color: #0d1b2a;
    text-decoration: none;
}

.related-item h4 a:hover {
    color: #c48675;
}

/* Article Sidebar */
.article-sidebar .widget {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.featured-list {
    padding: 16px;
}

.featured-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.featured-item:last-child {
    border-bottom: none;
}

.featured-item a {
    font-size: 14px;
    font-weight: 500;
    color: #0d1b2a;
    text-decoration: none;
    line-height: 1.4;
}

.featured-item a:hover {
    color: #c48675;
}

/* Sticky Widget */
.widget-sticky {
    position: sticky;
    top: 100px;
}

/* Responsive */
@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .article-hero {
        height: 350px;
    }

    .article-hero .article-title {
        font-size: 26px;
    }

    .article-hero .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .article-body {
        font-size: 15px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

