:root {
    /* Core Colors */
    --primary: #0A0D14; /* Deep Premium Slate/Black */
    --primary-light: #121824;
    --accent: #C5A059; /* Classic Gold */
    --accent-hover: #D4AF37; /* Bright Metallic Gold */
    --accent-light: rgba(197, 160, 89, 0.08);
    
    /* Luxury Gradients */
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --gold-glow: 0 8px 32px rgba(197, 160, 89, 0.25);
    --dark-gradient: linear-gradient(135deg, #121824 0%, #0A0D14 100%);
    --glass-bg: rgba(10, 13, 20, 0.75);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --zalo-gradient: linear-gradient(135deg, #0088FF 0%, #0055D4 100%);
    --shine-gradient: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    
    /* Text Colors */
    --text-main: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --text-gold: #D4AF37;
    
    /* Backgrounds */
    --bg-light: #F8F6F1; /* Warm luxury cream background */
    --bg-dark: #0A0D14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-light: #F2EFE7; /* Warm luxury cream for light cards */
    
    /* Spacing & Borders */
    --section-gap: 120px; /* More padding and breathing space */
    --border-radius: 20px; /* High-end iOS corners */
    --border-radius-sm: 10px;
    --border-radius-lg: 28px;
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); /* Quick & responsive transition */
}

/* Base Styles */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 992px) {
    body {
        cursor: none; /* Hide default cursor on desktop for custom cursor */
    }
}

/* Custom Cursor - Luxury Double Ring */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    display: none;
}

.custom-cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
    transition: width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
    display: none;
}

@media (min-width: 992px) {
    .custom-cursor, .custom-cursor-outline {
        display: block;
    }
}

body.hovering-clickable .custom-cursor {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
}

body.hovering-clickable .custom-cursor-outline {
    width: 48px;
    height: 48px;
    border-color: transparent;
    background-color: rgba(197, 160, 89, 0.2);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Layout Utilities */
.gap { padding: var(--section-gap) 0; }
.no-top { padding-top: 0; }
.no-bottom { padding-bottom: 0; }

.container {
    max-width: 1200px;
}

/* 1. Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.slideUp {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--accent);
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.top-bar .contact-info i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* 2. Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden; /* For Ken Burns */
}

/* Ken Burns Effect Background */
.hero-bg-zoom {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.5));
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* Private Badge Hero */
.private-badge-wrap {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.private-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(19, 24, 36, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.28);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    gap: 8px;
}

/* Pulsing security dot */
.badge-dot {
    width: 6px;
    height: 6px;
    background-color: #00ff66;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #00ff66;
    animation: badge-dot-pulse 1.8s infinite ease-in-out;
}

@keyframes badge-dot-pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 255, 102, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0);
    }
}

/* Trust Strip Grid - 3 columns, 2 rows */
.trust-strip-grid {
    margin-top: 30px;
}

.trust-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 5px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.trust-grid-item:hover {
    background: rgba(197, 160, 89, 0.05);
    border-color: rgba(197, 160, 89, 0.2);
    transform: translateY(-2px);
}

.trust-grid-item .trust-val {
    font-size: 1.25rem;
    font-weight: 750;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 4px;
}

.trust-grid-item .trust-val i {
    font-size: 0.95rem;
    color: var(--accent);
}

.trust-grid-item .trust-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

@media (min-width: 576px) {
    .trust-grid-item {
        padding: 15px 10px;
        background: transparent;
        border: none;
        border-radius: 0;
    }
    .trust-grid-item:hover {
        background: transparent;
        transform: none;
    }
    .trust-grid-item:not(:first-child) {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
    .trust-grid-item .trust-val {
        font-size: 1.6rem;
    }
    .trust-grid-item .trust-label {
        font-size: 0.8rem;
    }
}

/* Mobile Hotline Pill on Header */
.mobile-hotline-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white !important;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 30px;
    transition: var(--transition);
}

.mobile-hotline-pill:active {
    background: var(--accent);
    color: var(--primary) !important;
    border-color: var(--accent);
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    line-height: 1.15;
    color: white;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero-text h2 span.text-reveal.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-reveal-wrap {
    overflow: hidden;
    display: inline-block;
}

.text-reveal {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: textUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes textUp {
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Custom hero text styles loaded above */

.hero-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* 3. Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shine-gradient);
    transition: none;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Scroll Reveal */
/* Scroll Reveal - Tối ưu nhẹ nhàng kiểu Native */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    will-change: opacity, transform;
}

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

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

.btn.outline:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Mega Pulse CTA - Đã tinh giản để tăng tính cao cấp */
.btn-pulse {
    position: relative;
    transition: var(--transition);
}

.btn-pulse:hover {
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.25);
}

/* 4. Section Headings */
.heading {
    text-align: center;
    margin-bottom: 60px;
}

.heading span {
    display: block;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.heading h2 {
    font-size: 3rem;
    position: relative;
    padding-bottom: 20px;
}

.heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

/* 5. Service Timeline & Grid - Private App style */
.timeline-card {
    background: #FDFBF7;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 40px 30px;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-card:hover {
    transform: translateY(-8px);
    background: #FAF6ED;
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.08);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.3) 0%, rgba(197, 160, 89, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: all 0.4s ease;
}

.timeline-card:hover .step-num {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.08) translateY(-2px);
}

.timeline-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

@media (min-width: 992px) {
    .timeline-grid {
        position: relative;
    }
    .timeline-grid::after {
        content: '';
        position: absolute;
        top: 35%;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(to right, rgba(197, 160, 89, 0.02) 0%, rgba(197, 160, 89, 0.35) 50%, rgba(197, 160, 89, 0.02) 100%);
        z-index: 0;
        pointer-events: none;
    }
}

@media (max-width: 992px) {
    /* Vertical Timeline on Mobile */
    .timeline-grid {
        position: relative;
    }
    
    .timeline-grid::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 35px;
        width: 2px;
        height: calc(100% - 80px);
        background: rgba(197, 160, 89, 0.2);
        z-index: 1;
    }
    
    .timeline-card {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 20px 20px 15px;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .timeline-card:hover {
        transform: none;
    }
    
    .step-num {
        width: 42px;
        height: 42px;
        background: white;
        border: 2px solid var(--accent);
        border-radius: 50%;
        color: var(--accent);
        font-size: 1.1rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
        z-index: 2;
        flex-shrink: 0;
    }
    
    .timeline-card-body {
        background: #FDFBF7;
        border: 1px solid rgba(197, 160, 89, 0.15);
        padding: 20px;
        border-radius: var(--border-radius);
        width: 100%;
        box-shadow: none;
    }
}

/* 6. Appraisal Team */
#team {
    background-color: var(--bg-dark);
    color: white;
}

#team .heading h2 {
    color: white;
}

.team-text {
    background: rgba(255, 255, 255, 0.02);
    padding: 35px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.team-text:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.team-img {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(197, 160, 89, 0.4);
    transition: var(--transition);
}

.team-text:hover .team-img img {
    border-color: var(--accent);
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.35);
}

.team-text h5 {
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-text span {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1.5rem;
}

.team-text a.text-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent) !important;
    transition: var(--transition);
}

.team-text a.text-accent:hover {
    background: var(--accent);
    color: var(--primary) !important;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* 7. Stats */
/* .count-style removed, integrated into Trust Strip */

/* 8. Accordion (FAQ) */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: #FDFBF7;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.accordion-item.active {
    background: #FAF6ED;
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.05);
}

.accordion-item .heading {
    padding: 20px 30px;
    margin: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

.accordion-item .icon {
    margin-right: 15px;
    position: relative;
    width: 20px;
    height: 20px;
}

.accordion-item .icon::before,
.accordion-item .icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    transition: var(--transition);
}

.accordion-item .icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-item .icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.accordion-item.active .icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-item .content {
    padding: 0 30px 25px 65px;
    display: none;
}

/* 9. Footer */
footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

footer .logo img {
    margin-bottom: 30px;
}

footer h5 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 25px;
}

footer p, footer span {
    color: rgba(255, 255, 255, 0.6);
}

footer a:hover {
    color: var(--accent);
}

.footer-end {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* 10. Floating Contact Mega Widget */
.float-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-contact a {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 5px;
    padding-right: 20px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: var(--transition);
    overflow: hidden;
}

.float-contact a:hover {
    transform: translateX(10px);
}

.float-contact .icon-wrap {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    animation: pulse-glow 2s infinite;
}

.float-contact .icon-wrap img {
    width: 30px;
}

.float-contact .contact-text {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-left: 15px;
    white-space: nowrap;
}

/* 11. Go to top */
#progress {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: none;
    z-index: 1000;
    cursor: pointer;
    background: white;
}

#progress-value {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

/* 12. Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.page-loaded .preloader {
    opacity: 0;
    visibility: hidden;
}

.loading-text span {
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Mobile App Navigation - Native Premium Style */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 13, 20, 0.88);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1001;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    list-style: none;
    margin: 0;
    padding: 0 10px;
}

.mobile-nav li {
    flex: 1 1 0%;
    width: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.mobile-nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.65rem;
    font-weight: 600;
    gap: 4px;
    position: relative;
    transition: var(--transition);
}

.mobile-nav li a i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.mobile-nav li.active a {
    color: var(--accent);
}

.mobile-nav li.active a i {
    color: var(--accent);
    transform: translateY(-2px);
}

/* Center Highlight Tab - Floating Plus Button */
.mobile-nav li.highlight-center {
    position: relative;
    top: -15px;
}

.mobile-nav li.highlight-center a {
    gap: 2px;
}

.mobile-nav li.highlight-center a i {
    background: var(--gold-gradient);
    color: var(--primary) !important;
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
    border: 3px solid rgba(10, 13, 20, 0.85);
    z-index: 2;
    transition: var(--transition);
}

.mobile-nav li.highlight-center a:active i {
    transform: scale(0.9) translateY(0);
}

.mobile-nav li.highlight-center a span {
    color: var(--accent);
    font-weight: 700;
    margin-top: 2px;
}

/* Pulse ring animation around the center button */
.nav-pulse-ring {
    position: absolute;
    top: 27px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: navPulse 2s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes navPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.mobile-nav ul li a span {
    font-weight: 600;
}

/* Interactive Valuation Card */
.interactive-valuation-card {
    background: rgba(10, 13, 20, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.interactive-valuation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.card-glass-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.card-glass-header h5 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.form-step-label {
    display: block;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.brand-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.brand-select-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 12px 6px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.brand-select-item span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.brand-select-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.brand-select-item.active {
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.25);
}

.brand-select-item.active span {
    color: var(--accent-hover);
}

.condition-select-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.condition-select-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 14px 18px;
    cursor: pointer;
    transition: var(--transition);
}

.condition-select-item .dot-indicator {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    transition: var(--transition);
}

.condition-select-item.active .dot-indicator {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.condition-select-item h6 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.condition-select-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-bottom: 0;
}

.condition-select-item:hover {
    border-color: rgba(197, 160, 89, 0.5);
}

.condition-select-item.active {
    background: rgba(197, 160, 89, 0.08);
    border-color: var(--accent);
}

.summary-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 18px;
    margin-bottom: 12px;
}

.summary-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.summary-item strong {
    color: var(--accent);
}

.btn-step-prev {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-step-prev:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Bottom Sheet Mobile Native Modal */
.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.bottom-sheet-overlay.show {
    opacity: 1;
    visibility: visible;
}

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 85vh;
    background: rgba(18, 24, 36, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
    z-index: 1003;
    padding: 16px 20px calc(30px + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 -15px 40px rgba(0,0,0,0.4);
}

.bottom-sheet.show {
    transform: translateY(0);
}

.bottom-sheet-drag-handle {
    width: 40px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 0 auto 15px;
}

.bottom-sheet-header {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.bottom-sheet-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.bottom-sheet-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.sheet-actions-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sheet-action-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius);
    padding: 16px 18px;
    text-decoration: none;
    transition: var(--transition);
}

.sheet-action-item:active {
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.08);
}

.sheet-action-item .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

.sheet-action-item .icon-box.zalo-bg {
    background: var(--zalo-gradient);
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.25);
}

.sheet-action-item .icon-box.call-bg {
    background: var(--red-gradient);
    box-shadow: 0 4px 15px rgba(255, 61, 0, 0.25);
}

.sheet-action-item .icon-box.widget-bg {
    background: var(--gold-gradient);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
}

.sheet-action-item .action-details {
    flex-grow: 1;
}

.sheet-action-item .action-details h6 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sheet-action-item .action-details p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.sheet-action-item .arrow-icon {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
    transition: var(--transition);
    margin-left: auto;
}

.sheet-action-item:hover .arrow-icon {
    color: var(--accent);
    transform: translateX(4px);
}

/* App Drawer (Mobile Sidebar Menu) */
.app-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.app-drawer-overlay.show {
    opacity: 1;
    visibility: visible;
}

.app-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: rgba(18, 24, 36, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1003;
    padding: 30px 24px;
    transform: translateX(100%);
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.app-drawer.show {
    transform: translateX(0);
}

.app-drawer-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.drawer-menu-links {
    margin-bottom: 40px;
}

.drawer-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.drawer-link:hover, .drawer-link:active {
    color: var(--accent);
    padding-left: 8px;
}

.drawer-contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 20px;
}

/* Brand Grid - Luxury Directory Style */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.brand-grid-item {
    background: #FDFBF7;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 24px 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: none;
}

.brand-grid-item span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 4px;
    transition: var(--transition);
}

.brand-grid-item .brand-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.brand-grid-item:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.08);
    background: #FAF6ED;
}

.brand-grid-item:hover span {
    color: var(--accent-hover);
}

@media (max-width: 992px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .brand-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 10px 15px 20px;
        gap: 10px;
        scrollbar-width: none; /* Hide scrollbar Firefox */
        -webkit-overflow-scrolling: touch;
    }
    .brand-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }
    .brand-grid-item {
        flex: 0 0 auto;
        scroll-snap-align: start;
        padding: 8px 20px;
        border-radius: 50px;
        background: #F8F6F1;
        border: 1px solid rgba(197, 160, 89, 0.15);
    }
    .brand-grid-item span {
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-bottom: 0;
    }
}

/* Trust Card - Luxury private app style */
.trust-card {
    background: #FDFBF7;
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 40px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trust-card:hover {
    transform: translateY(-6px);
    background: #FAF6ED;
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.08);
}

.trust-card-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 22px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: rgba(197, 160, 89, 0.06);
    border-radius: 50%;
}

.trust-card:hover .trust-card-icon {
    background: var(--accent);
    color: white;
    transform: scale(1.05);
}

.trust-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary);
    margin-bottom: 12px;
}

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

/* Responsive & Native App Polish */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 130px 0 100px;
    }
    .hero-text h2 { 
        font-size: 3.2rem; 
        text-align: center;
    }
    .hero-text p {
        text-align: center;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
    }
    nav { display: none; }
    .heading h2 { font-size: 2.5rem; }
    .mobile-nav { display: block !important; }
    .float-contact { display: none !important; } /* Hide desktop widgets on mobile */
    
    /* Giao dịch 3 bước & Cards trên di động */
    .gap { padding: 70px 0; }
    
    .expert-actions {
        justify-content: center !important;
    }
    #team .heading {
        text-align: center !important;
    }
    #team .heading h2 {
        text-align: center !important;
    }
    .valuation-service-text {
        text-align: center !important;
    }
    .valuation-service-text ul {
        display: inline-block;
        text-align: left;
    }
    .valuation-service-text .btn {
        margin: 10px auto 0 !important;
        display: inline-flex !important;
    }
}

@media (max-width: 768px) {
    .hero-text h2 { font-size: 2.2rem; }
    .hero-text p { font-size: 1rem; }
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .hero-btns .ms-3 {
        margin-left: 0 !important;
    }
    .hero-btns .btn {
        width: 100%;
        padding: 14px 20px;
    }
    .heading h2 { font-size: 1.85rem; }
    .top-bar .logo img { height: 38px; }
    
    /* 2x2 trust card grid adjustments on mobile */
    .trust-card {
        padding: 24px 12px !important;
        border-radius: var(--border-radius) !important;
    }
    .trust-card-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.4rem !important;
        margin-bottom: 12px !important;
    }
    .trust-card h5 {
        font-size: 0.95rem !important;
        margin-bottom: 6px !important;
    }
    .trust-card p {
        font-size: 0.76rem !important;
        line-height: 1.45 !important;
    }
    
    /* Bottom Sheet Stepper Navigation button centering */
    .form-navigation {
        justify-content: center !important;
        gap: 10px !important;
    }
    .form-navigation button {
        margin: 0 !important;
        flex: 1 !important;
        text-align: center !important;
    }
    
    /* Căn chỉnh lại Widget định giá trên mobile nhỏ */
    .interactive-valuation-card {
        padding: 20px 15px;
    }
    .brand-select-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .brand-select-item {
        padding: 10px 4px;
    }
    .brand-select-item span {
        font-size: 0.8rem;
    }
    
    /* 2x2 stats grid adjustments on mobile */
    .count-style {
        padding: 20px 10px !important;
        border-radius: var(--border-radius) !important;
        margin-bottom: 10px !important;
    }
    .count-style h2 {
        font-size: 2rem !important;
        margin-bottom: 2px !important;
    }
    .count-style span {
        font-size: 0.72rem !important;
        letter-spacing: 0.3px !important;
    }
}

@media (max-width: 480px) {
    .brand-select-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Giả lập phản hồi xúc giác cho các tương tác kiểu native */
a:active, button:active, .btn:active, .brand-select-item:active, .condition-select-item:active, .sheet-action-item:active {
    transform: scale(0.96) !important;
    transition: transform 0.1s ease !important;
}

/* Toast Thông báo */
.toast-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    background: rgba(10, 13, 20, 0.95);
    border: 1px solid var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10005;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    text-align: center;
    white-space: nowrap;
}

/* Hiệu ứng nháy sáng viền khi chuyển đến Widget từ Bottom Sheet */
.pulse-glow-highlight {
    animation: borderHighlight 2s ease-in-out;
}

@keyframes borderHighlight {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }
    50% {
        border-color: var(--accent);
        box-shadow: 0 0 30px rgba(197, 160, 89, 0.5);
    }
}

/* Mobile Premium App Header Tuning */
@media (max-width: 992px) {
    header {
        padding: 10px 0 !important;
        height: 64px !important;
        background: rgba(10, 13, 20, 0.85) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        display: flex !important;
        align-items: center !important;
    }
    header .top-bar {
        width: 100%;
    }
    header .logo img {
        height: 32px !important;
    }
    .mobile-hotline-pill {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        padding: 6px 14px !important;
        font-size: 0.75rem !important;
    }
}

/* Mobile Quick Valuation Card Styles */
.mobile-valuation-card {
    background: rgba(18, 24, 36, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--border-radius-lg) !important;
    padding: 24px 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

.brand-chips-scroll {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 6px 0 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.brand-chips-scroll::-webkit-scrollbar {
    display: none;
}

.brand-chip {
    flex: 0 0 auto;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.brand-chip.active {
    background: rgba(197, 160, 89, 0.18);
    border-color: var(--accent);
    color: var(--accent-hover);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.25);
}

.condition-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.condition-chip {
    flex: 1 1 calc(33.33% - 6px);
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    text-align: center;
}

@media (max-width: 480px) {
    .condition-chip {
        flex: 1 1 100%;
    }
}

.condition-chip.active {
    background: rgba(197, 160, 89, 0.18);
    border-color: var(--accent);
    color: var(--accent-hover);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.25);
}

.form-step-label-small {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bottom Sheet Form & Stepper Styles */
.sheet-step {
    transition: opacity 0.3s ease;
}

.sheet-brand-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 12px 6px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.sheet-brand-item span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.sheet-brand-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.sheet-brand-item.active {
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.25);
}

.sheet-brand-item.active span {
    color: var(--accent-hover);
}

.sheet-cond-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: var(--transition);
}

.sheet-cond-item .dot-indicator {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    transition: var(--transition);
}

.sheet-cond-item.active .dot-indicator {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.sheet-cond-item h6 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sheet-cond-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-bottom: 0;
}

.sheet-cond-item:hover {
    border-color: rgba(197, 160, 89, 0.5);
}

.sheet-cond-item.active {
    background: rgba(197, 160, 89, 0.08);
    border-color: var(--accent);
}

/* Luxury Shimmer, Glow & Shine Effects */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: sweep-shimmer 6s infinite ease-in-out;
}

/* Subtle gold reflection sweep */
.gold-shimmer-effect {
    position: relative;
    overflow: hidden;
}

.gold-shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 65%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(197, 160, 89, 0) 0%, 
        rgba(255, 223, 137, 0.25) 30%, 
        rgba(197, 160, 89, 0.4) 50%, 
        rgba(255, 223, 137, 0.25) 70%, 
        rgba(197, 160, 89, 0) 100%
    );
    transform: skewX(-30deg);
    animation: sweep-shimmer 6s infinite ease-in-out;
    animation-delay: 1.5s;
    pointer-events: none;
}

@keyframes sweep-shimmer {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

/* Luxury Glow Hover states for elements */
.luxury-glow-hover {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-glow-hover:hover {
    border-color: rgba(197, 160, 89, 0.45) !important;
    box-shadow: 0 12px 35px rgba(197, 160, 89, 0.15), 0 0 15px rgba(197, 160, 89, 0.05) !important;
    transform: translateY(-3px);
}

/* Subtle pulsing text glow for badges */
.gold-text-glow-slow {
    animation: textPulseGlow 3.5s infinite alternate ease-in-out;
}

@keyframes textPulseGlow {
    0% {
        text-shadow: 0 0 4px rgba(197, 160, 89, 0.15), 0 0 1px rgba(197, 160, 89, 0.1);
    }
    100% {
        text-shadow: 0 0 14px rgba(197, 160, 89, 0.6), 0 0 2px rgba(197, 160, 89, 0.35);
    }
}