@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --primary: #0f52ba;
    --primary-light: #e6f0ff;
    --secondary: #ff3838;
    --accent: #ff9f43;
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --success: #10b981;
    --font-display: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-body: 'Be Vietnam Pro', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px rgba(15, 82, 186, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
}

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

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

/* --- Header Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.logo i {
    font-size: 24px;
    color: var(--accent);
}

.logo-img-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    gap: 22px;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    font-weight: 600;
    color: #475569;
    font-size: 14px;
    position: relative;
    padding: 6px 4px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

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

/* --- Header Right Actions Group & Services Dropdown --- */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-item-dropdown {
    position: relative;
    list-style: none;
}

.dropdown-toggle-link {
    cursor: pointer;
}

.nav-dropdown-arrow {
    font-size: 11px;
    transition: transform 0.25s ease;
    margin-left: 2px;
}

.nav-item-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 310px;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}

.dropdown-item-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-item-link:hover {
    background: #f8fafc;
}

.dropdown-item-link.active {
    background: #eff6ff;
}

.dropdown-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.dropdown-icon-box.bg-blue { background: #eff6ff; color: #2563eb; }
.dropdown-icon-box.bg-emerald { background: #ecfdf5; color: #10b981; }
.dropdown-icon-box.bg-amber { background: #fffbeb; color: #f59e0b; }
.dropdown-icon-box.bg-purple { background: #faf5ff; color: #9333ea; }

.dropdown-item-info {
    display: flex;
    flex-direction: column;
}

.dropdown-item-info .item-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.dropdown-item-info .item-desc {
    font-size: 11.5px;
    color: #64748b;
    margin-top: 2px;
}

/* Header Action Buttons */
.nav-btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #eff6ff;
    color: var(--primary);
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-btn-booking:hover, .nav-btn-booking.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 82, 186, 0.25);
}

.nav-btn-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #ffffff;
    color: #334155;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-btn-login:hover {
    background: #f8fafc;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* ==========================================================================
   6 DYNAMIC HOVER EFFECT SHOWCASE STYLES
   ========================================================================== */

/* Base Fleet Card Styles */
.fleet-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fleet-card-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0f172a;
}

.fleet-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* EFFECT 1: Phóng To Mượt Mà (Subtle Zoom & Scale) */
.effect-zoom-scale:hover .fleet-card-img {
    transform: scale(1.12);
}

.effect-zoom-scale:hover {
    box-shadow: 0 12px 30px rgba(15, 82, 186, 0.15);
    transform: translateY(-4px);
}

/* EFFECT 2: Phủ Màng Tối & Trượt Thông Tin (Gradient Overlay & Slide-Up) */
.effect-overlay-slide .fleet-card-img-wrap::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.effect-overlay-slide .overlay-caption {
    position: absolute;
    bottom: 15px; left: 15px; right: 15px;
    z-index: 5;
    color: #ffffff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    font-weight: 600;
}

.effect-overlay-slide:hover .fleet-card-img-wrap::after {
    opacity: 1;
}

.effect-overlay-slide:hover .overlay-caption {
    transform: translateY(0);
    opacity: 1;
}

/* EFFECT 3: Nghiêng 3D Perspective (3D Tilt Perspective) */
.effect-3d-tilt-wrapper {
    perspective: 1000px;
}

.effect-3d-tilt {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.effect-3d-tilt:hover {
    transform: rotateY(-8deg) rotateX(5deg) scale(1.03);
    box-shadow: -10px 20px 35px rgba(15, 82, 186, 0.22);
}

/* EFFECT 4: Kính Mờ & Thẻ Badge Pop (Glassmorphism & Badge Pop) */
.effect-glass-badge .glass-overlay-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    color: #1e3a8a;
    font-size: 12px;
    font-weight: 800;
    transform: scale(0.6);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.effect-glass-badge:hover .glass-overlay-badge {
    transform: scale(1);
    opacity: 1;
}

.effect-glass-badge:hover {
    border-color: #93c5fd;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.18);
}

/* EFFECT HỢP NHẤT 2 + 4: Trượt Thông Tin & Kính Mờ Pop (Combined Slide Overlay & Glass Badge Pop) */
.effect-overlay-glass .fleet-card-img-wrap::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 25%, rgba(15, 23, 42, 0.88) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.effect-overlay-glass .overlay-caption {
    position: absolute;
    bottom: 15px; left: 15px; right: 15px;
    z-index: 5;
    color: #ffffff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    font-weight: 600;
}

.effect-overlay-glass .glass-overlay-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 30px;
    color: #1e3a8a;
    font-size: 12px;
    font-weight: 800;
    transform: scale(0.6);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.effect-overlay-glass:hover .fleet-card-img-wrap::after {
    opacity: 1;
}

.effect-overlay-glass:hover .overlay-caption {
    transform: translateY(0);
    opacity: 1;
}

.effect-overlay-glass:hover .glass-overlay-badge {
    transform: scale(1);
    opacity: 1;
}

.effect-overlay-glass:hover .fleet-card-img {
    transform: scale(1.06);
}

.effect-overlay-glass:hover {
    border-color: #93c5fd;
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(15, 82, 186, 0.16);
}

/* EFFECT 5: Đổi Ảnh Góc Nội Thất (Multi-Angle Image Swap) */
.effect-image-swap .swap-interior-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.effect-image-swap:hover .swap-interior-img {
    opacity: 1;
}

/* EFFECT 6: Thẻ Bay & Viền Phát Sáng (Floating Elevation & Glow Border) */
.effect-glow-float {
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.effect-glow-float:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.28), 0 0 15px rgba(59, 130, 246, 0.4);
}

/* Interactive Effect Selector Bar */
.effect-selector-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.effect-btn {
    padding: 8px 16px;
    border-radius: 30px;
    border: none;
    background: transparent;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.effect-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.effect-btn.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 82, 186, 0.3);
}


.header-hotline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--white);
    padding: 9px 16px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13.5px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(15, 82, 186, 0.3);
    animation: pulse-border 2s infinite;
}

.header-hotline:hover {
    background-color: #0d4bb0;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(15, 82, 186, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(15, 82, 186, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 82, 186, 0); }
}

/* ==========================================================================
   BILINGUAL DUAL-LANGUAGE SUB-TEXT SYSTEM (VI / EN SUBTITLE)
   ========================================================================== */
.bilingual-title {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25;
}

.nav-subtext {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
    line-height: 1;
}

.dropdown-subtext {
    display: block;
    font-size: 11px;
    color: #3b82f6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.en-subtext {
    display: block;
    font-size: 0.65em;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    line-height: 1.2;
}

.en-subtext-light {
    display: block;
    font-size: 0.65em;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 3px;
    line-height: 1.2;
}


/* --- User Avatar & Dropdown --- */
.user-account-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.user-avatar-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(15, 82, 186, 0.18);
    user-select: none;
    position: relative;
}

.user-avatar-btn:hover, .user-avatar-btn.active {
    transform: translateY(-1px) scale(1.06);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(15, 82, 186, 0.35);
}

.user-avatar-btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-avatar-status {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--success);
    border: 2px solid #ffffff;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 270px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 16px 36px rgba(15, 82, 186, 0.14), 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.96);
    transform-origin: top right;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: #f8fafc;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    border-left: 1px solid rgba(226, 232, 240, 0.9);
    transform: rotate(45deg);
}

.user-dropdown-header {
    padding: 14px 16px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    border-bottom: 1px solid #f1f5f9;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.dropdown-avatar-lg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(15, 82, 186, 0.25);
    overflow: hidden;
}

.dropdown-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-user-details {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dropdown-user-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.dropdown-user-email {
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.user-dropdown-divider {
    height: 1px;
    background-color: #f1f5f9;
    margin: 6px 0;
}

.user-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 4px 8px;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

.user-dropdown-item i {
    font-size: 15px;
    width: 18px;
    text-align: center;
    color: #64748b;
    transition: color 0.2s ease;
}

.user-dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.user-dropdown-item:hover i {
    color: var(--primary);
}

.user-dropdown-item.logout-item {
    color: var(--secondary);
}

.user-dropdown-item.logout-item i {
    color: var(--secondary);
}

.user-dropdown-item.logout-item:hover {
    background-color: #fee2e2;
    color: #dc2626;
}

.user-dropdown-item.logout-item:hover i {
    color: #dc2626;
}

/* --- Subpage Banner --- */
.page-header-banner {
    padding-top: 130px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, rgba(15, 82, 186, 0.9) 0%, rgba(2, 132, 199, 0.85) 100%),
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-header-banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header-banner p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.85;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: underline;
}

main { flex: 1; }

/* --- Buttons & UI Utils --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(15, 82, 186, 0.3);
    border: none;
}

.btn-primary:hover {
    background-color: #0d4bb0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 82, 186, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark);
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid #cbd5e1;
    background-color: var(--white);
    color: var(--dark);
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 82, 186, 0.15);
}

/* --- Footer --- */
footer {
    background-color: var(--dark);
    color: #94a3b8;
    padding: 70px 0 30px;
    border-top: 1px solid #334155;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo h3 i { color: var(--accent); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.footer-links-list a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
}

.contact-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-info-item i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

/* Toast Popup */
.toast-notification {
    position: fixed;
    bottom: -100px;
    right: 24px;
    background-color: var(--white);
    color: var(--dark);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 450px;
    border-left: 6px solid var(--success);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.toast-notification.show {
    bottom: 24px;
    opacity: 1;
}

@media (max-width: 1400px) {
    .nav-menu { gap: 8px; }
    .nav-link { font-size: 12.5px; padding: 4px 3px; }
    .header-hotline { padding: 8px 14px; font-size: 12.5px; }
}

@media (max-width: 1200px) {
    .nav-menu { gap: 4px; }
    .nav-link { font-size: 12px; padding: 4px 2px; }
    .logo { font-size: 17px; }
    .header-hotline { padding: 8px 12px; font-size: 12px; }
}

@media (max-width: 1100px) {
    .nav-menu { display: none; }
    .menu-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================================
   SUBPAGE HERO BANNER SYSTEM (WORLD-CLASS TRAVEL EXPERIENCE)
   ========================================================================== */
.subpage-hero-banner {
    position: relative;
    width: 100%;
    min-height: 560px;
    height: 65vh;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    background-color: #0f172a;
}

.subpage-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    animation: subpageKenBurns 16s infinite alternate ease-in-out;
    filter: brightness(0.95);
    will-change: transform;
}

@keyframes subpageKenBurns {
    0% { transform: scale(1.0) translate(0, 0); }
    50% { transform: scale(1.09) translate(-8px, -5px) rotate(0.4deg); }
    100% { transform: scale(1.14) translate(6px, 4px); }
}

.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.45) 50%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 2;
}

.subpage-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(15, 82, 186, 0.25), transparent 70%),
                linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: heroShimmerWave 8s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes heroShimmerWave {
    0% { opacity: 0.3; transform: translateX(-15%); }
    100% { opacity: 0.8; transform: translateX(15%); }
}

.subpage-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subpage-breadcrumb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.subpage-breadcrumb-badge a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.subpage-breadcrumb-badge a:hover {
    color: #ffffff;
}

.subpage-hero-title {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.subpage-hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin-bottom: 32px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subpage-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0f52ba 0%, #2563eb 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(15, 82, 186, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 82, 186, 0.5);
    color: #ffffff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .subpage-hero-banner {
        min-height: 440px;
        height: 50vh;
    }
    .subpage-hero-content {
        padding: 100px 16px 50px;
    }
    .subpage-hero-title {
        font-size: 28px;
    }
    .subpage-hero-subtitle {
        font-size: 14.5px;
    }
    .subpage-hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   WORLD-CLASS IMAGE HOVER & VISUAL ANIMATION SYSTEM
   ========================================================================== */

/* 1. Zoom & Shine Card Effect */
.img-hover-zoom {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-md, 16px);
}

.img-hover-zoom img,
.img-zoomable {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
    will-change: transform, filter;
}

.img-hover-zoom:hover img,
.img-zoomable:hover {
    transform: scale(1.08) rotate(0.4deg);
    filter: brightness(1.06) contrast(1.02);
}

/* Light glare sweep effect on hover */
.img-hover-zoom::after,
.img-shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    transition: left 0.75s ease-in-out;
    pointer-events: none;
    z-index: 5;
}

.img-hover-zoom:hover::after,
.img-shine-effect:hover::after {
    left: 140%;
}

/* 2. Ken Burns Continuous Slow Zoom Animation */
.hero-kenburns {
    animation: kenburnsAnimation 24s infinite alternate ease-in-out;
    will-change: transform;
}

@keyframes kenburnsAnimation {
    0% { transform: scale(1.0); }
    50% { transform: scale(1.07) translateY(-10px); }
    100% { transform: scale(1.0); }
}

/* 3. Floating Card Elevation & Glow */
.image-card-glow {
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-card-glow:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 82, 186, 0.16);
}

/* 4. Fullscreen Lightbox Modal */
.image-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.image-lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-lightbox-modal.active .image-lightbox-content {
    transform: scale(1);
}

.image-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.image-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ==========================================================================
   DYNAMIC HERO SLIDESHOW CAROUSEL & PHOTO GALLERY SYSTEM
   ========================================================================== */
.hero-slideshow-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-slide-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), transform 7s ease-out;
    transform: scale(1.0);
}

.hero-slide-item.active {
    opacity: 1;
    transform: scale(1.07);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.1) 60%, rgba(15, 23, 42, 0.25) 100%);
    z-index: 2;
}

.hero-slider-controls {
    position: absolute;
    bottom: 24px;
    right: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hero-slider-arrow {
    background: transparent;
    border: none;
    color: var(--dark);
    font-size: 14px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.hero-slider-arrow:hover {
    background: var(--primary);
    color: #ffffff;
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary);
}

/* ==========================================================================
   BENTO GRID & DYNAMIC INTERACTIVE GALLERY SYSTEM
   ========================================================================== */

.gallery-filter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.gallery-filter-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.gallery-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 82, 186, 0.12);
}

.gallery-filter-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(15, 82, 186, 0.3);
}

.gallery-badge-count {
    background: rgba(255, 255, 255, 0.22);
    color: inherit;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.gallery-filter-btn:not(.active) .gallery-badge-count {
    background: #f1f5f9;
    color: #64748b;
}

/* Bento Grid Layout */
.bento-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 22px;
}

.bento-gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, opacity 0.3s ease;
    cursor: pointer;
}

.bento-gallery-card.bento-hero {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-gallery-card.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-gallery-card.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-gallery-card.bento-normal {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-gallery-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 22px 45px rgba(15, 82, 186, 0.28);
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
}

.bento-gallery-card:hover .bento-img {
    transform: scale(1.08);
    filter: brightness(1.04);
}

/* Badges */
.bento-top-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    z-index: 3;
}

.bento-badge-hot {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

.bento-badge-category {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.bento-zoom-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 3;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bento-gallery-card:hover .bento-zoom-btn {
    opacity: 1;
    transform: scale(1);
}

/* Gradient Overlay & Captions */
.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.35) 60%, rgba(15, 23, 42, 0.92) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    z-index: 2;
    transition: background 0.3s ease;
}

.bento-gallery-card:hover .bento-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.45) 50%, rgba(15, 23, 42, 0.96) 100%);
}

.bento-overlay-content {
    color: #ffffff;
    width: 100%;
}

.bento-location {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bento-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, color 0.3s ease;
}

.bento-hero .bento-title {
    font-size: 22px;
}

.bento-gallery-card:hover .bento-title {
    transform: translateY(-2px);
    color: #60a5fa;
}

/* Image Lightbox Modal Styles */
.image-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.image-lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 36px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.2s ease, transform 0.2s ease;
}

.image-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.image-lightbox-wrapper {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.image-lightbox-content {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.image-lightbox-title {
    margin-top: 16px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 24px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

/* Responsive Rules for Bento Layout */
@media (max-width: 1024px) {
    .bento-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 768px) {
    .bento-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 210px;
        gap: 14px;
    }
    .bento-gallery-card.bento-hero {
        grid-column: span 2;
        grid-row: span 2;
    }
    .bento-gallery-card.bento-tall {
        grid-row: span 1;
    }
    .bento-hero .bento-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .bento-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .bento-gallery-card.bento-hero,
    .bento-gallery-card.bento-wide,
    .bento-gallery-card.bento-tall,
    .bento-gallery-card.bento-normal {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ==========================================================================
   GENTLE HOVER & FEATURED FIRST ITEM EFFECT SYSTEM
   ========================================================================== */

/* Gentle Hover Effect for Booking & Vehicle Cards */
.booking-car-card,
.img-hover-gentle {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.booking-car-card:hover,
.img-hover-gentle:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 16px 36px rgba(15, 82, 186, 0.16);
    border-color: rgba(15, 82, 186, 0.4) !important;
}

.booking-car-card .card-img-wrap,
.img-hover-gentle .card-img-wrap {
    overflow: hidden;
    position: relative;
}

.booking-car-card img,
.img-hover-gentle img {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
}

.booking-car-card:hover img,
.img-hover-gentle:hover img {
    transform: scale(1.06);
    filter: brightness(1.04);
}

/* Light Glare Pass for Booking Cards */
.booking-car-card::after,
.img-hover-gentle::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 4;
}

.booking-car-card:hover::after,
.img-hover-gentle:hover::after {
    left: 150%;
}

/* Featured First Item in Category (Ảnh đầu tiên mỗi mục) */
.featured-first-item {
    border: 2px solid var(--primary) !important;
    position: relative;
    animation: featuredBreathing 3s infinite alternate ease-in-out;
}

@keyframes featuredBreathing {
    0% {
        box-shadow: 0 8px 24px rgba(15, 82, 186, 0.2), 0 0 0 0 rgba(15, 82, 186, 0.2);
    }
    100% {
        box-shadow: 0 16px 36px rgba(255, 159, 67, 0.35), 0 0 14px 2px rgba(255, 159, 67, 0.4);
    }
}

/* Crown / Featured Badge on First Item */
.featured-crown-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: linear-gradient(135deg, #ff9f43 0%, #ff5252 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 82, 82, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    animation: pulseBadge 2s infinite ease-in-out;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ======================================================== */
/* LIGHTBOX IMAGE VIEWER STYLES                             */
/* ======================================================== */
.lightbox-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.lightbox-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100001;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
    background: #ef4444;
    color: #ffffff;
    transform: scale(1.1);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100001;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-nav-btn:hover {
    background: rgba(15, 82, 186, 0.9);
    border-color: #0f52ba;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev-btn { left: 24px; }
.lightbox-next-btn { right: 24px; }

.lightbox-content-box {
    position: relative;
    z-index: 100000;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.25s ease;
}

.lightbox-caption-bar {
    margin-top: 14px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: 30px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.lightbox-caption-title { font-weight: 600; }
.lightbox-counter-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .lightbox-prev-btn { left: 10px; width: 40px; height: 40px; font-size: 16px; }
    .lightbox-next-btn { right: 10px; width: 40px; height: 40px; font-size: 16px; }
    .lightbox-close-btn { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 18px; }
}

/* ======================================================== */
/* MULTI-IMAGE CARD CONTROLS & DOT INDICATORS               */
/* ======================================================== */
.card-multi-img-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-img-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.card-img-dot.active {
    width: 18px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.card-img-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    background: rgba(15, 23, 42, 0.65);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.25s ease;
}

.fleet-card-img-wrap:hover .card-img-nav-btn,
.booking-car-card:hover .card-img-nav-btn {
    opacity: 1;
}

.card-img-nav-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.card-img-prev { left: 8px; }
.card-img-next { right: 8px; }

/* ==========================================================================
   MULTI-LANGUAGE SWITCHER COMPONENT STYLES
   ========================================================================== */

/* Hide Google Translate Iframe Banners & Top Offsets Completely */
html, body {
    top: 0 !important;
    position: static !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pos,
.VIpgJd-yA0eb5-r4n84b,
iframe[id*=":1.container"],
iframe[id*=":2.container"],
iframe[name*="cjt"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

.skiptranslate {
    font-size: 0 !important;
}

.goog-te-combo {
    font-family: inherit !important;
}

/* Custom Globe VI | EN Switch Toggle */
.lang-switch-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1;
    user-select: none;
    z-index: 105;
}

.lang-globe-icon {
    color: var(--primary, #0284c7);
    font-size: 16px;
    margin-right: 2px;
}

.lang-pill {
    cursor: pointer;
    color: #94a3b8;
    transition: all 0.2s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.lang-pill:hover {
    color: var(--primary-dark, #0369a1);
}

.lang-pill.active {
    color: var(--primary, #0284c7);
    font-weight: 800;
}

.lang-divider {
    color: #cbd5e1;
    font-weight: 400;
    font-size: 12px;
}






