/* Travels & Tours - Consolidated Frontend Styles */

:root {
    --primary: #3c453e;
    --primary-dark: #2a312c;
    --secondary: #181d2e;
    --accent: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #181d2e;
    --border-radius: 16px;
    --card-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;

    --primary-color: #3c453e;
    --secondary-color: #181d2e;
    --accent-color: #ffffff;
    --primary-rgb: 60, 69, 62;
    --secondary-rgb: 24, 29, 46;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Segoe UI",
        system-ui,
        -apple-system,
        sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 76px;
}

/* ─── Layout ─── */

.card {
    border-radius: 12px;
}
.rounded-4 {
    border-radius: 16px !important;
}
.text-primary {
    color: var(--primary) !important;
    color: var(--primary-color) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
    background-color: var(--primary-color) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
    background-color: var(--secondary-color) !important;
}
.text-secondary {
    color: var(--secondary) !important;
    color: var(--secondary-color) !important;
}

/* ─── Navbar ─── */
.navbar {
    background: white !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    transition: background 0.3s ease;
}
.navbar .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    color: var(--primary-color) !important;
    padding: 8px 16px !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    transition: color 0.2s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary) !important;
    color: var(--secondary-color) !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary) !important;
}
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* ─── Hero Sections ─── */

.hero-section {
    background:
        linear-gradient(
            135deg,
            #181d2e 0%,
            rgba(24, 29, 46, 0.6) 50%,
            rgba(24, 29, 46, 0.2) 100%
        ),
        url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
            center/cover no-repeat;
    min-height: 75vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-search-form {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 60px;
    padding: 8px;
}
.hero-search-form .form-control,
.hero-search-form .form-select {
    border: none;
    background: transparent;
    color: #fff;
    border-radius: 40px;
    padding: 12px 20px;
    height: auto;
}

.hero-search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.hero-search-form .form-control:focus,
.hero-search-form .form-select:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
}

.hero-search-form .form-select option {
    color: #212529;
    background: #fff;
}
.hero-search-form .btn-search {
    border-radius: 40px;
    padding: 12px 36px;
    font-weight: 600;
    background: #fff;
    color: var(--secondary);
    border: none;
    transition: all 0.3s ease;
}
.hero-search-form .btn-search:hover {
    background: var(--primary);
    color: #fff;
}

.hero-banner {
    background:
        linear-gradient(
            135deg,
            var(--secondary-color) 0%,
            rgba(24, 29, 46, 0.6) 100%
        ),
        url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
            center/cover no-repeat;
    min-height: 25vh;
    display: flex;
    align-items: center;
}

.about-hero {
    background: linear-gradient(135deg, #181d2e 0%, #2d342f 50%, #3c453e 100%);
    min-height: 25vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(60,69,62,0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(248,184,74,0.08) 0%, transparent 50%);
    z-index: 1;
}
.about-hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    z-index: 1;
}
.about-hero-particle:nth-child(1) { width: 300px; height: 300px; top: -120px; right: -60px; }
.about-hero-particle:nth-child(2) { width: 180px; height: 180px; bottom: -80px; left: 5%; }
.about-hero-particle:nth-child(3) { width: 120px; height: 120px; top: 20%; right: 20%; background: rgba(248,184,74,0.05); }
.about-hero-particle:nth-child(4) { width: 80px; height: 80px; bottom: 30%; left: 30%; }
.about-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero {
    background: linear-gradient(135deg, #181d2e 0%, #2d342f 50%, #3c453e 100%);
    min-height: 25vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
        center/cover no-repeat;
    opacity: 0.08;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
.contact-hero .container {
    position: relative;
    z-index: 2;
}

.faq-hero {
    background:
        linear-gradient(135deg, #181d2e 0%, rgba(24, 29, 46, 0.7) 100%),
        url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=80")
            center/cover no-repeat;
    min-height: 25vh;
    display: flex;
    align-items: center;
    position: relative;
}

.blog-hero {
    background:
        linear-gradient(
            135deg,
            var(--secondary-color) 0%,
            rgba(24, 29, 46, 0.7) 100%
        ),
        url("https://images.unsplash.com/photo-1501555088659-1a8a10c1e3c9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
            center/cover no-repeat;
    min-height: 25vh;
    display: flex;
    align-items: center;
}

.page-hero {
    background:
        linear-gradient(
            135deg,
            var(--secondary-color) 0%,
            rgba(24, 29, 46, 0.6) 100%
        ),
        url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
            center/cover no-repeat;
    min-height: 25vh;
    display: flex;
    align-items: center;
}

.search-hero {
    background: linear-gradient(
        135deg,
        var(--secondary-color) 0%,
        rgba(24, 29, 46, 0.7) 100%
    );
    min-height: 25vh;
    display: flex;
    align-items: center;
}

.wishlist-hero,
.bookings-hero,
.reviews-hero,
.compare-hero {
    background: linear-gradient(
        135deg,
        var(--secondary-color) 0%,
        rgba(24, 29, 46, 0.7) 100%
    );
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.dest-hero,
.country-hero,
.city-hero,
.region-hero {
    display: flex;
    align-items: center;
    min-height: 25vh;
}
.dest-hero {
    background: linear-gradient(
            to bottom,
            rgba(24, 29, 46, 0.3) 0%,
            rgba(24, 29, 46, 0.7) 100%
        )
        center/cover no-repeat;
}
.country-hero {
    background: linear-gradient(
            to bottom,
            rgba(24, 29, 46, 0.4) 0%,
            rgba(24, 29, 46, 0.8) 100%
        )
        center/cover no-repeat;
}
.city-hero {
    background: linear-gradient(
            to bottom,
            rgba(24, 29, 46, 0.3) 0%,
            rgba(24, 29, 46, 0.7) 100%
        )
        center/cover no-repeat;
}
.region-hero {
    background: linear-gradient(
            to bottom,
            rgba(24, 29, 46, 0.3) 0%,
            rgba(24, 29, 46, 0.7) 100%
        )
        center/cover no-repeat;
}

.tour-hero {
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.tour-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(24, 29, 46, 0.15) 0%,
        rgba(24, 29, 46, 0.5) 50%,
        rgba(24, 29, 46, 0.95) 100%
    );
    z-index: 1;
}
.tour-hero .container {
    position: relative;
    z-index: 3;
}
.tour-hero .breadcrumb,
.tour-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}
.tour-hero .breadcrumb .active {
    color: #fff;
}
.tour-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.tour-hero .hero-meta {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}
.tour-hero .hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* ─── Stat Cards ─── */

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition:
        transform 0.3s,
        background 0.3s;
    border: none;
}
.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}
.stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ─── Search / Filter ─── */

.search-box {
    background: white;
    border-radius: 60px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
}
.search-box .form-control,
.search-box .form-select {
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
}
.search-box .form-control:focus,
.search-box .form-select:focus {
    box-shadow: none;
}
.search-box .btn-search {
    border-radius: 50px;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border: none;
    font-weight: 600;
}
.search-box .btn-search:hover {
    background: var(--primary-dark);
}

.filter-sidebar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary-color);
    border-bottom: 1px solid #f0f0f0;
}
.filter-body {
    padding: 4px 0;
}
.filter-group {
    border-bottom: 1px solid #f4f4f4;
}
.filter-group:last-child {
    border-bottom: none;
}
.filter-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 20px;
    border: none;
    background: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: background 0.2s;
}
.filter-toggle:hover { background: #f8f9fa; }
.filter-toggle i { font-size: 0.7rem; color: #999; transition: transform 0.2s; }
.filter-options {
    display: none;
    padding: 0 20px 14px;
}
.filter-options.show {
    display: block;
}
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    cursor: pointer;
    font-size: 0.85rem;
    color: #555;
    transition: color 0.2s;
}
.filter-option:hover { color: var(--secondary-color); }
.filter-option input[type="checkbox"] {
    display: none;
}
.check-indicator {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 2px solid #d0d0d0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
}
.filter-option input:checked + .check-indicator {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.filter-option input:checked + .check-indicator::after {
    content: '\F26E';
    font-family: 'bootstrap-icons';
    font-size: 0.6rem;
    color: #fff;
    font-weight: 700;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 2px 4px;
}
.filter-chip .btn-close {
    font-size: 0.5rem;
    margin-left: 4px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}
.filter-chip .btn-close:hover { opacity: 1; }
.sort-select {
    max-width: 220px;
}
.tour-grid .card {
    height: 100%;
}
.results-count {
    font-size: 0.9rem;
    color: #6c757d;
}
.empty-state {
    padding: 4rem 2rem;
    text-align: center;
}
.empty-state i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}
.page-link {
    color: var(--primary-color);
}
.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ─── Section Styling ─── */

.section-title {
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--secondary);
    position: relative;
}
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-top: 12px;
    border-radius: 4px;
}
.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
}

/* ─── Cards ─── */

/* ─── Premium Tour Card ─── */
.tour-card {
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.tour-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.tour-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.tour-card:hover .tour-card-img-wrap img {
    transform: scale(1.08);
}
.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}
.tour-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tour-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}
.badge-featured {
    background: rgba(248,184,74,0.9);
    color: #181d2e;
}
.badge-discount {
    background: rgba(220,53,69,0.9);
    color: #fff;
}
.tour-card-topinfo {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
}
.tour-card-topinfo span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    padding: 3px 10px;
    border-radius: 6px;
}
.tour-card-title {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--secondary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tour-diff {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: capitalize;
}
.tour-diff-easy { background: #d4edda; color: #155724; }
.tour-diff-moderate { background: #fff3cd; color: #856404; }
.tour-diff-challenging { background: #ffeeba; color: #856404; }
.tour-diff-difficult { background: #f8d7da; color: #721c24; }
.tour-diff-extreme { background: #e2e3e5; color: #383d41; }
.tour-rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.78rem;
    color: #f8b84a;
}
.tour-rating span { font-weight: 700; color: var(--secondary-color); }
.tour-rating small { color: #999; font-weight: 400; font-size: 0.7rem; }
.tour-card-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tour-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}
.tour-price-old {
    font-size: 0.85rem;
    font-weight: 500;
    color: #adb5bd;
    text-decoration: line-through;
    margin-right: 6px;
}

.destination-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.destination-card .card-img-top {
    height: 200px;
    object-fit: cover;
}
.destination-card .card-body {
    padding: 1.25rem;
}
.destination-card .country-flag {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.destination-card .tour-count {
    font-size: 0.85rem;
    color: #6c757d;
}
.destination-card img {
    height: 220px;
    object-fit: cover;
}

.category-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.category-card img {
    height: 160px;
    object-fit: cover;
}
.category-card .card-body {
    padding: 1rem 1.25rem;
}
.category-card .card-body h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.blog-card-custom {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.blog-card-custom:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.blog-card-custom .card-img-top {
    height: 220px;
    object-fit: cover;
}

/* ─── Feature Cards ─── */

.feature-card {
    padding: 2rem;
    border-radius: var(--card-radius);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    transition: all 0.4s ease;
}
.feature-card:hover .feature-icon {
    background: var(--primary);
    transform: scale(1.08);
}
.feature-card h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}
.feature-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* ─── Country / Region ─── */

.country-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.country-card img {
    height: 200px;
    object-fit: cover;
}
.country-flag-sm {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
}
.country-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.country-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}
.country-pill img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 10px;
}

.region-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #e9ecef;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.region-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.info-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}
.info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}
.info-card h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.info-card small {
    color: #6c757d;
}

/* ─── Testimonials ─── */

.testimonial-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 16px;
    right: 20px;
}
.testimonial-card .testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 14px;
}
.testimonial-card .stars {
    color: #f8b84a;
    font-size: 0.9rem;
}
.testimonial-card .testimonial-text {
    font-style: italic;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ─── Blog ─── */

.blog-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.blog-card .blog-img {
    height: 200px;
    object-fit: cover;
}
.blog-card .card-body {
    padding: 1.25rem;
}
.blog-card .card-body .blog-date {
    font-size: 0.8rem;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card .card-body h6 {
    font-weight: 600;
    line-height: 1.4;
}
.blog-card .card-body p {
    font-size: 0.9rem;
    color: #6c757d;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.blog-content p {
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.25rem;
}
.blog-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}
.blog-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f8f9fa;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #495057;
}
.blog-content ul,
.blog-content ol {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}
.blog-content a {
    color: var(--primary-color);
}

.tag-badge {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
}
.tag-badge:hover {
    background: var(--primary-color);
    color: #fff;
}
.category-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.category-badge:hover {
    opacity: 0.85;
    color: #fff;
}

.comment-card {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}
.comment-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ─── FAQ ─── */

.faq-search {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 60px;
    padding: 6px;
    max-width: 500px;
}
.faq-search input {
    border: none;
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.95rem;
    outline: none;
    width: 100%;
}
.faq-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.faq-search button {
    border-radius: 60px;
    padding: 10px 28px;
    white-space: nowrap;
    background: var(--primary-color, #3c453e);
    color: #fff;
    border: none;
    font-weight: 500;
    transition: all 0.3s;
}
.faq-search button:hover {
    background: #2d3431;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.category-tab {
    padding: 10px 24px;
    border-radius: 60px;
    border: 2px solid #dee2e6;
    background: transparent;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    color: #495057;
}
.category-tab:hover {
    border-color: var(--primary-color, #3c453e);
    color: var(--primary-color, #3c453e);
}
.category-tab.active {
    background: var(--primary-color, #3c453e);
    border-color: var(--primary-color, #3c453e);
    color: #fff;
}

.faq-accordion .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 12px;
}
.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--secondary-color);
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
    padding: 20px 24px;
    font-size: 1rem;
    background: #fff;
    box-shadow: none;
    border-radius: 16px !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--secondary);
    color: #fff;
    background: #f8f9fa;
    color: var(--primary-color, #3c453e);
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
}
.faq-accordion .accordion-button::after {
    background-size: 16px;
    transition: all 0.3s;
}
.faq-accordion .accordion-body {
    padding: 1.25rem;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 0 24px 20px;
    line-height: 1.8;
}
.faq-accordion .category-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 20px;
    background: #e9ecef;
    color: #6c757d;
    margin-left: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.accordion-button:not(.collapsed) .category-badge {
    background: rgba(60, 69, 62, 0.12);
    color: var(--primary-color, #3c453e);
}

.category-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.category-section-title .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

/* ─── Buttons ─── */

.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.btn-primary:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(60, 69, 62, 0.3);
    background-color: #2d3431 !important;
    border-color: #2d3431 !important;
}
.btn-primary:hover {
    background-color: #2d3431 !important;
    border-color: #2d3431 !important;
}

.btn-outline-primary {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
    background-color: var(--primary) !important;
    color: #fff !important;
}

/* ─── Forms ─── */

.form-control {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.2s;
}
.form-control:focus {
    border-color: #3c453e;
    box-shadow: 0 0 0 3px rgba(60, 69, 62, 0.1);
}
.form-control-lg {
    font-size: 0.95rem;
}

/* ─── Footer ─── */

.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
}
.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}
.footer a:hover {
    color: white;
    padding-left: 5px;
}
.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 8px;
    transition: var(--transition);
}
.footer .social-links a:hover {
    background: var(--primary);
    color: white;
    padding-left: 0;
}

/* ─── Newsletter ─── */

.newsletter-section {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
    padding: 4rem 0;
    background: var(--secondary);
    border-radius: 20px;
    padding: 3.5rem 2rem;
}
.newsletter-form .form-control {
    border-radius: 50px;
    padding: 14px 20px;
    border: none;
}
.newsletter-form .btn {
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 600;
}
.newsletter-section .form-control {
    border-radius: 40px 0 0 40px;
    border: none;
    padding: 14px 24px;
    height: auto;
}
.newsletter-section .form-control:focus {
    box-shadow: none;
}
.newsletter-section .btn-subscribe {
    border-radius: 0 40px 40px 0;
    padding: 14px 32px;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    border: none;
}
.newsletter-section .btn-subscribe:hover {
    background: #2d3431;
}

/* ─── CTA ─── */

.cta-section {
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        var(--primary) 100%
    );
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #2a3a4a 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #181d2e 0%, #3c453e 100%);
    border-radius: 24px;
    padding: 4rem;
}
.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    width: 500px;
    height: 500px;
    background: rgba(60, 69, 62, 0.3);
}
.cta-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* ─── Booking Steps ─── */

.booking-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.booking-step .step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.booking-step .step.active {
    background: var(--primary-color);
    color: #fff;
}
.booking-step .step.completed {
    background: #198754;
    color: #fff;
}
.booking-step .step.inactive {
    background: #e9ecef;
    color: #adb5bd;
}
.booking-step .step-line {
    width: 60px;
    height: 2px;
    background: #e9ecef;
}
.booking-step .step-line.active {
    background: var(--primary-color);
}

.price-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}
.price-breakdown-item:last-child {
    border-bottom: none;
}
.payment-option {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.payment-option:hover {
    border-color: var(--primary-color);
}
.payment-option.selected {
    border-color: var(--primary-color);
    background: rgba(60, 69, 62, 0.04);
}
.payment-option img {
    height: 32px;
    object-fit: contain;
}

/* ─── Tour Show ─── */

.floating-stats-bar {
    display: flex;
    justify-content: center;
    margin-top: -40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
    animation: statsDropIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
@keyframes statsDropIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.floating-stats-bar .stat-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 18px 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.floating-stats-bar .stat-cell {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 4px 0;
}
.floating-stats-bar .stat-cell:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.06), transparent);
}
.floating-stats-bar .stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), #5a6b5c);
    box-shadow: 0 4px 12px rgba(60, 69, 62, 0.2);
}
.floating-stats-bar .stat-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.floating-stats-bar .stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
    margin-top: 1px;
}

.content-section {
    padding-top: 80px;
    padding-bottom: 60px;
}

.nav-tabs .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s;
    position: relative;
}
.nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s;
    border-radius: 3px 3px 0 0;
}
.nav-tabs .nav-link.active::after {
    width: 60%;
}
.nav-tabs .nav-link.active {
    color: var(--primary-color);
}
.tab-pane {
    padding-top: 1.5rem;
}

.itinerary-day {
    border-left: 3px solid var(--primary-color);
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}
.itinerary-day::before {
    content: attr(data-day);
    position: absolute;
    left: -13px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.sidebar-price-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

@keyframes priceGlow {
    0%,
    100% {
        text-shadow: 0 0 4px rgba(13, 110, 253, 0.1);
    }
    50% {
        text-shadow: 0 0 16px rgba(13, 110, 253, 0.25);
    }
}
.price-pulse {
    animation: priceGlow 2s ease-in-out infinite;
}

.included-item {
    color: #198754;
}
.excluded-item {
    color: #dc3545;
}

.review-card {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    transition: background 0.2s;
    padding: 1rem;
    border-radius: 12px;
}
.review-card:hover {
    background: #f8f9fa;
}
.review-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.review-card:last-child:hover {
    background: transparent;
}

.gallery-masonry {
    column-count: 3;
    column-gap: 12px;
}
.gallery-masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.gallery-masonry .gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.gallery-masonry .gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s;
}
.gallery-masonry .gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-masonry .gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-masonry .gallery-item:hover .gallery-caption {
    opacity: 1;
}

.dates-table th {
    background: var(--secondary-color);
    color: #fff;
    font-weight: 500;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
    color: #6c757d;
    border: 1px solid #dee2e6;
}
.share-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.mobile-book-btn {
    z-index: 1040;
    border-radius: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}
.mobile-book-btn i {
    font-size: 1.1rem;
}

.review-rating-bar {
    height: 8px;
    border-radius: 4px;
    background: #e9ecef;
    overflow: hidden;
}
.review-rating-bar .progress-fill {
    height: 100%;
    background: #f8b84a;
    border-radius: 4px;
    transition: width 0.6s ease;
}

#galleryModal .modal-content {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}
#galleryModal .carousel-item img {
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}
#galleryModal .carousel-control-prev,
#galleryModal .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}
#galleryModal:hover .carousel-control-prev,
#galleryModal:hover .carousel-control-next {
    opacity: 1;
}
#galleryModal .carousel-control-prev {
    left: 16px;
}
#galleryModal .carousel-control-next {
    right: 16px;
}
#galleryModal .carousel-indicators {
    position: absolute;
    bottom: -40px;
}
#galleryModal .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    margin: 0 4px;
}
#galleryModal .carousel-indicators button.active {
    background: #fff;
}

/* ─── Contact ─── */

.info-card {
    border: none;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.info-card:nth-child(1)::before {
    background: linear-gradient(90deg, #3c453e, #181d2e);
}
.info-card:nth-child(2)::before {
    background: linear-gradient(90deg, #181d2e, #3c453e);
}
.info-card:nth-child(3)::before {
    background: linear-gradient(90deg, #3c453e, #181d2e);
}
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    transition: transform 0.3s;
}
.info-card:hover .info-icon {
    transform: scale(1.1);
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}
.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    color: #fff;
}
#contactMap {
    height: 350px;
    border-radius: 16px;
    z-index: 1;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.hours-item:last-child {
    border-bottom: none;
}

.success-alert {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: none;
    border-radius: 16px;
    padding: 1rem 1.25rem;
}

/* ─── Compare ─── */

.compare-table th {
    background: var(--secondary-color);
    color: #fff;
    font-weight: 500;
    vertical-align: middle;
    min-width: 140px;
}
.compare-table td {
    vertical-align: top;
}
.compare-table .tour-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}
.compare-table .remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Profile ─── */

.profile-sidebar {
    border-radius: 16px;
    text-align: center;
    padding: 2rem;
}
.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}
.profile-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}
.nav-pills .nav-link {
    border-radius: 10px;
    color: #495057;
    padding: 0.75rem 1rem;
    text-align: left;
}
.nav-pills .nav-link i {
    margin-right: 10px;
}
.nav-pills .nav-link.active {
    background: var(--primary-color);
    color: #fff;
}

.dashboard-stat-card {
    border: none;
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s;
}
.dashboard-stat-card:hover {
    transform: translateY(-4px);
}
.dashboard-stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.quick-link-card {
    border: 2px dashed #dee2e6;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s;
    display: block;
}
.quick-link-card:hover {
    border-color: var(--primary-color);
    background: rgba(60, 69, 62, 0.04);
    transform: translateY(-3px);
}
.quick-link-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.booking-item {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}
.booking-item:last-child {
    border-bottom: none;
}
.review-item {
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 0;
}
.review-item:last-child {
    border-bottom: none;
}
.star-rating {
    color: #f8b84a;
    color: #ffc107;
}
.star-rating .bi-star {
    color: #ddd;
}

.booking-card {
    border: none;
    border-radius: 16px;
    transition: transform 0.3s;
}
.booking-card:hover {
    transform: translateY(-2px);
}
.status-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
}

/* ─── Payment ─── */

.payment-info-card {
    border-left: 4px solid var(--primary-color);
}
.bank-detail-row {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}
.bank-detail-row:last-child {
    border-bottom: none;
}

/* ─── Invoice/Print ─── */

@media print {
    body {
        padding-top: 0;
        background: #fff !important;
    }
    .navbar,
    footer,
    #scrollTopBtn,
    .no-print {
        display: none !important;
    }
    .card {
        box-shadow: none !important;
        border: 1px solid #dee2e6 !important;
    }
    .invoice-container {
        max-width: 100% !important;
    }
}
.invoice-header {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
.invoice-table th {
    background: var(--secondary-color);
    color: #fff;
    font-weight: 500;
}
.invoice-total-row td {
    font-weight: 700;
    font-size: 1.1rem;
    border-top: 2px solid var(--primary-color);
}

/* ─── Booking Success ─── */

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease;
}
.success-icon i {
    font-size: 3.5rem;
    color: #fff;
}
@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.booking-number {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-color);
}
.detail-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}
.detail-item:last-child {
    border-bottom: none;
}
.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation: confettiFall 3s ease infinite;
}
@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(400px) rotate(720deg);
        opacity: 0;
    }
}

/* ─── About Page ─── */

.mission-card {
    border: none;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: transform 0.3s;
}
.mission-card:hover {
    transform: translateY(-5px);
}
.mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3c453e, #181d2e);
}
.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -1.65rem;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #3c453e;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #3c453e;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
    height: 100%;
}
.value-card:hover {
    border-color: #3c453e;
    box-shadow: 0 8px 30px rgba(60, 69, 62, 0.1);
    transform: translateY(-3px);
}
.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

/* ─── Page Content ─── */

.page-content h2,
.page-content h3,
.page-content h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.page-content p {
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.25rem;
}
.page-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}
.page-content ul,
.page-content ol {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}
.page-content a {
    color: var(--primary-color);
}
.page-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f8f9fa;
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

/* ─── Attractions ─── */

.attraction-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}
.attraction-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 12px;
}

/* ─── Video ─── */

.video-section {
    background:
        linear-gradient(
            135deg,
            rgba(24, 29, 46, 0.8) 0%,
            rgba(24, 29, 46, 0.4) 100%
        ),
        url("https://images.unsplash.com/photo-1503220317373-aa0718d2e2c8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
            center/cover no-repeat;
    min-height: 50vh;
    border-radius: 20px;
    position: relative;
}
.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}
.video-play-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    color: #fff;
}

/* ─── Instagram Grid ─── */

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.instagram-grid a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}
.instagram-grid a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.instagram-grid a:hover img {
    transform: scale(1.1);
}
.instagram-grid a .ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24, 29, 46, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.8rem;
}
.instagram-grid a:hover .ig-overlay {
    opacity: 1;
}

/* ─── Partners ─── */

.partner-logo {
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
    object-fit: contain;
}
.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ─── Carousel ─── */

.carousel-control-prev,
.carousel-control-next {
    width: auto;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-size: 16px;
}

/* ─── Badges & Prices ─── */

.badge-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc3545;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}
.price-old {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 0.85rem;
    margin-right: 8px;
}
.price-new {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}
.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.price-current {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.4rem;
}

.package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-difficulty {
    border-radius: 50px;
    padding: 5px 12px;
    font-weight: 500;
}
.star-rating {
    color: #ffc107;
}
.star-rating .bi-star {
    color: #ddd;
}

/* ─── Scroll ─── */

.scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}
.scroll-wrapper::-webkit-scrollbar {
    height: 4px;
}
.scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition:
        opacity 0.3s,
        transform 0.3s;
}
#scrollTopBtn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ─── Animations ─── */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Instagram Grid (legacy) ─── */
.instagram-grid .ig-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}
.instagram-grid .ig-item::after {
    content: "\F437";
    font-family: "bootstrap-icons";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: white;
    z-index: 2;
    transition: var(--transition);
}
.instagram-grid .ig-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}
.instagram-grid .ig-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}
.instagram-grid .ig-item:hover::before {
    opacity: 1;
}

/* ─── Auth Pages ─── */

.auth-section {
    background: linear-gradient(135deg, #f0f2f5 0%, #e2e6ea 100%);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.auth-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(60,69,62,0.03);
}
.auth-section::after {
    content: '';
    position: absolute;
    bottom: -40%; left: -20%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(24,29,46,0.03);
}
.auth-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    z-index: 1;
}
.auth-card .card-body { padding: 2.5rem; }
.auth-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, #3c453e, #181d2e);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(60,69,62,0.2);
}
.auth-icon i { font-size: 1.75rem; color: white; }
.auth-card .form-control {
    border-radius: 12px; padding: 0.75rem 1rem;
    border: 2px solid #e9ecef; transition: all 0.2s;
    font-size: 0.95rem;
}
.auth-card .form-control:focus {
    border-color: #3c453e;
    box-shadow: 0 0 0 3px rgba(60,69,62,0.1);
}
.auth-card .btn-primary {
    border-radius: 12px; padding: 0.7rem 1rem; font-weight: 600;
    background: linear-gradient(135deg, #3c453e, #181d2e);
    border: none; transition: all 0.3s;
}
.auth-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(60,69,62,0.3);
}
.auth-card .btn-outline-secondary {
    border-radius: 12px;
    padding: 0.7rem 1rem;
    font-weight: 500;
    border: 2px solid #dee2e6;
    color: #495057;
}
.auth-card .btn-outline-secondary:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

/* ─── Responsive ─── */

@media (max-width: 991.98px) {
    body {
        padding-top: 66px;
    }
    .navbar .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
        padding: 1rem 0;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 66px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .search-box {
        border-radius: 20px;
    }
    .search-box .btn-search {
        border-radius: 20px;
    }
    .footer-grid {
        text-align: center;
    }
    .footer-grid .text-md-start {
        text-align: center !important;
    }
    .footer-grid .justify-content-md-start {
        justify-content: center !important;
    }
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-hero h1 {
        font-size: 1.8rem;
    }
    .floating-stats-bar {
        margin-top: -25px;
        margin-bottom: 25px;
    }
    .floating-stats-bar .stat-item {
        padding: 12px 4px;
        max-width: 100%;
    }
    .floating-stats-bar .stat-value {
        font-size: 1rem;
    }
    .floating-stats-bar .stat-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    .floating-stats-bar .stat-label {
        font-size: 0.6rem;
    }
    .gallery-masonry {
        column-count: 2;
    }
    .tour-hero {
        min-height: 50vh;
    }
}

@media (max-width: 576px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════════════════════════════
   MODERN HOMEPAGE STYLES
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Hero Particles ─── */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 15s infinite;
}
.hero-particles span:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; width: 8px; height: 8px; }
.hero-particles span:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { top: 60%; left: 5%; animation-delay: 2s; width: 10px; height: 10px; }
.hero-particles span:nth-child(4) { top: 70%; left: 75%; animation-delay: 3s; }
.hero-particles span:nth-child(5) { top: 40%; left: 50%; animation-delay: 4s; width: 4px; height: 4px; }
.hero-particles span:nth-child(6) { top: 85%; left: 30%; animation-delay: 5s; }
.hero-particles span:nth-child(7) { top: 15%; left: 40%; animation-delay: 6s; width: 12px; height: 12px; }
.hero-particles span:nth-child(8) { top: 50%; left: 90%; animation-delay: 7s; }
.hero-particles span:nth-child(9) { top: 30%; left: 25%; animation-delay: 8s; width: 5px; height: 5px; }
.hero-particles span:nth-child(10) { top: 90%; left: 60%; animation-delay: 9s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

/* ─── Hero Content ─── */
.hero-badge {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    animation: fadeUp 0.8s ease 0.15s forwards;
    opacity: 0;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    animation: fadeUp 0.8s ease 0.25s forwards;
    opacity: 0;
}

.hero-search-form {
    animation: fadeUp 0.8s ease 0.35s forwards;
    opacity: 0;
}
.search-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 6px;
    flex-wrap: wrap;
}
.search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    flex: 1;
    min-width: 140px;
}
.search-field i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}
.search-field input,
.search-field select {
    border: none;
    background: transparent;
    color: #fff;
    padding: 6px 0;
    width: 100%;
    font-size: 0.95rem;
    outline: none;
}
.search-field input::placeholder { color: rgba(255, 255, 255, 0.6); }
.search-field select option { color: #212529; background: #fff; }
.search-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}
.search-btn {
    padding: 12px 32px;
    border-radius: 40px;
    border: none;
    background: #fff;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.search-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 2.5rem;
    animation: fadeUp 0.8s ease 0.45s forwards;
    opacity: 0;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounceDown 2s infinite;
}
.hero-scroll-indicator i {
    font-size: 0.9rem;
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
    .search-group { border-radius: 20px; }
    .search-field { min-width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .search-field:last-of-type { border-bottom: none; }
    .search-divider { display: none; }
    .search-btn { width: 100%; border-radius: 30px; }
    .hero-stats { gap: 12px; flex-wrap: wrap; }
}

/* ─── Section Structure ─── */
.section {
    padding: 5rem 0;
}
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.section-header.text-center {
    flex-direction: column;
    align-items: center;
}
.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(60, 69, 62, 0.08);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.btn-outline-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline-link:hover {
    background: var(--primary);
    color: #fff;
}

/* ─── Destination Cards (Modern) ─── */
.destination-card-link {
    text-decoration: none;
    display: block;
}
.destination-card-modern {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}
.destination-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.dest-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.dest-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.destination-card-modern:hover .dest-card-image img {
    transform: scale(1.08);
}
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}
.dest-card-flag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 36px;
    height: 26px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.8);
}
.dest-card-body {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dest-card-body h5 {
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    font-size: 1.1rem;
}
.dest-card-tours {
    font-size: 0.8rem;
    color: #6c757d;
    white-space: nowrap;
}

/* ─── Feature Cards (Modern) ─── */
.feature-card-modern {
    padding: 2.5rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.feature-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.feature-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    color: #fff;
    transition: all 0.4s ease;
}
.feature-card-modern:hover .feature-icon-wrap {
    border-radius: 50%;
    transform: scale(1.1);
}
.feature-card-modern h5 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}
.feature-card-modern p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* ─── Category Cards (Modern) ─── */
.category-card-link {
    text-decoration: none;
    display: block;
}
.category-card-modern {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}
.category-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.cat-card-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}
.cat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.category-card-modern:hover .cat-card-image img {
    transform: scale(1.1);
}
.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24, 29, 46, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.category-card-modern:hover .cat-card-overlay {
    opacity: 1;
}
.cat-card-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: translateX(-10px);
    transition: transform 0.3s ease;
}
.category-card-modern:hover .cat-card-overlay i {
    transform: translateX(0);
}
.cat-card-body {
    padding: 1rem 1.15rem;
}
.cat-card-body h6 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.15rem;
}
.cat-card-body small {
    color: #6c757d;
    font-size: 0.8rem;
}

/* ─── Testimonial Cards (Modern) ─── */
.testimonial-card-modern {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}
.testimonial-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.testimonial-rating {
    color: #f8b84a;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-style: italic;
    color: #495057;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author h6 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}
.testimonial-author small {
    color: #6c757d;
    font-size: 0.8rem;
}

/* ─── Countries Grid (Modern) ─── */
.countries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.country-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.country-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}
.country-chip img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}
.country-count {
    background: var(--primary);
    color: #fff;
    padding: 1px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 4px;
}

/* ─── Newsletter Card ─── */
.newsletter-card {
    background: linear-gradient(135deg, #181d2e 0%, #2a3a4a 100%);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}
.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(60,69,62,0.3), transparent);
    border-radius: 50%;
    pointer-events: none;
}
.newsletter-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 6px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.newsletter-input-group i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    padding-left: 20px;
}
.newsletter-input-group input {
    border: none;
    background: transparent;
    padding: 14px 16px;
    color: #fff;
    font-size: 1rem;
    flex: 1;
}
.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.newsletter-input-group input:focus {
    outline: none;
    box-shadow: none;
}
.newsletter-input-group .btn {
    padding: 12px 28px;
}
@media (max-width: 768px) {
    .newsletter-card { padding: 2rem; border-radius: 16px; }
    .newsletter-input-group { flex-direction: column; border-radius: 20px; background: transparent; border: none; gap: 10px; }
    .newsletter-input-group i { display: none; }
    .newsletter-input-group input { background: rgba(255,255,255,0.1); border-radius: 30px; width: 100%; padding: 14px 20px; }
    .newsletter-input-group .btn { width: 100%; }
}

/* ─── CTA Card ─── */
.cta-card {
    background: linear-gradient(135deg, #3c453e 0%, #181d2e 100%);
    border-radius: 24px;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
}
.cta-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(60,69,62,0.4), transparent);
    border-radius: 50%;
    pointer-events: none;
}

/* ─── Partners ─── */
.section-partners .partner-logo {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}
.section-partners .partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ─── Scroll Animation ─── */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION BACKGROUND OVERLAYS
   ═══════════════════════════════════════════════════════════════════ */
.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.section-destinations::before {
    background-image: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.12;
}
.section-destinations::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, rgba(60,69,62,0.05) 50%, rgba(255,255,255,0.9) 100%);
    pointer-events: none;
}

.section-trending::before {
    background-image: url('https://images.unsplash.com/photo-1502920514313-52581002a659?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.1;
}

.section-why::before {
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.1;
}
.section-why::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(60,69,62,0.08) 50%, rgba(248,249,250,0.95) 100%);
    pointer-events: none;
}

.section-categories::before {
    background-image: url('https://images.unsplash.com/photo-1501555088659-1a8a10c1e3c9?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.12;
}

.section-featured::before {
    background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.1;
}
.section-featured::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.85) 0%, rgba(24,29,46,0.06) 50%, rgba(255,255,255,0.9) 100%);
    pointer-events: none;
}

.section-testimonials::before {
    background-image: url('https://images.unsplash.com/photo-1500835556837-99ac94a94552?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.1;
}
.section-testimonials::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.88) 0%, rgba(60,69,62,0.04) 50%, rgba(255,255,255,0.92) 100%);
    pointer-events: none;
}

.section-blog::before {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.1;
}

.section-countries::before {
    background-image: url('https://images.unsplash.com/photo-1526778548025-fa2f459b5f5a?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.1;
}
.section-countries::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(24,29,46,0.05) 50%, rgba(255,255,255,0.93) 100%);
    pointer-events: none;
}

.section-faq::before {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.1;
}

.section-partners::before {
    background-image: url('https://images.unsplash.com/photo-1516383274235-5f42d6c642bd?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.1;
}
.section-partners::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(60,69,62,0.05) 50%, rgba(255,255,255,0.95) 100%);
    pointer-events: none;
}

.section > .container,
.section > .container-fluid {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .section::before { background-attachment: scroll; }
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURED DESTINATION CARDS (Full-bleed overlay style)
   ═══════════════════════════════════════════════════════════════════ */
.dest-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}
.dest-card-featured {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all 0.5s ease;
}
.dest-card-bg {
    position: absolute;
    inset: 0;
}
.dest-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.dest-card-featured:hover .dest-card-bg img {
    transform: scale(1.08);
}
.dest-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24,29,46,0.85) 0%, rgba(24,29,46,0.15) 50%, transparent 70%);
    transition: opacity 0.4s ease;
}
.dest-card-featured:hover .dest-card-gradient {
    background: linear-gradient(to top, rgba(24,29,46,0.92) 0%, rgba(24,29,46,0.2) 50%, transparent 70%);
}
.dest-card-featured .dest-card-flag {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.7);
    z-index: 2;
}
.dest-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.5rem 1.8rem;
    z-index: 2;
    transition: transform 0.4s ease;
}
.dest-card-featured:hover .dest-card-content {
    transform: translateY(-8px);
}
.dest-card-content h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.dest-card-content span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
}
.dest-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.dest-card-featured:hover .dest-card-hover {
    opacity: 1;
}
.dest-card-hover span {
    padding: 10px 28px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.dest-card-featured:hover .dest-card-hover span {
    transform: translateY(0);
}

/* ─── Carousel Arrows ─── */
.carousel-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.carousel-control-prev:hover .carousel-arrow,
.carousel-control-next:hover .carousel-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.1);
}
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}
.carousel-control-prev {
    left: -20px;
}
.carousel-control-next {
    right: -20px;
}

@media (max-width: 768px) {
    .dest-card-featured { height: 280px; }
    .carousel-arrow { width: 40px; height: 40px; font-size: 1rem; }
    .carousel-control-prev { left: -5px; }
    .carousel-control-next { right: -5px; }
}

/* ═══════════════════════════════════════════════════════════════════
   CATEGORY CARDS (Destination-style)
   ═══════════════════════════════════════════════════════════════════ */
.cat-card-featured {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.5s ease;
}
.cat-card-bg {
    position: absolute;
    inset: 0;
}
.cat-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.cat-card-featured:hover .cat-card-bg img {
    transform: scale(1.08);
}
.cat-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24,29,46,0.85) 0%, rgba(24,29,46,0.15) 50%, transparent 70%);
    transition: opacity 0.4s ease;
}
.cat-card-featured:hover .cat-card-gradient {
    background: linear-gradient(to top, rgba(24,29,46,0.92) 0%, rgba(24,29,46,0.2) 50%, transparent 70%);
}
.cat-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.25rem 1.5rem;
    z-index: 2;
    transition: transform 0.4s ease;
}
.cat-card-featured:hover .cat-card-content {
    transform: translateY(-8px);
}
.cat-card-content h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.cat-card-content span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
}
.cat-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cat-card-featured:hover .cat-card-hover {
    opacity: 1;
}
.cat-card-hover span {
    padding: 8px 24px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.cat-card-featured:hover .cat-card-hover span {
    transform: translateY(0);
}

.carousel-item .row {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cat-card-featured { height: 220px; }
}

/* ─── Related Tours One-by-One Carousel ─── */
.related-carousel-container {
    overflow: hidden;
    position: relative;
}
.related-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.related-carousel-card {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 0;
}

@media (max-width: 992px) {
    .related-carousel-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}
@media (max-width: 768px) {
    .related-carousel-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}
@media (max-width: 576px) {
    .related-carousel-card {
        flex: 0 0 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   TOUR PAGE MODERN STYLES
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Gallery Grid ─── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    gap: 10px;
}
.gallery-grid-item {
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-grid-item:hover img {
    transform: scale(1.06);
}
.gallery-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24,29,46,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-grid-item:hover .gallery-grid-overlay {
    opacity: 1;
}
.gallery-grid-overlay i {
    color: #fff;
    font-size: 1.5rem;
}
.gallery-more {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-more span {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 100px;
    }
}

/* ─── Pill Tabs ─── */
.nav-pills .nav-link {
    color: var(--secondary);
    font-weight: 500;
    padding: 8px 18px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.nav-pills .nav-link:hover {
    background: rgba(60,69,62,0.06);
    border-color: rgba(60,69,62,0.1);
}
.nav-pills .nav-link.active {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(60,69,62,0.25);
}

/* ─── Itinerary Timeline ─── */
.itinerary-timeline {
    position: relative;
    padding-left: 30px;
}
.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(60,69,62,0.15));
    border-radius: 2px;
}
.itinerary-day-card {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.itinerary-day-card:last-child {
    margin-bottom: 0;
}
.itinerary-day-marker {
    position: absolute;
    left: -30px;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(60,69,62,0.3);
}
.itinerary-day-content {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}
.itinerary-day-content:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.itinerary-day-content h6 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}
.itinerary-day-content p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
