/* ===================================
   Switzerland Tours - Creative Custom Styles
   =================================== */

/* Fix double scrollbar issue */
html, body {
    overflow-x: hidden;
    overflow-y: auto;
}

/* ===================================
   Global Styles
   =================================== */
:root {
    --primary-color: #E31E29;
    --primary-hover: #c41820;
    --secondary-color: #2C3E50;
    --accent-color: #3498DB;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 100px;
}

/* Remove underline from all links */
a,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Header Styles - Creative Design
   =================================== */
.site-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s;
}

.site-header.scrolled {
    padding: 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    transition: all 0.3s ease;
}

.header-logo img {
    height: 55px;
    transition: all 0.3s ease;
}

.site-header.scrolled .header-wrapper {
    padding: 15px 0;
}

.site-header.scrolled .header-logo img {
    height: 45px;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    line-height: 1;
    position: relative;
    padding: 10px 15px;
    border-radius: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s;
    transform: translateX(-50%);
}

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

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

/* Active State */
.nav-active {
    background: var(--primary-color);
    color: #fff !important;
}

.nav-active::after {
    display: none;
}

/* Mega Menu - Desktop Only */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 40px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mega-menu .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mega-menu-item {
    display: block;
    text-decoration: none;
    transition: all 0.3s;
}

.mega-menu-item:hover {
    transform: translateY(-5px);
}

.mega-menu-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mega-menu-image img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.mega-menu-item:hover .mega-menu-image img {
    transform: scale(1.05);
}

.mega-menu-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.mega-menu-item:hover .mega-menu-title {
    background: var(--primary-color);
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 40px;
}

.header-phone {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s;
}

.header-phone:hover {
    transform: scale(1.1);
}

.header-search {
    color: var(--text-dark);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.header-search:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.language-selector:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ===================================
   Hamburger Button with Animation
   =================================== */
.hamburger-btn {
    display: none !important;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: all 0.3s;
}

.hamburger-btn:hover {
    /*border-color: var(--primary-color);*/
    /*background: rgba(227,30,41,0.05);*/
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-line:nth-child(1) {
    top: 12px;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.hamburger-line:nth-child(3) {
    bottom: 12px;
}

/* Active State - Transform to X */
.hamburger-btn.active {
    /*border-color: var(--primary-color);*/
    /*background: rgba(227,30,41,0.05);*/
}

.hamburger-btn.active .hamburger-line {
    /*background: var(--primary-color);*/
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

/* ===================================
   Hero Section - Simple Design
   =================================== */
.hero-simple {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-simple-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-simple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.7) 0%, rgba(227,30,41,0.5) 100%);
}

.hero-simple-content {
    position: relative;
    z-index: 2;
    padding: 150px 0 100px;
    text-align: center;
    color: #fff;
}

.hero-simple-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 30px;
    border-radius: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-simple-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-simple-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-simple-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-hero-simple {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(227,30,41,0.4);
}

.btn-hero-simple:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(227,30,41,0.5);
    color: #fff;
}

.btn-play-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-play-circle:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
    color: #fff;
}

/* ===================================
   Stats Section - 5 Items
   =================================== */
.stats-section {
    padding: 60px 0;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.stat-icon-simple {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.stat-number-simple {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.2;
}

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

/* ===================================
   Hero Section - Full Screen Creative
   =================================== */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.85) 0%, rgba(227,30,41,0.6) 100%);
    z-index: 1;
}

.hero-content-full {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-title-full {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title-full span {
    display: block;
    color: #FFD700;
}

.hero-subtitle-full {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-buttons-full {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(227,30,41,0.4);
    border: 2px solid transparent;
}

.btn-hero-primary:hover {
    background: transparent;
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227,30,41,0.5);
    color: #fff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: #fff;
    color: var(--text-dark);
    transform: translateY(-5px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 30px;
}

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

/* ===================================
   Stats Section - Floating Cards
   =================================== */
.stats-floating {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding: 0 20px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Section Title - Modern Style
   =================================== */
.section-modern {
    padding: 100px 0;
}

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

.section-title-modern {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

/* ===================================
   Tours Section - Card Grid
   =================================== */
.tours-creative {
    background: var(--bg-light);
    padding: 80px 0;
}

.tours-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 0;
}

.tour-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
    position: relative;
}

.tour-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.tour-card-modern:hover::before {
    transform: scaleX(1);
}

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

.tour-image-modern {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tour-content-modern {
    padding: 30px;
}

.tour-title-modern {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.tour-description-modern {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 80px;
}

.tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.tour-btn:hover {
    background: var(--primary-hover);
    transform: translateX(5px);
    color: #fff;
}

/* ===================================
   Categories - Split Design
   =================================== */
.categories-split {
    background: #fff;
}

.category-split-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.category-split-item:nth-child(even) .category-image-split {
    order: 2;
}

.category-split-item:nth-child(even) .category-content-split {
    order: 1;
}

.category-image-split {
    position: relative;
    overflow: hidden;
}

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

.category-split-item:hover .category-image-split img {
    transform: scale(1.1);
}

.category-content-split {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.category-title-split {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.category-description-split {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.category-btn-split {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    align-self: flex-start;
    transition: all 0.3s;
}

.category-btn-split:hover {
    background: var(--primary-hover);
    transform: translateX(10px);
    color: #fff;
}

/* ===================================
   Testimonials - Light Style
   =================================== */
.testimonials-light {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-light-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-light-item {
    text-align: center;
    padding: 40px;
}

.testimonial-quote {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   Testimonials - Creative Carousel
   =================================== */
.testimonials-creative {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-creative::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.testimonial-creative-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-creative-item {
    text-align: center;
    padding: 0 40px;
}

.testimonial-quote-icon {
    font-size: 60px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 30px;
}

.testimonial-text-creative {
    font-size: 24px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author-creative {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
}

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

.testimonial-info h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.testimonial-stars-creative {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 30px;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Footer - Simple Modern
   =================================== */
.footer-simple-modern {
    background: #2c2c2c;
    color: #fff;
    /*padding: 60px 0 30px;*/
    padding-bottom:30px;
}

.footer-social-simple {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-bottom: 50px;
    background:#CACACC;
    padding: 20px;
}

.social-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-circle:hover {
    /*background: #c41820;*/
    transform: translateY(-5px);
    color: #fff;
}
.social-circle img{
    width:100%;
    height:100%;
}

.footer-info-three-cols {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.footer-col-right {
    text-align: right;
}

.footer-company-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-address {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.footer-contact-item {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 12px 0;
}

.footer-contact-item i {
    margin-right: 10px;
    color: #E31E29;
    font-size: 16px;
}

.footer-links-simple {
    list-style: none;
    padding: 0;
}

.footer-links-simple li {
    margin: 12px 0;
}

.footer-links-simple a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links-simple a:hover {
    color: #E31E29;
}

.footer-copyright-simple {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ===================================
   List Page Styles
   =================================== */
.list-page-header {
    padding: 40px 0 30px;
    background: #fff;
    text-align: center;
}

.list-page-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.list-page-subtitle,
.list-page-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: left;
    margin: 0 auto;
}
.list-page-subtitle{
    font-weight: bold;
    font-size:20px;
}
.list-page-content {
    padding: 40px 0 80px;
    background: #f8f9fa;
}

/* Filter Header Bar */
.filter-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 30px;
}

.filter-header-left {
    display: flex;
    align-items: center;
}

.filter-header-count {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.filter-header-right {
    display: flex;
    align-items: center;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.sort-select-wrapper {
    position: relative;
    display: inline-block;
}

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 8px 35px 8px 12px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
}

.sort-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--text-dark);
    pointer-events: none;
}

.list-page-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar Filter */
.list-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.filter-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.filter-count {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.filter-section:last-of-type {
    border-bottom: none;
}

.filter-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.filter-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-dark);
    background: #fff;
    cursor: pointer;
}

.filter-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    color: var(--text-dark);
    transition: color 0.3s;
}

.filter-option:hover {
    color: var(--primary-color);
}

.filter-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s;
}

.filter-option input[type="checkbox"]:checked ~ .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-option input[type="checkbox"]:checked ~ .checkmark::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
}

.filter-text {
    user-select: none;
}

.btn-clear-filter {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-clear-filter:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Tour List Grid */
.tour-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tour-card-list {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.tour-card-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.tour-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

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

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

.tour-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.tour-card-title a:hover {
    opacity: 0.8;
}

.tour-card-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.tour-card-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.tour-card-rating {
    display: flex;
    gap: 3px;
}

.tour-card-rating i {
    font-size: 14px;
    color: #FFD700;
}

.tour-card-rating .far.fa-star {
    color: #ddd;
}

/* Pagination */
.list-pagination {
    margin-top: 50px;
    text-align: center;
}

.list-pagination a,
.list-pagination span {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.list-pagination a:hover,
.list-pagination .current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .header-nav {
        display: none;
    }
    
    .mega-menu {
        display: none !important;
    }
    
    .hamburger-btn {
        display: flex !important;
    }
    
    .hero-title-full {
        font-size: 48px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tours-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-split-item,
    .category-split-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .category-split-item:nth-child(even) .category-image-split,
    .category-split-item:nth-child(even) .category-content-split {
        order: unset;
    }
    
    .category-image-split {
        height: 300px;
    }
    
    .category-content-split {
        padding: 40px;
    }
    
    .footer-info-three-cols {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-col-right {
        grid-column: span 2;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-fullscreen {
        height: auto;
        min-height: 600px;
        padding: 100px 0;
    }
    
    .hero-title-full {
        font-size: 36px;
    }
    
    .hero-subtitle-full {
        font-size: 16px;
    }
    
    .hero-buttons-full {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats-floating {
        margin-top: -50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title-modern {
        font-size: 32px;
    }
    
    .tours-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .category-content-split {
        padding: 30px;
    }
    
    .category-title-split {
        font-size: 24px;
    }
    
    .testimonial-text-creative {
        font-size: 18px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .footer-info-three-cols {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col-center,
    .footer-col-right {
        text-align: center;
    }
    
    .footer-col-right {
        grid-column: auto;
    }
    
    .footer-social-simple {
        margin-bottom: 40px;
        gap:20px;
    }
    
    /* List Page Responsive */
    .list-page-wrapper {
        grid-template-columns: 1fr;
    }
    
    .list-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .tour-list-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Mobile Nav Styles
   =================================== */
.mobile-nav {
    display: none !important;
}

@media (max-width: 991px) {
    .mobile-nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 1000;
    }
    
    .mobile-nav.active {
        display: block !important;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav > ul > li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        padding: 15px 10px;
        transition: all 0.3s;
    }
    
    .mobile-nav-link:hover {
        color: var(--primary-color);
    }
    
    .mobile-nav-active {
        color: var(--primary-color) !important;
    }
    
    .mobile-arrow {
        font-size: 12px;
        transition: transform 0.3s;
    }
    
    .mobile-submenu {
        list-style: none;
        padding: 0 0 0 20px;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .mobile-submenu.active {
        max-height: 500px;
    }
    
    .mobile-submenu li {
        margin: 0;
        border-bottom: none;
    }
    
    .mobile-submenu a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 14px;
        padding: 10px;
        display: block;
        transition: all 0.3s;
    }
    
    .mobile-submenu a:hover {
        color: var(--primary-color);
        padding-left: 15px;
    }
    
    .mobile-nav-item.has-children > .mobile-nav-link .mobile-arrow {
        transform: rotate(180deg);
    }
}

/* ===================================
   Results Bar
   =================================== */
.results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.results-bar-left {
    flex: 1;
}

.results-categories {
    font-size: 16px;
    font-weight: 500;
    color: #495057;
    letter-spacing: 0.3px;
}

.results-bar-center {
    flex: 1;
    text-align: center;
}

.results-count {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    white-space: nowrap;
}

.results-bar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 400;
    white-space: nowrap;
}

.sort-select {
    padding: 8px 36px 8px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23495057' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    transition: all 0.2s ease;
    min-width: 160px;
}

.sort-select:hover {
    border-color: #adb5bd;
    background-color: #f8f9fa;
}

.sort-select:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .results-bar {
        flex-direction: column;
        padding: 16px;
        gap: 12px;
    }

    .results-bar-left,
    .results-bar-center,
    .results-bar-right {
        width: 100%;
        justify-content: center;
    }

    .results-bar-center {
        order: -1;
    }

    .sort-wrapper {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .results-categories {
        font-size: 14px;
    }

    .results-count {
        font-size: 14px;
    }

    .sort-select {
        font-size: 14px;
        min-width: 160px;
    }
}

/* ===================================
   Tour Card Image Slider (Swiper)
   =================================== */
.tour-card-image-slider.swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.tour-card-image-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Swiper Navigation Arrows - Hidden by default, show on hover */
.tour-card-image-slider .swiper-button-prev,
.tour-card-image-slider .swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.tour-card-image-slider:hover .swiper-button-prev,
.tour-card-image-slider:hover .swiper-button-next {
    opacity: 1;
}

.tour-card-image-slider .swiper-button-prev::after,
.tour-card-image-slider .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.tour-card-image-slider .swiper-button-prev:hover,
.tour-card-image-slider .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

/* ===================================
   Tour Detail Page Styles 
   =================================== */

/* Breadcrumb */
.show-breadcrumb {
    background: #f8f9fa;
    height:50px;
    line-height:50px;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: #999;
}

.breadcrumb .current {
    color: #333;
    font-weight: 600;
}

/* Tour Detail Section */
.tour-detail-section {
    padding: 60px 0;
}

.tour-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

/* Left Content */
.tour-detail-left {
    background: #fff;
    width: 100%;
    min-width: 0;  /* 防止内容溢出 */
    overflow: hidden;  /* 确保子元素不溢出 */
}

.tour-detail-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.tour-detail-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Image Slider */
.tour-image-slider {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    height: 500px;
}

.tour-image-slider .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.tour-image-slider .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tour-image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* 轮播图导航按钮 - 默认隐藏 */
.tour-image-slider .swiper-button-next,
.tour-image-slider .swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    cursor: pointer;
}

/* 鼠标悬停时显示按钮 */
.tour-image-slider:hover .swiper-button-next,
.tour-image-slider:hover .swiper-button-prev {
    opacity: 1;
}

.tour-image-slider .swiper-button-next:after,
.tour-image-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* 按钮悬停效果 */
.tour-image-slider .swiper-button-next:hover,
.tour-image-slider .swiper-button-prev:hover {
    background: rgba(0,0,0,0.7);
    transform: scale(1.1);
}

.tour-image-slider .swiper-pagination {
    bottom: 20px;
    z-index: 10;
}

.tour-image-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.tour-image-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* Rating Stars */
.tour-rating {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 20px;
}

.tour-rating i {
    margin-right: 3px;
}

/* Accordion */
.tour-accordion {
    border-top: 1px solid #e0e0e0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-header h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.accordion-header i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 2000px;
}

.accordion-body {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.8;
}

/* Right Sidebar */
.tour-detail-right {
    position: sticky;
    top: 120px;
    height: fit-content;
}

/* Booking Box */
.booking-box {
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.booking-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.departure-options {
    margin-bottom: 20px;
}

.departure-option {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: background 0.2s ease;
}

.departure-option:hover {
    background: #f8f9fa;
}

.departure-option input[type="radio"] {
    display: none;
}

.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.departure-option input[type="radio"]:checked + .radio-mark {
    background: var(--primary-color);
}

.departure-option input[type="radio"]:checked + .radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.departure-name {
    color: #666;
    font-size: 14px;
}

/* Price Info */
.price-info {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    opacity: 0;
    display: none;
}
.price-info.active {
    display: block;
    opacity: 1;
}

.price-row,
.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.price-row:last-child,
.info-row:last-child {
    margin-bottom: 0;
}

.price-label,
.info-label {
    color: #666;
}

.price-value {
    color: var(--primary-color);
    font-weight: 700;
}

.info-value {
    color: #333;
    font-weight: 600;
}

/* Book Now Button */
.btn-book-now {
    width: 100%;
    padding: 10px 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 41, 0.3);
}

/* Tour Info Box */
.tour-info-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.info-box-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.info-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.exclude-list li::before {
    content: '';
    color: #999;
}

/* Feature Icons */
.feature-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Important Info */
.important-info {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

.important-info p {
    margin-bottom: 10px;
}

/* Related Tours Section */
.related-tours-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title-red {
    font-size: 28px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.related-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-tour-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.related-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.related-tour-image {
    height: 220px;
    overflow: hidden;
}

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

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

.related-tour-content {
    padding: 20px;
}

.related-tour-title {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.related-tour-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-tour-title a:hover {
    color: var(--primary-color);
}

.related-tour-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-book-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-book-small:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Back to List Button */
.back-to-list-container {
    padding: 40px 0;
    text-align: center;
}

.btn-back-to-list {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-to-list:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Responsive for Detail Page */
@media (max-width: 1200px) {
    .tour-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tour-detail-right {
        position: static;
    }
    
    .related-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tour-detail-title {
        font-size: 24px;
    }
    
    .tour-image-slider img {
        height: 300px;
    }
    
    .related-tours-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Zurich Departure Page Styles
   =================================== */

/* Zurich Hero Section */
.zurich-hero {
    background: #f8f9fa;
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.zurich-hero-content {
    text-align: center;
}

.zurich-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Zurich Main Content */
.zurich-main-content {
    padding: 60px 0;
    background: #fff;
}

.zurich-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.zurich-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
}

.zurich-slider {
    width: 100%;
    height: 350px;
}

.zurich-slider .swiper-wrapper {
    height: 100%;
}

.zurich-slider .swiper-slide {
    height: 100%;
}

.zurich-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zurich-slider .swiper-pagination {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.zurich-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    opacity: 1;
    transition: all 0.3s ease;
}

.zurich-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

.zurich-slider .swiper-button-next,
.zurich-slider .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.zurich-slider .swiper-button-next:hover,
.zurich-slider .swiper-button-prev:hover {
    background: var(--primary-color);
}

.zurich-slider .swiper-button-next {
    right: 15px;
}

.zurich-slider .swiper-button-prev {
    left: 15px;
}

.zurich-slider .swiper-button-next::after,
.zurich-slider .swiper-button-prev::after {
    font-size: 18px;
}

.zurich-text-content {
    padding: 20px 0;
}

.zurich-text-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.zurich-address {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
}

.zurich-address strong {
    color: var(--primary-color);
    font-size: 16px;
}

.zurich-address .address-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-top: 8px;
    line-height: 1.8;
}

.zurich-address .address-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.zurich-address br {
    line-height: 2;
}

/* Additional Info */
.zurich-additional-info {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-left: 3px solid var(--primary-color);
    border-radius: 5px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.zurich-additional-info .map-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.zurich-additional-info .map-link:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

.zurich-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.zurich-pdf-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 30, 41, 0.3);
    color: #fff;
}

/* Info Columns Section */
.zurich-info-columns {
    padding: 60px 0;
    background: #f8f9fa;
}

.info-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-column {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.column-title-red {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.info-column p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-column p:last-child {
    margin-bottom: 0;
}

/* ===================================
   Terms and Conditions Page
   =================================== */

.terms-hero {
    background: #f8f9fa;
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.terms-hero-content {
    text-align: center;
}

.terms-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.terms-content {
    padding: 60px 0;
    background: #fff;
}

.terms-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.terms-item {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.terms-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.terms-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 15px;
}

.terms-item p:last-child {
    margin-bottom: 0;
}

.terms-item ul {
    margin: 0 0 15px 20px;
    padding: 0;
}

.terms-item li {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.terms-item li:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .terms-hero {
        padding: 40px 0;
    }
    
    .terms-title {
        font-size: 24px;
    }
    
    .terms-content {
        padding: 40px 0;
    }
    
    .terms-item {
        padding: 20px;
    }
}

/* ===================================
   FAQ Page Styles
   =================================== */

.faq-hero {
    background: #f8f9fa;
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-hero-content {
    text-align: center;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-content {
    padding: 60px 0;
    background: #fff;
}

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

.faq-section {
    margin-bottom: 80px;
}

.faq-section-title {
    font-size: 1.5556rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    /*border-bottom: 2px solid var(--primary-color);*/
}

.faq-accordion {
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #f8f9fa;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-header:hover {
    background: #fff;
}

.faq-header span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    flex: 1;
}

.faq-header i {
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-header.active i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-content.active {
    padding: 20px;
    max-height: 500px;
}

.faq-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 767px) {
    .faq-hero {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-content {
        padding: 40px 0;
    }
    
    .faq-header {
        padding: 15px 15px;
    }
    
    .faq-header span {
        font-size: 14px;
    }
}

/* Arrival Accordion */
.info-column .accordion-arrival {
    margin-top: 10px;
}

.info-column .accordion-arrival-item {
    border-bottom: 1px dashed #e0e0e0;
}

.info-column .accordion-arrival-item:last-child {
    border-bottom: none;
}

.info-column .accordion-arrival-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.info-column .accordion-arrival-header:hover {
    color: var(--primary-color);
}

.info-column .accordion-arrival-header span {
    flex: 1;
    text-transform: uppercase;
}

.info-column .accordion-arrival-header i {
    color: var(--primary-color);
    font-size: 12px;
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-column .accordion-arrival-header.active i {
    transform: rotate(180deg);
}

.info-column .accordion-arrival-content {
    max-height: 0 !important; 
    overflow: hidden !important;  
    transition: max-height 0.3s ease;
    padding: 0 0 12px;
    opacity: 0;
}

.info-column .accordion-arrival-content.active {
    max-height: 300px !important;
    opacity: 1;
}

.info-column .accordion-arrival-content p {
    margin: 0;
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    padding: 0;
}

/* Zurich Tours Section */
.zurich-tours {
    padding: 60px 0;
    background: #fff;
}

.zurich-tours .section-title-red {
    text-align: left;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.tour-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tour-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.tour-image {
    height: 220px;
    overflow: hidden;
}

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

.tour-item:hover .tour-image img {
    transform: scale(1.1);
}

.tour-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 20px 20px 10px;
    margin: 0;
    line-height: 1.3;
}

.tour-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 20px 15px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 67px;
    flex-shrink: 0;
}

.tour-button-wrapper {
    padding: 0 20px 20px;
    clear: both;
}

.tour-button-wrapper .btn-book-now {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.show-all-tours {
    text-align: center;
}

.btn-show-all {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-show-all:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Design for Zurich Page */
@media (max-width: 991px) {
    .zurich-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .zurich-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .zurich-hero {
        padding: 40px 0;
    }
    
    .zurich-title {
        font-size: 24px;
    }
    
    .zurich-main-content,
    .zurich-info-columns,
    .zurich-tours {
        padding: 40px 0;
    }
    
    .zurich-image-wrapper img {
        height: 250px;
    }
    
    .tour-item .btn-book-now {
        width: calc(100% - 40px);
        text-align: center;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tour-image {
        height: 200px;
    }
}

/* ===================================
   Language Selector Styles
   =================================== */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-toggle {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
}

.language-toggle:hover {
    border-color: #E31E29;
    background-color: #f8f9fa;
}

.language-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.language-text {
    font-weight: 600;
}

.language-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-arrow.open {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background-color: #f5f5f5;
}

.language-option.active {
    background-color: #f0f0f0;
}

.language-option img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.language-option span {
    font-size: 13px;
}

/* ===================================
   FAQ Page - Custom Accordion Styles (Override Bootstrap)
   =================================== */
.faq-page-wrapper {
    padding: 60px 0;
    background: #fff;
}

/* 移除 Bootstrap Accordion 默认样式 */
.accordion {
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: #e31937;
    --bs-accordion-btn-icon: none;
    --bs-accordion-btn-active-icon: none;
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-padding-y: 15px;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-body-padding-y: 0;
    --bs-accordion-body-padding-x: 0;
}

.accordion-item {
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.accordion-button {
    padding: 15px 0 !important;
    font-size: 1.33rem;
    font-weight: bold;
    background: transparent !important;
    box-shadow: none !important;
    /*border: none !important;*/
    border-radius: 0 !important;
    color: #42454a;
    font-size: 1.2222rem;
    line-height: 1.3636;
}


.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    width: 16px !important;
    height: 16px !important;
    background-size: 16px !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(-180deg) !important;
    width: 16px !important;
    height: 16px !important;
    background-size: 16px !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
    outline: none !important;
}

.accordion-button:hover {
    color: #e31937 !important;
}

.accordion-button:hover::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e31937'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
    padding: 20px 0 20px 0 !important;
    color: #2b2b2b;
    font-size: 18px;
    line-height: 1.5556;
    margin-bottom: 1.5556em;
}

.accordion-item:last-child {
    border-bottom: none !important;
}


