/* ========================================
   DESTINATION DETAIL 4 - MODERN FULL-BLEED
   ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ef4444;
    --primary-dark: #dc2626;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
}

/* ========================================
   STICKY TAB BAR (Mobile)
   ======================================== */
.sticky-tab-bar,
.destination-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.tab-bar-container,
.nav-tabs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tab-bar-container::-webkit-scrollbar,
.nav-tabs::-webkit-scrollbar {
    display: none;
}

.tab-link {
    flex: 1;
    text-align: center;
    padding: 18px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.tab-link:hover {
    color: var(--primary-color);
}

.tab-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* ========================================
   HERO SECTION - FULL BLEED
   ======================================== */
.hero-fullbleed {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 60px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 80px;
}

.hero-content-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-location i {
    color: var(--primary-color);
}

.hero-title-massive {
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 900;
    color: var(--white);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: clamp(18px, 2.5vw, 28px);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-hero-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.5);
    color: var(--white);
}

.btn-hero-cta i {
    animation: bounce 2s infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.scroll-mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* Mobile Hero Content */
.hero-content-centered {
    display: none;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.hero-title-main {
    font-size: 72px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}


/* ========================================
   OVERVIEW SECTION
   ======================================== */
.overview-section {
    background: var(--white);
}

.section-padding {
    padding: 60px 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title-large {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

.overview-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.overview-intro {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Micro Badges */
.micro-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.micro-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.micro-badge:hover {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.micro-badge i {
    font-size: 24px;
    color: var(--primary-color);
}

.badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-value {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 700;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    transform: translateY(-4px);
}

.stat-box i {
    font-size: 32px;
    color: var(--primary-color);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
    margin-top: 4px;
}

/* Overview Gallery */
.overview-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ========================================
   FEATURED TOURS SECTION
   ======================================== */
.featured-tours-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.section-header-tours {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 32px;
}

.header-content {
    flex: 1;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 12px;
}

.btn-view-all-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary-color);
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-view-all-header:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-view-all-header i {
    transition: transform 0.3s ease;
}

.btn-view-all-header:hover i {
    transform: translateX(4px);
}

/* Tour Swiper */
.tours-swiper {
    padding: 20px 0 60px;
    position: relative;
}

.tours-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.tour-card-modern {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.tour-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.tour-card-modern {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tour-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #f5f5f5;
}



.tour-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card-modern:hover .tour-image-wrapper img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.tour-rank {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tour-rank:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Tour Content */
.tour-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.tour-card-modern.featured .tour-content {
    padding: 28px;
}

/* New Rating Style */
.tour-rating-new {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.tour-rating-new i {
    color: #fbbf24;
    font-size: 16px;
}

.rating-score {
    font-weight: 700;
    color: var(--text-dark);
}

.rating-separator {
    color: var(--text-light);
    margin: 0 4px;
}

.rating-reviews {
    color: var(--text-gray);
    font-weight: 500;
}

/* New Tour Meta */
.tour-meta-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-duration,
.tour-cancellation {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.tour-duration i {
    color: var(--text-gray);
    font-size: 14px;
}

.tour-cancellation {
    color: #10b981;
    font-weight: 600;
}

.tour-cancellation i {
    color: #10b981;
    font-size: 14px;
}

.tour-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

.tour-card-modern.featured .tour-title {
    font-size: 22px;
}

/* New Tour Footer */
.tour-footer-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    gap: 16px;
}

.tour-price-new {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.tour-price-new .price-from {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.tour-price-new .price-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.btn-view-tour {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.btn-view-tour:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    color: var(--white);
}

.btn-view-tour i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-view-tour:hover i {
    transform: translateX(4px);
}

/* See All Tours Card */
.tour-card-see-all {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 24px;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-color);
    transition: all 0.3s ease;
}

.tour-card-see-all:hover {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.2);
}

.see-all-content {
    text-align: center;
    padding: 40px;
}

.see-all-content i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 24px;
    opacity: 0.8;
}

.see-all-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.see-all-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 28px;
}

.btn-see-all-tours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-see-all-tours:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    color: var(--white);
}

.btn-see-all-tours i {
    transition: transform 0.3s ease;
}

.btn-see-all-tours:hover i {
    transform: translateX(4px);
}

.btn-view-all-tours {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--text-dark);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all-tours:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
    color: var(--white);
}

.btn-view-all-tours i {
    transition: transform 0.3s ease;
}

.btn-view-all-tours:hover i {
    transform: translateX(4px);
}

/* Swiper Navigation Buttons */
.tours-swiper .swiper-button-next,
.tours-swiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tours-swiper .swiper-button-next:after,
.tours-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
}

.tours-swiper .swiper-button-next:hover,
.tours-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

.tours-swiper .swiper-button-next:hover:after,
.tours-swiper .swiper-button-prev:hover:after {
    color: var(--white);
}

/* Swiper Pagination */
.tours-swiper .swiper-pagination {
    bottom: 20px;
}

.tours-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--text-light);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.tours-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}

/* ========================================
   TOUR CATEGORIES SECTION
   ======================================== */
.tour-categories-section {
    background: var(--white);
}

.categories-swiper {
    padding: 20px 0 60px;
    position: relative;
    overflow: visible;
}

.categories-swiper .swiper-wrapper {
    overflow: visible;
}

.categories-swiper .swiper-slide {
    height: auto;
    overflow: visible;
}

.category-card-image {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    height: 240px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.category-card-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card-image:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.category-title-image {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.category-description-image {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.categories-swiper .swiper-button-next,
.categories-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.categories-swiper .swiper-button-next:after,
.categories-swiper .swiper-button-prev:after {
    font-size: 14px;
    font-weight: 700;
}

.categories-swiper .swiper-button-next:hover,
.categories-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* ========================================
   PLAN YOUR TRIP SECTION
   ======================================== */
.plan-trip-section {
    background: var(--white);
}

.plan-trip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.trip-card {
    display: flex;
    gap: 24px;
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trip-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.12);
    background: linear-gradient(135deg, #fef2f2, #ffffff);
}

.trip-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trip-card:hover .trip-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scale(1.05);
}

.trip-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.trip-card:hover .trip-icon i {
    color: var(--white);
}

.trip-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trip-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.trip-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.trip-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.trip-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.trip-card:hover .trip-link {
    gap: 10px;
}

.trip-card:hover .trip-link i {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .plan-trip-grid {
        grid-template-columns: 1fr;
    }
    
    .trip-card {
        flex-direction: column;
        padding: 24px;
    }
    
    .trip-icon {
        width: 56px;
        height: 56px;
    }
    
    .trip-icon i {
        font-size: 24px;
    }
}

/* ========================================
   TRAVEL TIPS CTA BANNER
   ======================================== */
.tips-cta-banner {
    padding: 80px 0;
    background: var(--bg-light);
}

.tips-banner-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.tips-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tips-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tips-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.tips-banner-content {
    position: relative;
    z-index: 3;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tips-banner-header {
    max-width: 600px;
}

.tips-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.tips-banner-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.tips-banner-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.tips-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
}

.tip-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    /*background: rgba(255, 255, 255, 0.1);*/
    background-color: transparent;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tip-highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.tip-highlight-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 10px;
    flex-shrink: 0;
}

.tip-highlight-icon i {
    color: var(--white);
    font-size: 18px;
}

.tip-highlight-item span {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}

.btn-tips-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.btn-tips-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
    color: var(--white);
}

.btn-tips-cta i {
    transition: transform 0.3s ease;
}

.btn-tips-cta:hover i {
    transform: translateX(4px);
}

/* ========================================
   TRAVEL TIPS SECTION
   ======================================== */
.tips-section {
    background: var(--bg-light);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.tip-card-image {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}

.tip-card-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}

.tip-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.tip-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tip-card-image:hover .tip-background img {
    transform: scale(1.1);
}

.tip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
}

.tip-content-overlay {
    position: relative;
    z-index: 2;
    padding: 32px;
    width: 100%;
}

.tip-icon-white {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tip-card-image:hover .tip-icon-white {
    background: var(--primary-color);
    transform: scale(1.05);
}

.tip-icon-white i {
    font-size: 26px;
    color: var(--white);
}

.tip-title-white {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tip-description-white {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   STORIES SECTION
   ======================================== */
.stories-section {
    background: var(--white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.story-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.story-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-author-badge {
    position: absolute;
    bottom: -30px;
    left: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid var(--white);
    overflow: hidden;
    z-index: 2;
}

.story-author-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 40px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.story-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.story-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.story-meta i {
    color: var(--primary-color);
}

.story-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.story-excerpt {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.tour-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.tour-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.tour-rating-new {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.story-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.author-location {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.btn-read-story {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-read-story:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    color: var(--white);
}

.btn-read-story i {
    transition: transform 0.3s ease;
}

.btn-read-story:hover i {
    transform: translateX(4px);
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    background: var(--white);
    padding: 100px 0;
}

.map-container-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    margin-top: 48px;
}

.map-view {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
}

.interactive-map {
    width: 100%;
    height: 100%;
}

.interactive-map iframe {
    width: 100%;
    height: 100%;
}

/* Map Locations List */
.map-locations-list {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.locations-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.location-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 8px;
}

.location-items::-webkit-scrollbar {
    width: 4px;
}

.location-items::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.location-items::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-item:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.location-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    width: fit-content;
}

.location-item:hover .location-tag {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.location-description {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

.location-arrow {
    flex-shrink: 0;
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.location-item:hover .location-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

.btn-full-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-full-map:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    color: var(--white);
}

.btn-full-map i:last-child {
    transition: transform 0.3s ease;
}

.btn-full-map:hover i:last-child {
    transform: translateX(4px);
}



.mobile-map-container {
    display: none;
}

@media (max-width: 1024px) {
    /* Hide desktop map section on mobile */
    .map-section {
        display: none;
    }
    
    .map-container-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-view {
        order: 2;
    }
    
    .interactive-map {
        height: 400px;
    }
    
    .map-locations-list {
        display: none !important;
    }
    
    /* Mobile Attractions Section */
    .attractions-swiper-mobile {
        display: block;
        padding: 60px 0;
        background: var(--white);
    }
    
    .attractions-swiper-mobile .section-header-center {
        margin-bottom: 48px;
    }
    
    .attractions-swiper-mobile .locations-title {
        font-size: 40px;
        font-weight: 900;
        color: var(--text-dark);
        margin-bottom: 12px;
        text-align: center;
    }
    
    .attractions-swiper-mobile .section-subtitle {
        text-align: center;
        color: var(--text-gray);
        font-size: 18px;
    }
    
    .attractions-swiper {
        overflow: visible;
        padding: 0;
    }
    
    .attractions-swiper .swiper-wrapper {
        display: flex;
    }
    
    .attractions-swiper .swiper-slide {
        height: auto;
    }
    
    .location-items {
        display: flex;
    }
    
    .location-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        height: 200px;
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
        display: flex;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .location-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    }
    
    /* Desktop - taller cards */
    @media (min-width: 1200px) {
        .location-item {
            height: 320px;
            padding: 28px;
        }
        
        .location-name {
            font-size: 22px;
            margin-bottom: 8px;
        }
        
        .location-description {
            font-size: 15px;
        }
    }
    
    @media (min-width: 992px) and (max-width: 1199px) {
        .location-item {
            height: 280px;
        }
    }
    
    .location-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
        z-index: 1;
        border-radius: 20px;
    }
    
    .location-item > * {
        position: relative;
        z-index: 2;
    }
    
    .location-tag {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .location-info {
        margin-top: auto;
    }
    
    .location-name {
        color: var(--white);
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .location-description {
        color: rgba(255, 255, 255, 0.95);
        font-size: 13px;
        margin-bottom: 0;
        line-height: 1.3;
    }
    
    .location-arrow {
        display: none;
    }
    
    .btn-full-map {
        width: 100%;
        margin-top: 32px;
    }
    
    .map-section .container {
        padding: 0;
    }
    
    .map-section .section-header-center {
        padding: 0 20px;
    }
    
    .map-view {
        padding: 0 20px;
    }
    
    /* Mobile Map Container */
    .mobile-map-container {
        display: block;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .mobile-map-container .interactive-map {
        height: 400px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    
    .mobile-map-container .btn-full-map {
        width: 100%;
    }
    
    /* FAQ Mobile */
    .faq-item-text {
        padding: 24px 20px;
        margin-bottom: 16px;
    }
    
    .faq-question-text {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .faq-answer-text {
        font-size: 15px;
    }
    
    /* Tips CTA Banner Mobile */
    .tips-cta-banner {
        padding: 40px 0;
    }
    
    .tips-banner-wrapper {
        border-radius: 16px;
    }
    
    .tips-banner-content {
        padding: 32px 24px;
        gap: 28px;
    }
    
    .tips-banner-title {
        font-size: 28px;
    }
    
    .tips-banner-subtitle {
        font-size: 15px;
    }
    
    .tips-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .tip-highlight-item {
        padding: 12px 16px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .tip-highlight-icon {
        width: 36px;
        height: 36px;
    }
    
    .tip-highlight-icon i {
        font-size: 16px;
    }
    
    .tip-highlight-item span {
        font-size: 13px;
    }
    
    .btn-tips-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 15px;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Text-based FAQ Items */
.faq-item-text {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.faq-question-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-answer-text {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

.faq-answer-text p {
    margin: 0;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 16px;
    color: var(--text-gray);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 28px 24px;
    margin: 0;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   CTA FINAL SECTION
   ======================================== */
.cta-final-section {
    background: var(--bg-light);
    padding: 20px 0;
}

.cta-final-box {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1f2937 100%);
    border-radius: 32px;
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-final-content {
    position: relative;
    z-index: 1;
}

.cta-final-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.cta-final-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.2);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta-final-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-cta-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.5);
    color: var(--white);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 20px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-4px);
    color: var(--white);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badge i {
    font-size: 32px;
    color: var(--primary-color);
}

.trust-badge span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1199px) {
    .tour-card-modern.featured {
        grid-column: span 1;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-fullbleed {
        height: 350px;
        min-height: auto;
    }
    
    /* Hide desktop hero */
    .hero-content-wrapper {
        display: none;
    }
    
    /* Show mobile hero */
    .hero-content-centered {
        display: flex;
        position: relative;
        z-index: 3;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
    }
    
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 100%
        );
    }
    
    .hero-title-main {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }


    .section-title-large {
        font-size: clamp(28px, 4vw, 42px);
    }

    .quick-stats {
        grid-template-columns: 1fr;
    }

    .gallery-main img {
        height: 300px;
    }

    .tour-grid-modern {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .cta-final-box {
        padding: 60px 32px;
    }
}

@media (max-width: 767px) {
    .sticky-tab-bar {
        font-size: 13px;
    }

    .tab-link {
        padding: 16px 10px;
        font-size: 13px;
    }

    .hero-fullbleed {
        height: 300px;
        margin-top: 56px;
        min-height: auto;
    }
    
    .hero-title-main {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }


    .btn-hero-cta {
        padding: 16px 32px;
        font-size: 16px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-padding {
        padding: 40px 0;
    }

    .section-title-large {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .overview-title {
        font-size: 28px;
    }

    .overview-intro {
        font-size: 16px;
    }

    .micro-badges {
        gap: 12px;
    }

    .micro-badge {
        padding: 10px 16px;
        flex: 1 1 calc(50% - 6px);
        min-width: 140px;
    }

    .micro-badge i {
        font-size: 20px;
    }

    .badge-label {
        font-size: 10px;
    }

    .badge-value {
        font-size: 13px;
    }

    .hide-mobile {
        display: none;
    }

    .gallery-main img {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 180px;
    }

    .tour-image-wrapper {
        height: 220px;
    }

    .tour-content {
        padding: 20px;
    }

    .tour-title {
        font-size: 17px;
    }

    .tour-footer-new {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .tour-price-new .price-amount {
        font-size: 22px;
    }

    .see-all-content {
        padding: 32px 20px;
    }

    .see-all-content i {
        font-size: 48px;
    }

    .see-all-content h3 {
        font-size: 20px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .tip-card {
        padding: 24px;
    }

    .stories-grid {
        gap: 24px;
    }
    section#overview {
        padding-bottom: 0 !important;
    }

    .story-content {
        padding: 32px 20px 20px;
    }

    .section-header-tours {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header-content {
        width: 100%;
    }

    .btn-view-all-header {
        width: 100%;
        display: block;
        text-align: center;
        justify-content: center;
        margin-top: 24px;
    }

    .cta-final-box {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .cta-final-title {
        font-size: 32px;
    }

    .cta-final-text {
        font-size: 16px;
    }

    .cta-final-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title-massive {
        font-size: 48px;
    }

    .tour-card-modern.featured .tour-content {
        padding: 20px;
    }

    .price-amount {
        font-size: 28px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.p-0 {
    padding: 0;
}

.bg-light {
    background: var(--bg-light);
}