/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #4facfe;
    --text-dark: #2d3748;
    --text-muted: #718096;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */

/* Modern Topbar */
.topbar-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.topbar-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.topbar-modern .container {
    position: relative;
    z-index: 1;
}

.topbar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.topbar-contact-item:hover {
    transform: translateX(5px);
}

.topbar-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.topbar-contact-item:hover .topbar-icon-wrapper {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.topbar-icon-wrapper i {
    color: #fff;
    font-size: 1.1rem;
}

.topbar-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.topbar-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.topbar-value {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

/* Topbar Auth Links */
.topbar-auth-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.topbar-auth-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.topbar-auth-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
}

.topbar-auth-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Mobile Topbar */
@media (max-width: 767.98px) {
    .topbar-modern {
        padding: 0.75rem 0;
    }
    
    .topbar-contact-item {
        gap: 0.5rem;
    }
    
    .topbar-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .topbar-icon-wrapper i {
        font-size: 0.9rem;
    }
    
    .topbar-label {
        font-size: 0.65rem;
    }
    
    .topbar-value {
        font-size: 0.8rem;
    }
    
    .topbar-auth-link,
    .topbar-auth-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    .topbar-modern .d-flex.gap-4 {
        gap: 1rem !important;
    }
    
    .topbar-modern .d-flex.gap-2 {
        gap: 0.5rem !important;
    }
}

/* Navbar Sticky with Blur Effect */
#mainNavbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 0 !important;
    z-index: 1040;
    position: sticky !important;
    top: 0 !important;
}

#mainNavbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98) !important;
}

#mainNavbar.sticky-top {
    position: sticky !important;
    top: 0 !important;
    z-index: 1040;
}

.navbar-brand {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Mega Menu */
.dropdown-mega {
    position: static !important;
}

.mega-menu {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 3px solid var(--primary-color);
    animation: megaMenuFadeIn 0.3s ease-out;
    position: absolute !important;
    top: 100% !important;
    z-index: 1050 !important;
    display: none;
}

@keyframes megaMenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-list {
    margin: 0;
    padding: 0;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #495057 !important;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-bottom: 0.25rem;
    width: 100%;
}

.mega-menu-link:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-color) !important;
    transform: translateX(5px);
    padding-left: 1.25rem;
    text-decoration: none;
}

.mega-menu-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mega-menu-link:hover i {
    transform: translateX(3px);
}

.mega-menu-featured .card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mega-menu-featured .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Mega Menu Show/Hide */
.nav-item.dropdown-mega:hover .mega-menu,
.nav-item.dropdown-mega .dropdown-toggle[aria-expanded="true"] ~ .mega-menu,
.mega-menu.show {
    display: block !important;
}

/* Mega Menu Dropdown Arrow Animation */
.dropdown-toggle[aria-expanded="true"] {
    color: var(--primary-color) !important;
}

/* Prevent nav-link underline on dropdown toggle */
.nav-item.dropdown-mega > .nav-link::after {
    display: none;
}

.nav-item.dropdown-mega > .nav-link:hover::after {
    display: none;
}

/* Mega Menu Container */
.mega-menu .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Mega Menu Section Headers */
.mega-menu h6 {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--primary-color) !important;
}

.mega-menu h6 i {
    color: var(--primary-color);
}

/* Mega Menu Featured Cards */
.mega-menu-featured .card-img-top {
    border-radius: 8px 8px 0 0;
}

.mega-menu-featured .card-title {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Mega Menu List Items */
.mega-menu-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Override Bootstrap dropdown styles for mega menu */
.dropdown-mega .dropdown-menu {
    min-width: auto;
    padding: 0;
}

.dropdown-mega .dropdown-item {
    padding: 0;
}

/* Ensure mega menu buttons work correctly */
.mega-menu .btn {
    white-space: normal;
}

/* Responsive Mega Menu */
@media (max-width: 991.98px) {
    .mega-menu {
        position: static !important;
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        box-shadow: none;
        border: none;
        border-top: 1px solid #dee2e6;
        animation: none;
        top: auto !important;
    }
    
    .dropdown-mega {
        position: relative !important;
    }
    
    .mega-menu .container {
        padding: 1rem;
        max-width: 100%;
    }
    
    .mega-menu .row {
        margin: 0;
    }
    
    .mega-menu .col-md-3,
    .mega-menu .col-md-4,
    .mega-menu .col-md-9 {
        margin-bottom: 1.5rem;
        width: 100%;
    }
}

/* Mobile Sidebar */
.offcanvas {
    width: 280px !important;
}

.offcanvas-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem;
}

.offcanvas-title {
    font-size: 1.5rem;
}

.offcanvas-body .nav-link {
    border-radius: 8px;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.offcanvas-body .nav-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.offcanvas-body .nav-link.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    color: var(--primary-color) !important;
}

.offcanvas-body .nav-link i {
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.offcanvas-body .btn {
    font-weight: 600;
}

/* Mobile Sidebar Accordion */
.offcanvas-body .collapse {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 0.5rem 0;
}

.offcanvas-body .collapse .nav-link {
    padding-left: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.offcanvas-body .collapse .nav-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.offcanvas-body .nav-link[data-bs-toggle="collapse"] .bi-chevron-down {
    transition: transform 0.3s ease;
}

.offcanvas-body .nav-link[data-bs-toggle="collapse"][aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

/* Navbar Toggler for Mobile */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.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%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* ============================================
   GLOBAL COMPONENTS
   ============================================ */

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-light {
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Rating Stars */
.bi-star-fill {
    color: #ffc107;
}

/* Badge Styles */
.badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Section Spacing */
section {
    padding: 2.5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 1.5rem 0;
    }
}

/* ============================================
   HOME PAGE STYLES (.home-*)
   ============================================ */

/* Hero Slider */
.home-hero-slider {
    margin-top: 0;
    padding: 0 !important;
}

.home-hero-slide {
    position: relative;
    overflow: hidden;
}

.home-hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.home-hero-slide .container {
    position: relative;
    z-index: 2;
}

.home-carousel-control-prev,
.home-carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.home-carousel-control-prev:hover,
.home-carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.home-carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.home-carousel-indicators .active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Tour Cards */
.home-tour-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.home-tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3) !important;
}

.home-tour-card .card-img-top {
    transition: transform 0.5s ease;
}

.home-tour-card:hover .card-img-top {
    transform: scale(1.1);
}

.home-tour-card .card-body {
    padding: 1.5rem;
}

/* Hotel Cards */
.home-hotel-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.home-hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3) !important;
}

.home-hotel-card .card-img-top {
    transition: transform 0.5s ease;
}

.home-hotel-card:hover .card-img-top {
    transform: scale(1.1);
}

.home-hotel-card .card-body {
    padding: 1.5rem;
}

/* Blog Cards */
.home-blog-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.home-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(240, 147, 251, 0.3) !important;
}

.home-blog-card .card-img-top {
    transition: transform 0.5s ease;
}

.home-blog-card:hover .card-img-top {
    transform: scale(1.1);
}

/* Subscribe Section */
.home-subscribe {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.home-subscribe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%),
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    z-index: 1;
}

.home-subscribe-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}

.home-subscribe-description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
}

.home-subscribe-form {
    align-items: stretch;
}

.home-subscribe-input {
    flex: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.home-subscribe-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    outline: none;
}

.home-subscribe-btn {
    background: white;
    color: #212529;
    border: none;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    min-width: 120px;
}

.home-subscribe-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #212529;
}

.home-subscribe-btn span {
    font-size: 0.9rem;
    line-height: 1;
}

.home-subscribe-btn i {
    font-size: 1rem;
    line-height: 1;
}

/* Responsive */
@media (max-width: 991.98px) {
    .home-subscribe-title {
        font-size: 2rem;
    }
    
    .home-subscribe-description {
        font-size: 1rem;
    }
    
    .home-subscribe-form {
        flex-direction: column;
    }
    
    .home-subscribe-btn {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
}

/* Home Animations */
@keyframes home-fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-animate-fade-in {
    animation: home-fadeIn 0.8s ease-out;
}

.home-animate-fade-in-delay {
    animation: home-fadeIn 0.8s ease-out 0.2s both;
}

.home-animate-fade-in-delay-2 {
    animation: home-fadeIn 0.8s ease-out 0.4s both;
}

/* ============================================
   TOUR DETAIL PAGE STYLES (.tour-detail-*)
   ============================================ */

/* Hero Banner */
.tour-detail-hero-banner {
    min-height: 500px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('https://images.unsplash.com/photo-1520250497591-112f2f6a0b43?w=1920') center/cover;
    position: relative;
    overflow: hidden;
}

.tour-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.tour-detail-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: tour-detail-particles 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes tour-detail-particles {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.8; }
}

.tour-detail-title-modern {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: tour-detail-fadeInUp 0.8s ease-out;
}

.tour-detail-badge-modern {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: tour-detail-fadeInUp 0.8s ease-out;
}

.tour-detail-badge-modern:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-effect-success {
    background: rgba(25, 135, 84, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(25, 135, 84, 0.3);
}

.glass-effect-warning {
    background: rgba(255, 193, 7, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.glass-effect-primary {
    background: rgba(13, 110, 253, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.tour-detail-badge-large {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tour-detail-badge-small {
    font-size: 0.75rem;
    font-weight: 600;
}

.tour-detail-btn-hero {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tour-detail-btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tour-detail-btn-hero:hover::before {
    width: 400px;
    height: 400px;
}

.tour-detail-btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
}

.tour-detail-hero {
    height: 550px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.tour-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.tour-detail-hero-content {
    position: relative;
    z-index: 2;
}

.tour-detail-gallery-item {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.tour-detail-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0);
    transition: background 0.3s ease;
}

.tour-detail-gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.tour-detail-gallery-item:hover::after {
    background: rgba(102, 126, 234, 0.1);
}

.tour-detail-modern-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.tour-detail-modern-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.tour-detail-highlight-item,
.tour-detail-include-item,
.tour-detail-exclude-item {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.tour-detail-highlight-item:hover,
.tour-detail-include-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.tour-detail-itinerary-day-modern {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border-left: 4px solid;
    border-image: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) 1;
    transition: all 0.3s ease;
}

.tour-detail-itinerary-day-modern:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(248, 249, 250, 0.8);
}

.tour-detail-day-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

.tour-detail-day-content {
    flex: 1;
}

.tour-detail-program-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
    border-radius: 16px 16px 0 0;
}

.tour-detail-chevron {
    transition: transform 0.3s ease;
}

[data-bs-toggle="collapse"][aria-expanded="true"] .tour-detail-chevron {
    transform: rotate(180deg);
}

.tour-detail-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.tour-detail-newsletter {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    position: relative;
    overflow: hidden;
}

.tour-detail-newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: tour-detail-particles 15s ease-in-out infinite;
}

.tour-detail-btn-newsletter {
    background: white;
    color: #dc3545;
    border: none;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-detail-btn-newsletter:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Glass Card Effect */
.tour-detail-glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible !important;
}

.tour-detail-glass-card .card-body {
    overflow: visible !important;
}

.tour-detail-glass-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Booking Sidebar */
.tour-detail-booking-sidebar {
    position: sticky;
    top: 100px;
}

.tour-detail-total-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
    line-height: 1.2;
    letter-spacing: -1px;
}

.tour-detail-main-price-modern {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -1px;
}

.tour-detail-currency {
    font-size: 2rem;
    vertical-align: top;
}

/* Date & Participant Select */
.tour-detail-date-select-btn,
.tour-detail-participant-select-btn {
    border: 2px solid #dee2e6;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #212529;
    font-weight: 500;
}

.tour-detail-date-select-btn:hover,
.tour-detail-participant-select-btn:hover {
    border-color: #dc3545;
    background: #fff5f5;
}

.tour-detail-date-select-btn:focus,
.tour-detail-participant-select-btn:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.tour-detail-date-dropdown {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: visible;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: absolute !important;
    z-index: 1050 !important;
    width: 100% !important;
}

.tour-detail-date-select-wrapper {
    position: relative;
    overflow: visible !important;
}

.tour-detail-date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.tour-detail-date-item:hover {
    background: #f8f9fa;
}

.tour-detail-date-item.active {
    background: #dc3545;
    color: #ffffff;
    font-weight: 600;
}

.tour-detail-date-item.active .tour-detail-favorite-date-btn {
    border-color: #ffffff;
    color: #ffffff;
}

.tour-detail-date-item.active .tour-detail-favorite-date-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.tour-detail-favorite-date-btn {
    border: 1px solid #0d6efd;
    color: #0d6efd;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.tour-detail-favorite-date-btn:hover {
    background: #0d6efd;
    color: white;
}

.tour-detail-favorite-date-btn.active {
    background: #0d6efd;
    color: white;
}

.tour-detail-favorite-date-btn.active i {
    fill: white;
}

.tour-detail-participant-dropdown {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 100%;
    overflow: hidden;
}

.tour-detail-participant-dropdown.show {
    display: block !important;
}

.tour-detail-participant-summary {
    background: #495057 !important;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-detail-counter-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.tour-detail-counter-btn:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
    transform: scale(1.1);
}

.tour-detail-counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tour-detail-favorite-btn {
    border: 2px solid #dc3545;
    color: #dc3545;
    background: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-detail-favorite-btn:hover,
.tour-detail-favorite-btn.active {
    background: #dc3545;
    color: white;
    transform: scale(1.1);
}

.tour-detail-favorite-btn i {
    font-size: 1.2rem;
}

.tour-detail-btn-reservation {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tour-detail-btn-reservation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tour-detail-btn-reservation:hover::before {
    width: 400px;
    height: 400px;
}

.tour-detail-btn-reservation:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.5);
}

.tour-detail-contact-box-modern {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
    margin-top: 1rem;
}

.tour-detail-contact-item {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
}

.tour-detail-contact-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.tour-detail-contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border-radius: 10px;
    font-size: 1.1rem;
}

.tour-detail-map-container-modern {
    border-radius: 16px;
    overflow: hidden;
}

.tour-detail-map-placeholder-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.tour-detail-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.1) 100%);
    z-index: 1;
}

.tour-detail-map-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.tour-detail-other-tour-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(222, 226, 230, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-detail-other-tour-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(25, 135, 84, 0.3);
}

.tour-detail-other-price {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-detail-btn-other {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tour-detail-btn-other:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.tour-detail-price-card {
    position: sticky;
    top: 100px;
}

.tour-detail-booking-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tour-detail-price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tour-detail-btn-modern {
    border-radius: 12px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tour-detail-btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tour-detail-btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.tour-detail-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.tour-detail-review-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.tour-detail-review-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tour-detail-breadcrumb-modern {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
}

.tour-detail-breadcrumb-modern .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-detail-breadcrumb-modern .breadcrumb-item a:hover {
    color: white;
}

.tour-detail-stat-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tour-detail-section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.tour-detail-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

@keyframes tour-detail-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-detail-animate-fade-in-up {
    animation: tour-detail-fadeInUp 0.6s ease-out;
}

.tour-detail-animate-delay-1 {
    animation-delay: 0.1s;
}

.tour-detail-animate-delay-2 {
    animation-delay: 0.2s;
}

.tour-detail-animate-delay-3 {
    animation-delay: 0.3s;
}

/* Tabs */
.tour-detail-tabs-modern {
    border-bottom: 2px solid rgba(222, 226, 230, 0.5);
    background: rgba(248, 249, 250, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 0;
}

.tour-detail-tabs-modern .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    background: transparent;
}

.tour-detail-tabs-modern .nav-link:focus {
    outline: none;
    box-shadow: none;
}

.tour-detail-tabs-modern .nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    transition: transform 0.3s ease;
}

.tour-detail-tabs-modern .nav-link:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
    border-color: transparent;
}

.tour-detail-tabs-modern .nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.tour-detail-tabs-modern .nav-link.active {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border-color: transparent;
}

.tour-detail-tabs-modern .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.tour-detail-tabs-modern .nav-link[aria-selected="true"] {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.tab-content {
    min-height: 200px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.tab-pane.fade.show {
    opacity: 1;
}

/* Gallery Carousel */
.tour-detail-gallery-carousel {
    border-radius: 16px;
    overflow: hidden;
}

.tour-detail-gallery-slide-img {
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-detail-gallery-carousel:hover .tour-detail-gallery-slide-img {
    transform: scale(1.05);
}

.tour-detail-gallery-control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.tour-detail-gallery-control:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.tour-detail-gallery-control .carousel-control-prev-icon,
.tour-detail-gallery-control .carousel-control-next-icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

.tour-detail-gallery-carousel .carousel-indicators {
    margin-bottom: 1rem;
}

.tour-detail-gallery-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.tour-detail-gallery-carousel .carousel-indicators button.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

.tour-detail-gallery-caption {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
}

.tour-detail-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .tour-detail-gallery-slide-img {
        height: 300px;
    }
    
    .tour-detail-gallery-control {
        width: 40px;
        height: 40px;
    }
    
    .tour-detail-gallery-control .carousel-control-prev-icon,
    .tour-detail-gallery-control .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
}

.tour-detail-subtitle {
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-detail-region-badge {
    transition: all 0.3s ease;
    cursor: default;
}

.tour-detail-region-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.tour-detail-place-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(222, 226, 230, 0.5);
}

.tour-detail-place-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(25, 135, 84, 0.3);
}

/* Table Styles */
.tour-detail-tabs + .tab-content .table {
    margin-bottom: 0;
}

.tour-detail-tabs + .tab-content .table th {
    background-color: #f8f9fa;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.tour-detail-tabs + .tab-content .table td {
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 991.98px) {
    .tour-detail-booking-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .tour-detail-main-price-modern {
        font-size: 2.5rem;
    }
    
    .tour-detail-currency {
        font-size: 1.5rem;
    }
    
    .tour-detail-hero-banner {
        min-height: 400px;
    }
    
    .tour-detail-itinerary-day-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .tour-detail-day-number {
        margin: 0 auto;
    }
}

/* ============================================
   HOTEL DETAIL PAGE STYLES (.hotel-detail-*)
   ============================================ */

/* Hero Banner */
.hotel-detail-hero-banner {
    min-height: 500px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920') center/cover;
    position: relative;
    overflow: hidden;
}

.hotel-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    z-index: 1;
}

.hotel-detail-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: hotel-detail-particles 20s ease-in-out infinite;
}

@keyframes hotel-detail-particles {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hotel-detail-badge-modern {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hotel-detail-title-modern {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hotel-detail-btn-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.hotel-detail-btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
    color: white;
}

/* Glass Card */
.hotel-detail-glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Booking Sidebar */
.hotel-detail-booking-sidebar {
    position: sticky;
    top: 100px;
}

.hotel-detail-total-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.hotel-detail-date-input,
.hotel-detail-room-select {
    border-radius: 8px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.hotel-detail-date-input:focus,
.hotel-detail-room-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Guest Selection */
.hotel-detail-guest-select-btn {
    padding: 0.75rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}

.hotel-detail-guest-select-btn:hover {
    border-color: var(--primary-color);
}

.hotel-detail-guest-dropdown {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
}

.hotel-detail-guest-summary {
    font-weight: 600;
}

.hotel-detail-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-detail-counter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Buttons */
.hotel-detail-btn-reservation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.hotel-detail-btn-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.hotel-detail-favorite-btn {
    border: 2px solid #dee2e6;
    background: white;
    color: #6c757d;
    transition: all 0.3s ease;
}

.hotel-detail-favorite-btn:hover {
    border-color: #dc3545;
    background: #dc3545;
    color: white;
}

/* Contact Box */
.hotel-detail-contact-box-modern {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    padding: 1rem;
}

/* Gallery */
.hotel-detail-gallery-carousel {
    border-radius: 16px;
    overflow: hidden;
}

.hotel-detail-gallery-slide-img {
    height: 500px;
    object-fit: cover;
}

.hotel-detail-gallery-control {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hotel-detail-gallery-control:hover {
    opacity: 1;
}

/* Tabs */
.hotel-detail-tabs-modern {
    border-bottom: 2px solid #dee2e6;
    background: rgba(248, 249, 250, 0.5);
    padding: 0.5rem 1rem 0;
}

.hotel-detail-tabs-modern .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.hotel-detail-tabs-modern .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: rgba(102, 126, 234, 0.3);
}

.hotel-detail-tabs-modern .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent;
}

.hotel-detail-tabs-modern .nav-link:focus {
    outline: none;
    box-shadow: none;
}

.hotel-detail-tabs-modern + .tab-content .tab-pane {
    display: none;
}

.hotel-detail-tabs-modern + .tab-content .tab-pane.show {
    display: block;
}

.hotel-detail-tabs-modern + .tab-content .tab-pane.active {
    display: block;
}

.hotel-detail-subtitle {
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature Items */
.hotel-detail-feature-item {
    transition: all 0.3s ease;
}

.hotel-detail-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color) !important;
}

/* Map */
.hotel-detail-map-container-modern {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.hotel-detail-map-placeholder-modern {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hotel-detail-map-overlay {
    text-align: center;
    z-index: 1;
}

.hotel-detail-map-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hotel-detail-booking-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .hotel-detail-total-price {
        font-size: 2rem;
    }
    
    .hotel-detail-hero-banner {
        min-height: 400px;
    }
    
    .hotel-detail-gallery-slide-img {
        height: 300px;
    }
}

/* ============================================
   HOTELS LISTING PAGE STYLES (.hotels-*)
   ============================================ */

/* Hero Section */
.hotels-hero {
    min-height: 300px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920') center/cover;
    position: relative;
    overflow: hidden;
}

.hotels-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    z-index: 1;
}

/* Filter Card */
.hotels-filter-card {
    border-radius: 16px;
    overflow: hidden;
}

.hotels-filter-card .card-header {
    border-radius: 0;
    padding: 1.25rem;
}

.hotels-filter-select,
.hotels-filter-input {
    border-radius: 8px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.hotels-filter-select:focus,
.hotels-filter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.hotels-filter-checkboxes .form-check {
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.hotels-filter-checkboxes .form-check:hover {
    background: rgba(102, 126, 234, 0.05);
}

.hotels-filter-checkboxes .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hotels-filter-checkboxes .form-check-input[type="radio"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hotels-sort-select {
    border-radius: 8px;
    border: 2px solid #dee2e6;
    min-width: 200px;
    transition: all 0.3s ease;
}

.hotels-sort-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Hotel Cards */
.hotels-hotel-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hotels-hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hotels-hotel-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotels-hotel-card:hover .hotels-hotel-image {
    transform: scale(1.1);
}

.hotels-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotels-hotel-card:hover .hotels-image-overlay {
    opacity: 1;
}

.hotels-featured-badge,
.hotels-discount-badge {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    z-index: 2;
}

.hotels-hotel-title {
    font-size: 1.1rem;
    line-height: 1.4;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotels-empty-card {
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hotels-filter-card {
        position: static !important;
        margin-bottom: 2rem;
    }
    
    .hotels-hotel-image {
        height: 200px;
    }
    
    .hotels-sort-select {
        min-width: 150px;
    }
}

/* ============================================
   BLOG LISTING PAGE STYLES (.blog-*)
   ============================================ */

/* Hero Section */
.blog-hero {
    min-height: 300px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover;
    position: relative;
    overflow: hidden;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    z-index: 1;
}

/* Filter Card */
.blog-filter-card {
    border-radius: 16px;
    overflow: hidden;
}

.blog-filter-card .card-header {
    border-radius: 0;
    padding: 1.25rem;
}

.blog-filter-select,
.blog-sort-select {
    border-radius: 8px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.blog-filter-select:focus,
.blog-sort-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.blog-sort-select {
    min-width: 200px;
}

/* Post Cards */
.blog-post-card,
.blog-featured-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-post-card:hover,
.blog-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-post-image,
.blog-featured-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-image,
.blog-featured-card:hover .blog-featured-image {
    transform: scale(1.1);
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post-card:hover .blog-image-overlay,
.blog-featured-card:hover .blog-image-overlay {
    opacity: 1;
}

.blog-featured-badge {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    z-index: 2;
}

.blog-post-title {
    font-size: 1.1rem;
    line-height: 1.4;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-title a:hover {
    color: var(--primary-color) !important;
}

.blog-empty-card {
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

/* Responsive */
@media (max-width: 991.98px) {
    .blog-filter-card {
        position: static !important;
        margin-bottom: 2rem;
    }
    
    .blog-post-image,
    .blog-featured-image {
        height: 200px;
    }
    
    .blog-sort-select {
        min-width: 150px;
    }
}

/* ============================================
   BLOG DETAIL PAGE STYLES (.blog-detail-*)
   ============================================ */

/* Hero Banner */
.blog-detail-hero-banner {
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    z-index: 1;
}

.blog-detail-badge-modern {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-detail-title-modern {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Glass Card */
.blog-detail-glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Featured Image */
.blog-detail-featured-image {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

/* Content */
.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.blog-detail-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #212529;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-subtitle {
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sidebar */
.blog-detail-glass-card .list-group-item {
    border: none;
    padding: 1rem;
    transition: all 0.3s ease;
}

.blog-detail-glass-card .list-group-item:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(5px);
}

.blog-detail-glass-card .list-group-item a {
    color: #495057;
    transition: color 0.3s ease;
}

.blog-detail-glass-card .list-group-item:hover a {
    color: var(--primary-color);
}

.blog-detail-glass-card .list-group-item:hover i {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991.98px) {
    .blog-detail-hero-banner {
        min-height: 300px;
    }
    
    .blog-detail-featured-image {
        height: 300px;
    }
}

/* ============================================
   TOUR CALENDAR PAGE STYLES (.tour-calendar-*)
   ============================================ */

.tour-calendar-hero {
    min-height: 300px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover;
    position: relative;
    overflow: hidden;
}

.tour-calendar-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    z-index: 1;
}

.tour-calendar-filter-card,
.tour-calendar-month-card,
.tour-calendar-legend-card {
    border-radius: 16px;
    overflow: hidden;
}

.tour-calendar-tour-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid #dee2e6;
}

.tour-calendar-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.tour-calendar-unavailable {
    opacity: 0.7;
    background: #f8f9fa;
}

.tour-calendar-tour-title {
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 2.8rem;
}

/* ============================================
   CONTACT PAGE STYLES (.contact-*)
   ============================================ */

.contact-hero {
    min-height: 300px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover;
    position: relative;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    z-index: 1;
}

.contact-info-card,
.contact-form-card,
.contact-map-card {
    border-radius: 16px;
}

.contact-section-title {
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-content h6 {
    color: #212529;
}

.contact-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
}

.contact-form-input {
    border-radius: 8px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.contact-form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.contact-btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.contact-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.contact-map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.contact-map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-overlay {
    text-align: center;
    z-index: 1;
}

.contact-map-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ============================================
   CORPORATE PAGE STYLES (.corporate-*)
   ============================================ */

.corporate-hero {
    min-height: 300px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover;
    position: relative;
    overflow: hidden;
}

.corporate-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    z-index: 1;
}

.corporate-content-card {
    border-radius: 16px;
}

.corporate-section-title {
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corporate-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.corporate-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.corporate-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.corporate-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.corporate-stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.corporate-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
}

.corporate-value-item {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.corporate-value-item:hover {
    transform: translateY(-5px);
}

.corporate-value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0 auto;
}

.corporate-team-card {
    padding: 1rem;
    transition: all 0.3s ease;
}

.corporate-team-card:hover {
    transform: translateY(-5px);
}

.corporate-team-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.corporate-team-card:hover .corporate-team-image img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 767.98px) {
    .corporate-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TOURS LISTING PAGE STYLES (.tours-*)
   ============================================ */

/* Hero Section */
.tours-hero {
    min-height: 300px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('https://images.unsplash.com/photo-1520250497591-112f2f6a0b43?w=1920') center/cover;
    position: relative;
    overflow: hidden;
}

.tours-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    z-index: 1;
}

/* Filter Card */
.tours-filter-card {
    border-radius: 16px;
    overflow: hidden;
}

.tours-filter-card .card-header {
    border-radius: 0;
    padding: 1.25rem;
}

.tours-filter-select,
.tours-filter-input {
    border-radius: 8px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.tours-filter-select:focus,
.tours-filter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.tours-filter-checkboxes .form-check {
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tours-filter-checkboxes .form-check:hover {
    background: rgba(102, 126, 234, 0.05);
}

.tours-filter-checkboxes .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.tours-sort-select {
    border-radius: 8px;
    border: 2px solid #dee2e6;
    min-width: 200px;
    transition: all 0.3s ease;
}

.tours-sort-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Tour Cards */
.tours-tour-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tours-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tours-tour-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tours-tour-card:hover .tours-tour-image {
    transform: scale(1.1);
}

.tours-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tours-tour-card:hover .tours-image-overlay {
    opacity: 1;
}

.tours-featured-badge,
.tours-discount-badge {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    z-index: 2;
}

.tours-tour-title {
    font-size: 1.1rem;
    line-height: 1.4;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tours-empty-card {
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

/* Responsive */
@media (max-width: 991.98px) {
    .tours-filter-card {
        position: static !important;
        margin-bottom: 2rem;
    }
    
    .tours-tour-image {
        height: 200px;
    }
    
    .tours-sort-select {
        min-width: 150px;
    }
}

/* ============================================
   AUTH PAGES STYLES (.auth-*)
   ============================================ */

.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.auth-card {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s ease;
}

.auth-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.auth-form-control {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.auth-form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.auth-btn-submit {
    border-radius: 12px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* ============================================
   DASHBOARD PAGE STYLES (.dashboard-*)
   ============================================ */

.dashboard-card {
    border-radius: 16px;
    border: none;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dashboard-stat-card {
    border-radius: 16px;
    transition: all 0.3s ease;
}

.dashboard-stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dashboard-table {
    border-radius: 12px;
    overflow: hidden;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .home-hero-slide {
        min-height: 400px !important;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .topbar .d-flex {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .topbar .text-md-end {
        text-align: left !important;
    }
    
    .tour-detail-hero {
        height: 400px;
    }
    
    .tour-detail-price-card {
        position: relative;
        top: 0;
    }
}
