/* 
   TATILGRUP - NEW PREMIUM DESIGN SYSTEM 💎
   Based on demosayfa.html "Fresh & Clean" catalog aesthetic.
   Fully mobile responsive and optimized for Outfit/Nunito fonts.
*/

:root {
    --blue: #007bff;
    --blue-dark: #0056b2;
    --red: #ff0000;
    --navy: #1a3a5c;
    --white: #ffffff;
    --gray: #f8f9fa;
    --text: #1a1a1a;
    --muted: #6c757d;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 15px 35px rgba(0,0,0,0.1);
    --r-lg: 30px;
    --r-md: 15px;
    --glass-white: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(20px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', 'Nunito', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* SCRATCH BUILD BASE */
.premium-mode { font-family: 'Outfit', sans-serif; }

/* ADVANCED HEADER WITH MEGA MENU */
header.premium-header {
    padding: 15px 5%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.premium-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 5%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Force scrolled state on pages with dark hero backgrounds */
header.premium-header.dark-page-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 5%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
header.premium-header.dark-page-header .nav-links a { color: var(--navy); }

.logo-img { transition: all 0.3s; }

.nav-container { display: flex; align-items: center; justify-content: center; }
.nav-links { display: flex; gap: 30px; list-style: none; margin-bottom: 0; padding-left: 0; }
.nav-links > li { position: static; }
.nav-links a { text-decoration: none; color: var(--white); font-weight: 700; font-size: 15px; transition: color 0.3s; padding: 10px 0; display: block; }
header.premium-header.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--red); }

/* ══ MEGA MENU ══ (Screenshot design: 3 columns) */
.mega-menu {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 100%;
    background: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    display: none;
    transform: translateY(4px);
    transition: opacity 0.22s, visibility 0.22s, transform 0.22s ease;
    z-index: 1001;
    pointer-events: none;
}
.nav-links > li.has-mega:hover .mega-menu,
.nav-links > li.has-mega .mega-menu:hover,
.nav-links > li.has-mega .mega-menu.mm-open {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; display: block;
}

/* 
   BRIDGE FIX: extend the hover zone of each li downward with padding+pseudo-element
   so the cursor stays inside the hover zone as it moves from nav link to the dropdown.
*/
.nav-links > li.has-mega {
    position: static; /* keeps mega-menu positioned relative to header */
    padding-bottom: 16px;
    margin-bottom: -16px;
    cursor: default;
}
.nav-links > li.has-mega > a { cursor: pointer; }

/* CSS-only hover trigger (JS adds delay on top of this) */
.nav-links > li.has-mega:hover .mega-menu,
.nav-links > li.has-mega .mega-menu:hover,
.nav-links > li.has-mega .mega-menu.mm-open {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all;
}
.mega-menu-inner {
    display: flex;
    gap: 0;
    padding: 36px 36px 32px;
}

/* Column */
.mega-menu .mm-col {
    flex: 1;
    padding-right: 36px;
    border-right: 1px solid #f1f5f9;
}
.mega-menu .mm-col:last-child { border-right: none; padding-right: 0; }

/* Column heading */
.mm-col-heading {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}
.mm-col-heading i { color: var(--red); font-size: 13px; }

/* List links */
.mm-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mm-list-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.15s, transform 0.15s;
}
.mm-list-link:hover { background: #f8fafc; transform: translateX(4px); }
.mm-link-icon { color: var(--blue); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.mm-link-body { display: flex; flex-direction: column; }
.mm-link-title { font-size: 14px; font-weight: 700; color: var(--navy); transition: color 0.15s; }
.mm-list-link:hover .mm-link-title { color: var(--red); }
.mm-link-sub { font-size: 12px; color: #94a3b8; margin-top: 2px; }

/* Featured column */
.mm-col-featured { padding-left: 36px; padding-right: 0; }
.mm-featured-grid { display: flex; flex-direction: column; gap: 10px; }
.mm-feat-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    height: 90px;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.mm-feat-card:hover { transform: scale(1.02); }
.mm-feat-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}
.mm-feat-card:hover .mm-feat-img { transform: scale(1.05); }
.mm-feat-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 12px 8px;
}

.header-cta {
    background: var(--red); color: var(--white); padding: 10px 25px; border-radius: 50px; text-decoration: none;
    font-weight: 800; font-size: 14px; box-shadow: 0 4px 15px rgba(255,0,0,0.3); transition: transform 0.3s, background 0.3s;
}
.header-cta:hover { transform: translateY(-2px); background: #d00000; }

/* PREMIUM SLIDER & HERO */
.premium-hero {
    height: 95vh;
    position: relative;
    overflow: hidden;
}

.hero-swiper { width: 100%; height: 100%; }
.hero-swiper .swiper-slide { transition-property: opacity !important; }

.slide-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden; /* For zoom effect */
}

/* Background image layer */
.hero-bg-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

/* Continuous Zoom Effect */
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.swiper-slide-active .hero-bg-photo {
    animation: heroZoom 20s linear infinite;
}

/* Specific Overlay Gradient */
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.15) 0%, 
        transparent 45%, 
        rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content { max-width: 1000px; padding: 0 20px; z-index: 10; padding-top: 60px; position: relative; }
.hero-tag { 
    background: var(--red); display: inline-block; padding: 8px 25px; border-radius: 4px; 
    font-weight: 900; font-size: 16px; margin-bottom: 25px; text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255,0,0,0.3);
}
.premium-hero h1 { 
    font-size: clamp(40px, 7vw, 90px); font-weight: 900; line-height: 0.95; 
    margin-bottom: 35px; text-shadow: 0 10px 30px rgba(0,0,0,0.4); text-transform: uppercase; 
}

/* SLIDE BADGES */
.slide-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; }
.s-badge { 
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: var(--white);
    padding: 10px 25px; border-radius: 100px; font-size: 13px; font-weight: 700;
    border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; gap: 8px;
}
.s-badge i { color: var(--red); }

/* ICONIC CIRCLE PRICE TAG */
.price-circle-tag {
    position: absolute;
    bottom: 10%;
    right: 8%;
    width: 200px;
    height: 200px;
    background: var(--white);
    border: 12px solid var(--red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: floatPrice 4s ease-in-out infinite;
    cursor: default;
}

@keyframes floatPrice {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.pct-label { color: var(--navy); font-weight: 900; font-size: 12px; text-transform: uppercase; margin-bottom: -5px; }
.pct-price { color: var(--red); font-weight: 950; font-size: 52px; line-height: 1; font-family: 'Outfit', sans-serif; }
.pct-price small { font-size: 24px; margin-left: -5px; }
.pct-sub { color: var(--navy); font-weight: 800; font-size: 11px; margin-top: -3px; }

/* SWIPER NAVIGATION */
.swiper-button-next, .swiper-button-prev { 
    color: var(--white); width: 60px; height: 60px; background: rgba(0,0,0,0.2); 
    border-radius: 50%; backdrop-filter: blur(5px); transition: all 0.3s;
}
.swiper-button-next:after, .swiper-button-prev:after { font-size: 24px; font-weight: 900; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--red); }

/* SEARCH BAR */
.search-area {
    max-width: 1100px; margin: -60px auto 80px; background: var(--white); padding: 15px; border-radius: 100px;
    box-shadow: var(--shadow-md); display: flex; align-items: center; padding-left: 40px; position: relative; z-index: 30;
}
.s-group { flex: 1; border-right: 1px solid #eee; padding: 10px 20px; }
.s-group:last-of-type { border-right: none; }
.s-group label { display: block; font-size: 11px; font-weight: 900; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.s-group input, .s-group select { width: 100%; border: none; font-size: 16px; font-weight: 700; color: var(--navy); outline: none; background: none; }
.s-btn { background: var(--blue); color: var(--white); width: 70px; height: 70px; border-radius: 50%; border: none; font-size: 22px; cursor: pointer; transition: all 0.3s; display: grid; place-items: center; margin-left: 10px; }
.s-btn:hover { background: var(--red); transform: scale(1.05); }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 60px; padding: 0 20px; }
.section-header h2 { font-size: clamp(32px, 4vw, 44px); font-weight: 900; color: var(--navy); margin-bottom: 15px; }
.section-header div { width: 60px; height: 5px; background: var(--red); margin: 0 auto; border-radius: 10px; }



/* POPULAR TOURS CONTAINER */
.popular-grid {
    max-width: 1300px; margin: 0 auto 100px; padding: 0 20px;
    display: flex; flex-direction: column; gap: 25px; /* Default is LIST view */
}
.popular-grid.grid-view {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}

.tour-card-v {
    background: var(--white); border-radius: var(--r-md); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: all 0.4s; text-decoration: none; color: inherit; 
    display: flex; flex-direction: row; /* Default: LIST (horizontal) */
}
.grid-view .tour-card-v { flex-direction: column; border-radius: var(--r-lg); }

.tour-card-v:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.tcv-img { width: 320px; height: 240px; position: relative; overflow: hidden; flex-shrink: 0; }
.grid-view .tcv-img { width: 100%; height: 240px; }

.tcv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.tour-card-v:hover .tcv-img img { transform: scale(1.08); }

.tcv-tag { position: absolute; top: 15px; left: 15px; background: var(--red); color: var(--white); padding: 5px 15px; border-radius: 50px; font-size: 11px; font-weight: 800; z-index: 2; }
.tcv-body { padding: 25px; flex: 1; display: flex; flex-direction: column; min-width: 0; }
.tcv-title { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.3; transition: color 0.3s; }
.tour-card-v:hover .tcv-title { color: var(--red); }
.grid-view .tcv-title { font-size: 14px; min-height: 38px; }

.tcv-date-selector { margin-bottom: 20px; background: var(--gray); padding: 10px 15px; border-radius: 10px; }
.tcv-date-selector label { display: block; font-size: 10px; font-weight: 800; color: var(--muted); text-transform: uppercase; margin-bottom: 5px; }
.tcv-date-selector select { width: 100%; border: none; background: none; font-size: 13px; font-weight: 700; color: var(--navy); outline: none; cursor: pointer; }

.tcv-info { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--muted); margin-top: auto; border-top: 1px solid #eee; padding-top: 15px; }
.tcv-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 20px; }
.tcv-price-wrapper { display: flex; flex-direction: column; }
.tcv-price-label { font-size: 10px; font-weight: 800; color: #94a3b8; margin-bottom: 2px; line-height: 1.2; text-transform: none; }
.tcv-price-main { display: flex; align-items: baseline; gap: 5px; }
.tcv-price-val { font-size: 36px; font-weight: 950; color: var(--red); line-height: 1; letter-spacing: -1.5px; }
.tcv-price-curr { font-size: 18px; font-weight: 800; color: #64748b; }

.btn-incele {
    background: #0068c8;
    color: #fff;
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 104, 200, 0.15);
}
.btn-incele:hover {
    background: #0056a8;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 104, 200, 0.25);
}

/* FOOTER */
.premium-footer { background: #f0f4f8; color: #334155; padding: 100px 5% 40px; position: relative; border-top: 1px solid #e2e8f0; font-family: 'Outfit', sans-serif; }
.f-top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; max-width: 1300px; padding: 0 20px; margin: 0 auto 60px; }
.f-col.links-col { flex: 1; min-width: 150px; }
.f-col.agency-col { flex: 0 0 250px; }
.f-col h4 { font-size: 18px; font-weight: 800; margin-bottom: 25px; color: #2a2a2a; }
.f-links { list-style: none; padding: 0; }
.f-links a { display: inline-block; color: #1d1e1f; text-decoration: none; font-size: 15px; transition: all 0.3s; line-height: 2.2; font-weight: 500; }
.f-links a:hover { color: #0068c8; transform: translateX(5px); }

/* WHITE CONTACT CARD */
.f-contact-card {
    background: #ffffff;
    max-width: 1300px;
    margin: 0 auto 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.f-contact-logo img { height: 45px; object-fit: contain; }
.f-contact-social { display: flex; align-items: center; gap: 15px; }
.f-contact-social .social-label { font-size: 14px; font-weight: 700; color: #0f172a; margin-right: 5px; }
.f-contact-social a { width: 38px; height: 38px; background: #0f172a; color: #fff; display: grid; place-items: center; border-radius: 50%; transition: all 0.3s; font-size: 16px; }
.f-contact-social a:hover { background: #0068c8; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,104,200,0.3); }

.f-contact-phones { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.phone-box { display: flex; align-items: center; gap: 12px; border-left: 1px solid #e2e8f0; padding-left: 30px; }
.phone-box:first-child { border-left: none; padding-left: 0; }

.icon-circle { width: 45px; height: 45px; border-radius: 50%; display: grid; place-items: center; color: white; font-size: 18px; }
.icon-circle.red { background: #dc2626; box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2); }
.icon-circle.green { background: #84cc16; box-shadow: 0 4px 12px rgba(132, 204, 22, 0.2); }

.phone-box .text { display: flex; flex-direction: column; }
.phone-box .label { font-size: 13px; color: #64748b; font-weight: 600; }
.phone-box .number { font-size: 18px; font-weight: 800; color: #0f172a; }

/* BOTTOM SECTION */
.f-bottom-address p { margin: 0; line-height: 1.6; }

/* MOBILE RESPONSIVE */
.mobile-menu-btn { 
    display: none; font-size: 24px; color: var(--white); cursor: pointer; z-index: 1001; 
}
header.premium-header.scrolled .mobile-menu-btn { color: var(--navy); }

@media (max-width: 1024px) {
    .popular-grid.grid-view { grid-template-columns: repeat(2, 1fr); }
    .tour-card-v { flex-direction: column; }
    .tcv-img { width: 100%; }
    .mega-menu { display: none !important; }
    
    .mobile-menu-btn { display: block; }

    .nav-container { 
        display: block; position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; 
        background: var(--white); box-shadow: -10px 0 30px rgba(0,0,0,0.1); 
        padding: 100px 30px; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1000;
    }
    .nav-container.active { right: 0; }
    .nav-links { flex-direction: column; gap: 20px; }
    .nav-links a { color: var(--navy); font-size: 18px; border-bottom: 1px solid #eee; width: 100%; display: block; }
}
@media (max-width: 768px) {
    .popular-grid.grid-view { grid-template-columns: 1fr; }
    .premium-hero h1 { font-size: 48px; }
    .search-area { flex-direction: column; border-radius: 20px; padding: 30px; margin: -100px 20px 60px; }
    .s-group { border-right: none; border-bottom: 1px solid #eee; width: 100%; margin-bottom: 15px; }
    .s-btn { width: 100%; border-radius: 10px; margin: 0; }
    
    .f-contact-card { flex-direction: column; text-align: center; justify-content: center; padding: 30px 20px; }
    .f-contact-social { justify-content: center; width: 100%; }
    .f-contact-phones { flex-direction: column; width: 100%; gap: 20px; }
    .phone-box { border-left: none; padding-left: 0; justify-content: center; width: 100%; }
    .f-col.agency-col { align-items: center !important; justify-content: center !important; width: 100%; margin-top: 30px; }
}

/* --- TOURS LISTING ENHANCEMENTS --- */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0 60px; margin-bottom: 40px; color: white; border-radius: 0 0 40px 40px;
}
.page-hero-inner { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
.page-hero h1 {
    font-size: 3rem; font-weight: 800; margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 0.7rem; color: rgba(255,255,255,0.4); }

.filter-bar {
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 20px;
    padding: 15px 30px; margin: -50px auto 40px; position: relative; z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: space-between; max-width: 1300px;
}
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.fchip {
    padding: 8px 18px; border-radius: 30px; background: white; font-size: 0.85rem; font-weight: 600;
    color: #475569; text-decoration: none; border: 1px solid #e2e8f0; transition: 0.3s;
}
.fchip.active { background: #ff0000; color: white; border-color: #ff0000; box-shadow: 0 4px 12px rgba(255,0,0,0.2); }

.filter-divider { width: 1px; height: 30px; background: #e2e8f0; margin: 0 10px; }

.view-toggle { display: flex; background: white; border: 1px solid #e2e8f0; border-radius: 12px; padding: 4px; gap: 4px; }
.vt-btn {
    width: 36px; height: 36px; border-radius: 8px; border: none; background: transparent; color: #64748b; cursor: pointer; transition: 0.3s; display: grid; place-items: center;
}
.vt-btn.active { background: var(--navy); color: white; }
.vt-btn:hover:not(.active) { background: #f1f5f9; color: var(--navy); }
.filter-panel {
    top: 100px !important;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 24px !important;
    padding: 25px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
    width: 280px !important;
}
.fp-group label {
    font-size: 11px; font-weight: 800; color: #64748b; text-transform: uppercase; margin-bottom: 8px; display: block;
}
.fp-group select {
    width: 100%; padding: 12px; border: 1px solid #e2e8f0; border-radius: 12px; background: white; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem; margin-bottom: 20px; outline: none;
}
.btn-apply {
    width: 100%; padding: 14px; background: #ff0000; color: white; border: none; border-radius: 12px; font-weight: 800; transition: 0.3s;
}
.btn-apply:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255,0,0,0.3); }

/* PAGINATION ENHANCEMENTS */
.load-more-wrap { display: flex; justify-content: center; margin: 40px 0; }
.load-more {
    background: white; border: 1px solid #e2e8f0; padding: 15px 40px; border-radius: 50px; font-weight: 800; color: #1e293b; transition: 0.3s; cursor: pointer;
}
.load-more:hover { border-color: #ff0000; color: #ff0000; }
.pagination { margin-top: 50px; display: flex; justify-content: center; gap: 10px; }
.page-btn {
    width: 45px; height: 45px; border-radius: 12px; border: 1px solid #e2e8f0; background: white; font-weight: 800; transition: 0.3s;
}
.page-btn.active { background: #ff0000; color: white; border-color: #ff0000; }
.page-btn:hover:not(.active) { border-color: #ff0000; color: #ff0000; }

/* --- PREMIUM UI COMPONENTS --- */
.premium-select-wrapper {
    position: relative;
    background: var(--gray);
    border-radius: 12px;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}
.premium-select-wrapper:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    background: white;
}
.premium-select-wrapper label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 2px;
}
.premium-select-wrapper select {
    width: 100%;
    border: none;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 750;
    color: var(--navy);
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.glass-card {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

/* PREMIUM CUSTOM SELECT V2 (Used for Tour Date Selectors) */
.custom-select-v2 {
    position: relative;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}
.custom-select-v2:hover {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.csv2-trigger { display: flex; flex-direction: column; position: relative; }
.csv2-trigger label {
    display: block; font-size: 10px; font-weight: 800; color: var(--muted);
    text-transform: uppercase; margin-bottom: 2px; pointer-events: none;
}
.csv2-selected {
    font-size: 13px; font-weight: 750; color: var(--navy); display: flex;
    justify-content: space-between; align-items: center;
}
.csv2-selected i { font-size: 11px; color: var(--muted); transition: transform 0.3s; }
.custom-select-v2.open .csv2-selected i { transform: rotate(180deg); }

.csv2-dropdown {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(15px);
    border-radius: 16px; box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(255, 255, 255, 0.4); z-index: 1000;
    overflow: hidden; display: none; transform: translateY(10px); opacity: 0;
    transition: all 0.3s;
}
.custom-select-v2.open .csv2-dropdown { display: block; transform: translateY(0); opacity: 1; }
.csv2-option {
    padding: 12px 18px; font-size: 13px; font-weight: 600; color: var(--navy);
    cursor: pointer; transition: 0.2s; border-bottom: 1px solid #f1f5f9;
}
.csv2-option:last-child { border-bottom: none; }
.csv2-option:hover {
    background: rgba(59, 130, 246, 0.06); color: var(--red); padding-left: 22px;
}

/* --- TOUR DETAILS REFINEMENTS --- */
.page-content {
    max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding: 40px 20px;
}
.left-col { display: flex; flex-direction: column; gap: 40px; }
.tour-title-main { font-size: 2.5rem; font-weight: 800; color: var(--navy); margin: 15px 0; letter-spacing: -0.5px; }

.gallery {
    display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 200px 200px; gap: 15px; border-radius: 30px; overflow: hidden;
}
.gallery-main { grid-column: 1; grid-row: 1 / span 2; }
.g-img { transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; }
.g-img:hover { transform: scale(1.05); }

.quick-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.qh-card {
    background: white; padding: 20px; border-radius: 20px; text-align: center; border: 1px solid #f1f5f9; box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.qh-icon { color: #ff0000; font-size: 24px; margin-bottom: 10px; }
.qh-label { font-size: 11px; font-weight: 800; color: #64748b; text-transform: uppercase; }
.qh-value { font-size: 14px; font-weight: 700; color: var(--navy); margin-top: 5px; }

.sidebar-booking {
    position: sticky; top: 100px; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 30px; padding: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); z-index: 2000;
}
.sb-price { font-size: 32px; font-weight: 900; color: #ff0000; }
.sb-currency { font-size: 18px; font-weight: 800; color: #ff0000; margin-left: 5px; }
.sb-cta {
    width: 100%; padding: 18px; background: #ff0000; color: white; border: none; border-radius: 15px; font-weight: 800; font-size: 1.1rem; margin-top: 25px; transition: 0.3s;
}
.sb-cta:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255,0,0,0.3); }

.tabs-sticky {
    background: white; padding: 10px; border-radius: 15px; display: flex; gap: 10px; margin-bottom: 30px; border: 1px solid #f1f5f9;
}
.tab-btn {
    padding: 10px 20px; border-radius: 10px; border: none; background: transparent; font-weight: 700; color: #64748b; transition: 0.3s;
}
.tab-btn.active { background: #f1f5f9; color: var(--navy); }

.program-day {
    position: relative; padding-left: 40px; margin-bottom: 40px; border-left: 2px solid #e2e8f0;
}
.program-day::before {
    content: ''; position: absolute; left: -9px; top: 0; width: 16px; height: 16px; background: #ff0000; border: 4px solid white; border-radius: 50%; box-shadow: 0 0 0 2px #e2e8f0;
}
.program-day h4 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }

@media (max-width: 1024px) {
    .page-content { grid-template-columns: 1fr; }
    .sidebar { order: -1; }
    .sidebar-booking { position: static; margin-bottom: 30px; }
}

/* --- ADDITIONS FOR TOUR DETAILS SIDEBAR & PAX --- */
.sb-header { border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 20px; margin-bottom: 20px; }
.sb-header-title { font-size: 11px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.sb-price-area { display: flex; align-items: baseline; margin-top: 5px; }
.sb-price { font-size: 42px; font-weight: 950; color: var(--red); line-height: 1; letter-spacing: -1px; }
.sb-currency { font-size: 20px; font-weight: 800; color: var(--red); margin-left: 5px; }

.sb-section { margin-bottom: 25px; }
.sb-label { display: block; font-size: 12px; font-weight: 800; color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.sb-label i { color: var(--blue); font-size: 14px; }

.pax-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pax-btn:hover:not(:disabled) { border-color: var(--blue) !important; color: var(--blue); background: #f8fafc !important; }

.price-breakdown { border: 1px solid #f1f5f9; }
.pb-row { display: flex; justify-content: space-between; align-items: center; }


@media (max-width: 768px) {
    .tour-title-main { font-size: 2rem; }
    .quick-highlights { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-template-columns: 1fr; grid-template-rows: 250px 100px 100px; }
    .gallery-main { grid-column: 1; grid-row: 1; }
    .gallery-thumb { grid-column: 1; }
}


/* ═══════════════════════════════════════════════════════
   LISTING HERO — Dark premium hero for listing/detail pages
   ═══════════════════════════════════════════════════════ */
.listing-hero {
    position: relative;
    background: linear-gradient(135deg, #0c1a2e 0%, #1a3a5c 40%, #0f2744 100%);
    padding: 55px 0 40px;
    overflow: hidden;
    margin-top: 68px; /* header height */
}

/* Background photo layer at low opacity for depth */
.listing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--listing-hero-bg, url('/assets/img/bg/breadcrumb.jpg'));
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
    mix-blend-mode: luminosity;
}

/* Geometric grid overlay for texture */
.listing-hero-bg {
    display: none; /* Removed grid overlay as requested */
}

/* Bottom fade into page */
.listing-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, #f8f9fc, transparent);
    z-index: 1;
    pointer-events: none;
}

.listing-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Breadcrumb */
.listing-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}
.listing-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}
.listing-breadcrumb a:hover { color: #fff; }
.listing-breadcrumb a i { margin-right: 4px; }
.bc-sep { color: rgba(255,255,255,0.3); font-size: 11px; }
.bc-current { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 700; }

/* Hero content */
.listing-hero-content { display: flex; flex-direction: column; gap: 16px; }
.listing-hero-title {
    color: #ffffff;
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0;
}
.listing-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.9);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}
.hero-stat i { font-size: 12px; }
.hero-stat strong { color: #fff; }

/* Detail hero specific */
.detail-hero { padding-bottom: 80px; }
.detail-hero-operator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.operator-badge {
    background: var(--red);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255,0,0,0.3);
}
.detail-hero-actions { display: flex; gap: 10px; }
.dha-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: white;
    display: grid; place-items: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.dha-btn:hover { background: var(--red); border-color: var(--red); }

/* Theme hero photo overlay */
.theme-hero { overflow: hidden; }
.theme-hero .theme-hero-photo {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.2; z-index: 0;
}


/* ═══════════════════════════════════════════════════════
   LISTING FILTER BAR — Horizontal sticky chips + controls
   ═══════════════════════════════════════════════════════ */
.listing-filter-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 68px;
    z-index: 900;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.listing-filter-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    overflow: hidden;
}

/* Scrollable chip row */
.lf-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    flex: 1;
    padding: 10px 0;
    scrollbar-width: none;
}
.lf-chips::-webkit-scrollbar { display: none; }

.lf-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.lf-chip:hover { border-color: var(--blue); color: var(--blue); }
.lf-chip.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    box-shadow: 0 4px 12px rgba(26,58,92,0.25);
}
.lf-chip i { font-size: 11px; }

/* Controls: sort + view + filter button */
.lf-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.lf-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}
.lf-select:focus { border-color: var(--blue); }

.lf-view-toggle { display: flex; gap: 4px; }
.lf-vt {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: var(--navy);
    display: grid; place-items: center;
    cursor: pointer; font-size: 14px;
    transition: all 0.2s;
}
.lf-vt:hover, .lf-vt.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

/* Hero meta items (stats + actions) */
.listing-hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.hero-stats-left { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-actions-right { display: flex; gap: 10px; }

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-action-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 15px;
    text-decoration: none;
    outline: none;
    padding: 0;
}
.hero-action-btn:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
    color: white;
}
.lf-filter-btn {
    display: flex; align-items: center; gap: 8px;
    background: var(--navy); color: white;
    border: none; padding: 8px 18px;
    border-radius: 10px; font-size: 13px; font-weight: 800;
    cursor: pointer; transition: background 0.2s;
}
.lf-filter-btn:hover { background: var(--blue); }

/* Collapsible filter section */
.lf-expandable {
    display: none;
    background: #f8f9fc;
    border-top: 1px solid #e2e8f0;
}
.lf-expandable.open { display: block; }
.lf-expandable-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}
.lf-field { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 160px; }
.lf-field label {
    font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--muted);
    display: flex; align-items: center; gap: 6px;
}
.lf-field select {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 14px; font-weight: 600;
    color: var(--navy);
    background: #fff; outline: none;
    transition: border-color 0.2s; cursor: pointer;
}
.lf-field select:focus { border-color: var(--blue); }
.lf-field-actions { display: flex; flex-direction: column; gap: 6px; }
.lf-field-actions button {
    padding: 9px 20px; border-radius: 10px; border: none;
    font-size: 13px; font-weight: 800; cursor: pointer;
    display: flex; align-items: center; gap: 6px; transition: 0.2s;
    background: var(--blue); color: white;
}
.lf-field-actions button.reset {
    background: none; color: var(--muted);
    font-size: 12px; border: 1px solid #e2e8f0;
}
.lf-field-actions button:hover { opacity: 0.85; }

/* Page body (no left margin needed anymore) */
.tours-page-body { 
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
}


@media (max-width: 640px) {
    .listing-hero { padding: 40px 0 35px; }
    .listing-hero-title { font-size: 20px; }
    .lf-controls { gap: 6px; }
    .lf-select { display: none; }
    .listing-filter-inner { flex-wrap: nowrap; }
}

/* ─── Detail Hero: use tour's own photo as background ─── */
.detail-hero { padding-top: 40px; padding-bottom: 45px; }
.detail-hero .listing-hero-inner { padding: 40px 40px; }

/* Tour image layer — passed via --tour-img CSS variable from Razor */
.detail-hero::before {
    background-image: var(--tour-img, url('/assets/img/bg/breadcrumb.jpg'));
    opacity: 0.22;
}

.detail-hero-operator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.operator-badge {
    background: var(--red);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255,0,0,0.3);
}
.detail-hero-actions { display: flex; gap: 10px; }
.dha-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: white;
    display: grid; place-items: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.dha-btn:hover { background: var(--red); border-color: var(--red); }

/* ═══════════════════════════════════════════════════════
   THEME LANDING PAGE SPECIALS
   ═══════════════════════════════════════════════════════ */
.theme-hero {
    background: linear-gradient(135deg, #0c1a2e 0%, #1a3a5c 40%, #0f2744 100%);
    padding: 60px 0 50px;
}
.theme-hero .theme-hero-photo {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.18; z-index: 0;
    mix-blend-mode: luminosity;
}
.theme-hero .listing-hero-title {
    font-size: clamp(32px, 5vw, 60px);
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Destination Gallery Grid for Themes & Home Page */
.destination-grid {
    max-width: 1300px;
    margin: 30px auto 100px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.dest-card {
    position: relative;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.dest-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    z-index: 1;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25); }

.dest-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.6s;
    z-index: 0;
    background-image: url('/assets/img/bg/breadcrumb.jpg'); /* Default fallback */
}
.dest-card:hover .dest-img { transform: scale(1.1); }

.dest-info { position: relative; z-index: 2; color: white; }
.dest-name { font-size: 1.25rem; font-weight: 800; margin: 0; }
.dest-meta { font-size: 0.85rem; opacity: 0.8; font-weight: 600; display: flex; align-items: center; gap: 6px; margin-top: 4px; }

/* Rich content styling */

.theme-content-rich {
    line-height: 1.8; font-size: 1.1rem; color: #334155;
}
.theme-content-rich h2, .theme-content-rich h3 { 
    font-weight: 900; color: #0f172a; margin-top: 2.5rem; margin-bottom: 1.2rem;
}
.theme-content-rich p { margin-bottom: 1.5rem; }
.theme-content-rich img {
    width: 100%; border-radius: 20px; margin: 2rem 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .destination-grid { grid-template-columns: 1fr; }
    .dest-card { height: 160px; }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM HERO ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes heroFadeInScale {
    0% { opacity: 0; transform: scale(0.97) translateY(8px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Default state for elements to be animated */
.hero-content > *, .price-circle-tag {
    opacity: 0;
    will-change: transform, opacity;
}

/* Triggered when slide is active (or has .is-animating class) */
.swiper-slide.is-animating .hero-tag {
    animation: heroFadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.swiper-slide.is-animating .hero-content h1 {
    animation: heroFadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1) 100ms forwards;
}

.swiper-slide.is-animating .slide-badges {
    animation: heroFadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1) 200ms forwards;
}

.swiper-slide.is-animating .header-cta {
    animation: heroFadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1) 300ms forwards;
}

.swiper-slide.is-animating .price-circle-tag {
    animation: heroFadeInScale 0.82s cubic-bezier(0.16, 1, 0.3, 1) 500ms forwards;
}

/* ═══════════════════════════════════════════════════════
   CHECKOUT & RESERVATION STYLES
   ═══════════════════════════════════════════════════════ */
.checkout-page { background: #f8fafc; min-height: 100vh; padding: 40px 0 100px; }
.checkout-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 380px; gap: 40px; }

/* Progress Steps */
.checkout-steps { display: flex; justify-content: space-between; margin-bottom: 50px; position: relative; max-width: 800px; margin-inline: auto; }
.checkout-steps::before { content: ''; position: absolute; top: 20px; left: 0; right: 0; height: 2px; background: #e2e8f0; z-index: 1; }
.step-item { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; color: #94a3b8; font-weight: 700; font-size: 13px; }
.step-dot { width: 40px; height: 40px; background: white; border: 2px solid #e2e8f0; border-radius: 50%; display: grid; place-items: center; transition: all 0.3s; color: #cbd5e1; }
.step-item.active { color: var(--navy); }
.step-item.active .step-dot { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1); }
.step-item.done .step-dot { background: var(--blue); border-color: var(--blue); color: white; }

/* Cards & Sections */
.checkout-card { background: white; border-radius: 24px; padding: 35px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); border: 1px solid #f1f5f9; margin-bottom: 30px; }
.card-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 25px; display: flex; align-items: center; gap: 12px; }
.card-title i { color: var(--blue); font-size: 18px; }

/* Forms */
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-group label { font-size: 13px; font-weight: 700; color: #64748b; }
.field-input { 
    padding: 14px 18px; border-radius: 12px; border: 1px solid #e2e8f0; font-size: 15px; font-weight: 600; color: var(--navy); outline: none; transition: all 0.2s; background: #fdfdfd;
}
.field-input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08); background: white; }
.field-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='Length 19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; background-size: 16px; padding-right: 40px; }

/* Passenger Blocks */
.pax-block { border: 1px solid #f1f5f9; border-radius: 20px; padding: 25px; margin-bottom: 20px; background: #fafbfc; }
.pax-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px dashed #e2e8f0; }
.pax-label { font-weight: 800; color: var(--navy); font-size: 16px; }

/* Sidebar Summary */
.summary-card { position: sticky; top: 120px; background: var(--navy); color: white; padding: 30px; border-radius: 24px; box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15); }
.summary-title { font-size: 18px; font-weight: 800; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.summary-item { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; color: rgba(255,255,255,0.7); font-weight: 600; }
.summary-total { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2); display: flex; justify-content: space-between; align-items: flex-end; }
.summary-total label { font-size: 14px; color: white; opacity: 0.8; font-weight: 700; }
.summary-total .price { font-size: 32px; font-weight: 900; color: white; line-height: 1; }

.checkout-btn { width: 100%; padding: 18px; background: var(--red); color: white; border: none; border-radius: 14px; font-size: 16px; font-weight: 800; cursor: pointer; transition: all 0.3s; margin-top: 25px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.checkout-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3); }

/* Bank Card (Havale) */
.bank-option { border: 2px solid #e2e8f0; border-radius: 20px; padding: 20px; cursor: pointer; transition: all 0.2s; position: relative; margin-bottom: 15px; }
.bank-option:hover { border-color: var(--blue); background: rgba(59,130,246,0.02); }
.bank-option.selected { border-color: var(--blue); background: rgba(59,130,246,0.05); }
.bank-name { font-weight: 800; color: var(--navy); font-size: 17px; margin-bottom: 4px; }
.bank-iban { font-family: 'Courier New', monospace; font-weight: 700; color: var(--blue); letter-spacing: 1px; font-size: 16px; }
.iban-copy { position: absolute; top: 20px; right: 20px; color: #94a3b8; cursor: pointer; }

@media (max-width: 900px) {
    .checkout-container { grid-template-columns: 1fr; }
    .summary-card { position: static; margin-bottom: 40px; }
    .form-row { grid-template-columns: 1fr; }
}

/* --- HEADER SEARCH & GLOBAL AUTOCOMPLETE 🔍 */
header.premium-header .nav-container { justify-self: center; }
header.premium-header .header-right-actions { justify-self: end; display: flex; align-items: center; gap: 20px; }

.header-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1002;
}
.search-input-container { width: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.header-search-wrapper.active { margin-left: auto; }
.header-search-wrapper.active .search-input-container { width: 280px; margin-right: 12px; opacity: 1; }
#headerSearchInput { 
    width: 100%; border: 1px solid rgba(0,0,0,0.1); background: rgba(255,255,255,0.9); 
    padding: 10px 18px; border-radius: 50px; font-family: 'Outfit', sans-serif; 
    font-weight: 600; font-size: 14px; outline: none; transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
#headerSearchInput:focus { border-color: var(--blue); background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.search-toggle { background: none; border: none; color: inherit; font-size: 20px; cursor: pointer; transition: 0.3s; padding: 5px; opacity: 0.8; }
.search-toggle:hover { opacity: 1; transform: scale(1.1); color: var(--red); }
.header-search-wrapper.active .search-toggle { color: var(--red); }

.search-results-dropdown { 
    position: absolute; top: calc(100% + 20px); right: 0; width: 420px; 
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); 
    border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.18); 
    display: none; z-index: 1005; max-height: 500px; overflow-y: auto; 
    border: 1px solid rgba(255, 255, 255, 0.4); transform: translateY(15px); 
    opacity: 0; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-results-dropdown.active { display: block; transform: translateY(0); opacity: 1; }
.sr-group { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.sr-group:last-child { border-bottom: none; }
.sr-title { font-size: 11px; font-weight: 800; color: var(--muted); padding: 5px 22px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.7; }
.sr-item { display: flex; align-items: center; gap: 15px; padding: 12px 22px; text-decoration: none; color: var(--navy); transition: all 0.2s; }
.sr-item:hover { background: rgba(59, 130, 246, 0.05); color: var(--red); padding-left: 28px; }
.sr-item img { width: 45px; height: 45px; border-radius: 10px; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.sr-item-info { display: flex; flex-direction: column; gap: 2px; }
.sr-item-name { font-weight: 750; font-size: 14px; line-height: 1.2; }
.sr-item-sub { font-size: 11px; color: var(--muted); font-weight: 600; }
.sr-no-results { padding: 30px; text-align: center; color: var(--muted); font-weight: 600; font-size: 14px; }

@media (max-width: 900px) {
    .header-search-wrapper { margin-right: 15px; }
    .header-search-wrapper.active .search-input-container { width: 180px; }
    .search-results-dropdown { width: 300px; right: -50px; }
}

/* --- PREMIUM SUPPORT WIDGET --- */
.support-widget {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    font-family: 'Outfit', sans-serif;
    max-width: 100vw;
    box-sizing: border-box;
}

.support-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1002;
}
.support-toggle:hover { transform: scale(1.1) rotate(15deg); background: var(--red); }

.support-toggle .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.6;
    z-index: -1;
    animation: supportPulse 2s infinite;
}

@keyframes supportPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}

.support-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
}
.support-widget.active .support-container { display: flex; transform: translateY(0); opacity: 1; }

.support-header {
    background: linear-gradient(135deg, #0068c8, #004d96);
    color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sh-info { display: flex; align-items: center; gap: 12px; }
.sh-avatar { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
.sh-avatar i { font-size: 20px; color: white; }
.sh-avatar::after { content: ''; position: absolute; bottom: 0; right: 0; width: 10px; height: 10px; background: #22c55e; border-radius: 50%; border: 2px solid #005bb5; }
.sh-info h4 { font-size: 15px; margin: 0; font-weight: 700; letter-spacing: 0.5px; }
.status-online { font-size: 11px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 4px; }
.status-online i { font-size: 10px; color: #fbbf24; }

.sh-actions { display: flex; align-items: center; gap: 6px; }
.font-btn { background: rgba(255,255,255,0.15); border: none; color: white; border-radius: 6px; width: 28px; height: 28px; display: flex; justify-content: center; align-items: center; cursor: pointer; font-size: 12px; font-weight: 600; padding: 0; transition: background 0.2s; }
.font-btn:hover { background: rgba(255,255,255,0.3); }

.support-close { background: transparent; border: none; color: white; font-size: 24px; cursor: pointer; opacity: 0.8; transition: opacity 0.2s; padding: 0 0 0 4px; line-height: 1; }
.support-close:hover { opacity: 1; }

.support-tabs {
    display: flex;
    background: #ffffff;
    padding: 12px 15px 5px;
    gap: 10px;
    border-bottom: 1px solid #e2e8f0;
}
.s-tab {
    flex: 1;
    padding: 10px 5px;
    border: none;
    background: #f1f5f9;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    outline: none !important;
}
.s-tab i { font-size: 14px; }
.s-tab.active { background: #0068c8; color: white; box-shadow: 0 4px 12px rgba(0,104,200,0.2); }
.s-tab:hover:not(.active) { background: #e2e8f0; color: #0f172a; }

.support-body { flex: 1; position: relative; overflow: hidden; }
.tab-pane {
    position: absolute;
    inset: 0;
    padding: 15px;
    display: none;
    flex-direction: column;
    background: white;
    overflow-y: auto;
}
.tab-pane.active { display: flex; }

/* CHAT STYLES */
.chat-messages { flex: 1; overflow-y: auto; padding-bottom: 20px; display: flex; flex-direction: column; gap: 12px; }
.msg { padding: 12px 18px; border-radius: 20px; font-size: 13px; line-height: 1.5; max-width: 85%; }
.msg.bot { background: #f1f5f9; color: var(--navy); align-self: flex-start; border-bottom-left-radius: 5px; font-weight: 600; }
.msg.user { background: var(--blue); color: white; align-self: flex-end; border-bottom-right-radius: 5px; font-weight: 600; }

/* TYPING INDICATOR */
.msg.bot.typing { display: flex; gap: 5px; padding: 15px 20px; align-items: center; width: fit-content; min-width: 60px; justify-content: center; }
.msg.bot.typing .dot { width: 6px; height: 6px; background: var(--muted); border-radius: 50%; opacity: 0.4; animation: dotPulse 1.4s infinite; }
.msg.bot.typing .dot:nth-child(2) { animation-delay: 0.2s; }
.msg.bot.typing .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* LINK & MARKDOWN IN CHAT */
.chat-link { color: var(--blue); font-weight: 800; text-decoration: underline; transition: 0.2s; }
.chat-link:hover { color: var(--red); }
.msg.bot strong { color: var(--navy); font-weight: 800; }

.chat-input-area { display: flex; gap: 10px; padding-top: 15px; border-top: 1px solid #f1f5f9; }
.chat-input-area input { flex: 1; border: 1px solid #e2e8f0; padding: 10px 20px; border-radius: 50px; font-size: 13px; outline: none; transition: 0.2s; }
.chat-input-area input:focus { border-color: var(--blue); }
.chat-input-area button { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: white; border: none; cursor: pointer; transition: 0.2s; }
.chat-input-area button:hover { background: var(--red); }

/* CALLBACK FORM */
.callback-form { display: flex; flex-direction: column; gap: 15px; }
.form-desc { font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.6; margin-bottom: 5px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; font-weight: 800; color: var(--navy); text-transform: uppercase; }
.form-group input, .form-group select { padding: 12px 18px; border-radius: 12px; border: 1px solid #e2e8f0; font-size: 14px; font-weight: 600; outline: none; }
.btn-submit-callback { margin-top: 10px; padding: 14px; background: var(--blue); color: white; border: none; border-radius: 12px; font-weight: 800; cursor: pointer; transition: 0.3s; }
.btn-submit-callback:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* FAQ STYLES */
.support-faq { display: flex; flex-direction: column; gap: 10px; overflow-y: auto; }
.faq-item { border: 1px solid #f1f5f9; border-radius: 15px; overflow: hidden; }
.faq-q { padding: 15px 20px; font-size: 13px; font-weight: 800; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.2s; }
.faq-q:hover { background: #f8fafc; color: var(--blue); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; font-size: 13px; color: var(--muted); line-height: 1.6; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active .faq-a { padding: 15px 20px; max-height: 200px; border-top: 1px solid #f1f5f9; }
.faq-item.active .faq-q i { transform: rotate(180deg); }

@media (max-width: 600px) {
    .support-container { width: calc(100vw - 40px); height: 80vh; right: -10px; bottom: 80px; }
}

/* ═══════════════════════════════════════════════════════
   TUR DETAY SAYFASI — YENİ TASARIM (td-* sınıfları)
   ═══════════════════════════════════════════════════════ */

/* HERO */
.td-hero {
    position: relative;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.td-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,40,0.92) 0%, rgba(10,20,40,0.5) 50%, rgba(10,20,40,0.15) 100%);
    z-index: 0;
}
.td-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 28px;
}
.td-hero-title {
    font-size: clamp(22px, 3.5vw, 42px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 16px 0 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.td-hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; }
.td-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.td-hero-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.td-action-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; font-size: 12px; font-weight: 700;
    background: rgba(255,255,255,0.15); color: #fff;
    border: 1px solid rgba(255,255,255,0.3); border-radius: 8px;
    backdrop-filter: blur(8px); cursor: pointer; text-decoration: none;
    transition: background .15s;
}
.td-action-btn:hover { background: rgba(255,255,255,0.28); color: #fff; }
.td-action-wa { background: rgba(37,211,102,0.25); border-color: rgba(37,211,102,0.5); }
.td-action-wa:hover { background: #25d366; color: #fff; }
.td-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    color: rgba(255,255,255,0.95);
    font-size: 13px;
    font-weight: 700;
}
.td-badge i { font-size: 11px; }

/* LAYOUT */
.td-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 32px;
    padding: 36px 20px 80px;
    align-items: start;
}

/* LEFT COLUMN */
.td-left { display: flex; flex-direction: column; gap: 28px; min-width: 0; }

/* GALLERY */
.td-gallery {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 10px;
    border-radius: 20px;
    overflow: hidden;
    min-height: 340px;
}
.td-gal-main {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 340px;
    cursor: pointer;
    transition: transform 0.4s ease;
}
.td-gal-main:hover { transform: scale(1.02); }
.td-gal-count {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,0.2);
}
.td-gal-grid {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 10px;
}
.td-gal-thumb {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}
.td-gal-thumb:hover { transform: scale(1.03); }

/* HIGHLIGHTS */
.td-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.td-hl-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.td-hl-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.td-hl-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 18px;
    margin: 0 auto 10px;
}
.td-hl-label { font-size: 10px; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }
.td-hl-val { font-size: 13px; font-weight: 800; color: var(--navy); margin-top: 4px; }

/* TABS */
.td-tabs {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 8px;
    display: flex;
    gap: 6px;
    position: sticky;
    top: 75px;
    z-index: 100;
    transition: box-shadow 0.3s;
}
.td-tab {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}
.td-tab:hover { background: #f8fafc; color: var(--navy); }
.td-tab.active { background: var(--navy); color: white; }
.td-tab i { font-size: 12px; }

/* TAB PANES */
.td-tab-pane { display: none; }
.td-tab-pane.active { display: block; }

/* PROGRAM */
.td-day {
    display: flex;
    gap: 20px;
    padding-bottom: 36px;
    position: relative;
}
.td-day::before {
    content: '';
    position: absolute;
    left: 10px; top: 22px; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e2e8f0, transparent);
}
.td-day:last-child::before { display: none; }
.td-day-dot {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e2e8f0;
    flex-shrink: 0;
    margin-top: 2px;
    transition: 0.2s;
    position: relative;
    z-index: 1;
}
.td-day-dot.first { border-color: var(--red); background: var(--red); }
.td-day-content { flex: 1; min-width: 0; }
.td-day-label {
    display: inline-block;
    font-size: 10px; font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 6px;
    background: #f8fafc;
    padding: 3px 10px;
    border-radius: 50px;
}
.td-day-label.blue { color: var(--blue); background: #eff6ff; }
.td-day-title { font-size: 16px; font-weight: 800; color: var(--navy); margin: 0 0 8px; }
.td-day-text { font-size: 14px; color: #475569; line-height: 1.75; font-weight: 500; }
.td-day-text p { margin-bottom: 8px; }

/* HİZMETLER */
.td-inc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.td-inc-col {
    border-radius: 16px;
    padding: 22px;
    border: 1px solid #f1f5f9;
}
.td-inc-yes { background: #f0fdf4; border-color: #bbf7d0; }
.td-inc-no  { background: #fef2f2; border-color: #fecaca; }
.td-inc-col h4 {
    font-size: 14px; font-weight: 800; margin: 0 0 16px;
    display: flex; align-items: center; gap: 8px;
}
.td-inc-yes h4 { color: #16a34a; }
.td-inc-no  h4 { color: #dc2626; }
.td-inc-body { font-size: 13px; line-height: 1.8; color: #374151; font-weight: 500; }
.td-inc-body ul { padding-left: 0; list-style: none; }
.td-inc-body li { padding: 4px 0; display: flex; align-items: flex-start; gap: 6px; }

/* BİLGİLER */
.td-info-box { background: #fafbfc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 24px; }
.td-info-box h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.td-info-box h4 i { color: var(--blue); }
.td-info-text { font-size: 13.5px; color: #475569; line-height: 1.8; font-weight: 500; }

/* EMPTY STATE */
.td-empty { text-align: center; padding: 48px 20px; color: #94a3b8; }
.td-empty i { font-size: 40px; display: block; margin-bottom: 12px; }
.td-empty p { font-size: 14px; font-weight: 600; }

/* SECTION LABEL */
.td-section-label {
    font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
    text-transform: uppercase; color: #94a3b8;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 16px;
}
.td-section-label span { width: 20px; height: 2px; background: var(--blue); border-radius: 1px; display: inline-block; }

/* SIMILAR TOURS */
.td-similar { background: white; border: 1px solid #f1f5f9; border-radius: 16px; padding: 20px 22px; }
.td-sim-card {
    display: flex; gap: 14px; align-items: center;
    padding: 12px 0; border-bottom: 1px solid #f8fafc;
    text-decoration: none; color: inherit;
    transition: 0.2s;
    cursor: pointer;
}
.td-sim-card:last-child { border-bottom: none; }
.td-sim-card:hover { padding-left: 6px; }
.td-sim-img { width: 70px; height: 55px; border-radius: 10px; background-size: cover; background-position: center; flex-shrink: 0; }
.td-sim-op { font-size: 10px; font-weight: 800; color: #94a3b8; text-transform: uppercase; margin-bottom: 3px; }
.td-sim-title { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 4px; }
.td-sim-price { font-size: 13px; font-weight: 800; color: var(--red); }

/* SIDEBAR */
.td-sidebar { position: sticky; top: 90px; }

/* CONTACT BOX */
.td-contact-box {
    margin-top: 16px;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 20px;
}
.td-contact-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 12px; border-radius: 12px;
    font-size: 14px; font-weight: 800;
    text-decoration: none; transition: all 0.2s;
    margin-bottom: 10px;
}
.td-contact-btn:last-child { margin-bottom: 0; }
.td-phone { background: var(--blue); color: white; }
.td-phone:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,85,255,0.25); }
.td-whatsapp { background: #22c55e; color: white; }
.td-whatsapp:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(34,197,94,0.3); }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .td-layout { grid-template-columns: 1fr 340px; }
    .td-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .td-layout { grid-template-columns: 1fr; }
    .td-sidebar { position: static; }
    .sidebar-booking { position: static; }
    .td-gallery { grid-template-columns: 1fr; min-height: 250px; }
    .td-gal-grid { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); min-height: 100px; }
    .td-inc-grid { grid-template-columns: 1fr; }
    .td-hero { min-height: 280px; }
}
@media (max-width: 600px) {
    .td-highlights { grid-template-columns: repeat(2, 1fr); }
    .td-tabs { gap: 4px; overflow-x: auto; flex-wrap: nowrap; }
    .td-tab { font-size: 11px; padding: 8px 10px; white-space: nowrap; flex-shrink: 0; }
    .td-hero-title { font-size: 20px; }
}

/* ── Alternatif Tarihler — Sade Tablo ── */
.td-simple-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.td-simple-table thead tr {
    border-bottom: 2px solid #e2e8f0;
}
.td-simple-table thead th {
    padding: 10px 12px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.td-simple-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background .12s;
}
.td-simple-table tbody tr:last-child { border-bottom: none; }
.td-simple-table tbody tr:hover { background: #f8fafc; }
.td-simple-table tbody tr.td-row-active { background: #eff6ff; }
.td-simple-table td { padding: 12px 12px; vertical-align: middle; }
.td-cell-price { font-size: 15px; font-weight: 800; color: #e11d48; white-space: nowrap; }
.td-cell-price span { font-size: 12px; font-weight: 600; color: #94a3b8; }
.td-pill { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.td-pill-ok   { background: #dcfce7; color: #16a34a; }
.td-pill-low  { background: #fef9c3; color: #a16207; }
.td-pill-full { background: #f1f5f9; color: #94a3b8; }
.td-incele-btn {
    font-size: 12px; font-weight: 700; color: #2563eb;
    border: 1.5px solid #bfdbfe; border-radius: 6px;
    padding: 5px 12px; text-decoration: none;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.td-incele-btn:hover { background: #2563eb; color: #fff; }

/* ── SSS Tab ── */
#tdpane-sss .accordion-item { border-radius: 10px !important; overflow: hidden; }
#tdpane-sss .accordion-button { font-weight: 600; font-size: 14px; color: #1e3a5f; background: #f8fafc; }
#tdpane-sss .accordion-button:not(.collapsed) { color: #2563eb; background: #eff6ff; box-shadow: none; }
#tdpane-sss .accordion-body { font-size: 14px; color: #475569; line-height: 1.7; }
/* ── Tema Sayfası Zengin İçerik Alanı ── */
.theme-content-rich { font-size: 15px; line-height: 1.85; color: #374151; }
.theme-content-rich h1, .theme-content-rich h2, .theme-content-rich h3,
.theme-content-rich h4, .theme-content-rich h5, .theme-content-rich h6 {
    color: #1e3a5f; font-weight: 800; margin: 1.4em 0 .6em;
}
.theme-content-rich h2 { font-size: 1.6rem; }
.theme-content-rich h3 { font-size: 1.3rem; }
.theme-content-rich p  { margin: 0 0 1rem; }
.theme-content-rich ul, .theme-content-rich ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.theme-content-rich li { margin-bottom: .4rem; }
.theme-content-rich a  { color: #2563eb; text-decoration: underline; }
.theme-content-rich a:hover { color: #1e3a5f; }
.theme-content-rich img { max-width: 100%; height: auto; border-radius: 10px; margin: 1rem 0; }
.theme-content-rich blockquote {
    border-left: 4px solid #2563eb; padding: 12px 20px;
    background: #eff6ff; border-radius: 0 8px 8px 0;
    font-style: italic; color: #1e3a5f; margin: 1.2rem 0;
}
.theme-content-rich table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 14px; }
.theme-content-rich table th { background: #1e3a5f; color: #fff; padding: 10px 14px; text-align: left; }
.theme-content-rich table td { padding: 9px 14px; border-bottom: 1px solid #e2e8f0; }
.theme-content-rich table tr:hover td { background: #f8fafc; }
.theme-content-rich strong { font-weight: 700; color: #1e3a5f; }
.theme-content-rich hr { border: none; border-top: 1px solid #e2e8f0; margin: 2rem 0; }

