:root {
    /* ===== COLORS ===== */
    --primary-black: #000000;
    --dark-black: #111111;
    --light-black: #1A1A1A;
    --card-black: #222222;

    --champagne: #D4AF37;
    --light-champagne: #F0D89C;
    --dark-champagne: #B8941F;

    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-tertiary: #888888;

    --divider: #333333;
    --success: #4CAF50;

    --gradient-gold: linear-gradient(135deg, var(--champagne), var(--dark-champagne));

    /* ===== SPACING ===== */
    --space-xxs: 4px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;

    /* ===== RADIUS ===== */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 999px;

    /* ===== SHADOW ===== */
    --shadow-sm: 0 4px 12px rgba(0,0,0,.25);
    --shadow-md: 0 10px 30px rgba(0,0,0,.35);
    --shadow-gold: 0 10px 25px rgba(212,175,55,.3);

    /* ===== LAYOUT ===== */
    --header-height: 64px;
    --bottom-tab-height: 75px;

    /* ===== Z-INDEX ===== */
    --z-header: 1000;
    --z-bottom-tab: 900;
    --z-float: 950;
    --z-modal: 2000;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--primary-black);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-bottom: 80px !important;
}

h1, h2, h3, h4 {
    font-weight: 600;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    padding: 0 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--champagne);
    border: 2px solid var(--champagne);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* ===== HEADER ===== */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 0;
    border-bottom: 1px solid var(--divider);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    color: var(--champagne);
    font-size: 24px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--champagne);
    font-weight: 800;
}



/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 16px 80px;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.92), rgba(20, 20, 20, 0.95)),
        url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 20% 50%,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 50%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    
}

.hero-badge-container {
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--light-champagne);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 12px;
}

.hero-title-container {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.text-champagne {
    color: var(--champagne);
    position: relative;
    display: inline-block;
}

.text-champagne::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--champagne), 
        transparent);
}

.divider-icon {
    color: var(--champagne);
    font-size: 18px;
}


.benefits-section {
    padding: 80px 16px;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.92), rgba(20, 20, 20, 0.95)),
        url('https://source.unsplash.com/1920x1080/?spa,wellness,relaxation') center/cover no-repeat;
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.benefits-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}






.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
        border-color: rgba(212, 175, 55, 0.4);
        padding: 12px 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        h3 {
            font-size: 15px;
            color: #ffd24d;
            margin-bottom: 8px;
        }
        p {
            font-size: 13px;
            color: #ffffff;
        }
    }
    
.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}



.benefit-icon i {
    font-size: 28px;
    color: var(--champagne);
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffd24d;   
}

.benefit-desc {
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.5;
     color: #ffffff;                     /* vàng nhấn */

}

/* Benefits Section */
    .benefits-section {
        padding: 60px 12px;
    }
    
    
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .benefit-icon i {
        font-size: 16px;
    }
    
    .benefit-title {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 5px;
        line-height: 1.2;
    }
    
    


/* ===== BOTTOM TAB BAR ===== */
.bottom-tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 999;
    padding: 10px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    display: none;
}

.tab-items {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1;
    height: 100%;
}

.tab-item.active {
    background: rgba(212, 175, 55, 0.15);
}

.tab-item:active {
    transform: scale(0.95);
}

.tab-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    transition: all 0.3s ease;
}

.tab-item.active .tab-label {
    color: var(--champagne);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== SERVICE DETAILS MODAL ===== */
.service-details-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.service-details-overlay.active {
    display: flex;
}

.service-details-container {
    width: 100%;
    height: 100dvh;
    background: var(--card-black);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .service-details-container {
        max-width: 600px;
        height: 85vh;
        border-radius: 20px;
        border: 1px solid rgba(212, 175, 55, 0.3);
    }
}

.details-header {
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(20, 20, 20, 0.95);
    position: relative;
    flex-shrink: 0;
}

.details-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--champagne);
    font-weight: 700;
    padding-right: 50px;
}

.details-subtitle {
    color: var(--text-tertiary);
    font-size: 14px;
    line-height: 1.4;
}

.close-details {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.close-details:hover {
    background: var(--champagne);
    color: var(--primary-black);
    transform: rotate(90deg);
}

.details-content {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
    -webkit-overflow-scrolling: touch;
}

.details-image {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.7)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--champagne);
    font-size: 48px;
}

.details-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.details-features {
    margin-bottom: 20px;
}

.features-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--champagne);
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.features-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--champagne);
    font-size: 14px;
    width: 20px;
}

.pricing-info {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pricing-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--champagne);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.price-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 16px;
    color: var(--champagne);
}

.details-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.details-actions .btn {
    flex: 1;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
}





/* Utility Classes */
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 32px; }

.text-center { text-align: center; }
.text-champagne { color: var(--champagne); }
.text-tertiary { color: var(--text-tertiary); }

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .online-badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: -4px;
        right: -4px;
    }
}






/* Menu Toggle Button */
.menu-toggle {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--champagne);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateY(-1px);
}




/* ===== CTA BUTTONS FIX ===== */
.hero-cta {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    margin: 30px auto 40px !important;
    padding: 0 20px !important;
    position: relative !important;
    z-index: 100 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Thêm vào file css/admin.css hoặc tạo style mới */

/* Tab icon màu champagne */
.tab-btn i.fas {
    color: var(--champagne);
    margin-right: 8px;
    font-size: 16px;
}

/* Tab active có màu đậm hơn */
.tab-btn.active i.fas {
    color: #f0d076; /* Màu champagne sáng hơn */
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Hover effect */
.tab-btn:hover i.fas {
    color: #e6c566;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

/* Tab icon trong sidebar */
.sidebar-nav .tab-icon i {
    color: var(--champagne);
}

/* Tab icon trong mobile bottom bar */
.bottom-tab-bar .tab-icon i {
    color: var(--champagne);
}

/* Nếu muốn gradient màu champagne */
.tab-btn i.fas.fa-crown {
    background: linear-gradient(135deg, var(--champagne), #f0d076);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}




/* Responsive */
@media (max-width: 768px) {
    .language-dropdown {
        position: fixed;
        top: 70px;
        right: 15px;
        left: 15px;
        width: auto;
    }
}

.app-header {
    padding: 0;                /* loại bỏ padding mặc định */
    height: 60px;              /* chiều cao header, tuỳ chỉnh */
    display: flex;
    align-items: center;       /* canh giữa nội dung theo chiều dọc */
}





/* ================================
   HERO GRID – LUXURY LAYOUT
================================ */
.modern-hero {
  background: radial-gradient(circle at top, #1b1b1b 0%, #0d0d0d 60%);
  padding: 70px 0 40px;
  color: #f5f5f5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-left .hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.hero-left .city-name {
  color: #e6c47a; /* champagne */
}

.hero-left .text-champagne {
  font-size: clamp(15px, 2vw, 18px);
  color: #f1d9a0;
  font-weight: 500;
}

.hero-sub {
  margin: 18px 0 24px;
  max-width: 560px;
  color: #ddd;
  line-height: 1.7;
  font-size: 16px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-badges span {
  background: rgba(230, 196, 122, 0.12);
  border: 1px solid rgba(230, 196, 122, 0.35);
  color: #e6c47a;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* HERO IMAGE */
.hero-right {
  text-align: center;
}

.hero-right img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* ================================
   CONTENT GRID
================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.content-left h2 {
  font-size: 28px;
  color: #e6c47a;
  margin-bottom: 16px;
}

.content-left p {
  line-height: 1.75;
  color: #ddd;
  font-size: 16px;
}

.feature-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #f0f0f0;
  font-size: 15px;
}

.feature-list i {
  color: #e6c47a;
  margin-top: 3px;
}

.content-right img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* ================================
   SERVICE CARDS
================================ */
.service-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.service-card {
  background: linear-gradient(180deg, #1a1a1a, #101010);
  border: 1px solid rgba(230,196,122,0.15);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  transition: all .3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.7);
  border-color: rgba(230,196,122,0.5);
}

.service-card i {
  font-size: 30px;
  color: #e6c47a;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.service-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* ================================
   COMMITMENT BOX
================================ */
.section-title {
    text-align: center;
  color: #e6c47a;
  margin-bottom: 26px;
}
.hero-text {
    h2 {
        text-align: center;
  color: #e6c47a;
  margin-bottom: 26px;
    }
    p {
  color: #ffffff;
  margin-bottom: 16px;
    font-size: 16px;
    
    }
    strong {
        color: #d9cb9e;
    }
}
.commitment-box {
  margin-top: 60px;
  background: linear-gradient(180deg, #1b1b1b, #0f0f0f);
  border: 1px solid rgba(230,196,122,0.25);
  border-radius: 22px;
  padding: 40px 30px;
  box-shadow: 0 15px 45px rgba(0,0  ,0,.6);
}

.commitment-box h2 {
  text-align: center;
  color: #e6c47a;
  margin-bottom: 26px;
}



/* ================================
   FINAL CTA
================================ */
.final-cta {
  text-align: center;
  margin-top: 70px;
  padding: 40px 20px;
  background: radial-gradient(circle at top, #1f1f1f, #0d0d0d);
  border-radius: 26px;
  box-shadow: 0 18px 55px rgba(0,0,0,.7);
}

.final-cta h2 {
  font-size: 30px;
  color: #e6c47a;
  margin-bottom: 10px;
}

.final-cta p {
  color: #ddd;
  margin-bottom: 22px;
  font-size: 16px;
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 900px) {
  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hero-right img,
  .content-right img {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-left .hero-title {
    font-size: 26px;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  .feature-list {
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .modern-hero {
    padding: 50px 0 30px;
  }

  .hero-right img,
  .content-right img {
    max-width: 260px;
    border-radius: 14px;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }



  .final-cta {
    padding: 30px 18px;
  }
}
/* Alternative: Flexible image container */
.hero-image {
    flex: 1;
    min-width: 0; /* Quan trọng: cho phép co nhỏ */
    max-width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.hero-image::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* Tỉ lệ 16:9 */
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero-image::before {
        padding-top: 75%; /* Tỉ lệ 4:3 cho mobile */
    }
}

@media (max-width: 480px) {
    .hero-image::before {
        padding-top: 100%; /* Tỉ lệ vuông cho mobile nhỏ */
    }
}



/* Section quy trình làm việc */
.process-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e1e8f3;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.process-step {
    background: #232322;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #a7a210;
    position: relative;
}



.benefit-item strong {
    color: #E6C158;
}

/* Highlight box */
.highlight-box {
    background: linear-gradient(135deg, rgba(44, 123, 229, 0.1), rgba(12, 44, 94, 0.05));
    border-left: 4px solid #2c7be5;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0 0 0;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.highlight-box strong {
    color: #ffd24d;
}

/* ===== ITEM ===== */
.benefit-item {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}

/* ===== HÀNG ICON + TIÊU ĐỀ ===== */
.benefit-item h3 {
  display: flex;
  align-items: center;
  gap: 8px;

  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffd24d;
}

/* ICON */
.benefit-icon-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,210,77,0.12);
  color: #ffd24d;
  font-size: 14px;
}

/* ❌ BỎ FLOAT HOÀN TOÀN */
.benefit-item .benefit-icon-top {
  float: none;
  margin: 0;
}

/* ===== NỘI DUNG (FULL CỘT – KHÔNG THỤT) ===== */
.benefit-item p {
  margin: 0;
  padding: 0;

  font-size: 14px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  text-align: center;
  padding: 24px 12px;
}



/* DÒNG "GIẤY PHÉP KINH DOANH" */
.hero-title .city-name {
  display: block;
  margin-top: 4px;

  font-size: 26px;
  font-weight: 800;
  color: #ffd24d;
}

/* ===== COMMITMENT BOX ===== */
.commitment-box {
  margin-top: 32px;
  padding: 20px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #111 0%, #0c0c0c 100%);
  border: 1px solid rgba(255, 210, 77, 0.15);
}

/* TIÊU ĐỀ */
.commitment-box h2 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #ffd24d;
  text-align: center;
}

/* LIST */
.commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ITEM */
.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #e6e6e6;
}

/* ICON */
.commitment-list li i {
  margin-top: 2px;
  font-size: 14px;
  color: #ffd24d;
  flex-shrink: 0;
}
