/* ==========================================================================
   CSS SYSTEM: MASSAGE XUKA LUXURY RECRUITMENT LANDING PAGE
   Aesthetics: Deep Violet, Luxury Gold, Glassmorphism, Micro-interactions
   ========================================================================== */

:root {
    /* Color Palette */
    --color-bg-dark: #0f051c;
    --color-bg-card: rgba(28, 14, 48, 0.65);
    --color-primary: #d4af37; /* Luxury Gold */
    --color-primary-light: #f3e5ab;
    --color-primary-glow: rgba(212, 175, 55, 0.35);
    
    --color-accent-blue: #2d68c4;
    --color-accent-pink: #c93b76;
    --color-accent-green: #25a156;
    
    --color-text-light: #f3f0f7;
    --color-text-muted: #a69cb3;
    
    /* Fonts */
    --font-heading: 'Google Sans', sans-serif;
    --font-body: 'Google Sans Text', sans-serif;
    
    /* Layout details */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset & Global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

/* Typography Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.text-center { text-align: center; }
.max-w-2xl { max-w: 720px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #b8860b 100%);
    color: #120324;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: #120324;
    transform: translateY(-2px);
}

.btn-zalo {
    background-color: #1382cd;
    color: white;
    box-shadow: 0 4px 15px rgba(19, 130, 205, 0.4);
}
.btn-zalo:hover {
    background-color: #1a95e7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 130, 205, 0.6);
}

.btn-block {
    display: flex;
    width: 100%;
}

.zalo-icon-inline {
    width: 24px;
    height: 24px;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}
.glass-panel:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45), 0 0 15px rgba(212, 175, 55, 0.1);
}

/* SECTION HEADER */
.section-header {
    margin-bottom: 60px;
}
.section-subtitle {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.section-divider {
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}
.section-divider-left {
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 20px 0;
    border-radius: 2px;
}
.section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-top: 15px;
}

/* ==========================================================================
   HEADER STYLE
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 5, 28, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    padding: 15px 0;
}

.main-header.scrolled {
    background: rgba(15, 5, 28, 0.95);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--color-primary);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-call-header {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO STYLE
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('assets/hero.png') no-repeat center center/cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(28, 14, 48, 0.45) 0%, rgba(15, 5, 28, 0.95) 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 5px;
}

/* ==========================================================================
   RECRUITMENT INFO CARD SYSTEM
   ========================================================================== */
.recruitment-info-section {
    padding: 100px 0;
    position: relative;
}

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

.recruitment-card {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.card-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    font-size: 1.8rem;
}

.recruitment-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.recruitment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recruitment-list li {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.recruitment-list li i {
    margin-top: 4px;
    font-size: 0.9rem;
}

/* Card Variations Shadow & Colors */
.card-blue {
    border-bottom: 4px solid var(--color-accent-blue);
}
.card-blue .card-icon-wrapper {
    color: var(--color-accent-blue);
    background: rgba(45, 104, 196, 0.1);
}
.card-blue .recruitment-list li i {
    color: var(--color-accent-blue);
}

.card-pink {
    border-bottom: 4px solid var(--color-accent-pink);
}
.card-pink .card-icon-wrapper {
    color: var(--color-accent-pink);
    background: rgba(201, 59, 118, 0.1);
}
.card-pink .recruitment-list li i {
    color: var(--color-accent-pink);
}

.card-green {
    border-bottom: 4px solid var(--color-accent-green);
    background: linear-gradient(180deg, var(--color-bg-card) 0%, rgba(37, 161, 86, 0.05) 100%);
}
.card-green .card-icon-wrapper {
    color: var(--color-accent-green);
    background: rgba(37, 161, 86, 0.1);
}
.card-green .recruitment-list li i {
    color: var(--color-accent-green);
}
.card-green strong {
    color: var(--color-primary-light);
}

/* ==========================================================================
   INCOME BENEFITS SECTION
   ========================================================================== */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #150926 50%, var(--color-bg-dark) 100%);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.benefits-detailed-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefits-detailed-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.list-bullet {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.benefits-detailed-list h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.benefits-detailed-list p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.benefits-image-content .img-wrapper {
    position: relative;
    padding: 15px;
}

.benefits-img {
    border-radius: var(--border-radius-sm);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #1f083d 0%, #120324 100%);
    border: 1px solid var(--color-primary);
    padding: 15px 25px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.img-badge i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.img-badge span {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==========================================================================
   COMMITMENTS STYLE
   ========================================================================== */
.commitments-section {
    padding: 100px 0;
}

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

.commitment-item {
    padding: 35px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.commitment-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.commitment-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

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

/* ==========================================================================
   TESTIMONIALS STYLE (SLIDER)
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1b0933 0%, var(--color-bg-dark) 100%);
}

.testimonials-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    position: relative;
}

.testimonial-card {
    padding: 40px 50px;
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info h5 {
    font-size: 1.05rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: var(--glass-border);
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.slider-btn:hover {
    background: var(--color-primary);
    color: #120324;
    border-color: var(--color-primary);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

/* ==========================================================================
   BRANCHES SYSTEM STYLE
   ========================================================================== */
.branches-section {
    padding: 100px 0;
}

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

.branch-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.branch-image-placeholder {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.branch-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.branch-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================================================
   BLOG / NEWS SECTION
   ========================================================================== */
.blog-section {
    padding: 100px 0;
}

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

.blog-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a:hover {
    color: var(--color-primary);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-more-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-more-btn:hover {
    color: var(--color-primary-light);
}

.blog-more-btn i {
    transition: var(--transition-smooth);
}

.blog-more-btn:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   CONTACT FORM SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

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

.contact-detail-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    min-height: 250px;
    justify-content: flex-start;
}

.detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.contact-detail-card:hover .detail-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--color-primary);
    color: #120324;
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.contact-detail-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

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

.contact-detail-card a {
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-detail-card a:hover {
    color: var(--color-primary-light);
}

/* Ambient Interactive Glow Backdrop */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(212, 175, 55, 0.04) 0%,
        rgba(128, 0, 128, 0.03) 40%,
        transparent 80%
    );
    transition: opacity 0.5s ease;
}

/* ==========================================================================
   FOOTER STYLE
   ========================================================================== */
.main-footer {
    background: #090312;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 20px 0 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}
.footer-social a:hover {
    background: var(--color-primary);
    color: #120324;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

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

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.contact-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.contact-phone,
.contact-zalo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.contact-zalo {
    color: #1382cd;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FLOATING ACTION WIDGETS
   ========================================================================== */
.floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 15px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.float-zalo {
    background: #1382cd;
    border: 2px solid #5ab3f0;
}
.zalo-icon-float {
    width: 32px;
    height: 32px;
}

.float-phone {
    background: var(--color-accent-green);
    border: 2px solid #6edb96;
}

.float-phone i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Pulse / Heartbeat Animations */
.pulse-icon {
    animation: pulseIcon 1.5s infinite;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.float-btn:hover {
    transform: scale(1.08) translateY(-3px);
}

/* ==========================================================================
   HIGH-END ANIMATION CLASSES
   ========================================================================== */

/* 1. Reveal on scroll effects */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

/* 2. Shimmer shine effect for primary buttons */
.btn-primary, .btn-zalo {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-zalo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.btn-primary:hover::after, .btn-zalo:hover::after {
    left: 120%;
    transition: all 0.6s ease;
}

/* 3. Golden shimmer gradient text animation */
.gradient-text {
    background: linear-gradient(
        to right, 
        var(--color-primary-light) 20%, 
        var(--color-primary) 40%, 
        var(--color-primary-light) 60%, 
        var(--color-primary) 80%,
        var(--color-primary-light) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 6s linear infinite;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

/* 4. Luxury Page Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 4px;
    animation: loaderPulse 2s infinite ease-in-out;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-top: 2px solid var(--color-primary);
    border-radius: 50%;
    position: absolute;
    animation: loaderSpin 1s linear infinite;
}

@keyframes loaderPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 5. Custom cursor or interactive pointer enhancements */
.glass-panel {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-panel:hover {
    transform: translateY(-8px);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .recruitment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .commitments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
        gap: 30px;
    }
    
    .footer-contact {
        grid-column: span 3;
    }
    
    .benefits-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    /* Global Section Paddings for mobile */
    .recruitment-info-section,
    .benefits-section,
    .commitments-section,
    .testimonials-section,
    .branches-section,
    .blog-section,
    .contact-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
    
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: rgba(15, 5, 28, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.7);
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu ul li {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-menu.open ul li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.open ul li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.open ul li:nth-child(2) { transition-delay: 0.14s; }
    .nav-menu.open ul li:nth-child(3) { transition-delay: 0.18s; }
    .nav-menu.open ul li:nth-child(4) { transition-delay: 0.22s; }
    .nav-menu.open ul li:nth-child(5) { transition-delay: 0.26s; }
    .nav-menu.open ul li:nth-child(6) { transition-delay: 0.3s; }
    .nav-menu.open ul li:nth-child(7) { transition-delay: 0.34s; }
    .nav-menu.open ul li:nth-child(8) { transition-delay: 0.38s; }
    
    .btn-call-header {
        display: none;
    }
    
    /* Hero */
    .hero-section {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        max-width: 320px;
        margin: 0 auto 40px;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: space-around;
        padding-top: 30px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Grid sections stack */
    .recruitment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-text-content {
        text-align: center;
    }
    
    .section-divider-left {
        margin: 20px auto;
    }
    
    .benefits-detailed-list {
        text-align: left;
    }
    
    .benefits-image-content {
        order: -1; /* Display image card first on mobile */
    }
    
    .benefits-img {
        height: 280px;
    }
    
    .img-badge {
        bottom: -10px;
        left: 10px;
        padding: 10px 15px;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .commitment-item {
        padding: 25px 20px;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-panel {
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-detail-card {
        text-align: center;
        min-height: auto;
        padding: 30px 20px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .contact-detail-card .detail-content {
        flex: 1;
        min-width: 0;
    }
    .contact-detail-card .detail-icon {
        flex-shrink: 0;
        width: 55px;
        height: 55px;
        margin: 0 auto;
    }
    .contact-detail-card h5 {
        font-size: 1rem;
        word-break: break-word;
    }
    .contact-detail-card p {
        font-size: 0.9rem;
        word-break: break-word;
        white-space: normal;
        line-height: 1.65;
    }

    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-contact, .footer-links {
        grid-column: span 1;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-phone, .contact-zalo {
        justify-content: center;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Mobile Float Action Buttons - LARGE premium style */
    .floating-widget {
        bottom: 25px;
        right: 15px;
        gap: 20px;
    }

    .float-btn {
        width: auto;
        min-width: 150px;
        height: 58px;
        padding: 0 22px 0 14px;
        border-radius: 50px;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        box-shadow: 0 8px 28px rgba(0,0,0,0.5);
    }

    .float-btn-text {
        display: block;
        font-size: 0.92rem;
        font-weight: 800;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }

    .zalo-icon-float {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
        margin: 0;
    }

    .float-phone i {
        width: 34px;
        height: 34px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        flex-shrink: 0;
    }


    .testimonial-card {
        padding: 30px 15px;
    }
    
    .testimonial-text {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
    }

    /* Override floatBreath to work well with pill shape */
    .float-btn {
        animation: floatBreathMobile 2.8s infinite ease-in-out;
    }

    .float-phone {
        animation-delay: 1.4s;
    }

    @keyframes floatBreathMobile {
        0%, 100% { transform: scale(1) translateY(0px); }
        50%       { transform: scale(1.05) translateY(-3px); box-shadow: 0 14px 38px rgba(0,0,0,0.55); }
    }
}


/* Premium Top Loading Bar */
.top-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary-light), var(--color-primary));
    z-index: 10000;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

/* Expanding ripple heartbeat for float buttons */
.float-btn {
    position: relative;
    overflow: hidden;
    animation: floatBreath 3.2s infinite ease-in-out;
}

.float-phone {
    animation-delay: 1.6s;
}

.float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: -1;
    pointer-events: none;
}

.float-zalo::before {
    box-shadow: 0 0 0 0 rgba(19, 130, 205, 0.7);
    animation: buttonRipple 2.2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

.float-phone::before {
    box-shadow: 0 0 0 0 rgba(37, 161, 86, 0.7);
    animation: buttonRipple 2.2s infinite cubic-bezier(0.16, 1, 0.3, 1);
    animation-delay: 1.1s;
}

/* Shimmer shine sweep overlay to capture candidate focus */
.float-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 45%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: buttonShimmer 3s infinite ease-in-out;
    pointer-events: none;
}

.float-phone::after {
    animation-delay: 1.5s;
}

/* Neon outer glow rings - make buttons impossible to miss */
.float-zalo {
    box-shadow:
        0 8px 25px rgba(19, 130, 205, 0.55),
        0 0 0 0 rgba(19, 130, 205, 0.45);
    animation: floatBreath 3.2s infinite ease-in-out,
               zaloNeonGlow 2.4s infinite ease-in-out;
}

.float-phone {
    box-shadow:
        0 8px 25px rgba(37, 161, 86, 0.55),
        0 0 0 0 rgba(37, 161, 86, 0.45);
    animation: floatBreath 3.2s infinite ease-in-out,
               phoneNeonGlow 2.4s infinite ease-in-out;
    animation-delay: 1.6s, 1.2s;
}

@keyframes zaloNeonGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(19,130,205,0.5), 0 0 12px rgba(19,130,205,0.4); }
    50%       { box-shadow: 0 12px 40px rgba(19,130,205,0.8), 0 0 30px rgba(19,130,205,0.6), 0 0 60px rgba(90,179,240,0.35); }
}

@keyframes phoneNeonGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(37,161,86,0.5), 0 0 12px rgba(37,161,86,0.4); }
    50%       { box-shadow: 0 12px 40px rgba(37,161,86,0.8), 0 0 30px rgba(37,161,86,0.6), 0 0 60px rgba(110,219,150,0.35); }
}

@keyframes buttonRipple {
    0% {
        transform: scale(0.95);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    70% {
        transform: scale(1.35);
        opacity: 0;
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes floatBreath {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    }
}

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

/* ==========================================================================
   5-STAR LUXURY INTERACTIVE COMPONENT STYLES
   ========================================================================== */

/* GPU-Accelerated Particles Canvas */
#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* Luxury Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.28;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 3;
}
.hero-bg-overlay {
    z-index: 2;
}

/* Income Calculator Section */
.calculator-section {
    padding: 100px 0;
    background-color: #120524;
    position: relative;
    z-index: 3;
}
.calculator-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-top: 50px;
    padding: 45px;
    border-radius: var(--border-radius-lg);
    background: var(--color-bg-card);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
}
.calc-inputs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
}
.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500;
}
.slider-dynamic-val {
    color: var(--color-primary);
    font-weight: 700;
    background: rgba(212, 175, 55, 0.12);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.25);
}
.luxury-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.3s;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}
.luxury-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5), inset 0 2px 4px rgba(255,255,255,0.4);
    transition: transform 0.2s;
    border: 2px solid #fff;
}
.luxury-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5), inset 0 2px 4px rgba(255,255,255,0.4);
    border: 2px solid #fff;
}
.luxury-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.luxury-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
}
.slider-range-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
.calc-result-box {
    background: rgba(15, 5, 28, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--border-radius-md);
    padding: 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
}
.result-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    font-weight: 600;
}
.result-amount-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
    max-width: 100%;
    overflow: hidden;
}
.result-amount {
    font-size: 3.2rem; /* Reduced to fit 10 characters */
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}
.result-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 161, 86, 0.15);
    border: 1px solid rgba(37, 161, 86, 0.3);
    color: #2bd173;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}
.guarantee-badge.active-guarantee {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-primary-light);
}
.result-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}
.btn-calc-apply {
    width: 100%;
    padding: 16px;
}

/* Branch Tabs Gallery (Grid of Vertical Cards to prevent alignment bugs) */
.branch-tabs-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.branch-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.branch-tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.branch-tab-btn:hover, .branch-tab-btn.active {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: #120324;
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px var(--color-primary-glow);
}
.branch-tab-contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    transition: var(--transition-smooth);
}
.branch-detail-panel {
    display: none;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(28, 14, 48, 0.95), rgba(15, 5, 28, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.branch-detail-panel.active {
    display: flex;
    animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.branch-detail-panel:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.15);
}
.branch-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}
.branch-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(15,5,28,0) 50%, rgba(15,5,28,0.95) 100%);
    pointer-events: none;
    z-index: 1;
}
.branch-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.branch-detail-panel:hover .branch-image-wrapper img {
    transform: scale(1.08);
}
.branch-status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--color-accent-pink) 0%, #a31d51 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(201, 59, 118, 0.4);
    z-index: 2;
}
.branch-detail-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-grow: 1;
    justify-content: space-between;
}
.branch-detail-info h3 {
    font-size: 1.3rem;
    color: var(--color-primary-light);
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}
.branch-address {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    min-height: 42px; /* Keeps height consistent */
}
.branch-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.branch-features span {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
}
.branch-features i {
    color: var(--color-accent-green);
    font-size: 0.95rem;
}
.btn-branch-contact {
    padding: 14px;
    font-size: 0.9rem;
    width: 100%;
    border-radius: var(--border-radius-sm);
}


/* ==========================================================================
   BRANCH PHOTO GALLERY SLIDESHOW
   ========================================================================== */
.branch-gallery {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.branch-gallery-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    transform: none;
}
.branch-gallery-img.active {
    opacity: 1;
}
/* Nav arrows */
.branch-gal-prev,
.branch-gal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    padding: 0;
    backdrop-filter: blur(4px);
}
.branch-gal-prev { left: 10px; }
.branch-gal-next { right: 10px; }
.branch-gal-prev:hover,
.branch-gal-next:hover {
    background: rgba(212,175,55,0.75);
    border-color: var(--color-primary);
}
/* Dot indicators */
.branch-gal-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 5;
}
.bgdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}
.bgdot.active {
    background: var(--color-primary);
    transform: scale(1.3);
    box-shadow: 0 0 6px var(--color-primary-glow);
}


/* ==========================================================================
   RESPONSIVE LUXURY BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
    .calculator-container {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    .branch-tab-contents {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 576px) {
    .calculator-section {
        padding: 60px 0;
    }
    .calculator-container {
        padding: 20px;
    }
    .result-amount {
        font-size: 2.2rem;
    }
    .quiz-modal-container {
        padding: 24px 20px; /* Reduced padding on mobile */
    }
    .quiz-title {
        font-size: 1.15rem;
    }
    .quiz-option-btn {
        padding: 12px 16px;
        font-size: 0.88rem;
        gap: 10px;
    }
    .branch-tab-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .branch-detail-panel:hover {
        transform: none; /* disables floating transform to prevent lag on mobile */
    }
}

@media (max-width: 375px) {
    .result-amount {
        font-size: 1.8rem; /* Ultra-small font to guarantee fit */
    }
}


/* Enhanced Mobile Float Button Icons */
@media (max-width: 768px) {
    .zalo-icon-float {
        width: 42px !important;
        height: 42px !important;
    }
    .pulse-icon {
        font-size: 2rem !important;
    }
}

/* ==========================================================================
   TRUST BADGE SECTION (LUXURY)
   ========================================================================== */
.trust-banner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(18,3,36,0.8) 100%);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(212,175,55,0.05);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 60%);
    animation: rotateSlow 15s linear infinite;
    pointer-events: none;
}

.trust-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 96px; height: 96px;
    animation: floatBreath 3s infinite ease-in-out;
}

.trust-badge-img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.6));
}

.trust-title {
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-desc {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .trust-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
        margin: 20px 0;
    }
    .trust-title {
        font-size: 1.2rem;
    }
    .trust-desc {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   PREMIUM SWIPEABLE LUXURY GALLERY
   ========================================================================== */
.luxury-gallery-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(15,5,28,0.8) 100%);
}

.premium-carousel-wrapper {
    position: relative;
    margin-top: 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Full bleed trick */
}

.premium-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 5vw; /* Start padding */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    scroll-behavior: smooth;
}

.premium-carousel::-webkit-scrollbar {
    display: none;
}

.premium-carousel-item {
    flex: 0 0 85vw;
    height: 60vw;
    max-height: 400px;
    scroll-snap-align: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 15px rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    transition: transform 0.4s ease;
}

@media (min-width: 768px) {
    .premium-carousel-item {
        flex: 0 0 45vw;
        height: 35vw;
    }
}

@media (min-width: 1024px) {
    .premium-carousel-item {
        flex: 0 0 35vw;
        height: 400px;
    }
}

.premium-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-carousel-item:hover img {
    transform: scale(1.08);
}

.premium-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(18, 3, 36, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--color-primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.swipe-hint {
    text-align: center;
    margin-top: 25px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   SMART PRE-SCREENING MODAL
   ========================================================================== */
.smart-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.smart-modal-content {
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid var(--color-primary-dark);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(212,175,55,0.1);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.close-modal {
    color: var(--color-text-muted);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--color-primary);
}

.smart-modal-header h3 {
    color: var(--color-primary);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin-bottom: 25px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
    transition: width 0.4s ease;
}

.smart-modal-body h4 {
    color: var(--color-text);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.smart-modal-body p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.smart-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.smart-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    text-align: left;
    transition: all 0.3s ease;
}

.smart-btn:hover {
    background: rgba(212,175,55,0.1);
    transform: translateX(5px);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--color-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--color-surface);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(212,175,55,0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

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

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0,0,0,0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}
