/* --- STYLE SYSTEM & VARIABLES --- */
:root {
    --bg-main: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f3f5;
    --primary: #ff6b35; /* Orange */
    --primary-hover: #e0531d;
    --primary-glow: rgba(255, 107, 53, 0.25);
    --primary-bg-trans: rgba(255, 107, 53, 0.06);
    --accent-gold: #ffb800;
    --accent-red: #ff4757;
    --accent-red-hover: #ff6b81;
    --text-white: #ffffff; /* Actual white for light text on dark buttons */
    --text-main: #333333; /* Dark gray for body/headings */
    --text-muted: #666666; /* Medium gray for secondary text */
    --text-dark: #222222;
    --border-color: rgba(255, 107, 53, 0.2);
    --border-light: rgba(0, 0, 0, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-main: 0 12px 30px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 8px 24px rgba(255, 107, 53, 0.15);
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

li {
    list-style: none;
}

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

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: rgba(255, 107, 53, 0.04);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-red {
    background-color: var(--accent-red);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(217, 43, 52, 0.3);
}

.btn-red:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 43, 52, 0.45);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* --- TYPOGRAPHY & SECTION HEADERS --- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- BADGES --- */
.hero-badge {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid var(--border-color);
    background-color: var(--primary-bg-trans);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.badge-gold {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    background-color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-hot {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    color: var(--text-white);
    background-color: var(--accent-red);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.badge-discount {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    background-color: rgba(255, 184, 0, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.badge-info {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--text-muted);
}

/* --- NAVBAR --- */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    height: 76px;
    display: flex;
    align-items: center;
}

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

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.3px;
    margin-top: 4px;
    text-transform: uppercase;
    opacity: 0.95;
}

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

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

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

.nav-item {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--text-muted);
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item.active {
    background-color: var(--primary-bg-trans);
    border: 1px solid var(--primary);
    color: var(--primary);
}

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

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

/* --- HERO SECTION --- */
.hero-section {
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-slogan {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-desc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
    max-width: 600px;
    text-align: left;
}

.hero-desc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

.hero-desc-item strong {
    color: var(--text-main);
}

.desc-item-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-pill {
    font-size: 12px;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.02);
}

/* Hero column 2 Card */
.hero-card-wrapper {
    perspective: 1000px;
}

.premium-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--shadow-main);
    transition: var(--transition-smooth);
}

.premium-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08), var(--shadow-glow);
}

.card-image-box {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.premium-card:hover .card-img {
    transform: scale(1.05);
}

.card-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 8px;
}

.card-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
}

.card-link-item:hover {
    background-color: var(--primary-bg-trans);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(4px);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.card-link-item:hover .arrow-icon {
    transform: translateX(4px);
}

/* --- SECTION 2: PROBLEMS --- */
.problems-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, #f1f3f5 100%);
    border-top: 1px solid var(--border-light);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.problem-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px 24px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent-red);
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    border-color: rgba(217, 43, 52, 0.3);
    background-color: var(--bg-card-hover);
    transform: translateY(-5px);
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(217, 43, 52, 0.1);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pain-text {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.solution-text {
    font-size: 13.5px;
    color: var(--primary); /* Orange accent */
    font-weight: 600;
    line-height: 1.5;
    background-color: var(--primary-bg-trans);
    padding: 10px 14px;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    margin-top: 4px;
}

/* --- SECTION 3: COMPARISON --- */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-main);
    border-top: 1px solid var(--border-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-main);
    display: flex;
    flex-direction: column;
}

.normal-dorm {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
}

.premium-dorm {
    background-color: #ffffff;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
    position: relative;
}

.premium-dorm::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    pointer-events: none;
}

.comp-header {
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 24px;
    position: relative;
}

.hot-badge {
    position: absolute;
    top: -55px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 50px;
}

.comp-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.comp-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-red);
}

.comp-price.trọn-gói {
    font-size: 24px;
    color: var(--primary);
}

.comp-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comp-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
}

.comp-list li.negative span {
    color: var(--text-muted);
}

.comp-list li.positive span {
    color: var(--text-main);
}

.icon-cross {
    width: 18px;
    height: 18px;
    color: var(--accent-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-check {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- SECTION 4: AMENITIES & TABS --- */
.amenities-section {
    padding: 100px 0;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-light);
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

.tab-btn {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid transparent;
    background-color: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--primary);
    background-color: rgba(0, 0, 0, 0.03);
}

.tab-btn.active {
    background-color: var(--primary-bg-trans);
    border-color: var(--primary);
    color: var(--primary);
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.tab-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-main);
}

.tab-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* Minh họa khu an ninh */
.security-illustration {
    width: 100%;
    height: 380px;
    background-color: #f1f3f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px dashed var(--primary);
}

.sec-icon-large svg {
    width: 80px;
    height: 80px;
}

.sec-text-large {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    letter-spacing: 2px;
}

.tab-text h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.tab-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.details-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
}

.details-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

/* --- SECTION 5: PRICING & BOOKING --- */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, #f1f3f5 100%);
    border-top: 1px solid var(--border-light);
}

.booking-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: flex-start;
}

.pricing-info h2 {
    margin-top: 12px;
    margin-bottom: 16px;
}

.pricing-intro {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.price-cards-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mini-price-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.mini-price-card.popular {
    border-color: var(--primary);
    background-color: #fff9f6;
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 2px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.mini-price-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mini-price-card .price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.mini-price-card .price .period {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

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

.card-badge-economy {
    position: absolute;
    top: -12px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    background-color: var(--primary);
    color: var(--text-white);
    padding: 2px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.price-feature-list {
    margin-top: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-feature-list li {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.price-feature-list li span {
    flex-shrink: 0;
}

.btn-price-cta {
    margin-top: auto;
    font-size: 13px;
}

.btn-price-cta-featured {
    margin-top: auto;
    font-size: 13px;
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.btn-price-cta-featured:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.form-micro-copy {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
    opacity: 0.8;
}

.location-box {
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
}

.location-box h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.loc-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.loc-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.dist-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Booking Form */
.booking-form-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-main);
}

.form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group label .required {
    color: var(--accent-red);
}

.form-group input, .form-group select {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.15);
}

.form-success-alert {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 10px;
}

.success-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.form-success-alert h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-success-alert p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-color);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    gap: 16px;
}

.faq-arrow {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 14px;
    color: var(--text-muted);
}

/* --- FOOTER --- */
.footer {
    padding: 60px 0 150px; /* Thừa khoảng trống để không bị đè bởi sticky bottom bar */
    background-color: #ffffff;
    border-top: 1px solid var(--border-light);
    font-size: 13px;
    color: var(--text-muted);
}

.footer-sub {
    margin-top: 8px;
    font-size: 11px;
    opacity: 0.5;
}

/* --- STICKY BOTTOM BAR --- */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    padding: 16px 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.sticky-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.sticky-info-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-text {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
}

.sticky-actions {
    display: flex;
    gap: 12px;
}

.btn-sticky {
    padding: 10px 22px;
    font-size: 13px;
    border-radius: 50px;
}

.btn-call {
    background-color: var(--accent-red);
    color: var(--text-white);
    border: none;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-call:hover {
    background-color: var(--accent-red-hover);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 43, 52, 0.4);
}

.sticky-nav-pill {
    display: flex;
    gap: 4px;
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
    padding: 4px;
    border-radius: 50px;
}

.sticky-nav-item {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sticky-nav-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.08);
    font-size: 10px;
    font-weight: 700;
    color: var(--text-main);
}

.sticky-nav-item:hover {
    color: var(--primary);
    background-color: var(--primary-bg-trans);
}

.sticky-nav-item:hover span {
    background-color: var(--primary);
    color: var(--text-white);
}

/* --- BACK TO TOP --- */
.back-to-top {
    position: fixed;
    bottom: 96px; /* Cách trên sticky bar */
    right: 24px;
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

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

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

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-tags {
        justify-content: center;
    }
    
    .hero-card-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .sticky-bar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .sticky-nav-pill {
        display: none; /* Ẩn đi hướng phụ trên màn hình trung bình */
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .card-image-box {
        height: 280px;
    }
    
    .navbar-container {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 76px;
        left: -24px;
        width: calc(100% + 48px);
        background-color: #ffffff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border-light);
        gap: 12px;
        display: none;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        border-radius: 8px;
        padding: 12px 16px;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile Menu Toggle Active */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tab-image img {
        height: 250px;
    }
    
    .tabs-buttons {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .booking-form-box {
        padding: 24px;
    }
    
    .sticky-bottom-bar {
        padding: 12px 0 20px; /* tăng padding đáy trên di động để dễ bấm */
    }
    
    .sticky-info-box {
        justify-content: center;
        width: 100%;
    }
    
    .sticky-actions {
        width: 100%;
        justify-content: center;
    }
    
    .btn-sticky {
        flex: 1;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 120px;
    }
}

/* --- PULSATING CTA BUTTONS ANIMATION --- */
@keyframes cta-pulse-primary {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        transform: scale(1.04);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes cta-pulse-gold {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        transform: scale(1.04);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes cta-pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 43, 52, 0.7);
    }
    70% {
        transform: scale(1.04);
        box-shadow: 0 0 0 10px rgba(217, 43, 52, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 43, 52, 0);
    }
}

/* Áp dụng nhấp nháy cho các nút CTA nổi bật */
.hero-actions .btn-primary,
.nav-cta .btn-primary,
.btn-price-cta-featured,
.sticky-actions .btn-primary,
.btn-call {
    transition: transform 0.2s ease-in-out;
}

.hero-actions .btn-primary,
.nav-cta .btn-primary,
.sticky-actions .btn-primary {
    animation: cta-pulse-primary 2s infinite;
}

.btn-price-cta-featured {
    animation: cta-pulse-gold 2s infinite;
}

.btn-call {
    animation: cta-pulse-red 2s infinite;
}

/* --- SECTION: FOUNDER --- */
.founder-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-light);
}

.founder-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-main);
}

.founder-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 120px;
    font-family: serif;
    color: rgba(255, 107, 53, 0.08);
    line-height: 1;
}

.founder-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
    margin: 20px 0;
    font-style: italic;
}

.founder-author {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--primary); /* Orange */
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
