/* --- TEMEL AYARLAR VE KURUMSAL RENKLER --- */
:root {
    --primary: #0284c7; 
    --primary-dark: #0c4a6e; /* Okyanus Mavisi */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --container-width: 1200px;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --card-hover-shadow: 0 20px 40px rgba(0,0,0,0.1);
    --font-sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-sans-ru: 'Montserrat', 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

/* Menüye tıklandığında YUMUŞAKÇA kaymasını sağlayan kod */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; 
}

body { font-family: var(--font-sans); color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }

/* Rusça — Kiril için Montserrat (Poppins ile aynı ağırlık ailesi) */
html[lang="ru"] body,
html[lang="ru"] button,
html[lang="ru"] input,
html[lang="ru"] textarea,
html[lang="ru"] select,
html[lang="ru"] .custom-lang-btn {
    font-family: var(--font-sans-ru);
}
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }

/* DÜZEN ARAÇLARI */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.relative { position: relative; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.section-padding { padding: 80px 0; }
.bg-light-blue { background-color: var(--bg-light); padding: 80px 0; }

/* 1. BÖLÜM: TOP BAR & HEADER */
.top-bar { background: var(--primary-dark); color: white; padding: 8px 0; font-size: 13px; font-weight: 300; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.top-links { font-weight: 500; }

.dark-header { background: var(--primary-dark); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.15); color: white; }
.header-flex { display: flex; justify-content: space-between; align-items: center; gap: 20px;}

.logo { font-size: 28px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; }
.logo.white-logo { color: white; }
.logo.white-logo span { color: var(--primary); } 

nav ul { display: flex; gap: 30px; }
nav ul li a { font-weight: 500; font-size: 15px; color: rgba(255, 255, 255, 0.85); }
nav ul li a:hover { color: white; }

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    transition: 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: 0.3s ease;
}

.mobile-menu-toggle.active,
.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.custom-lang-dropdown { position: relative; font-weight: 600; font-size: 14px; color: white; }
.custom-lang-btn { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: white; padding: 8px 15px; border-radius: 5px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.custom-lang-btn img { width: 22px; height: auto; border-radius: 2px; }
.custom-lang-btn:hover, .custom-lang-btn.active { background: rgba(255, 255, 255, 0.2); }
.custom-lang-btn::after { content: '▼'; font-size: 10px; opacity: 0.7; margin-left: 5px; transition: 0.3s;}
.custom-lang-btn.active::after { transform: rotate(180deg); }
.custom-lang-list { position: absolute; top: calc(100% + 10px); right: 0; background: white; width: 150px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); display: block; visibility: hidden; opacity: 0; transform: translateY(-10px); transition: 0.3s ease; z-index: 10; padding: 5px 0; border: 1px solid #f1f5f9; }
.custom-lang-list.active { visibility: visible; opacity: 1; transform: translateY(0); }
.custom-lang-list li { padding: 10px 20px; color: var(--text-dark); display: flex; align-items: center; gap: 10px; cursor: pointer; transition: 0.2s; }
.custom-lang-list li img { width: 22px; height: auto; border-radius: 2px; }
.custom-lang-list li:hover { background-color: #f0f9ff; color: var(--primary); }

/* 2. BÖLÜM: ANA SLIDER */
.slider-section { background: #f1f5f9; padding: 30px 0; } 
.heroSwiper { height: 650px; border-radius: 20px; box-shadow: var(--card-hover-shadow); }
.heroSwiper .swiper-slide { position: relative; overflow: hidden; }
.heroSwiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; opacity: 1; display: block; }
.heroSwiper .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
.hero-slide-caption {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 6px 20px rgba(0, 0, 0, 0.65);
    pointer-events: none;
}

.custom-nav, .custom-pop-nav { background: rgba(255, 255, 255, 0.9) !important; color: var(--primary-dark) !important; width: 55px !important; height: 55px !important; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: 0.3s ease; }
.custom-nav:hover, .custom-pop-nav:hover { background: var(--primary) !important; color: white !important; }
.custom-nav::after, .custom-pop-nav::after { font-size: 20px !important; font-weight: 900 !important; }
.swiper-pagination-bullet { background: #fff !important; opacity: 0.5 !important; width: 12px !important; height: 12px !important; transition: 0.3s !important; }
.swiper-pagination-bullet-active { opacity: 1 !important; width: 25px !important; border-radius: 10px !important; background: var(--white) !important; }

/* 3. BÖLÜM: ANA TURLAR */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 32px; color: var(--primary-dark); }
.underline { width: 60px; height: 4px; background: var(--primary); margin: 15px auto; border-radius: 2px; }

.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tour-card-link { display: block; border-radius: 15px; text-decoration: none; color: inherit; height: 100%; }
.tour-card { background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); border-radius: 20px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.08), 0 5px 15px rgba(0,0,0,0.04); transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); border: 1px solid rgba(2, 132, 199, 0.1); height: 100%; display: flex; flex-direction: column; position: relative; }
.tour-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--primary-dark)); }
.tour-card-link:hover .tour-card { transform: translateY(-15px) scale(1.02); box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 10px 25px rgba(0,0,0,0.1); }
.tour-card-link:hover .tour-card { transform: translateY(-10px); box-shadow: var(--card-hover-shadow); }

.tour-img-container { position: relative; height: 250px; overflow: hidden; }
.tour-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.tour-card-link:hover .tour-img-container img { transform: scale(1.1); }

.tour-img-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); display: flex; align-items: flex-end; padding: 25px; z-index: 2; opacity: 1; transition: opacity 0.4s ease; }
.tour-img-overlay h3 { color: white; font-size: 22px; font-weight: 700; margin: 0; text-shadow: 0 3px 6px rgba(0,0,0,0.5); line-height: 1.2; }

.tour-info { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; background: white; position: relative; }
.tour-info h4 { margin-bottom: 12px; font-size: 20px; font-weight: 700; color: var(--primary-dark); line-height: 1.3; transition: color 0.3s ease; }
.tour-card-link:hover .tour-info h4 { color: var(--primary); }
.tour-info p { color: var(--text-light); font-size: 15px; line-height: 1.7; margin: 0 0 14px 0; }
.tour-details { font-size: 14px; color: #334155; margin-bottom: 18px; font-weight: 500; display: grid; gap: 8px; }
.tour-details span { display: flex; align-items: center; gap: 10px; position: relative; padding-left: 26px; }
.tour-time::before, .tour-place::before { content: ''; position: absolute; left: 0; width: 18px; height: 18px; background-size: contain; background-repeat: no-repeat; background-position: center; }
.tour-time::before { background-image: url('images/icons/time.png'); }
.tour-place::before { background-image: url('images/icons/place.png'); }
.tour-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; flex-wrap: nowrap; width: 100%; min-height: 56px; }
.tour-bottom > * { align-self: center; }
.tour-price, .btn-gozat { min-height: 48px; }
.tour-info .tour-price { font-size: 18px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: rgba(2, 132, 199, 0.09); padding: 0 18px; height: 48px; border-radius: 20px; border: 1px solid rgba(2, 132, 199, 0.18); white-space: nowrap; flex-shrink: 0; line-height: 48px; }
.tour-price::before { content: ''; width: 18px; height: 18px; background-image: url('images/icons/price.png'); background-size: contain; background-repeat: no-repeat; background-position: center; }
.price-unit { font-size: 14px; color: inherit; opacity: 0.85; }
.btn-gozat { margin: 0; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--primary); color: white; font-weight: 600; font-size: 15px; padding: 0 24px; height: 48px; border-radius: 999px; transition: all 0.3s ease; box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25); cursor: pointer; border: none; text-decoration: none; flex-shrink: 0; line-height: 1; }
.btn-gozat:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(2, 132, 199, 0.28); }
.btn-gozat span { display: inline-block; transition: transform 0.3s ease; }
.btn-gozat:hover span { transform: translateX(4px); }

.link-gozat { margin: 0; display: inline; background: none; color: var(--primary); font-weight: 600; font-size: 15px; padding: 0; border: none; text-decoration: none; cursor: pointer; }
.link-gozat span { display: inline-block; transition: transform 0.3s ease; }
.link-gozat:hover span { transform: translateX(4px); }

.btn-back-home { background: var(--primary); padding: 0 30px; font-size: 16px; border-radius: 12px; min-width: 220px; }

/* 4. BÖLÜM: POPÜLER TURLAR */
.popular-slider-wrapper { position: relative; padding: 0 60px; } 
.popularSwiper { padding: 20px 5px 40px; } 

.popular-card { background: white; border-radius: 12px; padding: 15px; box-shadow: var(--card-shadow); border: 1px solid #f1f5f9; display: flex; flex-direction: column; height: 100%; transition: 0.3s; position: relative; }
.tour-card-link:hover .popular-card { transform: translateY(-5px); box-shadow: var(--card-hover-shadow); }

.popular-card img { width: 100%; aspect-ratio: 4/3; height: auto; display: block; border-radius: 8px; object-fit: cover; margin-bottom: 15px; }
.popular-card h4 { color: var(--primary-dark); font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
.popular-card p { color: var(--text-light); font-size: 13px; margin: 0; line-height: 1.6; }

.preferred-tour-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 24px);
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(2, 132, 199, 0.95);
    color: white;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 8px 18px rgba(12, 74, 110, 0.28);
}

.custom-pop-nav.swiper-button-prev { left: 0px !important; }
.custom-pop-nav.swiper-button-next { right: 0px !important; }

/* 5. BÖLÜM: HAKKIMIZDA */
.about-bg { background: white; padding: 100px 0; }
.flex-about { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.about-text h2 { font-size: 32px; color: var(--primary-dark); margin-bottom: 20px; }
.about-text p { color: var(--text-light); font-size: 16px; margin-bottom: 20px; }
.about-img { flex: 1; }
.about-img img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0px var(--primary); }
.check-list li { margin: 12px 0; font-weight: 600; color: var(--primary); font-size: 16px; }

/* 6. BÖLÜM: FOOTER */
footer { background: var(--primary-dark); color: white; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer-grid h4 { margin-bottom: 25px; font-size: 18px; color: var(--primary); }
.footer-grid p { color: #94a3b8; font-size: 14px; margin-top: 10px;}
.footer-grid ul li { margin-bottom: 12px; color: #94a3b8; font-size: 14px;}
.footer-grid ul li a:hover { color: var(--primary); }
.logo.white-logo { color: white; }
.tursab-badge { margin-top: 25px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.2); padding: 10px; width: fit-content; border-radius: 8px; }
.bottom-footer { background: rgba(0,0,0,0.2); padding: 20px 0; text-align: center; color: rgba(255,255,255,0.7); font-size: 13px; border-top: 1px solid rgba(255,255,255,0.1); }

/* WHATSAPP BUTONU */
.whatsapp-float {
    position: fixed;
    width: 72px;
    height: 72px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 20px rgba(0,0,0,0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float img { width: 42px; height: 42px; filter: brightness(0) invert(1); } /* İkonu beyaz yapar */

/* Mobilde WhatsApp butonu biraz küçülür */
@media (max-width: 768px) {
    .whatsapp-float { width: 62px; height: 62px; bottom: 20px; right: 20px; }
    .whatsapp-float img { width: 38px; height: 38px; }
}

/* ========================================================
   AÇILMA ANİMASYONLARI
   ======================================================== */

/* Ana sayfa açılırken fade-in animasyonu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sayfa yüklenişi animasyonu */
body.page-load {
    animation: fadeIn 0.6s ease-out;
}

/* Header animasyonu */
.dark-header {
    animation: slideInDown 0.6s ease-out;
}

.logo {
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

nav ul li {
    animation: fadeInUp 0.7s ease-out;
}

nav ul li:nth-child(1) { animation-delay: 0.2s; }
nav ul li:nth-child(2) { animation-delay: 0.3s; }
nav ul li:nth-child(3) { animation-delay: 0.4s; }
nav ul li:nth-child(4) { animation-delay: 0.5s; }

.custom-lang-dropdown {
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

/* Slider animasyonu */
.slider-section {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Section başlıkları animasyonu */
.section-header {
    animation: fadeInUp 0.8s ease-out both;
}

.section-header h2 {
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.section-header .underline {
    animation: slideInUp 0.6s ease-out 0.3s both;
}

/* Tour kartları - cascade animasyonu */
.tour-card {
    animation: fadeInUp 0.6s ease-out both;
}

.tour-card:nth-child(1) { animation-delay: 0.1s; }
.tour-card:nth-child(2) { animation-delay: 0.2s; }
.tour-card:nth-child(3) { animation-delay: 0.3s; }
.tour-card:nth-child(4) { animation-delay: 0.4s; }
.tour-card:nth-child(5) { animation-delay: 0.5s; }
.tour-card:nth-child(6) { animation-delay: 0.6s; }
.tour-card:nth-child(7) { animation-delay: 0.1s; }
.tour-card:nth-child(8) { animation-delay: 0.2s; }
.tour-card:nth-child(9) { animation-delay: 0.3s; }
.tour-card:nth-child(10) { animation-delay: 0.4s; }

/* Popular kartları - cascade animasyonu */
.popular-card {
    animation: fadeInUp 0.6s ease-out both;
}

.swiper-slide:nth-child(1) { animation-delay: 0.2s; }
.swiper-slide:nth-child(2) { animation-delay: 0.3s; }
.swiper-slide:nth-child(3) { animation-delay: 0.4s; }
.swiper-slide:nth-child(4) { animation-delay: 0.5s; }
.swiper-slide:nth-child(5) { animation-delay: 0.6s; }

/* Hakkımızda section */
.about-bg {
    animation: fadeInUp 0.8s ease-out;
}

.about-text {
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.about-text h2 {
    animation: slideInUp 0.6s ease-out 0.3s both;
}

.about-text p {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.check-list li {
    animation: fadeInUp 0.5s ease-out both;
}

.check-list li:nth-child(1) { animation-delay: 0.5s; }
.check-list li:nth-child(2) { animation-delay: 0.6s; }
.check-list li:nth-child(3) { animation-delay: 0.7s; }

.about-img {
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

/* Footer animasyonu */
footer {
    animation: fadeInUp 0.8s ease-out;
}

.footer-grid > div {
    animation: fadeInUp 0.6s ease-out both;
}

.footer-grid > div:nth-child(1) { animation-delay: 0.2s; }
.footer-grid > div:nth-child(2) { animation-delay: 0.3s; }
.footer-grid > div:nth-child(3) { animation-delay: 0.4s; }

/* Anasayfaya Dön Butonu Animasyonu */
.btn-back-home {
    animation: slideInUp 0.7s ease-out both;
    transition: all 0.3s ease;
    background: transparent !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    padding: 10px 26px;
    border-radius: 12px;
    display: inline-block;
}

.btn-back-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(2, 132, 199, 0.18);
    background: var(--primary) !important;
    color: white !important;
}

.btn-back-home:active {
    transform: translateY(-1px);
}
/* ========================================================
   DETAY SAYFASI STİLLERİ (GÜNCELLENDİ)
   ======================================================== */

.tour-detail {
    padding: 60px 0;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

/* Modern grid layout: image + content */
.tour-detail-header {
    position: relative;
    height: 520px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 30px;
    display: block;
}

/* Full-bleed image as background layer */
.tour-detail-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: brightness(0.6) saturate(0.95);
}

/* Glass card with overlay content */
.tour-detail-content {
    position: absolute;
    left: 40px;
    bottom: 40px;
    width: calc(55% - 80px);
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    color: white;
    padding: 28px 26px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(2,12,34,0.45);
}

.tour-detail-title { color: #fff; font-size: 34px; margin-bottom: 12px; }
.tour-detail-stats .stat-content h4 { color: rgba(255,255,255,0.85); }
.tour-detail-stats .stat-content p { color: #fff; }
.stat-icon { background: rgba(255,255,255,0.06); }

/* Small badge on hero image */
.hero-badge {
    position: absolute;
    left: 20px;
    top: 20px;
    background: rgba(255,255,255,0.95);
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    font-size: 14px;
}

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

.tour-detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon img {
    width: 24px;
    height: 24px;
}

.stat-content h4 {
    font-size: 12px;
    color: var(--text-light);
    margin: 0 0 5px 0;
    font-weight: 500;
    text-transform: uppercase;
}

.stat-content p {
    font-size: 18px;
    color: var(--primary-dark);
    margin: 0;
    font-weight: 700;
}

.tour-detail-description {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.tour-detail-description h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.tour-detail-description p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Tour Özeti Box */
.tour-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(2, 132, 199, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.quick-item {
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quick-item strong {
    color: var(--primary);
    font-weight: 600;
}

/* Aktivite Kartları Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.activity-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid rgba(2, 132, 199, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.1);
    border-color: var(--primary);
}

.activity-card h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin: 0 0 10px 0;
    font-weight: 700;
}

.activity-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Neler İçerilmez Bölümü */
.tour-excludes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-excludes li {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tour-excludes li:last-child {
    border-bottom: none;
}

.tour-excludes li::before {
    content: '✕';
    color: #ef4444;
    font-weight: 700;
    font-size: 18px;
    min-width: 20px;
    flex-shrink: 0;
}

.tour-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.tour-section h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-section h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 2px;
}

.tour-includes ul,
.tour-schedule ol,
.tour-info-section ul,
.tour-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-includes li,
.tour-schedule li,
.tour-info-section li,
.tour-tips li {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tour-includes li:last-child,
.tour-schedule li:last-child,
.tour-info-section li:last-child,
.tour-tips li:last-child {
    border-bottom: none;
}

.tour-includes li::before,
.tour-info-section li::before,
.tour-tips li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    min-width: 20px;
    flex-shrink: 0;
}

.tour-schedule li::before {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 50%;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    min-width: 28px;
    flex-shrink: 0;
    counter-increment: step-counter;
    content: counter(step-counter);
}

.tour-schedule ol {
    counter-reset: step-counter;
}

.tour-booking-box {
    position: fixed;
    right: 32px;
    top: 120px;
    width: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    color: white;
    box-shadow: 0 12px 30px rgba(2,12,34,0.5);
    z-index: 1400;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-booking-box:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(2,12,34,0.45); }

.tour-booking-box .booking-price { font-size: 24px; font-weight: 800; color: #fff; }
.tour-booking-box .booking-price-label { font-size: 12px; color: rgba(255,255,255,0.9); }
.tour-booking-box .btn-booking { padding: 10px 22px; font-size: 14px; background: #fff; color: var(--primary); border-radius: 10px; }

/* Accessibility: visible focus styles */
.btn-booking:focus, .btn-gozat:focus, .btn-back-home:focus, .link-gozat:focus {
    outline: 3px solid rgba(2,132,199,0.18);
    outline-offset: 3px;
    box-shadow: 0 6px 18px rgba(2,132,199,0.12);
}

.tour-detail-wrapper {
    padding-bottom: 200px;
}

@media (max-width: 1024px) {
    .tour-detail-img {
        height: 400px;
    }

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

    .tour-detail-title {
        font-size: 28px;
    }

    .tour-section {
        padding: 30px;
    }

    .tour-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    /* Stack detail header into single column on tablet */
    .tour-detail-header { grid-template-columns: 1fr; }
    .tour-img-wrap { order: -1; }
}

/* ========================================================
   RESPONSIVE DESIGN (MOBİL VE TABLET UYUMU)
   ======================================================== */

@media (max-width: 1024px) {
    .tour-grid { grid-template-columns: repeat(2, 1fr); }
    .heroSwiper { height: 500px; }
    .flex-about { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobil Boyutu (768px ve altı) - İHTİŞAMLI TEKLİ GÖRÜNÜM */
@media (max-width: 768px) {
    .top-bar .flex-between { flex-direction: column; text-align: center; gap: 8px; }
    .dark-header { padding: 12px 0; }
    .header-flex { flex-direction: row; flex-wrap: wrap; gap: 10px; text-align: left; }
    .dark-header .logo { order: 1; flex: 1 1 auto; font-size: 22px; line-height: 1.1; min-width: 0; }
    .dark-header .custom-lang-dropdown { order: 2; margin-top: 0; }
    .mobile-menu-toggle { display: inline-flex; order: 3; flex: 0 0 42px; }
    .dark-header nav {
        order: 4;
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease, margin-top 0.3s ease;
    }
    .dark-header nav.mobile-nav-open {
        max-height: 260px;
        opacity: 1;
        margin-top: 8px;
    }
    .dark-header nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        overflow: hidden;
    }
    .dark-header nav ul li a {
        display: block;
        padding: 12px 14px;
        font-size: 14px;
    }
    .dark-header nav ul li + li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .custom-lang-btn { min-height: 42px; padding: 8px 12px; }
    .custom-lang-list { left: auto; right: 0; transform: translateY(-10px); }
    .custom-lang-list.active { transform: translateY(0); }

    .heroSwiper {
        height: auto;
        aspect-ratio: 16 / 10;
        min-height: 210px;
        max-height: 320px;
        border-radius: 10px;
    }
    .hero-slide-caption { left: 16px; bottom: 16px; font-size: clamp(1.05rem, 5vw, 1.35rem); max-width: calc(100% - 32px); }
    .slider-section { padding: 15px 0; }
    .custom-nav { width: 40px !important; height: 40px !important; }
    .custom-nav::after { font-size: 15px !important; }

    /* Ana Turlar - İhtişamlı Yükseklik */
    .tour-grid { grid-template-columns: 1fr; gap: 20px; }
    .tours-grid { grid-template-columns: 1fr; gap: 20px; }
    .section-header h2 { font-size: 26px; }
    .tour-img-container { height: 320px; } 
    .tour-info { padding: 20px; }
    .tour-info h4 { font-size: 18px; }
    .tour-info p { font-size: 14px; line-height: 1.6; }

    /* Popüler Turlar - Tekli Görünüm */
    .popular-slider-wrapper { padding: 0 10px; } 
    .custom-pop-nav { display: none !important; } /* Mobilde parmakla kaydırmak için oklar gizlendi */
    
    .popular-card { padding: 15px; } 
    .popular-card img { margin-bottom: 15px; } 
    .popular-card h4 { font-size: 20px; margin-bottom: 8px; }
    .popular-card p { font-size: 14px; line-height: 1.6; }
    
    .flex-about { flex-direction: column; text-align: center; }
    .about-img { order: -1; } 
    .check-list li { display: inline-block; margin: 5px 10px; font-size: 14px; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .tursab-badge { margin: 20px auto 0; }

    /* DETAY SAYFASI MOBİL */
    .tour-detail {
        padding: 30px 0;
    }

    .tour-detail-img {
        height: 300px;
    }

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

    .tour-detail-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .tour-detail-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
        padding-top: 20px;
    }

    .stat-content h4 {
        font-size: 11px;
    }

    .stat-content p {
        font-size: 16px;
    }

    .tour-detail-description,
    .tour-section {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .tour-detail-description h3,
    .tour-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .tour-detail-description p {
        font-size: 14px;
    }

    .tour-includes li,
    .tour-schedule li,
    .tour-info-section li,
    .tour-tips li {
        padding: 10px 0;
        font-size: 14px;
    }

    .tour-booking-box {
        padding: 20px;
        bottom: 0;
        border-radius: 0;
        top: auto;
        right: 0;
        left: 0;
        width: 100%;
        position: fixed;
    }

    .booking-price {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .booking-price-label {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .btn-booking {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }

    .tour-detail-wrapper {
        padding-bottom: 160px;
    }

    /* Make hero stacked on mobile */
    .tour-detail-header { height: auto; display: block; }
    .tour-detail-img { position: relative; height: 300px; transform: none; filter: none; }
    .tour-detail-content { position: static; width: 100%; background: white; color: var(--text-dark); padding: 18px; margin-top: 16px; border-radius: 12px; box-shadow: var(--card-shadow); }
    .tour-detail-title { color: var(--primary-dark); }
    .hero-badge { position: absolute; top: 16px; left: 16px; }

    /* Detay Sayfası - Aktiviteler */
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .activity-card {
        padding: 15px;
    }

    .activity-card h4 {
        font-size: 16px;
    }

    .activity-card p {
        font-size: 13px;
    }

    .tour-quick-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }

    .quick-item {
        font-size: 13px;
    }
}

/* TOUR DETAIL PAGE - MODERN DESIGN */
.tour-detail-description {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.tour-detail-description h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.tour-detail-description p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ACTIVITIES GRID */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* ========================================================
   TURLAR SAYFASI STİLLERİ
   ======================================================== */

.tours-page-header {
    padding: 30px 0 20px;
    text-align: center;
    background: transparent;
    border-bottom: 4px solid var(--primary);
    margin: 0 auto 40px auto;
    border-radius: 0;
    width: fit-content;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary);
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.tours-page-header h1 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.tours-page-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

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

/* TUR KARTI DETAYLI */
.tour-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.tour-card-link:has(.tour-card-featured) {
    overflow: visible;
}

.tour-card-featured-link {
    overflow: visible;
}

.tour-card-detail {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(2, 132, 199, 0.1);
    position: relative;
}

.tour-card-detail::before {
    display: none;
}

.tour-card-link:hover .tour-card-detail {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.tour-card-link:hover .tour-card-featured {
    box-shadow:
        0 0 24px rgba(2, 132, 199, 0.3),
        0 0 40px rgba(2, 132, 199, 0.2);
}

.tour-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
}

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

.tour-card-link:hover .tour-card-img img {
    transform: scale(1.12);
}

.tour-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.tour-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s;
}

.tour-card-link:hover .tour-card-body h3 {
    color: var(--primary-dark);
}

.tour-card-body p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
}

.tour-card-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.detail-item span {
    min-width: 0;
}

.detail-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.tour-card-bottom, .tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.tour-price-pill, .tour-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 132, 199, 0.09);
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid rgba(2, 132, 199, 0.18);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.tour-card-featured {
    position: relative;
    border: 2px solid rgba(2, 132, 199, 0.5);
    background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 48%, #eaf6fc 100%);
    box-shadow:
        0 0 22px rgba(2, 132, 199, 0.28),
        0 0 36px rgba(2, 132, 199, 0.18);
}

.tour-card-featured:hover {
    box-shadow:
        0 0 24px rgba(2, 132, 199, 0.3),
        0 0 40px rgba(2, 132, 199, 0.2);
}

.tour-featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 24px);
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(2, 132, 199, 0.3);
    white-space: nowrap;
}

.tour-card-featured .tour-price-badge {
    background: rgba(2, 132, 199, 0.14);
    border-color: rgba(2, 132, 199, 0.32);
}

.tour-card-featured .btn-detaylar {
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.32);
}

.tour-price-discount {
    gap: 6px;
    padding-inline: 14px;
}

.tour-price-discount .old-price {
    position: relative;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.tour-price-discount .old-price::after {
    content: "";
    position: absolute;
    left: -3px;
    right: -3px;
    top: 50%;
    height: 2px;
    background: currentColor;
    transform: rotate(-14deg);
    transform-origin: center;
}

.tour-price-discount .new-price {
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
}

.tour-price-pill img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.btn-detaylar {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 96px;
}

.btn-detaylar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(2, 132, 199, 0.35);
}

.btn-detaylar span {
    display: inline-block;
    transition: transform 0.3s;
}

.btn-detaylar:hover span {
    transform: translateX(4px);
}

/* MOBİL RESPONSIVE */
/* TABLETLERİ UYUMU */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tours-page-header {
        padding: 40px 0 30px;
        border-radius: 15px;
        margin-bottom: 30px;
    }

    .tours-page-header h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .tours-page-header p {
        font-size: 15px;
    }

    .tour-card-img {
        aspect-ratio: 4/3;
    }

    .tour-card-body {
        padding: 18px;
    }

    .tour-card-body h3 {
        font-size: 18px;
    }

    .tour-card-body p {
        font-size: 13px;
    }

    .detail-item {
        font-size: 14px;
    }

    .btn-detaylar {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* MOBIL - 1 SUTUN */
@media (max-width: 600px) {
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-card-img {
        aspect-ratio: 4/3;
    }
}

/* ÇOKÇA KÜÇÜK MOBIL - 1 SUTUN */
@media (max-width: 480px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }

    .heroSwiper {
        aspect-ratio: 16 / 9;
        min-height: 190px;
        max-height: 260px;
    }
}

.activity-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.activity-card h4 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.activity-card p {
    color: #666;
    line-height: 1.6;
}

/* TIMELINE */
.timeline-container {
    position: relative;
    padding-left: 50px;
    margin-top: 20px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding: 20px 0;
}

.timeline-marker {
    position: absolute;
    left: -50px;
    top: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.timeline-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.timeline-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* INFO GRID */
.tour-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .tour-info-grid {
        grid-template-columns: 1fr;
    }
}

/* TOUR INCLUDES/EXCLUDES */
.tour-includes ul,
.tour-excludes ul {
    list-style: none;
    padding: 0;
}

.tour-includes li,
.tour-excludes li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.tour-includes li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tour-excludes li:before {
    content: "✗";
    color: #dc3545;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* IMPORTANT INFO SECTION */
.tour-info-section ul {
    list-style: none;
    padding: 0;
}

.tour-info-section li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.tour-info-section li:before {
    content: "ℹ";
    color: #17a2b8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* TIPS GRID */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.tip-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.tip-content h5 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.tip-content p {
    margin: 0;
    color: #666;
    line-height: 1.4;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .tour-detail-description {
        padding: 20px;
    }

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

    .activity-card {
        padding: 15px;
    }

    .activity-card h4 {
        font-size: 16px;
    }

    .activity-card p {
        font-size: 13px;
    }

    .timeline-container {
        padding-left: 40px;
    }

    .timeline-marker {
        left: -40px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* BACK TO HOME BUTTON */
.back-to-home {
    text-align: center;
    padding: 60px 0 40px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25);
    cursor: pointer;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(2, 132, 199, 0.35);
}

/* SEO content helpers */
.region-seo-intro {
    max-width: 900px;
    margin: 16px auto 0;
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.75;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 18px;
}

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

.faq-item h3 {
    color: #0c4a6e;
    font-size: 1.08rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h3::before {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0c4a6e;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 1px;
}

.visually-hidden-seo {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
/* Shared layout for newly added tour detail pages */
.new-tour-hero {
    margin-top: 90px;
    padding-top: 20px;
}

.new-tour-hero img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: 16px;
}

.tour-gallery {
    position: relative;
    width: calc(100% - 40px);
    max-width: calc(var(--container-width) - 40px);
    aspect-ratio: 16 / 9;
    margin-top: 90px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 0;
    min-height: 260px;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
    touch-action: pan-y;
    cursor: grab;
}

.tour-gallery:active {
    cursor: grabbing;
}

.tour-gallery .carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1);
    transition: opacity 700ms ease, visibility 700ms ease, transform 4200ms ease;
    pointer-events: none;
}

.tour-gallery .carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1.025);
}

.tour-gallery .carousel-controls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    z-index: 5;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.tour-gallery .carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: width 200ms ease, background 200ms ease;
}

.tour-gallery .carousel-dot.active {
    width: 28px;
    border-radius: 999px;
    background: #fff;
}

.tour-gallery + main .highlights-list li::before {
    content: "⭐";
    color: inherit;
    font-size: 1.1rem;
    font-weight: 400;
}

.tour-gallery + main .included-list li::before {
    content: "✔️";
    color: inherit;
    font-size: 1.05rem;
    font-weight: 400;
}

.tour-gallery + main .excluded-list li::before {
    content: "❌";
    color: inherit;
    font-size: 1rem;
    font-weight: 400;
}

.tour-gallery + main .important-list li::before {
    content: "❗";
    color: inherit;
    font-size: 1.1rem;
    font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
    .tour-gallery .carousel-slide,
    .tour-gallery .carousel-slide.active {
        transition: none;
        transform: none;
    }
}

.new-tour-photo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
}

.new-tour-photo-grid img {
    height: 100%;
}

.boat-slider-wrap {
    margin-top: 90px;
    padding: 20px 16px 0;
}

.boat-tour-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 260px;
    border-radius: 16px;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
}

.boat-tour-carousel:active {
    cursor: grabbing;
}

.boat-tour-carousel .carousel-slide {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1);
    transition: opacity 900ms ease, visibility 900ms ease, transform 4200ms ease;
    pointer-events: none;
}

.boat-tour-carousel .carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1.035);
}

.boat-tour-carousel .carousel-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.boat-tour-carousel .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.boat-tour-carousel .carousel-dot.active {
    width: 28px;
    border-radius: 5px;
    background: #fff;
}

.tour-title-block {
    background: #fff;
    padding: 25px 35px;
    border: 1px solid #f0f4f8;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin: 20px 0 30px;
}

.tour-title-block h1 {
    margin: 0;
    color: #0c4a6e;
    font-size: 2.2rem;
}

.tour-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.tour-content section {
    margin-bottom: 30px;
    padding: 35px;
    background: #fff;
    border: 1px solid #f0f4f8;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.tour-content h2 {
    color: #0c4a6e;
    font-size: 1.6rem;
    border-bottom: 2px solid #e0f2fe;
    padding-bottom: 12px;
    margin-bottom: 22px;
}

.tour-content p,
.custom-list li {
    color: #4a5568;
    line-height: 1.75;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.highlights-list li::before,
.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f766e;
    font-weight: 700;
}

.excluded-list li::before,
.important-list li::before {
    content: "!";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

.itinerary-timeline {
    border-left: 2px dashed #bae6fd;
    padding-left: 25px;
    margin-left: 10px;
}

.itinerary-item {
    position: relative;
    margin-bottom: 28px;
}

.itinerary-item::before {
    content: "";
    position: absolute;
    left: -33px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: #0c4a6e;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #e0f2fe;
}

.itinerary-time {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 12px;
    color: #0c4a6e;
    background: #e0f2fe;
    border-radius: 20px;
    font-weight: 700;
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.booking-card {
    position: sticky;
    top: 100px;
    padding: 35px;
    background: #fff;
    border-top: 5px solid #0c4a6e;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(12, 74, 110, 0.08);
}

.booking-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #0c4a6e;
    font-size: 2.5rem;
    font-weight: 700;
}

.booking-price span {
    color: #718096;
    font-size: 1rem;
    font-weight: 400;
}

.booking-child-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    padding: 10px 12px;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.booking-child-price strong {
    color: #0c4a6e;
    font-size: 1.15rem;
}

.booking-child-price span {
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 500;
}

.quick-facts {
    margin: 25px 0;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.fact-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: #4a5568;
}

.fact-item img {
    width: 24px;
    margin-right: 15px;
}

.btn-book {
    display: block;
    width: 100%;
    padding: 16px;
    color: #fff;
    background: #0c4a6e;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 992px) {
    .tour-layout,
    .includes-grid {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
    }

    .tour-title-block h1 {
        font-size: 1.6rem;
    }

    .new-tour-hero img {
        aspect-ratio: 16 / 9;
    }

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

    .boat-tour-carousel {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 600px) {
    .tour-gallery,
    .boat-slider-wrap {
        width: calc(100% - 24px);
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .tour-gallery,
    .boat-tour-carousel {
        min-height: 220px;
        border-radius: 14px;
    }

    .tour-title-block,
    .tour-content section,
    .booking-card {
        padding: 22px;
        border-radius: 14px;
    }
}
