/* ========================================
   KHÁCH HÀNG - REDESIGNED v2
   Fresh & Modern Travel Theme
   ======================================== */

/* --- CSS Variables --- */
:root {
    --primary: #0b6e4f;
    --primary-dark: #074b36;
    --primary-light: #10a06b;
    --primary-lighter: #d4ede2;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fde68a;
    --success: #059669;
    --danger: #ef4444;
    --info: #0ea5e9;
    --bg-body: #f0fdf4;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --bg-section-alt: #ecfdf5;
    --text-dark: #064e3b;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Base --- */
body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    color: var(--text-body);
    scroll-behavior: smooth;
    line-height: 1.6;
}

::selection {
    background: var(--primary);
    color: #fff;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #e8f5e9; }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ========================================
   NAVBAR - Modern Minimal
   ======================================== */
.navbar-modern {
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(11,110,79,0.08);
    padding: 0.5rem 0;
    transition: var(--transition);
}
.navbar-modern .navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary-dark) !important;
    letter-spacing: -0.5px;
}
.navbar-modern .navbar-brand i {
    color: var(--accent);
    font-size: 1.5rem;
}
.navbar-modern .nav-link {
    color: var(--text-body) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}
.navbar-modern .nav-link:hover {
    color: var(--primary) !important;
    background: var(--primary-lighter);
}
.navbar-modern .nav-link.active {
    color: #fff !important;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(11,110,79,0.3);
}
.navbar-modern .nav-link.active:hover {
    background: var(--primary-dark);
}
.navbar-modern .navbar-toggler {
    border: none;
    padding: 0.4rem;
    color: var(--primary-dark);
}
.navbar-modern .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(11,110,79,0.2);
}
.navbar-modern .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11,110,79,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Avatar */
.navbar-modern .avatar-dropdown .nav-link {
    padding: 0.25rem 0.75rem 0.25rem 0.25rem !important;
    border-radius: 50px;
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.navbar-modern .avatar-dropdown .nav-link:hover {
    background: #c5e5d5;
}
.navbar-modern .avatar-dropdown .nav-link img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.navbar-modern .avatar-dropdown .nav-link i.bi-person-circle {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Dropdown */
.navbar-modern .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    margin-top: 0.75rem;
    border: 1px solid rgba(11,110,79,0.06);
    min-width: 220px;
}
.navbar-modern .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.navbar-modern .dropdown-item:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}
.navbar-modern .dropdown-item.active {
    background: var(--primary);
    color: #fff;
}
.navbar-modern .dropdown-item.text-danger:hover {
    background: #fef2f2;
    color: var(--danger) !important;
}
.navbar-modern .dropdown-divider {
    margin: 0.3rem 0;
}

/* Mobile */
@media (max-width: 991.98px) {
    .navbar-modern {
        background: rgba(255,255,255,0.98) !important;
    }
    .navbar-modern .navbar-collapse {
        padding: 0.75rem 0;
    }
    .navbar-modern .nav-link {
        padding: 0.6rem 1rem !important;
    }
    .navbar-modern .avatar-dropdown .nav-link {
        background: transparent;
        padding: 0.6rem 1rem !important;
    }
    .navbar-modern .avatar-dropdown .nav-link:hover {
        background: var(--primary-lighter);
    }
    .navbar-modern .dropdown-menu {
        box-shadow: none;
        padding-left: 1rem;
        border: none;
        background: transparent;
        margin-top: 0;
    }
    .navbar-modern .dropdown-item {
        color: var(--text-body);
    }
}

/* ========================================
   HERO SECTION - Modern Tropical
   ======================================== */
.hero-modern {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #064e3b 0%, #0b6e4f 30%, #10a06b 60%, #34d399 100%);
}
.hero-modern .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.hero-modern .hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-modern .hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.hero-modern .hero-shape:nth-child(1) {
    width: 400px; height: 400px;
    top: -100px; right: -80px;
    background: radial-gradient(circle, rgba(16,160,107,0.3), transparent);
}
.hero-modern .hero-shape:nth-child(2) {
    width: 300px; height: 300px;
    bottom: -50px; left: -50px;
    background: radial-gradient(circle, rgba(52,211,153,0.2), transparent);
}
.hero-modern .hero-shape:nth-child(3) {
    width: 200px; height: 200px;
    top: 40%; right: 20%;
    background: radial-gradient(circle, rgba(245,158,11,0.15), transparent);
}
.hero-modern .hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}
.hero-modern .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.hero-modern .hero-badge i {
    color: var(--accent);
}
.hero-modern .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.hero-modern .hero-title span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}
.hero-modern .hero-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(245,158,11,0.3);
    border-radius: 4px;
    z-index: -1;
}
.hero-modern .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    line-height: 1.7;
}
.hero-modern .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.hero-modern .btn-hero-primary {
    background: #fff;
    color: var(--primary-dark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}
.hero-modern .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,255,255,0.3);
    color: var(--primary-dark);
}
.hero-modern .btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.hero-modern .btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
}
.hero-modern .hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}
.hero-modern .hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-modern .hero-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero-modern .hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}
.hero-modern .hero-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.hero-modern .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-modern .hero-card-preview {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 100%;
    max-width: 380px;
    color: #fff;
}
.hero-modern .hero-card-preview .preview-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-modern .hero-card-preview .preview-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-modern .hero-card-preview .preview-item:last-child {
    border-bottom: none;
}
.hero-modern .hero-card-preview .preview-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.hero-modern .hero-card-preview .preview-icon.green { background: rgba(16,160,107,0.3); }
.hero-modern .hero-card-preview .preview-icon.yellow { background: rgba(245,158,11,0.3); }
.hero-modern .hero-card-preview .preview-icon.blue { background: rgba(14,165,233,0.3); }

@media (max-width: 991.98px) {
    .hero-modern { min-height: auto; text-align: center; }
    .hero-modern .hero-title { font-size: 2.5rem; }
    .hero-modern .hero-subtitle { margin: 0 auto; }
    .hero-modern .hero-actions { justify-content: center; }
    .hero-modern .hero-stats { justify-content: center; }
    .hero-modern .hero-card-preview { margin-top: 2rem; }
}
@media (max-width: 576px) {
    .hero-modern .hero-title { font-size: 2rem; }
    .hero-modern .hero-subtitle { font-size: 1rem; }
    .hero-modern .hero-stats { gap: 1.25rem; }
    .hero-modern .hero-stat-value { font-size: 1.4rem; }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header-modern {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header-modern .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-lighter);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}
.section-header-modern .section-tag.tag-warning {
    background: var(--accent-light);
    color: var(--accent-dark);
}
.section-header-modern .section-tag.tag-success {
    background: #d1fae5;
    color: #065f46;
}
.section-header-modern h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}
.section-header-modern p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .section-header-modern h2 { font-size: 1.6rem; }
}

/* ========================================
   TOUR CARDS - Modern Elevated
   ======================================== */
.tour-card-modern {
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.tour-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.tour-card-modern .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.tour-card-modern .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.tour-card-modern:hover .card-img-wrapper img {
    transform: scale(1.1);
}
.tour-card-modern .card-img-overlay-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.tour-card-modern .card-img-overlay-badge .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}
.tour-card-modern .card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}
.tour-card-modern .card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tour-card-modern .card-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.tour-card-modern .card-location i {
    color: var(--danger);
}
.tour-card-modern .card-footer-info {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}
.tour-card-modern .card-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}
.tour-card-modern .card-price .price-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
    line-height: 1;
}
.tour-card-modern .btn-detail {
    background: var(--primary-lighter);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
}
.tour-card-modern .btn-detail:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(2px);
}

@media (max-width: 576px) {
    .tour-card-modern .card-img-wrapper { height: 160px; }
}

/* ========================================
   FEATURE CARDS - Modern
   ======================================== */
.feature-card-modern {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}
.feature-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lighter);
}
.feature-card-modern .feature-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.6rem;
    transition: var(--transition);
}
.feature-card-modern:nth-child(1) .feature-icon-wrap {
    background: var(--primary-lighter);
    color: var(--primary);
}
.feature-card-modern:nth-child(2) .feature-icon-wrap {
    background: #d1fae5;
    color: var(--success);
}
.feature-card-modern:nth-child(3) .feature-icon-wrap {
    background: var(--accent-light);
    color: var(--accent-dark);
}
.feature-card-modern:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}
.feature-card-modern h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.feature-card-modern p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   AUTH CARDS (Login / Register)
   ======================================== */
.auth-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #d4ede2 100%);
}
.auth-card {
    background: var(--bg-white);
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.auth-card .auth-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
}
.auth-card .auth-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-lighter);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
}
.auth-card .auth-header h4 {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.4rem;
}
.auth-card .auth-body {
    padding: 0 2rem 2rem;
}
.auth-card .form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}
.auth-card .input-group-text {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.auth-card .form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.65rem 1rem;
    font-size: 0.92rem;
    transition: var(--transition);
}
.auth-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,110,79,0.1);
}
.auth-card .input-group:focus-within .input-group-text {
    border-color: var(--primary);
}
.auth-card .form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.65rem 1rem;
    font-size: 0.92rem;
}
.auth-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,110,79,0.1);
}
.auth-card .btn-auth {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
}
.auth-card .btn-auth:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(11,110,79,0.3);
}
.auth-card .auth-footer {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--bg-body);
    border-top: 1px solid var(--border-color);
}
.auth-card .auth-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.auth-card .auth-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.auth-card .auth-footer a:hover {
    text-decoration: underline;
}

/* Auth alerts */
.auth-alert {
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.auth-alert.alert-danger {
    background: #fef2f2;
    color: var(--danger);
}
.auth-alert.alert-success {
    background: #d1fae5;
    color: #065f46;
}

@media (max-width: 576px) {
    .auth-card .auth-header { padding: 1.5rem 1.25rem 1rem; }
    .auth-card .auth-body { padding: 0 1.25rem 1.5rem; }
    .auth-card .auth-footer { padding: 1rem 1.25rem; }
}

/* ========================================
   FOOTER - Modern Minimal
   ======================================== */
.footer-modern {
    background: #064e3b;
    color: rgba(255,255,255,0.7);
    padding: 2.5rem 0;
}
.footer-modern .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}
.footer-modern .footer-brand i {
    color: var(--accent);
    font-size: 1.4rem;
}
.footer-modern .footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}
.footer-modern .footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-modern .footer-links a:hover {
    color: #fff;
}
.footer-modern .footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 1.25rem 0;
}
@media (max-width: 576px) {
    .footer-modern .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
.animate-fade-up {
    animation: fadeUp 0.6s ease forwards;
}
.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}
.animate-slide-left {
    animation: slideInLeft 0.6s ease forwards;
}
.animate-slide-right {
    animation: slideInRight 0.6s ease forwards;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ========================================
   UTILITIES
   ======================================== */
.text-primary-brand { color: var(--primary) !important; }
.bg-primary-lighter { background: var(--primary-lighter); }
.bg-section-alt { background: var(--bg-section-alt); }
.rounded-xl { border-radius: var(--radius-xl); }
.shift-up:hover { transform: translateY(-4px); }

/* View all link */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 2px solid var(--primary-lighter);
}
.btn-view-all:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    gap: 0.75rem;
}

/* ========================================
   TOURS LISTING PAGE
   ======================================== */
.tours-page-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
}

.tours-page-header {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 1.5rem 2rem;
}

.tours-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.filter-quick-links {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.filter-link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-muted);
    background: var(--bg-body);
    border: 1px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-link:hover {
    color: var(--primary);
    background: var(--primary-lighter);
    border-color: var(--primary-light);
}

.filter-link.active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(11,110,79,0.25);
}

.filter-province-dropdown {
    min-width: 220px;
}

.filter-province-dropdown .form-select {
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.45rem 2.5rem 0.45rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    background-color: var(--bg-body);
    cursor: pointer;
    transition: var(--transition);
}

.filter-province-dropdown .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,110,79,0.1);
}

/* Empty State */
.tours-page-section .empty-state {
    padding: 3rem 1rem;
}

.tours-page-section .empty-state i {
    opacity: 0.4;
}

.tours-page-section .empty-state h4 {
    font-weight: 700;
}

/* Count bar */
.tours-count-bar {
    padding: 0.75rem 1rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.tours-count-bar strong {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 991.98px) {
    .tours-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-quick-links {
        justify-content: center;
    }

    .filter-province-dropdown {
        min-width: 100%;
    }

    .tours-page-header {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .filter-quick-links {
        gap: 0.3rem;
    }

    .filter-link {
        font-size: 0.78rem;
        padding: 0.35rem 0.85rem;
    }
}

/* ========================================
   TOUR DETAIL PAGE STYLES
   ======================================== */
.tour-detail-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
}

/* Breadcrumb */
.tour-detail-section .breadcrumb {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(11,110,79,0.06);
}
.tour-detail-section .breadcrumb .breadcrumb-item {
    font-size: 0.88rem;
}
.tour-detail-section .breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-weight: 500;
}
.tour-detail-section .breadcrumb .breadcrumb-item.active {
    color: var(--text-muted);
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== GALLERY ===== */
.tour-detail-gallery {
    position: sticky;
    top: 90px;
}

.main-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
}
.main-image-wrapper .main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.main-image-wrapper:hover .main-image {
    transform: scale(1.02);
}

.main-image-price-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.main-image-price-badge .price-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}
.main-image-price-badge .price-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}
.main-image-price-badge .price-unit {
    font-size: 0.6rem;
    font-weight: 500;
    color: #333;
    display: inline;
    margin-left: 1px;
}

.main-image-stats {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}
.main-image-stats .stat-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Thumbnails */
.gallery-thumbnails {
    margin-top: 0.75rem;
}
.thumb-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
}
.thumb-scroll::-webkit-scrollbar {
    height: 4px;
}
.thumb-scroll::-webkit-scrollbar-track {
    background: #e8f5e9;
    border-radius: 2px;
}
.thumb-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 2px;
}
.thumb-item {
    flex: 0 0 100px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    scroll-snap-align: start;
    opacity: 0.7;
}
.thumb-item:hover {
    opacity: 0.9;
    border-color: var(--primary-lighter);
}
.thumb-item.active {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(11,110,79,0.25);
}
.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== TOUR INFO ===== */
.tour-detail-info {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    position: sticky;
    top: 90px;
}

.tour-detail-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.tour-detail-location {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.tour-detail-location i {
    color: var(--danger);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Stats Row */
.tour-detail-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    padding: 0.75rem;
    background: var(--bg-body);
    border-radius: var(--radius-sm);
}
.stat-item i {
    font-size: 1.3rem;
    color: var(--primary-light);
}
.stat-item .stat-num {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.2;
}
.stat-item .stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Price Box */
.tour-detail-price-box {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #d1fae5 100%);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price-row .price-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.price-row .price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}
.price-row .price-unit-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-left: 0.15rem;
}
.price-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Action Buttons */
.tour-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}
.btn-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}
.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11,110,79,0.35);
    color: #fff;
}
.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary-lighter);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    cursor: pointer;
}
.btn-contact:hover {
    background: var(--primary-lighter);
    border-color: var(--primary);
    color: var(--primary-dark);
}

/* Map Links */
.tour-detail-maps {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
}
.maps-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.map-embed-wrapper iframe {
    width: 100% !important;
    height: 350px !important;
    border: 0;
    border-radius: var(--radius-sm);
}
.maps-buttons {
    display: flex;
    gap: 0.5rem;
}
.map-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.map-google {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.map-google:hover {
    background: #2e7d32;
    color: #fff;
}
.map-mo {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}
.map-mo:hover {
    background: #1565c0;
    color: #fff;
}

/* Share */
.tour-detail-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.share-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-body);
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}
.share-btn:hover {
    background: var(--primary-lighter);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== DESCRIPTION ===== */
.tour-detail-description {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
}
.section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-lighter);
    display: flex;
    align-items: center;
}
.section-title i {
    color: var(--primary);
}
.description-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* ===== SIDEBAR ===== */
.tour-detail-sidebar {
    position: sticky;
    top: 90px;
}
.sidebar-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.sidebar-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.sidebar-card-title i {
    color: var(--primary);
}
.sidebar-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
}
.sidebar-info-list li:last-child {
    border-bottom: none;
}
.sidebar-info-list .info-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.sidebar-info-list .info-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    flex: 1;
}
.sidebar-info-list .info-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}
.sidebar-info-list .info-value.price {
    color: var(--primary);
    font-weight: 800;
}
.sidebar-info-list .info-unit {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    flex-shrink: 0;
}
.sidebar-booking-card {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #fff 100%);
    border: 1px solid var(--primary-lighter);
}

/* ===== RELATED TOURS ===== */
.related-tours-section {
    padding-top: 1rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .main-image-wrapper .main-image {
        height: 350px;
    }
    .tour-detail-gallery,
    .tour-detail-info,
    .tour-detail-sidebar {
        position: static;
    }
    .tour-detail-info {
        margin-top: 1rem;
    }
}
@media (max-width: 576px) {
    .main-image-wrapper .main-image {
        height: 250px;
    }
    .tour-detail-title {
        font-size: 1.3rem;
    }
    .tour-detail-stats {
        flex-wrap: wrap;
    }
    .stat-item {
        flex: 1 1 calc(50% - 0.5rem);
    }
    .price-row .price-amount {
        font-size: 1.2rem;
    }
    .thumb-item {
        flex: 0 0 70px;
        height: 55px;
    }
    .main-image-price-badge .price-value {
        font-size: 1rem;
    }
    .main-image-stats {
        flex-direction: column;
        gap: 0.3rem;
    }
    .tour-detail-info {
        padding: 1.25rem;
    }
    .tour-detail-description {
        padding: 1.25rem;
    }
}

/* ========================================
   PROFILE PAGE STYLES
   ======================================== */
.profile-section {
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #d4ede2 100%);
}

/* Breadcrumb */
.profile-section .breadcrumb {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(11,110,79,0.06);
}
.profile-section .breadcrumb .breadcrumb-item {
    font-size: 0.88rem;
}
.profile-section .breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-weight: 500;
}
.profile-section .breadcrumb .breadcrumb-item.active {
    color: var(--text-muted);
}
.profile-section .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-light);
}

/* Profile Card */
.profile-card {
    background: var(--bg-white);
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Profile Header */
.profile-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
}
.profile-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.profile-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.9);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
    background: var(--primary-lighter);
}
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-avatar .profile-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    background: var(--primary-lighter);
}
.profile-avatar .profile-avatar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}
.profile-avatar:hover .profile-avatar-overlay {
    opacity: 1;
}

.profile-avatar-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.profile-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.profile-role-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Profile Body */
.profile-body {
    padding: 2rem;
}

.profile-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-lighter);
}
.profile-section-title i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Info Grid */
.profile-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-info-item {
    background: var(--bg-body);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    transition: var(--transition);
    border: 1px solid transparent;
}
.profile-info-item:hover {
    border-color: var(--primary-lighter);
    background: #e8f5e9;
}

.profile-info-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.3rem;
}
.profile-info-label i {
    font-size: 0.9rem;
    color: var(--primary-light);
}

.profile-info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    word-break: break-word;
}

/* Actions */
.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.btn-profile-edit {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-profile-edit:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11,110,79,0.3);
}

.btn-profile-back {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--border-color);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-profile-back:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    background: var(--primary-lighter);
}

/* Responsive */
@media (max-width: 768px) {
    .profile-info-grid {
        grid-template-columns: 1fr;
    }
    .profile-header {
        padding: 2rem 1.25rem 1.5rem;
    }
    .profile-body {
        padding: 1.25rem;
    }
    .profile-name {
        font-size: 1.3rem;
    }
    .profile-avatar {
        width: 80px;
        height: 80px;
    }
    .profile-avatar .profile-avatar-placeholder {
        font-size: 2.2rem;
    }
}
.homestays-page-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
}

/* ========================================
   MY BOOKINGS PAGE
   ======================================== */
.my-bookings-page-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 110, 79, 0.08);
    border-radius: 16px;
}

.my-bookings-empty-icon {
    font-size: 5rem;
    color: #d1d5db;
}

.my-bookings-empty-text {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.my-bookings-divider {
    opacity: 0.08;
}

.my-bookings-empty-icon-wrapper {
    animation: myBookingsFloat 3s ease-in-out infinite;
}

@keyframes myBookingsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.my-bookings-page-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
}

/* ========================================
   BOOKING PAGE - ĐẶT TOUR
   ======================================== */
/* Payment Method Options */
.payment-method-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-method-item {
    flex: 1;
    min-width: 220px;
    cursor: pointer;
    position: relative;
}

.payment-method-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
}

.payment-method-item:hover .payment-method-content {
    border-color: var(--primary-lighter, #d4ede2);
    background: #f0fdf4;
}

.payment-method-item.active .payment-method-content {
    border-color: var(--primary, #0b6e4f);
    background: #f0fdf4;
    box-shadow: 0 0 0 3px rgba(11,110,79,0.1);
}

.payment-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-lighter, #d4ede2);
    color: var(--primary, #0b6e4f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.payment-method-icon.online {
    background: #dbeafe;
    color: #2563eb;
}

.booking-page-section {
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
}

.booking-page-section .breadcrumb {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(11,110,79,0.06);
}
.booking-page-section .breadcrumb .breadcrumb-item a {
    color: var(--primary, #0b6e4f);
    font-weight: 500;
    text-decoration: none;
}
.booking-page-section .breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
}

.booking-form-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.booking-form-header {
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(11,110,79,0.08);
}

.booking-form-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary, #0b6e4f);
    color: #fff;
    border-radius: 12px;
    font-size: 1.5rem;
}

.booking-form-body {
    padding: 2rem;
}

.booking-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}
.booking-section:last-of-type {
    border-bottom: none;
}

.booking-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark, #064e3b);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.booking-section-title i {
    color: var(--primary, #0b6e4f);
    font-size: 1.1rem;
}

.quantity-control .btn {
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
    border-color: #d1d5db;
}
.quantity-control .btn:hover {
    background: var(--primary-lighter, #d4ede2);
    border-color: var(--primary, #0b6e4f);
}
.quantity-control input {
    max-width: 80px;
}

.booking-unit-price-display {
    background: #f0fdf4;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #d4ede2;
}

.booking-total-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    border: 1px solid #d4ede2;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.booking-total-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted, #6b7280);
    display: block;
    margin-bottom: 0.25rem;
}

.booking-total-calc {
    font-size: 0.85rem;
    color: var(--text-muted, #6b7280);
}

.booking-total-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark, #074b36);
}

.booking-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.booking-submit-btn {
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    background: var(--primary, #0b6e4f);
    border: none;
    transition: all 0.3s ease;
}
.booking-submit-btn:hover {
    background: var(--primary-dark, #074b36);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11,110,79,0.3);
}

.booking-sidebar {
    position: sticky;
    top: 90px;
}

.booking-sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.booking-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark, #064e3b);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-lighter, #d4ede2);
}

.booking-sidebar-tour {
    display: flex;
    gap: 1rem;
}

.booking-sidebar-tour-img {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}
.booking-sidebar-tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-sidebar-tour-info {
    flex: 1;
    min-width: 0;
}
.booking-sidebar-tour-info h6 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.booking-sidebar-tour-location {
    font-size: 0.82rem;
    color: var(--text-muted, #6b7280);
}
.booking-sidebar-tour-location i {
    color: var(--primary, #0b6e4f);
}

.booking-sidebar-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.booking-sidebar-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}
.booking-sidebar-info-list li:last-child {
    border-bottom: none;
}
.booking-sidebar-info-list .info-label {
    font-size: 0.88rem;
    color: var(--text-muted, #6b7280);
}
.booking-sidebar-info-list .info-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark, #064e3b);
}

.booking-payment-detail {
    margin-top: 0.5rem;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-body, #374151);
}

.payment-row.payment-total {
    padding: 0.5rem 0;
}

.booking-payment-note {
    font-size: 0.82rem;
    color: var(--text-muted, #6b7280);
    background: #fffbeb;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #fde68a;
}
.booking-payment-note i {
    color: #f59e0b;
}

@media (max-width: 991.98px) {
    .booking-form-body {
        padding: 1.25rem;
    }
    .booking-total-amount {
        font-size: 1.4rem;
        text-align: left;
        margin-top: 0.5rem;
    }
    .booking-form-footer {
        flex-direction: column;
    }
    .booking-form-footer .btn {
        width: 100%;
    }
    .booking-sidebar {
        position: static;
    }
}

@media (max-width: 576px) {
    .booking-form-header {
        padding: 1.25rem;
    }
    .booking-form-body {
        padding: 1rem;
    }
}

/* ========================================
   PAYMENT PAGE - THANH TOÁN QR
   ======================================== */
.payment-page-section {
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
}

.payment-page-section .breadcrumb {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(11,110,79,0.06);
}
.payment-page-section .breadcrumb .breadcrumb-item a {
    color: var(--primary, #0b6e4f);
    font-weight: 500;
    text-decoration: none;
}

.payment-header-card {
    background: linear-gradient(135deg, var(--primary, #0b6e4f) 0%, var(--primary-light, #10a06b) 100%);
    color: #fff;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(11,110,79,0.25);
}
.payment-header-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    border: 3px solid rgba(255,255,255,0.3);
}

.payment-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.payment-info-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark, #064e3b);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-lighter, #d4ede2);
    display: flex;
    align-items: center;
}
.payment-info-title i {
    color: var(--primary, #0b6e4f);
}

.payment-qr-section {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.payment-qr-wrapper {
    width: 220px;
    height: 220px;
    border: 3px solid var(--primary-lighter, #d4ede2);
    border-radius: 16px;
    padding: 0.5rem;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.payment-qr-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payment-bank-info {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1rem;
}

.bank-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f3f4f6;
}
.bank-info-row:last-child {
    border-bottom: none;
}

.bank-info-label {
    font-size: 0.88rem;
    color: var(--text-muted, #6b7280);
}

.bank-info-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark, #064e3b);
    text-align: right;
}

.bank-info-value.bank-stk {
    font-family: monospace;
    font-size: 1rem;
    color: var(--primary, #0b6e4f);
    letter-spacing: 1px;
}

.bank-info-value.bank-amount {
    color: var(--primary-dark, #074b36);
    font-size: 1.1rem;
    font-weight: 800;
}

.bank-info-value.bank-content {
    font-family: monospace;
    font-size: 0.85rem;
    color: #333;
    max-width: 200px;
    word-break: break-all;
}

.payment-note-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-body, #374151);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.payment-note-box i {
    color: #f59e0b;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.payment-order-detail {
    padding: 0.25rem 0;
}

.order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-body, #374151);
}

.order-row.order-total {
    padding: 0.5rem 0;
}

.payment-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.payment-actions .btn {
    border-radius: 50px;
    padding: 0.7rem 2rem;
    font-weight: 700;
}

@media (max-width: 576px) {
    .payment-header-card {
        padding: 1.5rem 1rem;
    }
    .payment-header-icon {
        width: 56px;
        height: 56px;
        font-size: 2rem;
    }
    .payment-actions {
        flex-direction: column;
    }
    .payment-actions .btn {
        width: 100%;
    }
    .bank-info-value.bank-content {
        max-width: 120px;
    }
}

/* ========================================
   PAYMENT STATUS - TRẠNG THÁI THANH TOÁN
   ======================================== */
.payment-status-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.payment-status-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fef3c7;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.payment-status-text {
    flex: 1;
}

/* Timeline */
.payment-status-timeline {
    position: relative;
    padding-left: 2rem;
}

.payment-status-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e5e7eb;
}

.timeline-step {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    position: relative;
}
.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #9ca3af;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-left: -2rem;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #e5e7eb;
}

.timeline-step.active .timeline-dot {
    background: var(--primary, #0b6e4f);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 0 2px var(--primary, #0b6e4f);
}

.timeline-step.current .timeline-dot {
    background: #f59e0b;
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 0 2px #f59e0b;
    animation: timelinePulse 2s infinite;
}

@keyframes timelinePulse {
    0%, 100% { box-shadow: 0 0 0 2px #f59e0b; }
    50% { box-shadow: 0 0 0 2px #f59e0b, 0 0 0 6px rgba(245,158,11,0.2); }
}

.timeline-content strong {
    font-size: 0.92rem;
    color: var(--text-dark, #064e3b);
}

/* ========================================
   BOOKING LIST - MY BOOKINGS
   ======================================== */
.booking-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-item-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.booking-item-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-color: var(--primary-lighter, #d4ede2);
}

.booking-item-img {
    height: 100%;
    min-height: 160px;
    overflow: hidden;
}
.booking-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-item-body {
    padding: 1.25rem;
}

.booking-item-title {
    font-weight: 700;
    color: var(--text-dark, #064e3b);
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.booking-item-location {
    font-size: 0.85rem;
    color: var(--text-muted, #6b7280);
}
.booking-item-location i {
    color: var(--primary, #0b6e4f);
}

.booking-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}
.meta-item {
    font-size: 0.82rem;
    color: var(--text-muted, #6b7280);
}
.meta-item i {
    margin-right: 0.25rem;
    color: var(--primary-light, #10a06b);
}

.booking-item-note {
    font-size: 0.85rem;
    color: var(--text-body, #374151);
    background: #fffbeb;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #fde68a;
}
.booking-item-note i {
    color: #f59e0b;
}

.booking-item-price {
    margin-bottom: 0.25rem;
}
.booking-item-price .price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.booking-item-price .price-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark, #074b36);
}

@media (max-width: 768px) {
    .booking-item-img {
        min-height: 120px;
        max-height: 180px;
    }
    .booking-item-body {
        padding: 1rem;
    }
    .booking-item-price .price-value {
        font-size: 1.1rem;
    }
}
