﻿/* ============================================
    THUAN TAROT - Main Stylesheet
    Theme: Mystical Blue & Gold
    ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #93c5fd;
    --secondary: #f59e0b;
    --secondary-light: #fbbf24;
    --dark: #0d2b52;
    --dark-2: #164079;
    --dark-3: #1f4f92;
    --text: #f1f7ff;
    --text-muted: #c8dcfa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-dark: linear-gradient(180deg, #0d2b52 0%, #164079 100%);
    --shadow: 0 4px 20px rgba(59, 130, 246, 0.24);
    --shadow-lg: 0 10px 40px rgba(59, 130, 246, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Quicksand', 'Segoe UI', sans-serif;
}

/* ── Light Theme ── */
[data-theme="light"] {
    --dark: #f0f4f8;
    --dark-2: #e2e8f0;
    --dark-3: #cbd5e1;
    --text: #1e293b;
    --text-muted: #64748b;
    --primary-light: #2563eb;
    --gradient-dark: linear-gradient(180deg, #f0f4f8 0%, #e2e8f0 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .navbar {
    background: rgba(240, 244, 248, 0.95) !important;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(226, 232, 240, 0.98) !important;
}

[data-theme="light"] .card,
[data-theme="light"] .hero-card,
[data-theme="light"] .feature-card,
[data-theme="light"] .zodiac-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .reader-card,
[data-theme="light"] .auth-card,
[data-theme="light"] .booking-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .section-title,
[data-theme="light"] .hero-title,
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4 {
    color: #1e293b;
}

[data-theme="light"] .nav-dropdown-menu,
[data-theme="light"] .notif-panel {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-link,
[data-theme="light"] .nav-notif-bell,
[data-theme="light"] .logo {
    color: #334155;
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-notif-bell:hover {
    color: var(--primary);
}

[data-theme="light"] footer {
    background: #1e293b;
    color: #e2e8f0;
}

[data-theme="light"] .rd-stat-card,
[data-theme="light"] .stat-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #1e293b;
}

[data-theme="light"] .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

/* Theme toggle button */
.theme-toggle {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.4);
    background: var(--dark-2);
    color: var(--secondary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--secondary);
}

[data-theme="light"] .theme-toggle {
    background: #ffffff;
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

/* --- Language Switcher --- */
.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 6px 12px !important;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: var(--transition);
}

.lang-toggle-btn:hover {
    border-color: var(--secondary);
    background: rgba(245, 158, 11, 0.1);
}

.lang-toggle-btn .fa-globe {
    color: var(--secondary);
}

.lang-label {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(6, 18, 38, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo i {
    color: var(--secondary);
    font-size: 1.4rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(37, 99, 235, 0.2);
}

.btn-nav {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
}

.btn-nav:hover {
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 40%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 6s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .45;
    }
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding-top: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 400;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--primary-light);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* --- Hero Slider --- */
.hero-slider-section {
    position: relative;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide-blog-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--dark);
}

.hero-slide-blog-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(6, 18, 38, 0.55) 0%,
            rgba(6, 18, 38, 0.75) 40%,
            rgba(6, 18, 38, 0.92) 100%);
}

.hero-blog-content {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-blog-inner {
    max-width: 700px;
    text-align: center;
}

.hero-slide-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.25);
    border: 1px solid var(--primary-light);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-blog-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-blog-summary {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.hero-blog-meta i {
    margin-right: 6px;
    color: var(--primary-light);
}

.hero-blog-btn {
    display: inline-flex;
}

/* Slider Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(147, 197, 253, 0.35);
    color: var(--primary-light);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.hero-slider-arrow:hover {
    background: rgba(37, 99, 235, 0.5);
    border-color: var(--primary-light);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 24px;
}

.hero-slider-next {
    right: 24px;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(147, 197, 253, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--primary);
    border-color: var(--primary-light);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

.hero-dot:hover {
    border-color: var(--primary-light);
    background: rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
    .hero-slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .hero-slider-prev {
        left: 12px;
    }

    .hero-slider-next {
        right: 12px;
    }

    .hero-slider-dots {
        bottom: 60px;
    }

    .hero-blog-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
}

/* --- Fade In Animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.6s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Section Common --- */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.section-tag i {
    margin-right: 4px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- About Section --- */
.about {
    background: var(--dark-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(37, 99, 235, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.about-img-placeholder i {
    font-size: 4rem;
    color: var(--primary-light);
}

.about-img-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-light);
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Services Section --- */
.services {
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.service-price {
    font-size: 0.82rem !important;
    font-weight: 600;
    color: var(--secondary-light, #c4a35a) !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.02em;
}

.service-link {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--secondary);
}

.service-link.auto-link-active {
    color: var(--secondary);
}

.service-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

.service-link.auto-link-active i {
    transform: translateX(4px);
}

/* --- Zodiac Preview --- */
.zodiac-preview {
    background: var(--dark-2);
}

.zodiac-scroll {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.zodiac-item {
    background: var(--dark-3);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius);
    padding: 20px 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.zodiac-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.zodiac-symbol {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
}

.zodiac-name {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 4px;
}

.zodiac-date {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Testimonials --- */
.testimonials {
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

/* ── Review filter buttons ─────────────────────────────────── */
.rv-filter-btn {
    background: rgba(139, 92, 246, .12);
    border: 1px solid rgba(139, 92, 246, .3);
    color: var(--text-2, #94a3b8);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: .85rem;
    cursor: pointer;
    transition: all .18s;
}

.rv-filter-btn:hover {
    background: rgba(139, 92, 246, .22);
    color: var(--text-1, #e2e8f0);
}

.rv-filter-btn.active {
    background: var(--primary, #7c3aed);
    border-color: var(--primary, #7c3aed);
    color: #fff;
    font-weight: 600;
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--secondary);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- CTA Section --- */
.cta {
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.cta p {
    color: var(--text-muted);
    margin-bottom: 28px;
    position: relative;
}

.cta .btn {
    position: relative;
}

/* ── Combo Ticker ──────────────────────────────── */
.combo-ticker-wrap {
    background: linear-gradient(90deg, #0d2b52 0%, #1e3a6e 50%, #0d2b52 100%);
    border-top: 1px solid rgba(59, 130, 246, .3);
    border-bottom: 1px solid rgba(245, 158, 11, .35);
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1;
}

.combo-ticker-inner {
    overflow: hidden;
    padding: 10px 0;
}

.combo-ticker-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
    animation: combo-ticker-scroll 32s linear infinite;
}

.combo-ticker-track:hover {
    animation-play-state: paused;
}

.combo-ticker-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 48px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--secondary-light);
    letter-spacing: .03em;
}

.combo-ticker-item::after {
    content: '·';
    margin-left: 48px;
    opacity: .4;
}

.combo-ticker-star {
    margin-right: 6px;
}

@keyframes combo-ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── Combo Promo Section ───────────────────────── */
.combo-promo-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.combo-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.combo-promo-card {
    position: relative;
    background: rgba(31, 79, 146, 0.55);
    border: 1px solid rgba(59, 130, 246, .4);
    border-radius: 18px;
    padding: 28px 24px 24px;
    text-align: center;
    transition: transform .28s, box-shadow .28s, border-color .28s;
    backdrop-filter: blur(4px);
}

.combo-promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, .22);
    border-color: rgba(59, 130, 246, .55);
}

.combo-promo-card--hot {
    border-color: rgba(245, 158, 11, .45);
    box-shadow: 0 8px 32px rgba(245, 158, 11, .12);
}

.combo-promo-card--hot:hover {
    border-color: rgba(245, 158, 11, .75);
    box-shadow: 0 16px 48px rgba(245, 158, 11, .22);
}

.combo-promo-card--free {
    border-color: rgba(74, 222, 128, .38);
}

.combo-promo-card--free:hover {
    border-color: rgba(74, 222, 128, .7);
    box-shadow: 0 16px 48px rgba(74, 222, 128, .15);
}

.combo-promo-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.combo-promo-badge--free {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #003311;
}

.combo-promo-hot-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #1a0900;
    font-size: .68rem;
    font-weight: 800;
    padding: 3px 14px;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: .04em;
}

.combo-promo-type {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.combo-promo-desc {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
}

.combo-promo-gift {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(245, 158, 11, .07);
    border: 1px solid rgba(245, 158, 11, .22);
    border-radius: 12px;
    padding: 14px 12px;
    margin-bottom: 16px;
    text-align: left;
}

.combo-promo-gift i {
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.combo-promo-gift span {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.combo-promo-gift strong {
    color: var(--secondary);
    font-size: 1rem;
}

.combo-promo-card--free .combo-promo-gift {
    background: rgba(74, 222, 128, .06);
    border-color: rgba(74, 222, 128, .22);
}

.combo-promo-card--free .combo-promo-gift i,
.combo-promo-card--free .combo-promo-gift strong {
    color: #4ade80;
}

.combo-promo-total {
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.combo-promo-hint {
    margin-top: 12px;
    font-size: .8rem;
    color: var(--text-muted);
    opacity: .75;
}

@media (max-width: 768px) {
    .combo-promo-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(37, 99, 235, 0.15);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--secondary);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary-light);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   TAROT PAGE
   ============================================ */
.page-hero {
    padding: 140px 0 60px;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
}

.page-hero .container {
    position: relative;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-light);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* --- Tarot Cards Grid --- */
.tarot-intro {
    background: var(--dark-2);
}

.tarot-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tarot-intro-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.tarot-intro-content p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.tarot-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.tarot-card {
    background: var(--dark-3);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.tarot-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.tarot-card-number {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.tarot-card h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.tarot-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================
   ZODIAC PAGE
   ============================================ */
.zodiac-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.zodiac-card {
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.zodiac-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.zodiac-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.zodiac-card-symbol {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 50%;
}

.zodiac-card-header h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.3rem;
}

.zodiac-card-header span {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.zodiac-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.zodiac-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.zodiac-trait {
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-light);
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-section {
    background: var(--dark-2);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.booking-info h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.booking-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.booking-packages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-card {
    background: var(--dark-3);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.package-card:hover {
    border-color: var(--primary);
}

.package-card h4 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 4px;
}

.package-card .price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

.package-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* --- Form --- */
.booking-form {
    background: var(--dark-3);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.booking-form h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2360a5fa' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-note {
    text-align: center;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    width: 100%;
    height: 180px;
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-light);
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.blog-card h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-card-meta a,
.blog-card-readmore {
    color: var(--primary-light);
    font-weight: 600;
}

.blog-card-meta a:hover,
.blog-card:hover .blog-card-readmore {
    color: var(--secondary);
}

/* ============================================
   INDEX - STATS BAR
   ============================================ */
.stats-bar {
    background: var(--dark-3);
    border-top: 1px solid rgba(37, 99, 235, 0.15);
    border-bottom: 1px solid rgba(37, 99, 235, 0.15);
    padding: 28px 0;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stats-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.stats-bar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(37, 99, 235, 0.2);
}

.stats-bar-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.stats-bar-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   INDEX - ABOUT STORY
   ============================================ */
.about-story {
    background: var(--dark-2);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 64px;
    align-items: center;
}

.about-story-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--dark-3), var(--dark-2));
    border: 2px solid rgba(37, 99, 235, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.about-story-img-wrap i {
    font-size: 5rem;
    color: var(--primary-light);
    opacity: 0.5;
}

.about-story-img-wrap img.about-avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 2px);
    display: block;
}

.about-story-img-wrap.has-photo {
    padding: 0;
    overflow: hidden;
    gap: 0;
}

.about-story-img-wrap.has-photo i,
.about-story-img-wrap.has-photo p {
    display: none;
}

.about-story-img-wrap p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-light);
}

.about-story-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-story-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--secondary-light);
}

.about-story-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin: 12px 0 20px;
}

.about-story-text p {
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.8;
}

.about-story-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(37, 99, 235, 0.15);
}

.about-story-stat {
    text-align: center;
}

.about-story-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.about-story-stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   INDEX - HOW IT WORKS
   ============================================ */
.how-it-works {
    background: var(--dark);
}

.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.how-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 32px 24px;
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.how-step:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.how-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    padding-top: 80px;
    color: var(--primary-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.how-step-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(37, 99, 235, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}

.how-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-light);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.how-step:hover .how-step-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.how-step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 12px;
}

.how-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   INDEX - BLOG PREVIEW
   ============================================ */
.blog-preview {
    background: var(--dark-2);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-prev-card {
    display: flex;
    flex-direction: column;
    background: var(--dark-3);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    color: inherit;
}

.blog-prev-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-prev-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-prev-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-2);
    font-size: 2.5rem;
    color: var(--primary-light);
    opacity: 0.4;
}

.blog-prev-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-prev-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.blog-prev-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.5;
}

.blog-prev-summary {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-prev-meta {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.blog-prev-meta i {
    margin-right: 5px;
    color: var(--primary-light);
}

/* ============================================
   INDEX - FAQ
   ============================================ */
.faq {
    background: var(--dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(37, 99, 235, 0.4);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-q:hover {
    color: var(--primary-light);
}

.faq-q i {
    color: var(--primary-light);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 24px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-a p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zodiac-scroll {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zodiac-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-story-grid {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-2);
        flex-direction: column;
        padding: 80px 24px 24px;
        transition: var(--transition);
        border-left: 1px solid rgba(37, 99, 235, 0.2);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        order: -1;
    }

    .about-img-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .zodiac-scroll {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .zodiac-grid-full {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-story-img-wrap {
        max-width: 200px;
        margin: 0 auto 12px;
        aspect-ratio: 1/1;
    }

    .about-story-stats {
        gap: 20px;
    }

    .how-steps {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .how-step {
        max-width: 100%;
        width: 100%;
    }

    .how-step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
}

@media (max-width: 480px) {
    .zodiac-scroll {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar-item:not(:last-child)::after {
        display: none;
    }
}

/* --- Utility: Overlay for mobile menu --- */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Scroll reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   QUICK BOOKING BUTTONS (booking.html)
   ============================================ */
.quick-booking-options {
    margin-top: 24px;
    padding: 24px;
    background: var(--dark-3);
    border-radius: var(--radius);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.quick-booking-options h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.quick-booking-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-zalo {
    background: linear-gradient(135deg, #0068ff, #0099ff);
    color: #fff;
}

.btn-zalo:hover {
    background: linear-gradient(135deg, #0055dd, #007fdd);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.4);
}

.btn-email {
    background: linear-gradient(135deg, #ea4335, #ff6b6b);
    color: #fff;
}

.btn-email:hover {
    background: linear-gradient(135deg, #d33426, #e55555);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.4);
}

.btn-phone-call {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
}

.btn-phone-call:hover {
    background: linear-gradient(135deg, #059669, #2cb583);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.booking-note-box {
    margin-top: 20px;
    padding: 20px;
    background: var(--dark-3);
    border-radius: var(--radius);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.booking-note-box h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.booking-note-box ul {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-left: 20px;
    list-style: disc;
}

.booking-note-box ul li {
    margin-bottom: 4px;
}

/* ============================================
   AUTH PAGES (login.html, admin.html)
   ============================================ */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.auth-wrapper {
    display: flex;
    justify-content: center;
}

.auth-card {
    background: var(--dark-2);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 460px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-lg);
}

.auth-card-wide {
    max-width: 580px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: var(--white);
}

.auth-header h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.auth-form label i {
    width: 18px;
    color: var(--primary-light);
}

.auth-form input,
.auth-form select {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-3);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.auth-form input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 44px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
}

.toggle-password:hover {
    color: var(--primary-light);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(37, 99, 235, 0.15);
}

.auth-footer a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-footer a:hover {
    color: var(--primary-light);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
}

.auth-tab {
    flex: 1;
    padding: 14px 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.auth-tab:hover {
    color: var(--text);
}

.auth-tab.active {
    color: var(--primary-light);
    border-bottom-color: var(--primary);
}

.auth-tab i {
    margin-right: 6px;
}

.auth-panel {
    display: none;
    padding-top: 24px;
}

.auth-panel.active {
    display: block;
}

/* Guest Notice */
.guest-notice {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--secondary-light);
}

.guest-notice a {
    color: var(--secondary);
    text-decoration: underline;
    font-weight: 600;
}

/* Member Benefits */
.member-benefits {
    margin-top: 28px;
    padding: 20px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius);
}

.member-benefits h4 {
    color: var(--white);
    margin-bottom: 14px;
    font-size: 1rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.benefit-item i {
    color: var(--secondary);
    font-size: 0.9rem;
    width: 16px;
}

/* Member Badge (booking form) */
.member-badge {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 20px;
    color: var(--secondary-light);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.member-badge i {
    color: var(--secondary);
    margin-right: 6px;
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */
.admin-dashboard {
    padding-top: 120px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.dashboard-header h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.6rem;
}

.dashboard-header h2 i {
    color: var(--primary-light);
    margin-right: 8px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-2px);
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--dark-2);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.stat-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.stat-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
}

.stat-card-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Dashboard Tabs */
.dashboard-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
    margin-bottom: 24px;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    color: var(--primary-light);
    border-bottom-color: var(--primary);
}

.tab-btn i {
    margin-right: 6px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Admin Table */
.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.table-header h3 {
    color: var(--white);
    font-size: 1.1rem;
}

.filter-select {
    padding: 8px 16px;
    background: var(--dark-3);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.table-responsive {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table thead {
    background: var(--dark-3);
}

.admin-table th {
    padding: 12px 16px;
    text-align: left;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.admin-table td {
    padding: 12px 16px;
    color: var(--text);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.admin-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.05);
}

.empty-table {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 16px !important;
    font-style: italic;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-confirmed {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-completed {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Action Buttons */
.action-btns {
    display: flex;
    gap: 6px;
}

.btn-action {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-confirm {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.btn-confirm:hover {
    background: #10b981;
    color: #fff;
}

.btn-cancel {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-cancel:hover {
    background: #ef4444;
    color: #fff;
}

.btn-complete {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-complete:hover {
    background: #3b82f6;
    color: #fff;
}

.btn-delete {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-delete:hover {
    background: #dc2626;
    color: #fff;
}

/* Settings */
.settings-section h3 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.settings-section h3 i {
    color: var(--primary-light);
    margin-right: 8px;
}

/* ============================================
   NAVBAR USER DROPDOWN
   ============================================ */
.nav-user-item {
    position: relative;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-user i {
    font-size: 1.1rem;
}

.nav-user-dropdown {
    position: relative;
}

.nav-user-dropdown>button {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius);
    padding: 8px 0;
    min-width: 200px;
    display: none;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.nav-user-dropdown.open .nav-dropdown-menu {
    display: block;
}

.dropdown-label {
    display: block;
    padding: 8px 16px;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.15);
    margin-bottom: 4px;
}

.nav-dropdown-menu a,
.nav-dropdown-menu button {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu button:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-light);
}

.dropdown-logout {
    color: #f87171 !important;
    border-top: 1px solid rgba(37, 99, 235, 0.15) !important;
    margin-top: 4px;
}

.nav-xu-badge {
    margin-left: auto;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    white-space: nowrap;
}

/* ── Notification Bell ── */
.nav-notif-item {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-notif-bell {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.15rem;
    cursor: pointer;
    position: relative;
    padding: 6px 10px;
    transition: var(--transition);
}

.nav-notif-bell:hover {
    color: var(--secondary);
}

.notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    padding: 0 4px;
    pointer-events: none;
}

.notif-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 340px;
    max-height: 420px;
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    display: none;
    overflow: hidden;
}

.notif-panel.open {
    display: block;
}

.notif-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

.notif-mark-all {
    background: none;
    border: none;
    color: var(--primary-light);
    font-size: 0.8rem;
    cursor: pointer;
    font-family: var(--font-body);
}

.notif-mark-all:hover {
    text-decoration: underline;
}

.notif-panel-list {
    max-height: 360px;
    overflow-y: auto;
}

.notif-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.notif-item:hover {
    background: rgba(37, 99, 235, 0.08);
}

.notif-unread {
    background: rgba(59, 130, 246, 0.06);
    border-left: 3px solid var(--primary);
}

.notif-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 0.85rem;
}

.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.notif-body {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notif-time {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.notif-panel-empty {
    padding: 32px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.notif-panel-loading {
    padding: 32px 16px;
    text-align: center;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .notif-panel {
        position: fixed;
        top: 60px;
        right: 8px;
        left: 8px;
        width: auto;
    }
}

/* ============================================
   AUTH RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .auth-card {
        padding: 24px 20px;
    }

    .auth-card-wide {
        max-width: 100%;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-table {
        font-size: 0.8rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 8px 10px;
    }

    .quick-booking-btns {
        flex-direction: column;
    }

    .nav-dropdown-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
}

@media (max-width: 480px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-header h2 {
        font-size: 1.2rem;
    }

    .auth-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .auth-header h2 {
        font-size: 1.3rem;
    }
}

/* Animation keyframe for notifications */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==============================
   Blog Post Editor (Admin)
   ============================== */
.post-editor {
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.post-editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.post-editor-header h3 {
    color: var(--primary-light);
    font-family: var(--font-heading);
}

.post-editor textarea {
    width: 100%;
    background: var(--dark-1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.3s;
}

.post-editor textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

#postContent {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    min-height: 300px;
}

/* Post Preview Modal */
.post-preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.post-preview-content {
    background: var(--dark-1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.post-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    position: sticky;
    top: 0;
    background: var(--dark-1);
    z-index: 1;
}

.post-preview-header h3 {
    color: var(--primary-light);
}

.post-preview-body {
    padding: 24px;
    color: var(--text);
    line-height: 1.8;
}

.post-preview-body h2 {
    color: var(--primary-light);
    font-family: var(--font-heading);
    margin: 24px 0 12px;
    font-size: 1.4rem;
}

.post-preview-body h3 {
    color: var(--secondary);
    margin: 20px 0 10px;
    font-size: 1.15rem;
}

.post-preview-body p {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.post-preview-body strong {
    color: var(--text);
}

/* ==============================
   Blog Detail Page
   ============================== */
.blog-detail-section {
    padding: 60px 0;
    background: var(--dark-2);
    min-height: 60vh;
}

.blog-detail-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.blog-detail-tag {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-detail-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.blog-detail-date i {
    margin-right: 6px;
    color: var(--secondary);
}

.blog-detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(59, 130, 246, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.blog-detail-icon i {
    font-size: 1.4rem;
    color: var(--primary-light);
}

.blog-detail-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.3;
}

.blog-detail-content {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.05rem;
}

.blog-detail-content h2 {
    color: var(--primary-light);
    font-family: var(--font-heading);
    margin: 32px 0 16px;
    font-size: 1.5rem;
}

.blog-detail-content h3 {
    color: var(--secondary);
    margin: 24px 0 12px;
    font-size: 1.2rem;
}

.blog-detail-content p {
    margin-bottom: 14px;
}

.blog-detail-content strong {
    color: var(--text);
}

.blog-detail-content em {
    color: var(--primary-light);
    font-style: italic;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 16px 0;
    display: block;
}

.blog-detail-featured-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 28px;
    display: block;
}

.blog-card-img i {
    font-size: 2.5rem;
}

.blog-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    text-decoration: none;
    margin-bottom: 32px;
    font-weight: 500;
    transition: color 0.3s;
}

.blog-detail-back:hover {
    color: var(--secondary);
}

.blog-detail-cta {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(59, 130, 246, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    text-align: center;
}

.blog-detail-cta h3 {
    color: var(--text);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.blog-detail-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ==============================
   Shared Utility Classes
   ============================== */
.u-hidden {
    display: none;
}

.inline-flex-center-gap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.inline-flex-gap-8 {
    display: flex;
    gap: 8px;
}

.notification-bell {
    position: relative;
    cursor: pointer;
}

.notification-bell-icon {
    font-size: 1.3rem;
    color: var(--primary-light);
}

.notification-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--secondary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50px;
    min-width: 16px;
    text-align: center;
}

.filter-select-wide {
    width: 100%;
    padding: 12px 16px;
}

.text-muted-note {
    color: var(--text-muted);
}

.text-muted-center {
    color: var(--text-muted);
    text-align: center;
}

.text-sm {
    font-size: 0.9rem;
}

.ml-8 {
    margin-left: 8px;
}

.ml-12 {
    margin-left: 12px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.p-20 {
    padding: 20px;
}

.p-24 {
    padding: 24px;
}

.p-40 {
    padding: 40px;
}

.py-60 {
    padding: 60px 0;
}

.mt-12 {
    margin-top: 12px;
}

.mt-32 {
    margin-top: 32px;
}

.align-top {
    vertical-align: top;
}

.btn-inline {
    cursor: pointer;
    display: inline-block;
}

.form-group-inline {
    display: flex;
    gap: 12px;
}

.auth-form-narrow {
    max-width: 400px;
}

.settings-section-spaced {
    margin-top: 32px;
}

.post-image-preview {
    margin-bottom: 12px;
}

.post-image-preview-img {
    max-width: 300px;
    max-height: 200px;
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.section-dark {
    background: var(--dark);
}

.section-dark-2 {
    background: var(--dark-2);
}

.blog-grid-loading {
    grid-column: 1 / -1;
    padding: 40px;
}

.loading-icon {
    font-size: 2rem;
    color: var(--primary-light);
}

.loading-text {
    margin-top: 12px;
    color: var(--text-muted);
}

.icon-secondary {
    color: var(--secondary);
}

.icon-primary-light {
    color: var(--primary-light);
}

.icon-admin {
    color: var(--primary-light);
}

.guest-notice-admin {
    margin-top: 8px;
    border-color: rgba(37, 99, 235, 0.35);
}

.disabled-input {
    opacity: 0.6;
    cursor: not-allowed;
}

.review-modal-content {
    max-width: 500px;
}

@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 1.5rem;
    }

    .blog-detail-content {
        font-size: 1rem;
    }

    .post-editor .form-row {
        flex-direction: column;
    }
}

/* ==============================
   Member Profile Page
   ============================== */
.member-section {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--dark-1);
}

.member-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.member-sidebar {
    position: sticky;
    top: 100px;
}

.member-avatar-card {
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 16px;
}

.member-avatar-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
}

.member-avatar-card h3 {
    color: var(--text);
    margin-bottom: 4px;
}

.member-badge-label {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-top: 12px;
}

.member-nav {
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    overflow: hidden;
}

.member-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.member-nav-btn:last-child {
    border-bottom: none;
}

.member-nav-btn:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--text);
}

.member-nav-btn.active {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-light);
    font-weight: 600;
    border-left: 3px solid var(--primary);
}

.member-nav-btn i {
    width: 20px;
    text-align: center;
}

.member-content {
    min-height: 400px;
}

.member-panel {
    display: none;
}

.member-panel.active {
    display: block;
}

.member-panel-header {
    margin-bottom: 24px;
}

.member-panel-header h2 {
    font-family: var(--font-heading);
    color: var(--text);
    font-size: 1.4rem;
}

.member-panel-header h2 i {
    color: var(--primary-light);
    margin-right: 8px;
}

/* Booking cards */
.member-bookings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-card {
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.booking-card:hover {
    border-color: rgba(37, 99, 235, 0.35);
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(37, 99, 235, 0.06);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.booking-card-body {
    padding: 16px 20px;
}

.booking-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.booking-info-row:last-child {
    margin-bottom: 0;
}

.booking-info-row i {
    color: var(--primary-light);
    width: 16px;
    text-align: center;
}

.booking-card-footer {
    padding: 12px 20px;
    border-top: 1px solid rgba(37, 99, 235, 0.08);
    min-height: 20px;
}

.booking-review-badge {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Star rating input */
.star-rating-input {
    display: flex;
    gap: 8px;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px 0;
}

.star-rating-input i {
    transition: color 0.2s, transform 0.2s;
    color: rgba(255, 255, 255, 0.2);
}

.star-rating-input i:hover {
    transform: scale(1.15);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    color: rgba(37, 99, 235, 0.3);
    margin-bottom: 16px;
    display: block;
}

.empty-state p {
    font-size: 1rem;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .member-layout {
        grid-template-columns: 1fr;
    }

    .member-sidebar {
        position: static;
    }

    .member-nav {
        display: flex;
        overflow-x: auto;
    }

    .member-nav-btn {
        white-space: nowrap;
        border-bottom: none;
        border-right: 1px solid rgba(37, 99, 235, 0.1);
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .member-nav-btn.active {
        border-left: none;
        border-bottom: 3px solid var(--primary);
    }

    .booking-card-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

/* ==============================
   Admin Review Cards
   ============================== */
.review-admin-card {
    background: var(--dark-2);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.review-admin-card:hover {
    border-color: rgba(37, 99, 235, 0.35);
}

.review-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(37, 99, 235, 0.06);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    flex-wrap: wrap;
    gap: 8px;
}

.review-admin-body {
    padding: 16px 20px;
}

.review-admin-actions {
    padding: 12px 20px;
    border-top: 1px solid rgba(37, 99, 235, 0.08);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ==============================
   Dynamic Render Shared Classes
   ============================== */
.blog-empty-state {
    grid-column: 1 / -1;
    padding: 40px;
}

.blog-empty-icon {
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.5;
}

.blog-empty-text {
    margin-top: 16px;
    color: var(--text-muted);
}

.blog-error-text {
    color: var(--text-muted);
}

.blog-pagination-btn {
    margin: 0 4px;
}

.blog-detail-error-state {
    padding: 60px 0;
}

.blog-detail-error-icon {
    font-size: 3rem;
    color: var(--secondary);
}

.blog-detail-error-title {
    margin-top: 16px;
    color: var(--text);
}

.blog-detail-error-text {
    color: var(--text-muted);
    margin: 12px 0 24px;
}

.booking-error-text {
    color: var(--text-muted);
}

.package-star-icon {
    color: var(--secondary);
}

.package-topic-badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.16);
    color: var(--primary-light);
}

.service-questions {
    margin-top: 10px;
}

.service-questions-title {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.service-questions-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    list-style: disc;
}

.service-questions-item {
    margin-bottom: 4px;
}

.service-first-offer {
    display: block;
    margin-top: 10px;
    color: var(--secondary);
    font-weight: 600;
}
