/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  AÅK-I TURKUAZ  â€”  Premium Light Design System          â•‘
   â•‘  Luminous Â· Glassmorphism Â· Cinematic                    â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Primaries */
    --teal: #0d9488;
    --teal-vivid: #14b8a6;
    --teal-glow: #2dd4bf;
    --teal-soft: #99f6e4;
    --teal-pale: #ccfbf1;
    --teal-wash: #f0fdfa;
    --gold: #d97706;
    --gold-soft: #fbbf24;

    /* Surfaces */
    --bg: #fafbfc;
    --bg-warm: #f8faf9;
    --white: #ffffff;
    --surface: #ffffff;
    --surface-2: #f1f5f9;
    --surface-3: #e2e8f0;

    /* Text */
    --text: #0f172a;
    --text-2: #334155;
    --text-3: #64748b;
    --text-4: #94a3b8;

    /* Glass (light mode) */
    --glass: rgba(255, 255, 255, .65);
    --glass-heavy: rgba(255, 255, 255, .85);
    --glass-border: rgba(0, 0, 0, .06);
    --glass-shadow: rgba(0, 0, 0, .04);

    /* Dark accents (for hero/footer) */
    --dark-hero: #0c1222;
    --dark-2: #1e293b;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --section-py: clamp(20px, 5vw, 140px);
    --container: 80%;
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;

    /* Header / Logo heights — hero gibi fixed-header offset'leri buradan yönetilir */
    --header-h: 100px;
    --logo-h: 80px;
}

/* â”€â”€ RESET â”€â”€ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    /* Fixed header offset — her sayfada çakışma olmasın */
    padding-top: var(--header-h);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER â€” Clean nav bar
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    background: var(--white);
    transition: all .4s;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    height: var(--header-h);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-shrink: 0;
}

.header-logo .logo-image {
    height: var(--logo-h);
    max-width: 260px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text .name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.15;
    letter-spacing: 2px;
    color: var(--text);
}

.logo-divider {
    width: 1px;
    height: 32px;
    background: var(--surface-3);
}

.header-logo .tagline {
    font-size: .68rem;
    color: var(--text-4);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.5;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.header-nav a {
    padding: .5rem 1rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-2);
    border-radius: 999px;
    transition: all .3s;
    position: relative;
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--teal);
    background: var(--teal-wash);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--teal);
    border-radius: 1px;
    transition: all .3s;
    transform: translateX(-50%);
}

.header-nav a:hover::after {
    width: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
}

/* Currency dropdown */
.header-currency {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .75rem;
    border: 1px solid var(--surface-3);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--text-2);
    cursor: pointer;
    transition: all .3s;
}

.header-currency:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.header-currency .fa-globe {
    font-size: .85rem;
    color: var(--teal);
}

.btn-cta-header {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-vivid));
    color: var(--white);
    font-size: .8rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    letter-spacing: .3px;
    transition: all .3s;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(13, 148, 136, .2);
}

.btn-cta-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(13, 148, 136, .3);
}

.btn-outline-header {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1rem;
    background: transparent;
    color: var(--text-2);
    font-size: .8rem;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid var(--surface-3);
    transition: all .3s;
    white-space: nowrap;
}

.btn-outline-header:hover {
    color: var(--teal);
    border-color: var(--teal);
    background: var(--teal-wash);
}

.btn-outline-header .fa-phone {
    font-size: .75rem;
    color: var(--teal);
}


.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    padding: .5rem;
    font-size: 1.25rem;
    cursor: pointer;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MEGA MENÃœ â€” Premium Split-Pane
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Wrapper â€” relative for positioning */
/* â•â•â• MEGA MENU â€” Premium Sharp Design â•â•â• */
.nav-item-mega {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: -14px;
}

.nav-mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-2);
    border-radius: 999px;
    transition: all .3s;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}

.nav-mega-trigger .nav-cat-icon {
    font-size: .85rem;
    color: var(--teal);
    transition: color .3s;
}

.nav-mega-trigger:hover .nav-cat-icon,
.nav-item-mega:hover .nav-mega-trigger .nav-cat-icon {
    color: var(--teal-vivid, var(--teal));
}

.nav-mega-trigger::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--teal);
    border-radius: 1px;
    transition: all .3s;
    transform: translateX(-50%);
}

.nav-mega-trigger:hover,
.nav-item-mega:hover .nav-mega-trigger {
    color: var(--teal);
    background: var(--teal-wash);
}

.nav-item-mega:hover .nav-mega-trigger::after {
    width: 20px;
}

.mega-arrow {
    transition: transform .3s;
    margin-left: .1rem;
}

.nav-item-mega:hover .mega-arrow {
    transform: rotate(180deg);
}

/* Mega menu dropdown */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: 820px;
    background: var(--white);
    border-radius: 16px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, .12),
        0 10px 30px rgba(0, 0, 0, .06),
        0 0 0 1px rgba(0, 0, 0, .04);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .35s cubic-bezier(.22, 1, .36, 1);
    z-index: 150;
    overflow: visible;
}

/* Invisible bridge for hover continuity */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-item-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Inner layout â€” split pane */
.mega-menu-inner {
    display: flex;
    min-height: 410px;
    border-radius: 16px;
    overflow: hidden;
}

/* â”€â”€ Left sidebar â”€â”€ */
.mega-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #f8fffe 0%, #f0fdfa 100%);
    border-right: 1px solid var(--surface-3);
    display: flex;
    flex-direction: column;
    padding: .75rem 0;
}

.mega-sidebar-title {
    padding: .5rem 1.25rem 2rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.mega-sidebar-title i {
    font-size: .8rem;
}

.mega-cat-link {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .7rem 1.25rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-2);
    transition: all .25s;
    position: relative;
    border-left: 3px solid transparent;
}

.mega-cat-link + .mega-cat-link {
    margin-top: 20px;
}

.mega-cat-link i:first-child {
    font-size: .8rem;
    width: 20px;
    text-align: center;
    color: var(--text-4);
    transition: color .25s;
}

.mega-cat-link span {
    flex: 1;
}

.mega-cat-arrow {
    font-size: .55rem;
    color: transparent;
    transition: all .25s;
}

.mega-cat-link:hover,
.mega-cat-link.active {
    background: var(--white);
    color: var(--teal);
    border-left-color: var(--teal);
}

.mega-cat-link:hover i:first-child,
.mega-cat-link.active i:first-child {
    color: var(--teal);
}

.mega-cat-link:hover .mega-cat-arrow,
.mega-cat-link.active .mega-cat-arrow {
    color: var(--teal);
    transform: translateX(2px);
}

.mega-sidebar-footer {
    margin-top: auto;
    padding: .75rem 1.25rem 0;
    border-top: 1px solid rgba(13, 148, 136, .1);
}

.mega-all-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 0;
    font-size: .78rem;
    font-weight: 600;
    color: var(--teal);
    transition: gap .3s;
}

.mega-all-link:hover {
    gap: .75rem;
}

/* â”€â”€ Right content panel â”€â”€ */
.mega-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.mega-panel {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all .3s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
}

.mega-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mega-panel-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .25rem;
}

.mega-panel-header p {
    font-size: .8rem;
    color: var(--text-3);
    line-height: 1.5;
    margin-bottom: 0;
}

.mega-panel-body {
    margin-top: 1rem;
}

/* Alt kategoriler */
.mega-subcats h4,
.mega-featured h4 {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-4);
    margin-bottom: .65rem;
}

.mega-subcats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1.25rem;
}

.mega-subcat-item {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .85rem;
    background: var(--surface-1);
    border: 1px solid var(--surface-3);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--text-2);
    transition: all .25s;
}

.mega-subcat-item i {
    font-size: .7rem;
    color: var(--teal);
}

.mega-subcat-item:hover {
    background: var(--teal-wash);
    border-color: var(--teal);
    color: var(--teal);
}

/* â”€â”€ Ã–ne Ã§Ä±kan turlar â”€â”€ */
.mega-tours-grid {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.mega-tour-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 4px !important;
    overflow: hidden;
    transition: all .25s;
}

.mega-tour-card:hover {
    border-color: var(--teal);
    box-shadow: 0 2px 12px rgba(13, 148, 136, .1);
}

.mega-tour-img {
    position: relative;
    width: 120px;
    min-height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #e8ecf0, #d1d5db);
}

.mega-tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.mega-tour-card:hover .mega-tour-img img {
    transform: scale(1.06);
}

.mega-tour-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-4);
    font-size: 1.2rem;
}

.mega-tour-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: var(--teal);
    color: #fff;
    font-size: .58rem;
    font-weight: 700;
    padding: .2rem .4rem;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: .2rem;
    letter-spacing: .03em;
}

.mega-tour-badge i {
    font-size: .48rem;
    color: #fff;
}

.mega-tour-info {
    padding: .6rem .75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    gap: .25rem;
}

.mega-tour-title {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mega-tour-route {
    display: block;
    font-size: .68rem;
    color: var(--text-3);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mega-tour-route i {
    font-size: .55rem;
    margin-right: .2rem;
    color: var(--teal);
}

.mega-tour-dates {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: .68rem;
    font-weight: 500;
    color: var(--text-2);
}

.mega-tour-dates i {
    font-size: .6rem;
    color: var(--teal);
}

.mega-tour-next-date {
    color: var(--text-3);
    font-weight: 400;
}

.mega-tour-price-row {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-top: .1rem;
}

.mega-tour-old-price {
    font-size: .72rem;
    font-weight: 500;
    color: var(--text-4);
    text-decoration: line-through;
}

.mega-tour-price {
    font-size: .82rem;
    font-weight: 700;
    color: var(--teal);
}

/* Panel footer */
.mega-panel-footer {
    margin-top: auto;
    padding-top: .75rem;
    border-top: 1px solid var(--surface-3);
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    padding-bottom: 1rem;
    background: var(--white);
}

.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--teal);
    transition: gap .3s;
}

.mega-view-all:hover {
    gap: .75rem;
}

.mega-view-all i {
    font-size: .7rem;
    transition: transform .3s;
}

.mega-view-all:hover i {
    transform: translateX(3px);
}

/* ── Panel CTA (kategorinin tüm turları) ── */
.mega-panel-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-top: 1.25rem;
    padding: .85rem 1.15rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(13, 148, 136, .08), rgba(13, 148, 136, .02));
    border: 1px solid rgba(13, 148, 136, .18);
    color: var(--teal);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .2px;
    transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.mega-panel-cta:hover {
    background: linear-gradient(135deg, rgba(13, 148, 136, .16), rgba(13, 148, 136, .06));
    border-color: rgba(13, 148, 136, .35);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(13, 148, 136, .12);
}

.mega-panel-cta i {
    font-size: .8rem;
    transition: transform .3s ease;
}

.mega-panel-cta:hover i {
    transform: translateX(4px);
}

/* â”€â”€ Empty panel state â€” destination showcase â”€â”€ */
.mega-empty-panel {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 100%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.mega-empty-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    border-radius: 0;
    margin: 0;
}

.mega-empty-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 31, 46, .75) 0%, rgba(26, 31, 46, .4) 100%);
    z-index: 1;
}

.mega-empty-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
    gap: .5rem;
    width: 100%;
}

.mega-empty-icon {
    font-size: 1.3rem;
    color: var(--teal-glow);
    opacity: .9;
    background: rgba(255, 255, 255, .12);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.mega-empty-info p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
    margin: 0;
    line-height: 1.4;
}

.mega-empty-info .mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-top: .65rem;
    padding: .65rem 1.1rem;
    background: rgba(13, 148, 136, .9);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .22);
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease, gap .25s ease;
}

.mega-empty-info .mega-view-all:hover {
    background: var(--teal);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(13, 148, 136, .38);
    gap: .8rem;
}

.mega-empty-info .mega-view-all i {
    font-size: .75rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PAGE DROPDOWN â€” Sayfa alt menÃ¼sÃ¼
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-dropdown-menu {
    width: auto !important;
    min-width: 220px;
    max-width: 320px;
    border-radius: 12px !important;
    padding: .5rem;
}

.page-dropdown-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.page-dropdown-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .6rem .85rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-2);
    border-radius: 8px;
    transition: all .2s;
    white-space: nowrap;
}

.page-dropdown-item i {
    font-size: .75rem;
    color: var(--text-4);
    transition: color .2s;
    width: 16px;
    text-align: center;
}

.page-dropdown-item:hover {
    background: var(--teal-wash);
    color: var(--teal);
}

.page-dropdown-item:hover i {
    color: var(--teal);
}

.page-dropdown-item::after {
    display: none !important;
}

/* Mobile category groups */
.mobile-cat-group {
    display: flex;
    flex-direction: column;
}

.mobile-cat-main {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .75rem 0;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--surface-3);
}

.mobile-cat-main i {
    color: var(--teal);
    font-size: .85rem;
    width: 20px;
    text-align: center;
}

.mobile-cat-child {
    padding: .55rem 0 .55rem 2rem;
    font-size: .85rem;
    color: var(--text-3);
    position: relative;
}

.mobile-cat-child::before {
    content: '';
    position: absolute;
    left: 1.15rem;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
    transform: translateY(-50%);
}

/* Footer blog placeholder */
.footer-blog-placeholder {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .3);
    font-size: 1.1rem;
}


/* Mobile nav */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    backdrop-filter: blur(6px);
    z-index: 200;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 201;
    padding: 0;
    transition: right .4s cubic-bezier(.22, 1, .36, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--surface-2);
    flex-shrink: 0;
}

.mobile-drawer-logo img { height: 36px; max-width: 160px; object-fit: contain; }
.mobile-drawer-logo strong { font-size: .9rem; letter-spacing: 1px; color: var(--text); }

.mobile-drawer-scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 1.25rem;
    scrollbar-width: thin;
}
.mobile-drawer-scroll::-webkit-scrollbar { width: 6px; }
.mobile-drawer-scroll::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 3px; }

.mobile-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--surface-2);
    flex-shrink: 0;
}

.mobile-drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1rem;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    transition: all .2s;
    min-height: 44px;
    text-decoration: none;
}

.mobile-drawer-btn-outline {
    border: 1px solid var(--surface-3);
    color: var(--text);
}

.mobile-drawer-btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-wash);
}

.mobile-drawer-btn-primary {
    background: var(--teal);
    color: #fff;
}

.mobile-drawer-btn-primary:hover {
    background: var(--teal-vivid);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer .close-btn {
    background: none;
    border: none;
    color: var(--text-3);
    padding: .5rem;
    margin: -.5rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.mobile-drawer .close-btn:hover { color: var(--text); }

.mobile-drawer .close-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-drawer-scroll a:not(.mobile-drawer-btn) {
    display: block;
    padding: .85rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-2);
    border-bottom: 1px solid var(--surface-2);
    transition: color .3s;
}

.mobile-drawer-scroll a:not(.mobile-drawer-btn):hover {
    color: var(--teal);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO â€” Kept dark for cinematic contrast
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 70px 0 80px;
    overflow: hidden;
    background: linear-gradient(170deg, var(--dark-hero) 0%, #162032 40%, #1a3040 100%);
    color: var(--white);
    width: 90%;
    margin: 20px auto 40px;
    border-radius: 100px;
}

/* Ambient orbs */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(20, 184, 166, .15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, .08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 15s ease-in-out infinite reverse;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(.95);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 80vw;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1rem .4rem .5rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    font-size: .75rem;
    color: var(--teal-soft);
    width: fit-content;
    backdrop-filter: blur(12px);
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    background: var(--teal-glow);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--teal-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px var(--teal-glow);
    }

    50% {
        opacity: .5;
        box-shadow: 0 0 16px var(--teal-glow);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--white);
}

.hero-title .line-accent {
    background: linear-gradient(135deg, var(--teal-glow) 0%, var(--teal-vivid) 40%, var(--gold-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .65);
    max-width: 480px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 2rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-vivid));
    color: var(--white);
    font-weight: 700;
    font-size: .9rem;
    border-radius: var(--radius-md);
    border: none;
    letter-spacing: .3px;
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
    box-shadow: 0 4px 24px rgba(13, 148, 136, .3), inset 0 1px 0 rgba(255, 255, 255, .15);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, .2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .6s;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(13, 148, 136, .4), inset 0 1px 0 rgba(255, 255, 255, .15);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 2rem;
    background: transparent;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
    font-size: .9rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, .15);
    transition: all .3s;
}

.btn-ghost:hover {
    border-color: var(--teal-glow);
    color: var(--teal-glow);
    background: rgba(255, 255, 255, .05);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: .5rem;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-item .val {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat-item .lbl {
    font-size: .7rem;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .4);
}

.hero-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(12, 18, 34, .6) 100%);
}

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    color: var(--white);
}

.hero-float-card.card-1 {
    bottom: 40px;
    left: -40px;
    animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card.card-2 {
    top: 60px;
    right: -30px;
    animation: floatCard 8s ease-in-out infinite reverse;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-card-label {
    font-size: .65rem;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .35rem;
}

.float-card-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal-glow);
}

.float-card-sub {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
}

.float-card-row {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.float-card-row .stars {
    color: var(--gold-soft);
    font-size: .85rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SEARCH BAR â€” Light glass
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.search-float {
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.search-bar {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-xl);
    padding: .5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08), 0 1px 3px rgba(0, 0, 0, .04);
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: .75rem 1.25rem;
}

.search-field label {
    font-size: .65rem;
    font-weight: 600;
    color: var(--text-4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.search-field .field-inner {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.search-field .field-inner svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex-shrink: 0;
}

.search-field .field-inner input {
    border: none;
    outline: none;
    background: transparent;
    color: var(--text);
    font-size: .9rem;
    font-family: var(--font-body);
    width: 100%;
}

.search-field .field-inner input::placeholder {
    color: var(--text-4);
}

.search-divider {
    width: 1px;
    background: var(--surface-3);
    margin: .75rem 0;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 0 2rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-vivid));
    color: var(--white);
    font-size: .85rem;
    font-weight: 700;
    border: none;
    border-radius: calc(var(--radius-xl) - 4px);
    white-space: nowrap;
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
    box-shadow: 0 4px 16px rgba(13, 148, 136, .2);
    letter-spacing: .3px;
}

.search-btn:hover {
    box-shadow: 0 6px 28px rgba(13, 148, 136, .3);
    transform: scale(1.02);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION PRIMITIVES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), transparent);
    border-radius: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: .75rem;
    color: var(--text);
}

.section-title .accent {
    background: linear-gradient(135deg, var(--teal), var(--teal-vivid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--text-3);
    font-size: .95rem;
    max-width: 540px;
    line-height: 1.8;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOUR CATEGORIES â€” Premium Grid
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.categories-section {
    /* üstte hero+search zaten boşluk bırakıyor, top padding'i daha kompakt tutalım */
    padding: clamp(20px, 3vw, 55px) 0 var(--section-py);
    background: var(--bg);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 6px;
}

.cat-tile {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    display: block;
}

.cat-tile-tall {
    grid-row: span 2;
}

.cat-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s cubic-bezier(.25, .46, .45, .94);
}

.cat-tile:hover img {
    transform: scale(1.15);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .7) 0%,
            rgba(0, 0, 0, .15) 50%,
            rgba(0, 0, 0, .05) 100%);
    transition: background .5s;
    z-index: 1;
}

.cat-tile:hover .cat-overlay {
    background: linear-gradient(to top,
            rgba(13, 148, 136, .8) 0%,
            rgba(13, 148, 136, .2) 45%,
            rgba(0, 0, 0, .05) 100%);
}

.cat-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: var(--white);
    transition: transform .4s;
}

.cat-tile:hover .cat-content {
    transform: translateY(-4px);
}

.cat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    margin-bottom: .6rem;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: all .4s;
}

.cat-tile:hover .cat-icon {
    background: rgba(13, 148, 136, .6);
    border-color: rgba(255, 255, 255, .4);
    box-shadow: 0 0 20px rgba(13, 148, 136, .4);
    transform: scale(1.1);
}

.cat-content h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
    margin-bottom: .3rem;
}

.cat-count {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .7;
    transition: opacity .3s;
}

.cat-tile:hover .cat-count {
    opacity: 1;
}

/* Staggered reveal */
.cat-tile:nth-child(1) {
    transition-delay: 0s;
}

.cat-tile:nth-child(2) {
    transition-delay: .05s;
}

.cat-tile:nth-child(3) {
    transition-delay: .10s;
}

.cat-tile:nth-child(4) {
    transition-delay: .15s;
}

.cat-tile:nth-child(5) {
    transition-delay: .20s;
}

.cat-tile:nth-child(6) {
    transition-delay: .25s;
}

.cat-tile:nth-child(7) {
    transition-delay: .30s;
}

.cat-tile:nth-child(8) {
    transition-delay: .35s;
}

.cat-tile:nth-child(9) {
    transition-delay: .40s;
}

/* Bottom teal accent */
.cat-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-vivid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
    z-index: 3;
}

.cat-tile:hover::after {
    transform: scaleX(1);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOUR CARDS â€” Light
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tours-section {
    padding: var(--section-py) 0;
    background: var(--bg);
    position: relative;
}

.tours-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.tour-filters {
    display: flex;
    gap: .35rem;
    flex-wrap: wrap;
}

.tour-filters button {
    padding: .5rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--surface-3);
    background: var(--white);
    color: var(--text-3);
    font-size: .78rem;
    font-weight: 500;
    transition: all .3s;
}

.tour-filters button.active,
.tour-filters button:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    box-shadow: 0 4px 12px rgba(13, 148, 136, .2);
}

.tour-nav {
    display: flex;
    gap: .5rem;
}

.tour-nav button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--surface-3);
    background: var(--white);
    color: var(--text-3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.tour-nav button:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-wash);
}

.tour-nav button svg {
    width: 20px;
    height: 20px;
}

/* Card */
.tour-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all .5s cubic-bezier(.22, 1, .36, 1);
    position: relative;
    color: var(--text);
}

.tour-card:hover {
    transform: translateY(-8px);
    border-color: var(--teal-soft);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .08), 0 0 0 1px rgba(13, 148, 136, .08);
}

.tour-card .card-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card .card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.tour-card:hover .card-visual img {
    transform: scale(1.08);
}

.tour-card .card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .15) 0%, transparent 40%);
}

.tour-card .card-visual .tour-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}

.tour-card .card-visual .tag {
    padding: .25rem .6rem;
    background: var(--tag-bg, var(--teal));
    color: var(--tag-fg, var(--white));
    font-size: .62rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: .4px;
    text-transform: uppercase;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
    backdrop-filter: blur(2px);
}

/* Rozet + yanına yapışık kısa not (özelliğin açıklaması varsa) */
.tour-card .card-visual .tag-group {
    display: inline-flex;
    align-items: stretch;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
    backdrop-filter: blur(2px);
}

.tour-card .card-visual .tag-group .tag {
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.tour-card .card-visual .tag-note {
    display: inline-flex;
    align-items: center;
    padding: .25rem .55rem;
    background: rgba(255, 255, 255, .92);
    color: var(--tag-fg, var(--text));
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .2px;
    text-transform: none;
    white-space: nowrap;
}

.tour-card .card-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.tour-card .card-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .3rem;
    color: var(--text);
}

.tour-card .route {
    font-size: .78rem;
    color: var(--text-4);
    margin-bottom: .75rem;
}

/* Tour details strip */
.tour-details {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .75rem;
    padding: .6rem .75rem;
    background: var(--surface-1);
    border-radius: var(--radius-md);
    border: 1px solid var(--surface-2);
}

.tour-details span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    font-weight: 500;
    color: var(--text-3);
}

.tour-details i {
    color: var(--teal);
    font-size: .7rem;
}

.tour-card .badges {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .7rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 600;
}

.badge.occ {
    background: #fef2f2;
    color: #dc2626;
}

.badge.occ .dot-occ {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #dc2626;
}

.badge.date {
    background: var(--teal-wash);
    color: var(--teal);
}

.badge.date i {
    font-size: .7rem;
}

/* Price area */
.tour-card .price-row {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding-top: .75rem;
    border-top: 1px solid var(--surface-2);
}

.price-left {
    display: flex;
    align-items: baseline;
    gap: .5rem;
}

.price-tag {
    display: inline-block;
    padding: .15rem .5rem;
    background: var(--teal-wash);
    color: var(--teal);
    font-size: .6rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    position: relative;
    top: -1px;
}

.tour-card .price-row .price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--teal);
}

.tour-card .price-row .old-price {
    font-size: .85rem;
    color: var(--text-4);
    text-decoration: line-through;
}

.tour-card .price-row .currency {
    font-size: .8rem;
    color: var(--text-4);
}

.price-sub {
    font-size: .65rem;
    color: var(--text-4);
    font-style: italic;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SON Ã‡AÄRI â€” Airport departure board
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.soncagri-section {
    padding: 4rem 0;
    background: var(--bg);
}

.soncagri-board {
    background: #1a1225;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    position: relative;
}

/* Scanline texture */
.soncagri-board::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, .02) 3px,
            rgba(255, 255, 255, .02) 4px);
    pointer-events: none;
    z-index: 2;
}

/* Purple glow border */
.soncagri-board::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(168, 85, 247, .3);
    pointer-events: none;
    z-index: 3;
}

.board-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem 1rem;
    position: relative;
    z-index: 4;
}

.board-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.board-brand {
    font-family: 'Courier New', Courier, monospace;
    font-size: .85rem;
    color: rgba(168, 85, 247, .6);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Table head */
.board-table-head {
    display: grid;
    grid-template-columns: 150px 1fr 200px 100px;
    gap: 1rem;
    padding: .75rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    z-index: 4;
}

.board-table-head span {
    font-family: 'Courier New', Courier, monospace;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Viewport & scrolling */
.board-viewport {
    height: 240px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Fade masks */
.board-viewport::before,
.board-viewport::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 5;
    pointer-events: none;
}

.board-viewport::before {
    top: 0;
    background: linear-gradient(180deg, #1a1225 0%, transparent 100%);
}

.board-viewport::after {
    bottom: 0;
    background: linear-gradient(0deg, #1a1225 0%, transparent 100%);
}

.board-scroll-track {
    animation: boardScroll 20s linear infinite;
}

.board-viewport:hover .board-scroll-track {
    animation-play-state: paused;
}

@keyframes boardScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Rows */
.board-row {
    display: grid;
    grid-template-columns: 150px 1fr 200px 100px;
    gap: 1rem;
    padding: .85rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: background .3s;
    text-decoration: none;
}

.board-row:hover {
    background: rgba(255, 255, 255, .04);
}

.board-row .col-date {
    font-family: 'Courier New', Courier, monospace;
    font-size: .85rem;
    font-weight: 700;
    color: #22d3ee;
    letter-spacing: 1px;
}

.board-row .col-tour {
    font-family: 'Courier New', Courier, monospace;
    font-size: .85rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.board-row .col-status {
    font-family: 'Courier New', Courier, monospace;
    font-size: .82rem;
    font-weight: 700;
    color: #f97316;
    letter-spacing: 1px;
}

.board-row .col-action {
    font-family: 'Courier New', Courier, monospace;
    font-size: .82rem;
    font-weight: 600;
    color: #a855f7;
    letter-spacing: 1px;
    transition: color .3s;
}

.board-row:hover .col-action {
    color: #c084fc;
}

/* Board CTA */
.board-cta {
    display: flex;
    justify-content: center;
    padding: 1.25rem 2rem;
    position: relative;
    z-index: 4;
}

.board-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.5rem;
    background: var(--white);
    color: var(--text);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    transition: all .3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.board-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.board-cta-btn svg {
    transition: transform .3s;
}

.board-cta-btn:hover svg {
    transform: translateX(3px);
}

/* Son Ã‡aÄŸrÄ± responsive */
@media (max-width: 768px) {

    .board-table-head,
    .board-row {
        grid-template-columns: 100px 1fr 140px;
    }

    .board-table-head .col-action,
    .board-row .col-action {
        display: none;
    }

    .board-header {
        padding: 1.25rem 1.25rem .75rem;
    }

    .board-table-head,
    .board-row {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .board-title {
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {

    .board-table-head,
    .board-row {
        grid-template-columns: 90px 1fr;
    }

    .board-table-head .col-status,
    .board-row .col-status {
        display: none;
    }

    .board-row .col-tour,
    .board-row .col-date {
        font-size: .75rem;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY US
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-section {
    padding: var(--section-py) 0;
    background: var(--teal-wash);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 148, 136, .06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.why-card {
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(13, 148, 136, .08);
    border-radius: var(--radius-xl);
    transition: all .5s cubic-bezier(.22, 1, .36, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-vivid));
    opacity: 0;
    transition: opacity .4s;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(13, 148, 136, .1);
}

.why-card .icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--teal-wash);
    border: 1px solid rgba(13, 148, 136, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.why-card .icon-box svg {
    width: 24px;
    height: 24px;
    color: var(--teal);
}

.why-card h3 {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--text);
}

.why-card p {
    font-size: .82rem;
    color: var(--text-3);
    line-height: 1.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DESTINATIONS 
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.dest-section {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.dest-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

.dest-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.dest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.dest-item:hover img {
    transform: scale(1.1);
}

.dest-item .dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .05) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background .4s;
}

.dest-item:hover .dest-overlay {
    background: linear-gradient(0deg, rgba(13, 148, 136, .7) 0%, rgba(13, 148, 136, .05) 50%, transparent 100%);
}

.dest-item .dest-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: .2rem;
    color: var(--white);
}

.dest-item .dest-overlay span {
    font-size: .75rem;
    color: rgba(255, 255, 255, .85);
}

.dest-item.span-6 {
    grid-column: span 6;
    grid-row: span 2;
}

.dest-item.span-3 {
    grid-column: span 3;
}

.dest-item.span-4 {
    grid-column: span 4;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ADVANTAGES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.adv-section {
    padding: var(--section-py) 0;
    background: var(--white);
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.adv-card {
    padding: 2rem;
    background: var(--bg);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all .5s cubic-bezier(.22, 1, .36, 1);
}

.adv-card:hover {
    transform: translateY(-6px);
    border-color: var(--teal-soft);
    box-shadow: 0 16px 48px rgba(13, 148, 136, .08);
}

.adv-card .adv-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal-wash);
    border: 1px solid rgba(13, 148, 136, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.adv-card .adv-icon svg {
    width: 22px;
    height: 22px;
    color: var(--teal);
}

.adv-card h3 {
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--text);
}

.adv-card p {
    font-size: .8rem;
    color: var(--text-3);
    line-height: 1.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS â€” Masonry Grid
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testi-section {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.testi-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.testi-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.2rem;
    border: 1px solid var(--surface-3);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    transition: all .3s;
    white-space: nowrap;
}

.testi-link:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-wash);
}

.testi-link i {
    font-size: .65rem;
}

/* Masonry Layout */
.testi-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: start;
}

.testi-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Base Card */
.testi-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
}

.testi-card:hover {
    transform: translateY(-4px);
}

/* Text-only Quote Card */
.testi-text-card {
    background: var(--white);
    border: 1px solid var(--surface-3);
    padding: 1.5rem;
}

.testi-text-card:hover {
    border-color: var(--teal-soft);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .06);
}

.testi-quote-mark {
    font-family: Georgia, serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--teal);
    opacity: .3;
    margin-bottom: .25rem;
}

.testi-body {
    font-size: .82rem;
    line-height: 1.75;
    color: var(--text-3);
    margin-bottom: 1.25rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.testi-author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--surface-2);
}

.testi-name {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
}

.testi-stars {
    font-size: .75rem;
    color: #f59e0b;
    letter-spacing: 1px;
    margin-left: auto;
}

/* Media Card (Photo/Video) */
.testi-media-card {
    position: relative;
    cursor: pointer;
}

.testi-media-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.testi-media-card:hover>img {
    transform: scale(1.05);
}

.testi-media-tall {
    height: 420px;
}

.testi-media-hero {
    height: 480px;
}

/* Play button */
.testi-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(13, 148, 136, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .9rem;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(13, 148, 136, .3);
    z-index: 2;
}

.testi-play i {
    margin-left: 2px;
}

.testi-media-card:hover .testi-play {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 6px 30px rgba(13, 148, 136, .5);
}

/* Media card bottom footer */
.testi-media-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    z-index: 2;
}

.testi-media-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6) 0%, transparent 100%);
    z-index: -1;
    border-radius: 0 0 12px 12px;
}

.testi-media-footer img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .5);
}

.testi-media-footer .testi-name {
    color: var(--white);
    font-size: .75rem;
}

.testi-media-footer .testi-stars {
    font-size: .7rem;
    margin-left: auto;
}

/* ══ Media kart hover metin overlay ══ */
.testi-media-card {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.testi-text-overlay {
    position: absolute;
    inset: 0;
    padding: 1.25rem 1.25rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    color: #fff;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, .15) 0%,
        rgba(0, 0, 0, .55) 55%,
        rgba(0, 0, 0, .88) 100%);
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 2;
    pointer-events: none;
}

.testi-media-card.has-overlay::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .35) 100%);
    z-index: 1;
    transition: opacity .4s ease;
    pointer-events: none;
}

.testi-media-card.has-overlay:hover::after { opacity: 0; }
.testi-media-card.has-overlay:hover .testi-text-overlay { opacity: 1; }

.testi-text-overlay .testi-quote-mark {
    font-family: Georgia, serif;
    font-size: 2.4rem;
    line-height: 1;
    color: #fff;
    opacity: .5;
    margin-bottom: .25rem;
}

.testi-text-overlay .testi-body {
    color: #fff;
    font-size: .85rem;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testi-media-card .testi-media-footer { z-index: 3; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG â€” Bento masonry grid
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-section {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.blog-main-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text);
}

.blog-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.5rem;
    border: 1px solid var(--surface-3);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-2);
    background: var(--white);
    transition: all .3s;
    white-space: nowrap;
}

.blog-cta-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
    box-shadow: 0 4px 12px rgba(13, 148, 136, .1);
}

.blog-cta-btn svg {
    transition: transform .3s;
}

.blog-cta-btn:hover svg {
    transform: translateX(3px);
}

/* 3-column bento: left(2 small) | center(1 tall) | right(2 small) */
.blog-bento {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.blog-bento-item {
    display: block;
    color: var(--text);
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
}

.blog-bento-item:hover {
    transform: translateY(-4px);
}

/* Image wrapper */
.blog-bento-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.blog-bento-item:hover .blog-bento-img img {
    transform: scale(1.05);
}

/* Small cards â€” title below */
.blog-small .blog-bento-img {
    height: 180px;
}

.blog-bento-title {
    font-family: var(--font-display);
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: .75rem;
    color: var(--text);
}

/* Grid positions */
.blog-pos-1 {
    grid-column: 1;
    grid-row: 1;
}

.blog-pos-3 {
    grid-column: 1;
    grid-row: 2;
}

.blog-pos-center {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.blog-pos-2 {
    grid-column: 3;
    grid-row: 1;
}

.blog-pos-4 {
    grid-column: 3;
    grid-row: 2;
}

/* Tall center card â€” overlay title */
.blog-tall {
    position: relative;
}

.blog-tall .blog-bento-img {
    height: 100%;
    min-height: 440px;
    border-radius: var(--radius-xl);
}

.blog-bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0%, transparent 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.blog-bento-overlay h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .blog-pos-center {
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    .blog-pos-1 {
        grid-column: 1;
        grid-row: 2;
    }

    .blog-pos-2 {
        grid-column: 2;
        grid-row: 2;
    }

    .blog-pos-3 {
        grid-column: 1;
        grid-row: 3;
    }

    .blog-pos-4 {
        grid-column: 2;
        grid-row: 3;
    }

    .blog-tall .blog-bento-img {
        min-height: 280px;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-bento {
        grid-template-columns: 1fr;
    }

    .blog-pos-center {
        grid-column: 1;
        grid-row: 1;
    }

    .blog-pos-1 {
        grid-column: 1;
        grid-row: 2;
    }

    .blog-pos-2 {
        grid-column: 1;
        grid-row: 3;
    }

    .blog-pos-3 {
        grid-column: 1;
        grid-row: 4;
    }

    .blog-pos-4 {
        grid-column: 1;
        grid-row: 5;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stats-section {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-vivid) 50%, #0f766e 100%);
    color: var(--white);
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .03;
}

.stats-section .section-label {
    color: rgba(255, 255, 255, .7);
}

.stats-section .section-label::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, .5), transparent);
}

.stats-section .section-title {
    color: var(--white);
}

.stats-section .section-title .accent {
    background: none;
    -webkit-text-fill-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
}

.stat-box .stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
}

.stat-box .stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: .35rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-section {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-lg);
    margin-bottom: .75rem;
    overflow: hidden;
    background: var(--white);
    transition: all .4s;
}

.faq-item.active {
    border-color: var(--teal-soft);
    box-shadow: 0 4px 16px rgba(13, 148, 136, .06);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    font-size: .92rem;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--text);
    transition: color .3s;
}

.faq-item.active .faq-q {
    color: var(--teal);
}

.faq-q svg {
    width: 18px;
    height: 18px;
    color: var(--text-4);
    transition: all .4s;
    flex-shrink: 0;
}

.faq-item.active .faq-q svg {
    transform: rotate(180deg);
    color: var(--teal);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.22, 1, .36, 1), padding .4s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-a {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-a p {
    font-size: .87rem;
    color: var(--text-3);
    line-height: 1.8;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER â€” Light, structured layout
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer {
    border-top: 1px solid var(--surface-3);
    padding: 3.5rem 0 0;
    background: var(--white);
    color: var(--text);
}

/* Row 1: 5-column links */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr 1.5fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--surface-3);
}

.footer-col h4 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: .78rem;
    color: var(--text-3);
    padding: .25rem 0;
    transition: all .3s;
}

.footer-col a:hover {
    color: var(--teal);
    transform: translateX(3px);
}

/* Blog col with thumbnails */
.footer-blog-item {
    display: flex !important;
    align-items: flex-start;
    gap: .75rem;
    padding: .5rem 0 !important;
}

.footer-blog-item img {
    width: 60px;
    height: 45px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-blog-item span {
    font-size: .72rem;
    line-height: 1.4;
    color: var(--text-2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-blog-item:hover span {
    color: var(--teal);
}

/* Row 2: Newsletter */
.footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--surface-3);
}

.nl-info h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .4rem;
}

.nl-info p {
    font-size: .78rem;
    color: var(--text-3);
    line-height: 1.6;
    max-width: 420px;
}

.nl-form {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.nl-input-wrap {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-md);
    background: var(--surface-1);
    min-width: 260px;
}

.nl-input-wrap svg {
    color: var(--text-4);
    flex-shrink: 0;
}

.nl-input-wrap input {
    border: none;
    outline: none;
    background: transparent;
    color: var(--text);
    font-size: .82rem;
    font-family: var(--font-body);
    width: 100%;
}

.nl-input-wrap input::placeholder {
    color: var(--text-4);
}

.nl-btn {
    padding: .65rem 1.5rem;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: .82rem;
    font-weight: 700;
    transition: all .3s;
    white-space: nowrap;
    cursor: pointer;
}

.nl-btn:hover {
    background: var(--teal-vivid);
    box-shadow: 0 4px 16px rgba(13, 148, 136, .25);
}

/* Row 3: Apps + Social + Currency */
.footer-extras {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--surface-3);
}

.footer-extras h5 {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: .75rem;
}

/* Dinamik iletişim bloğu (footer) */
.footer-contact {
    flex: 1 1 320px;
    min-width: 0;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    color: var(--text-3);
}

.footer-contact-list li i {
    width: 18px;
    flex-shrink: 0;
    color: var(--teal);
    font-size: .85rem;
}

.footer-contact-list a {
    color: var(--text-3);
    transition: color .2s;
}

.footer-contact-list a:hover {
    color: var(--teal);
}

.app-badges {
    display: flex;
    gap: .75rem;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .85rem;
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-md);
    transition: all .3s;
}

.app-badge:hover {
    border-color: var(--teal);
    box-shadow: 0 2px 8px rgba(13, 148, 136, .1);
}

.app-badge svg {
    color: var(--text-2);
}

.app-badge-sub {
    font-size: .55rem;
    color: var(--text-4);
    display: block;
    line-height: 1;
}

.app-badge-name {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text);
    display: block;
    line-height: 1.2;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .75rem;
    font-size: .75rem;
    color: var(--text-3);
    border: 1px solid var(--surface-3);
    border-radius: 999px;
    transition: all .3s;
}

.social-link:hover {
    color: var(--teal);
    border-color: var(--teal);
    transform: none;
}

.social-link svg {
    flex-shrink: 0;
}

.currency-select {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .85rem;
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-md);
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-2);
    cursor: pointer;
    transition: all .3s;
}

.currency-select:hover {
    border-color: var(--teal);
}

.currency-flag {
    font-size: 1.1rem;
}

/* Row 4: Copyright */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: .72rem;
    color: var(--text-4);
}

.footer-bottom-left {
    display: flex;
    gap: .5rem;
}

.tursab-badge,
.iata-badge {
    display: inline-block;
    height: 70px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    padding: 4px;
}

.footer-bottom p {
    font-size: .72rem;
    color: var(--text-4);
    max-width: 500px;
    text-align: center;
    line-height: 1.5;
}

.footer-credit {
    font-size: .72rem;
    color: var(--text-4);
}

.footer-credit strong {
    color: var(--text-3);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-blog-col {
        grid-column: 1 / span 3;
    }

    .footer-blog-col .footer-blog-item {
        display: inline-flex !important;
        width: calc(50% - .5rem);
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-blog-col {
        grid-column: 1 / span 2;
    }

    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-extras {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: .75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-blog-col {
        grid-column: 1;
    }

    .nl-form {
        flex-direction: column;
        width: 100%;
    }

    .nl-input-wrap {
        min-width: 100%;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width:1024px) {
    :root {
        --header-h: 80px;
        --logo-h: 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-desc {
        margin: 0 auto;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-float-card {
        display: none;
    }

    .why-grid,
    .adv-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-bento {
        grid-template-columns: repeat(6, 1fr);
    }

    .dest-item.span-6 {
        grid-column: span 6;
        grid-row: span 1;
        height: 280px;
    }

    .dest-item.span-3 {
        grid-column: span 3;
    }

    .dest-item.span-4 {
        grid-column: span 3;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .testi-masonry {
        grid-template-columns: 1fr;
    }

    .testi-masonry .testi-col {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testi-masonry .testi-col>* {
        flex: 1;
        min-width: 280px;
    }

    .testi-media-tall,
    .testi-media-hero {
        height: 340px;
    }
}

@media (max-width:768px) {
    :root {
        --header-h: 70px;
        --logo-h: 48px;
    }

    .header-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .btn-outline-header,
    .header-currency,
    .btn-cta-header,
    .header-user {
        display: none !important;
    }

    .header-actions {
        gap: .35rem;
        margin-left: auto;
    }

    .hamburger {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: .5rem;
        padding: 0;
        background: transparent;
        color: var(--text);
        border: 1px solid rgba(0, 0, 0, .08);
        border-radius: 10px;
        cursor: pointer;
        font-size: 1.15rem;
        flex-shrink: 0;
    }

    .hamburger:hover,
    .hamburger:active {
        background: rgba(0, 0, 0, .04);
        border-color: rgba(0, 0, 0, .15);
    }

    .header-inner {
        gap: .5rem;
    }

    .header-logo {
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
    }

    .header-logo .logo-image {
        max-width: 160px;
    }

    .container {
        padding: 0 .9rem;
    }

    .hero-section {
        padding: 40px 0 40px;
        min-height: auto;
        width: 100%;
        border-radius: 24px;
        margin: 8px 0 20px;
    }

    .hero-img-wrap img {
        height: 280px;
    }

    .search-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: .75rem;
        gap: .5rem;
    }

    .search-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .dest-bento {
        grid-template-columns: 1fr;
    }

    .dest-item.span-6,
    .dest-item.span-3,
    .dest-item.span-4 {
        grid-column: span 1;
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: .5rem;
        text-align: center;
    }

    .tours-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    /* tours-header içindeki filtre+nav sarmalayıcı (inline-styled div) */
    .tours-header > div:nth-child(2) {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        gap: .6rem !important;
        flex-wrap: nowrap;
    }

    .tour-filters {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        flex: 1 1 0;
        min-width: 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding: .15rem 0 .2rem;
        gap: .4rem;
    }

    .tour-filters::-webkit-scrollbar {
        display: none;
    }

    .tour-filters button {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: .76rem;
        padding: .5rem .95rem;
    }

    /* Mobilde tour-nav gereksiz — swipe ile kaydırılıyor */
    .tour-nav {
        display: none;
    }

    .cat-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .cat-tile-tall {
        grid-row: span 1;
    }

    .testi-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .testi-masonry .testi-col>* {
        min-width: 100%;
    }

    .testi-media-tall,
    .testi-media-hero {
        height: 300px;
    }
}

@media (max-width:480px) {

    .why-grid,
    .adv-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Hero stats mobilde YATAY kalsın, sadece font/gap kompaktla */
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        justify-content: space-around;
        width: 100%;
    }

    .hero-stat-item { align-items: center; text-align: center; flex: 1; }
    .hero-stat-item .val { font-size: 1.15rem; }
    .hero-stat-item .lbl { font-size: .6rem; letter-spacing: 1px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM PAGE DETAIL
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Hero Section â”€â”€ */
.page-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-color: var(--dark, #111);
    padding: 0;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .75) 100%);
    z-index: 1;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 100%;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    margin-bottom: 1rem;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: color .2s;
}

.page-breadcrumb a:hover {
    color: var(--teal);
}

.bc-sep {
    color: rgba(255, 255, 255, .35);
    font-size: .55rem;
}

.bc-current {
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
}

.page-hero-label {
    display: inline-block;
    padding: .3rem .9rem;
    background: var(--teal);
    color: #fff;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.page-hero-title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    max-width: 700px;
}

.page-hero-title .text-teal {
    color: var(--teal);
}

/* â”€â”€ Content Section â”€â”€ */
.page-content-section {
    padding: 3.5rem 0;
    background: var(--bg, #fff);
}

.page-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.page-content-grid.full-width {
    grid-template-columns: 1fr;
}

@media (max-width: 900px) {
    .page-content-grid {
        grid-template-columns: 1fr;
    }
}

/* Rich Text */
.page-rich-text {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--text, #333);
}

.page-rich-text h1,
.page-rich-text h2,
.page-rich-text h3 {
    margin: 1.5rem 0 .75rem;
    font-weight: 700;
    color: var(--text-strong, #111);
}

.page-rich-text h2 {
    font-size: 1.4rem;
}

.page-rich-text h3 {
    font-size: 1.15rem;
}

.page-rich-text img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1rem 0;
}

.page-rich-text ul,
.page-rich-text ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.page-rich-text blockquote {
    border-left: 4px solid var(--teal);
    padding: .75rem 1.25rem;
    margin: 1.5rem 0;
    background: rgba(13, 148, 136, .05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* Text + Image Layout */
.page-text-image.has-image::after {
    content: '';
    display: table;
    clear: both;
}

.page-content-image {
    float: right;
    width: 45%;
    margin: 0 0 1.5rem 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

.page-content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .page-content-image {
        float: none;
        width: 100%;
        margin: 0 0 1.5rem 0;
    }
}

/* Tags */
.page-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border, #eee);
}

.page-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .85rem;
    background: rgba(13, 148, 136, .08);
    color: var(--teal);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 500;
    transition: all .2s;
}

.page-tag:hover {
    background: var(--teal);
    color: #fff;
}

/* Sidebar Info Card */
.page-sidebar {
    position: sticky;
    top: 100px;
}

.page-info-card {
    background: var(--surface, #f8f8f8);
    border: 1px solid var(--border, #eee);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
}

.page-info-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-strong, #111);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.page-info-title i {
    color: var(--teal);
}

.page-info-item {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border, #eee);
}

.page-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.page-info-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, .1);
    color: var(--teal);
    border-radius: 10px;
    font-size: .85rem;
}

.page-info-item strong {
    font-size: .85rem;
    display: block;
    margin-bottom: .15rem;
}

.page-info-item p {
    font-size: .78rem;
    color: var(--text-dim, #888);
    margin: 0;
    line-height: 1.4;
}

/* â”€â”€ Features Section â”€â”€ */
.page-features-section {
    padding: 3.5rem 0;
    background: var(--surface, #f8f8f8);
}

.page-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.page-feature-card {
    background: var(--bg, #fff);
    border: 1px solid var(--border, #eee);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .3s;
}

.page-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    border-color: var(--teal);
}

.page-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--teal), #065f46);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}

.page-feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--text-strong, #111);
}

.page-feature-card p {
    font-size: .82rem;
    color: var(--text-dim, #888);
    line-height: 1.6;
    margin: 0;
}

/* â”€â”€ Section Heading â”€â”€ */
.section-heading {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-strong, #111);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.section-heading i {
    color: var(--teal);
    font-size: 1.1rem;
}

/* â”€â”€ Gallery Section â”€â”€ */
.page-gallery-section {
    padding: 3.5rem 0;
    background: var(--bg, #fff);
}

.page-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.page-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    display: block;
}

.page-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.page-gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    color: #fff;
    font-size: 1.5rem;
}

.page-gallery-item:hover .gallery-hover {
    opacity: 1;
}

/* â”€â”€ Video Section â”€â”€ */
.page-video-section {
    padding: 3.5rem 0;
    background: var(--surface, #f8f8f8);
}

.page-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
}

.page-video-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.page-video-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.page-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* â”€â”€ Children Section â”€â”€ */
.page-children-section {
    padding: 3.5rem 0;
    background: var(--bg, #fff);
}

.page-children-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.page-child-card {
    border: 1px solid var(--border, #eee);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all .3s;
    display: flex;
    flex-direction: column;
}

.page-child-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
    border-color: var(--teal);
}

.page-child-img {
    height: 180px;
    overflow: hidden;
    background: var(--surface, #f0f0f0);
}

.page-child-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.page-child-card:hover .page-child-img img {
    transform: scale(1.05);
}

.page-child-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim, #ccc);
    font-size: 2.5rem;
}

.page-child-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-child-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .35rem;
    color: var(--text-strong, #111);
}

.page-child-body p {
    font-size: .82rem;
    color: var(--text-dim, #888);
    line-height: 1.5;
    margin: 0 0 auto;
}

.page-child-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--teal);
    margin-top: .75rem;
    transition: gap .2s;
}

.page-child-card:hover .page-child-link {
    gap: .65rem;
}

/* â”€â”€ Lightbox â”€â”€ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, .2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
}

/* â”€â”€ Page Detail Responsive â”€â”€ */
@media (max-width: 768px) {
    .page-hero {
        min-height: 260px;
    }

    .page-hero-title {
        font-size: 1.4rem;
    }

    .page-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-video-grid {
        grid-template-columns: 1fr;
    }

    .page-children-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-features-grid {
        grid-template-columns: 1fr;
    }

    .page-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KATEGORÄ° DETAY SAYFASI â€” Premium
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Hero (kendi karanlÄ±k overlay'i var, beyaz metin) â”€â”€ */
.kat-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kat-hero-bg {
    position: absolute;
    inset: -20px;
    background: center/cover no-repeat;
    filter: blur(4px) brightness(.6);
    transform: scale(1.06);
    z-index: 0;
    transition: transform 8s ease;
}

.kat-hero:hover .kat-hero-bg {
    transform: scale(1.12);
}

.kat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 10, 25, .45) 0%, rgba(15, 10, 25, .92) 100%);
    z-index: 1;
}

.kat-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.kat-hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(20, 184, 166, .5);
    animation: kat-float 12s infinite ease-in-out;
}

.kat-hero-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.kat-hero-particles span:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 10s;
    width: 4px;
    height: 4px;
}

.kat-hero-particles span:nth-child(3) {
    left: 60%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.kat-hero-particles span:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 11s;
    width: 2px;
    height: 2px;
}

.kat-hero-particles span:nth-child(5) {
    left: 50%;
    top: 80%;
    animation-delay: 3s;
    animation-duration: 13s;
    width: 5px;
    height: 5px;
    background: rgba(20, 184, 166, .3);
}

@keyframes kat-float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateY(-80px) translateX(30px);
        opacity: .7;
    }

    90% {
        opacity: 0;
    }
}

.kat-hero-inner {
    position: relative;
    z-index: 3;
    padding: 3rem 0 4rem;
}

.kat-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 4;
}

.kat-hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Hero Breadcrumb - beyaz (overlay Ã¼zerinde) */
.kat-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .5);
}

.kat-breadcrumb a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .2s;
}

.kat-breadcrumb a:hover {
    color: #fff;
}

.kat-breadcrumb .fa-chevron-right {
    font-size: .55rem;
    opacity: .4;
}

.kat-breadcrumb .current {
    color: var(--teal, #14b8a6);
    font-weight: 600;
}

/* Hero Body - beyaz metin (overlay Ã¼zerinde) */
.kat-hero-body {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.kat-hero-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.kat-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(20, 184, 166, .15);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--teal, #14b8a6);
    border: 1px solid rgba(20, 184, 166, .25);
    position: relative;
    z-index: 2;
}

.kat-hero-icon-ring {
    position: absolute;
    inset: -10px;
    border-radius: 26px;
    border: 2px solid rgba(20, 184, 166, .15);
    animation: kat-ring-pulse 3s ease-in-out infinite;
}

@keyframes kat-ring-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.kat-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 .75rem;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.kat-hero-desc {
    font-size: .92rem;
    color: rgba(255, 255, 255, .65);
    margin: 0 auto 1.5rem;
    line-height: 1.65;
    max-width: 550px;
}

.kat-hero-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.kat-meta-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1.1rem;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .82rem;
    font-weight: 500;
}

.kat-meta-chip i {
    color: var(--teal, #14b8a6);
}

/* â”€â”€ Sub-category pills (aÃ§Ä±k arka plan Ã¼zerinde) â”€â”€ */
.kat-subcats {
    background: var(--bg, #fafbfc);
    border-bottom: 1px solid var(--surface-2, #e5e7eb);
    padding: .85rem 0;
    position: sticky;
    top: 70px;
    z-index: 50;
}

.kat-subcats-scroll {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.kat-subcats-scroll::-webkit-scrollbar {
    display: none;
}

.kat-pill {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    background: var(--surface-1, #f1f5f9);
    border: 1px solid var(--surface-2, #e5e7eb);
    border-radius: 100px;
    color: var(--text-3, #64748b);
    font-size: .8rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: all .25s;
}

.kat-pill:hover {
    background: var(--surface-2, #e5e7eb);
    color: var(--text, #1e293b);
    border-color: var(--surface-3, #cbd5e1);
}

.kat-pill.active {
    background: linear-gradient(135deg, var(--teal, #14b8a6), #0d9488);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(20, 184, 166, .25);
}

.kat-pill i {
    font-size: .8rem;
}

.kat-pill em {
    font-style: normal;
    background: rgba(0, 0, 0, .06);
    padding: 1px 7px;
    border-radius: 20px;
    font-size: .68rem;
    font-weight: 700;
}

.kat-pill.active em {
    background: rgba(0, 0, 0, .2);
    color: #fff;
}

/* â”€â”€ Content Section (aÃ§Ä±k arka plan) â”€â”€ */
.kat-content {
    padding: 2rem 0 5rem;
    background: var(--bg, #fafbfc);
    min-height: 400px;
}

/* Toolbar */
.kat-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--surface-2, #e5e7eb);
}

.kat-result-label {
    font-size: .85rem;
    color: var(--text-4, #94a3b8);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.kat-result-label i {
    color: var(--teal, #14b8a6);
}

.kat-result-label strong {
    color: var(--text, #1e293b);
    font-weight: 700;
}

.kat-view-switch {
    display: flex;
    gap: .3rem;
    background: var(--surface-1, #f1f5f9);
    padding: 3px;
    border-radius: 10px;
    border: 1px solid var(--surface-2, #e5e7eb);
}

.kat-vs-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: var(--text-4, #94a3b8);
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.kat-vs-btn:hover {
    color: var(--text, #1e293b);
}

.kat-vs-btn.active {
    background: var(--teal, #14b8a6);
    color: #fff;
    box-shadow: 0 2px 8px rgba(20, 184, 166, .3);
}

/* â”€â”€ Tour Grid â€” reuses .tour-card from homepage â”€â”€ */
.kat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.kat-grid .tour-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kat-grid .tour-card .card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kat-grid .tour-card .price-row {
    margin-top: auto;
}

/* No-photo placeholder */
.kt-card-nophoto {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(0, 0, 0, .06);
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    min-height: 220px;
}

/* â”€â”€ List View â”€â”€ */
.kat-grid.kat-list-view {
    grid-template-columns: 1fr;
}

.kat-grid.kat-list-view .tour-card {
    flex-direction: row;
}

.kat-grid.kat-list-view .tour-card .card-visual {
    width: 300px;
    min-width: 300px;
    height: auto;
}

.kat-grid.kat-list-view .tour-card .card-info {
    padding: 1.25rem 1.75rem;
}

/* â•â•â• EMPTY STATE (aÃ§Ä±k arka plan Ã¼zerinde koyu metin) â•â•â• */
.kat-empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.kat-empty-visual {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
}

.kat-empty-globe {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20, 184, 166, .08), rgba(20, 184, 166, .02));
    border: 2px solid rgba(20, 184, 166, .12);
    font-size: 3rem;
    color: rgba(20, 184, 166, .3);
    animation: kat-globe-breathe 4s ease-in-out infinite;
}

@keyframes kat-globe-breathe {

    0%,
    100% {
        transform: scale(1);
        border-color: rgba(20, 184, 166, .12);
    }

    50% {
        transform: scale(1.04);
        border-color: rgba(20, 184, 166, .25);
    }
}

.kat-empty-orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: kat-orbit 6s linear infinite;
}

.kat-empty-orbit i {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: var(--teal, #14b8a6);
    filter: drop-shadow(0 0 6px rgba(20, 184, 166, .4));
}

@keyframes kat-orbit {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.kat-empty-state h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1e293b);
    margin: 0 0 .75rem;
}

.kat-empty-state p {
    font-size: .9rem;
    color: var(--text-4, #94a3b8);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.kat-empty-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.kat-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.5rem;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
}

.kat-empty-btn.primary {
    background: linear-gradient(135deg, var(--teal, #14b8a6), #0d9488);
    color: #fff;
    box-shadow: 0 4px 16px rgba(20, 184, 166, .25);
}

.kat-empty-btn.primary:hover {
    box-shadow: 0 6px 24px rgba(20, 184, 166, .35);
    transform: translateY(-2px);
}

.kat-empty-btn.ghost {
    background: var(--surface-1, #f1f5f9);
    color: var(--text-3, #64748b);
    border: 1px solid var(--surface-2, #e5e7eb);
}

.kat-empty-btn.ghost:hover {
    background: var(--surface-2, #e5e7eb);
    color: var(--text, #1e293b);
}

/* â•â•â• Responsive â•â•â• */
@media (max-width: 1024px) {
    .kat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .kat-hero {
        min-height: 340px;
    }

    .kat-hero-title {
        font-size: 1.9rem;
    }

    .kat-hero-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .kat-hero-meta {
        flex-wrap: wrap;
        gap: .6rem;
    }

    .kat-grid {
        grid-template-columns: 1fr;
    }

    .kat-grid.kat-list-view .tour-card {
        flex-direction: column;
    }

    .kat-grid.kat-list-view .tour-card .card-visual {
        width: 100%;
        min-width: auto;
    }

    .kat-toolbar {
        flex-wrap: wrap;
        gap: .75rem;
    }

    .kat-empty-visual {
        width: 120px;
        height: 120px;
    }

    .kat-empty-globe {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .kat-hero {
        min-height: 280px;
    }

    .kat-hero-title {
        font-size: 1.55rem;
    }

    .kat-hero-inner {
        padding: 2rem 0 3rem;
    }

    .kat-hero-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        border-radius: 14px;
    }

    .kat-hero-icon-ring {
        inset: -8px;
        border-radius: 20px;
    }

    .kat-empty-state {
        padding: 3rem 1rem;
    }

    .kat-empty-state h2 {
        font-size: 1.25rem;
    }
}
/* ═══════════════════════════════════════════════════════
   KATEGORİ DETAY SAYFASI — Premium
   ═══════════════════════════════════════════════════════ */

/* ── Hero (kendi karanlık overlay'i var, beyaz metin) ── */
.kat-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kat-hero-bg {
    position: absolute;
    inset: -20px;
    background: center/cover no-repeat;
    filter: blur(4px) brightness(.6);
    transform: scale(1.06);
    z-index: 0;
    transition: transform 8s ease;
}

.kat-hero:hover .kat-hero-bg {
    transform: scale(1.12);
}

.kat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 10, 25, .45) 0%, rgba(15, 10, 25, .92) 100%);
    z-index: 1;
}

.kat-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.kat-hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(20, 184, 166, .5);
    animation: kat-float 12s infinite ease-in-out;
}

.kat-hero-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.kat-hero-particles span:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 10s;
    width: 4px;
    height: 4px;
}

.kat-hero-particles span:nth-child(3) {
    left: 60%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.kat-hero-particles span:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 11s;
    width: 2px;
    height: 2px;
}

.kat-hero-particles span:nth-child(5) {
    left: 50%;
    top: 80%;
    animation-delay: 3s;
    animation-duration: 13s;
    width: 5px;
    height: 5px;
    background: rgba(20, 184, 166, .3);
}

@keyframes kat-float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateY(-80px) translateX(30px);
        opacity: .7;
    }

    90% {
        opacity: 0;
    }
}

.kat-hero-inner {
    position: relative;
    z-index: 3;
    padding: 3rem 0 4rem;
}

.kat-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 4;
}

.kat-hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.kat-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .5);
}

.kat-breadcrumb a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .2s;
}

.kat-breadcrumb a:hover {
    color: #fff;
}

.kat-breadcrumb .fa-chevron-right {
    font-size: .55rem;
    opacity: .4;
}

.kat-breadcrumb .current {
    color: var(--teal, #14b8a6);
    font-weight: 600;
}

.kat-hero-body {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.kat-hero-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.kat-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(20, 184, 166, .15);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--teal, #14b8a6);
    border: 1px solid rgba(20, 184, 166, .25);
    position: relative;
    z-index: 2;
}

.kat-hero-icon-ring {
    position: absolute;
    inset: -10px;
    border-radius: 26px;
    border: 2px solid rgba(20, 184, 166, .15);
    animation: kat-ring-pulse 3s ease-in-out infinite;
}

@keyframes kat-ring-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.kat-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 .75rem;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.kat-hero-desc {
    font-size: .92rem;
    color: rgba(255, 255, 255, .65);
    margin: 0 auto 1.5rem;
    line-height: 1.65;
    max-width: 550px;
}

.kat-hero-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.kat-meta-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1.1rem;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .82rem;
    font-weight: 500;
}

.kat-meta-chip i {
    color: var(--teal, #14b8a6);
}

/* ── Sub-category pills (acik arka plan) ── */
.kat-subcats {
    background: var(--bg, #fafbfc);
    border-bottom: 1px solid var(--surface-2, #e5e7eb);
    padding: .85rem 0;
    position: sticky;
    top: 70px;
    z-index: 50;
}

.kat-subcats-scroll {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.kat-subcats-scroll::-webkit-scrollbar {
    display: none;
}

.kat-pill {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    background: var(--surface-1, #f1f5f9);
    border: 1px solid var(--surface-2, #e5e7eb);
    border-radius: 100px;
    color: var(--text-3, #64748b);
    font-size: .8rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: all .25s;
}

.kat-pill:hover {
    background: var(--surface-2, #e5e7eb);
    color: var(--text, #1e293b);
    border-color: var(--surface-3, #cbd5e1);
}

.kat-pill.active {
    background: linear-gradient(135deg, var(--teal, #14b8a6), #0d9488);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(20, 184, 166, .25);
}

.kat-pill i {
    font-size: .8rem;
}

.kat-pill em {
    font-style: normal;
    background: rgba(0, 0, 0, .06);
    padding: 1px 7px;
    border-radius: 20px;
    font-size: .68rem;
    font-weight: 700;
}

.kat-pill.active em {
    background: rgba(0, 0, 0, .2);
    color: #fff;
}

/* ── Content Section (acik arka plan, koyu metin) ── */
.kat-content {
    padding: 2rem 0 5rem;
    background: var(--bg, #fafbfc);
    min-height: 400px;
}

.kat-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--surface-2, #e5e7eb);
}

.kat-result-label {
    font-size: .85rem;
    color: var(--text-4, #94a3b8);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.kat-result-label i {
    color: var(--teal, #14b8a6);
}

.kat-result-label strong {
    color: var(--text, #1e293b);
    font-weight: 700;
}

.kat-view-switch {
    display: flex;
    gap: .3rem;
    background: var(--surface-1, #f1f5f9);
    padding: 3px;
    border-radius: 10px;
    border: 1px solid var(--surface-2, #e5e7eb);
}

.kat-vs-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: var(--text-4, #94a3b8);
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.kat-vs-btn:hover {
    color: var(--text, #1e293b);
}

.kat-vs-btn.active {
    background: var(--teal, #14b8a6);
    color: #fff;
    box-shadow: 0 2px 8px rgba(20, 184, 166, .3);
}

/* ── Tour Grid ── */
.kat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.kat-grid .tour-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kat-grid .tour-card .card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kat-grid .tour-card .price-row {
    margin-top: auto;
}

.kt-card-nophoto {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(0, 0, 0, .06);
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    min-height: 220px;
}

/* ── List View ── */
.kat-grid.kat-list-view {
    grid-template-columns: 1fr;
}

.kat-grid.kat-list-view .tour-card {
    flex-direction: row;
}

.kat-grid.kat-list-view .tour-card .card-visual {
    width: 300px;
    min-width: 300px;
    height: auto;
}

.kat-grid.kat-list-view .tour-card .card-info {
    padding: 1.25rem 1.75rem;
}

/* ═══ EMPTY STATE (koyu metin, acik arka plan) ═══ */
.kat-empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.kat-empty-visual {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
}

.kat-empty-globe {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20, 184, 166, .08), rgba(20, 184, 166, .02));
    border: 2px solid rgba(20, 184, 166, .12);
    font-size: 3rem;
    color: rgba(20, 184, 166, .3);
    animation: kat-globe-breathe 4s ease-in-out infinite;
}

@keyframes kat-globe-breathe {

    0%,
    100% {
        transform: scale(1);
        border-color: rgba(20, 184, 166, .12);
    }

    50% {
        transform: scale(1.04);
        border-color: rgba(20, 184, 166, .25);
    }
}

.kat-empty-orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: kat-orbit 6s linear infinite;
}

.kat-empty-orbit i {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: var(--teal, #14b8a6);
    filter: drop-shadow(0 0 6px rgba(20, 184, 166, .4));
}

@keyframes kat-orbit {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.kat-empty-state h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1e293b);
    margin: 0 0 .75rem;
}

.kat-empty-state p {
    font-size: .9rem;
    color: var(--text-4, #94a3b8);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.kat-empty-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.kat-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.5rem;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
}

.kat-empty-btn.primary {
    background: linear-gradient(135deg, var(--teal, #14b8a6), #0d9488);
    color: #fff;
    box-shadow: 0 4px 16px rgba(20, 184, 166, .25);
}

.kat-empty-btn.primary:hover {
    box-shadow: 0 6px 24px rgba(20, 184, 166, .35);
    transform: translateY(-2px);
}

.kat-empty-btn.ghost {
    background: var(--surface-1, #f1f5f9);
    color: var(--text-3, #64748b);
    border: 1px solid var(--surface-2, #e5e7eb);
}

.kat-empty-btn.ghost:hover {
    background: var(--surface-2, #e5e7eb);
    color: var(--text, #1e293b);
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
    .kat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .kat-hero {
        min-height: 340px;
    }

    .kat-hero-title {
        font-size: 1.9rem;
    }

    .kat-hero-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .kat-hero-meta {
        flex-wrap: wrap;
        gap: .6rem;
    }

    .kat-grid {
        grid-template-columns: 1fr;
    }

    .kat-grid.kat-list-view .tour-card {
        flex-direction: column;
    }

    .kat-grid.kat-list-view .tour-card .card-visual {
        width: 100%;
        min-width: auto;
    }

    .kat-toolbar {
        flex-wrap: wrap;
        gap: .75rem;
    }

    .kat-empty-visual {
        width: 120px;
        height: 120px;
    }

    .kat-empty-globe {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .kat-hero {
        min-height: 280px;
    }

    .kat-hero-title {
        font-size: 1.55rem;
    }

    .kat-hero-inner {
        padding: 2rem 0 3rem;
    }

    .kat-hero-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        border-radius: 14px;
    }

    .kat-hero-icon-ring {
        inset: -8px;
        border-radius: 20px;
    }

    .kat-empty-state {
        padding: 3rem 1rem;
    }

    .kat-empty-state h2 {
        font-size: 1.25rem;
    }
}/* ═══════════════════════════════════════════════════════
   KATEGORİ SAYFA — Sidebar Filtre Paneli
   ═══════════════════════════════════════════════════════ */

/* ── 2 Kolon Layout ── */
.kat-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.kat-main {
    min-width: 0;
}

/* ── Filter Toggle (mobil + desktop) ── */
.kat-filter-toggle {
    display: none;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.1rem;
    background: var(--surface-1, #f1f5f9);
    border: 1px solid var(--surface-2, #e5e7eb);
    border-radius: 10px;
    color: var(--text-3, #64748b);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.kat-filter-toggle:hover {
    background: var(--teal, #14b8a6);
    color: #fff;
    border-color: var(--teal, #14b8a6);
}

.kat-filter-toggle i {
    font-size: .9rem;
}

/* ── Sidebar Panel ── */
.kat-sidebar {
    position: sticky;
    top: 130px;
}

.kat-sidebar-inner {
    background: #fff;
    border: 1px solid var(--surface-2, #e5e7eb);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.kat-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--surface-2, #e5e7eb);
}

.kat-sidebar-header h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text, #1e293b);
    margin: 0;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.kat-sidebar-header h3 i {
    color: var(--teal, #14b8a6);
    font-size: .9rem;
}

.kat-sidebar-close {
    display: none;
    width: 30px;
    height: 30px;
    border: none;
    background: var(--surface-1, #f1f5f9);
    color: var(--text-3, #64748b);
    border-radius: 8px;
    cursor: pointer;
    font-size: .85rem;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.kat-sidebar-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* ── Filter Groups ── */
.kat-filter-group {
    padding: 1rem 0;
    border-bottom: 1px solid var(--surface-2, #e5e7eb);
}

.kat-filter-group:last-of-type {
    border-bottom: none;
}

.kat-fg-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text, #1e293b);
    margin: 0 0 .75rem;
    display: flex;
    align-items: center;
    gap: .45rem;
    flex-wrap: wrap;
}

.kat-fg-title i {
    color: var(--teal, #14b8a6);
    font-size: .8rem;
    width: 18px;
    text-align: center;
}

.kat-fg-title small {
    display: block;
    width: 100%;
    font-weight: 400;
    color: var(--text-4, #94a3b8);
    font-size: .72rem;
    margin-top: 2px;
    padding-left: 23px;
}

.kat-fg-body {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

/* ── Collapse: ilk N öğe görünür, kalanlar "Diğerleri" ile açılır ── */
.kat-filter-group .kat-cb-hidden {
    display: none;
}

.kat-filter-group.expanded .kat-cb-hidden {
    display: flex;
    animation: katCbFade .25s ease both;
}

@keyframes katCbFade {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.kat-fg-more {
    margin-top: .55rem;
    width: 100%;
    background: var(--surface-1, #f1f5f9);
    color: var(--teal, #14b8a6);
    border: 1px dashed rgba(20, 184, 166, .35);
    border-radius: 10px;
    padding: .5rem .75rem;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.kat-fg-more:hover {
    background: rgba(20, 184, 166, .08);
    border-color: rgba(20, 184, 166, .55);
}

.kat-fg-more i {
    font-size: .7rem;
    transition: transform .25s ease;
}

.kat-filter-group.expanded .kat-fg-more i {
    transform: rotate(180deg);
}

.kat-fg-more .kat-fg-more-text-hide { display: none; }
.kat-filter-group.expanded .kat-fg-more .kat-fg-more-text-show { display: none; }
.kat-filter-group.expanded .kat-fg-more .kat-fg-more-text-hide { display: inline; }

/* ── Custom Checkboxes ── */
.kat-checkbox {
    display: flex;
    align-items: center;
    gap: .55rem;
    cursor: pointer;
    padding: .35rem .5rem;
    border-radius: 8px;
    transition: background .15s;
}

.kat-checkbox:hover {
    background: var(--surface-1, #f1f5f9);
}

.kat-checkbox input {
    display: none;
}

.kat-cb-mark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--surface-3, #cbd5e1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s;
    position: relative;
}

.kat-cb-mark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .55rem;
    color: #fff;
    opacity: 0;
    transform: scale(.5);
    transition: all .2s;
}

.kat-checkbox input:checked+.kat-cb-mark {
    background: var(--teal, #14b8a6);
    border-color: var(--teal, #14b8a6);
    box-shadow: 0 2px 8px rgba(20, 184, 166, .3);
}

.kat-checkbox input:checked+.kat-cb-mark::after {
    opacity: 1;
    transform: scale(1);
}

.kat-cb-label {
    font-size: .8rem;
    color: var(--text-3, #64748b);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: color .15s;
}

.kat-cb-label i {
    font-size: .7rem;
    color: var(--text-4, #94a3b8);
}

.kat-checkbox input:checked~.kat-cb-label {
    color: var(--text, #1e293b);
    font-weight: 600;
}

/* ── Date Inputs ── */
.kat-date-input {
    width: 100%;
    padding: .5rem .75rem;
    border: 1px solid var(--surface-2, #e5e7eb);
    border-radius: 10px;
    font-size: .78rem;
    color: var(--text, #1e293b);
    background: var(--surface-1, #f1f5f9);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
}

.kat-date-input:focus {
    border-color: var(--teal, #14b8a6);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, .1);
}

/* ── Price Range Slider ── */
.kat-price-labels {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    font-weight: 700;
    color: var(--text, #1e293b);
    margin-bottom: .5rem;
}

.kat-range-wrap {
    position: relative;
    height: 36px;
}

.kat-range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--surface-2, #e5e7eb);
    border-radius: 3px;
    transform: translateY(-50%);
    pointer-events: none;
}

.kat-range-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--teal, #14b8a6), #0d9488);
    border-radius: 3px;
    transition: left .05s, width .05s;
}

.kat-range-wrap input[type="range"] {
    position: absolute;
    width: 100%;
    top: 0;
    height: 36px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    margin: 0;
    z-index: 2;
}

.kat-range-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--teal, #14b8a6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    cursor: pointer;
    pointer-events: auto;
    transition: transform .15s, box-shadow .15s;
}

.kat-range-wrap input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 12px rgba(20, 184, 166, .3);
}

.kat-range-wrap input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--teal, #14b8a6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    cursor: pointer;
    pointer-events: auto;
}

/* ── Filter Action Buttons ── */
.kat-filter-actions {
    display: flex;
    gap: .5rem;
    padding-top: 1rem;
    margin-top: .25rem;
}

.kat-fbtn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .6rem .8rem;
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .25s;
}

.kat-fbtn.primary {
    background: linear-gradient(135deg, var(--teal, #14b8a6), #0d9488);
    color: #fff;
    box-shadow: 0 3px 12px rgba(20, 184, 166, .25);
}

.kat-fbtn.primary:hover {
    box-shadow: 0 5px 20px rgba(20, 184, 166, .35);
    transform: translateY(-1px);
}

.kat-fbtn.ghost {
    background: var(--surface-1, #f1f5f9);
    color: var(--text-3, #64748b);
    border: 1px solid var(--surface-2, #e5e7eb);
}

.kat-fbtn.ghost:hover {
    background: var(--surface-2, #e5e7eb);
    color: var(--text, #1e293b);
}

/* ── No Results (filtre boş durum) ── */
.kat-no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.kat-no-results h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text, #1e293b);
    margin: 0 0 .5rem;
}

.kat-no-results p {
    font-size: .85rem;
    color: var(--text-4, #94a3b8);
    max-width: 400px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
    .kat-layout {
        grid-template-columns: 1fr;
    }

    .kat-filter-toggle {
        display: flex;
    }

    .kat-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 320px;
        max-width: 85vw;
        max-height: 100vh;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform .35s cubic-bezier(.4, 0, .2, 1);
        background: rgba(0, 0, 0, .4);
        border-radius: 0;
        padding: 0;
    }

    .kat-sidebar.open {
        transform: translateX(0);
    }

    .kat-sidebar-inner {
        height: 100%;
        overflow-y: auto;
        border-radius: 0 16px 16px 0;
        padding: 1.25rem;
    }

    .kat-sidebar-close {
        display: flex;
    }
}

@media (max-width: 480px) {
    .kat-sidebar {
        width: 100%;
        max-width: 100vw;
    }

    .kat-sidebar-inner {
        border-radius: 0;
    }
}

/* ════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — Kapsamlı ince ayar bloğu
   Breakpoints: ≤1200 (tablet-wide) · ≤960 (tablet) · ≤768 (mobile)
               · ≤560 (small) · ≤400 (xs)
   ════════════════════════════════════════════════════════════════════ */

/* ── Safety: yatay taşma önleme ── */
html { overflow-x: hidden; max-width: 100vw; }
body { overflow-x: hidden; max-width: 100vw; }
img, video { max-width: 100%; height: auto; }

/* Mobilde hiçbir section yatay overflow üretmesin */
@media (max-width: 768px) {
    section, footer, main {
        max-width: 100vw;
        overflow-x: hidden;
    }
    .container {
        max-width: 100%;
        box-sizing: border-box;
    }
    .swiper {
        overflow: hidden !important;
        max-width: 100%;
    }
    .tours-section .tour-swiper {
        max-width: 100%;
    }
    /* Grid/flex taşma yapan bileşenler min-width sıfırla sıkıştırılsın */
    .hero-grid, .cat-grid, .why-grid, .adv-grid, .stats-grid,
    .footer-grid, .testi-masonry, .blog-bento, .dest-bento {
        max-width: 100%;
        min-width: 0;
    }
}

/* =============== ≤1200px =============== */
@media (max-width: 1200px) {
    :root { --container: 92%; }
}

/* =============== ≤960px =============== */
@media (max-width: 960px) {
    :root { --container: 94%; }

    /* Hero */
    .hero-section {
        width: 94%;
        border-radius: 48px;
        padding: 50px 0 40px;
        margin: 12px auto 30px;
    }

    /* Testimonials — anasayfa */
    .testi-masonry { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    /* Footer — ara breakpoint: 2 kolonlu grid */
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
    .footer-extras { flex-wrap: wrap; gap: 1.5rem; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    /* Why / Advantages */
    .why-grid, .adv-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============== ≤768px =============== (mobile) */
@media (max-width: 768px) {
    :root { --container: 100%; --section-py: clamp(28px, 8vw, 60px); }

    .container { padding: 0 1rem; }

    /* Tipografi — büyük başlıklar mobilde fit olsun */
    h1, h2, .section-title, .hero-title { line-height: 1.15; word-break: break-word; }
    .section-title { font-size: clamp(1.4rem, 5vw, 1.9rem); }

    /* Hero — kompakt */
    .hero-section { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
    .hero-content { align-items: center; gap: .85rem; }
    .hero-actions { justify-content: center; flex-wrap: wrap; gap: .5rem; }
    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: .75rem;
        width: 100%;
        padding-top: .5rem;
        border-top: 1px solid rgba(255,255,255,.12);
    }
    .hero-stat-item { align-items: center; text-align: center; flex: 1; min-width: 0; }
    .hero-stat-item .val { font-size: 1.25rem; }
    .hero-stat-item .lbl { font-size: .6rem; letter-spacing: 1px; }
    .hero-label { font-size: .7rem; padding: .35rem .8rem; }
    .hero-title {
        font-size: clamp(1.5rem, 6.5vw, 2.2rem) !important;
        line-height: 1.1;
    }
    .hero-desc {
        font-size: .88rem;
        line-height: 1.55;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Search */
    .search-float { margin-top: -40px; }
    .search-field { width: 100%; }
    .search-submit { width: 100%; justify-content: center; }

    /* Categories — 2 kolon, daha kompakt */
    .cat-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; gap: .5rem; }
    .cat-tile { min-height: 170px; }
    .cat-tile .cat-content { padding: .85rem; }
    .cat-tile .cat-content h3 { font-size: .95rem; line-height: 1.2; }
    .cat-tile .cat-count { font-size: .68rem; }
    .cat-tile .cat-icon { width: 38px; height: 38px; font-size: .85rem; margin-bottom: .5rem; }

    /* Tours Swiper — kart aspect ratio */
    .tours-header { gap: .75rem; }
    .tour-card .card-visual { height: 180px; }
    .tour-card .card-info { padding: 1rem 1.1rem 1.1rem; }
    .tour-card .card-info h3 {
        font-size: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .tour-card .route {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: .75rem;
    }
    .tour-details { padding: .5rem .6rem; gap: .3rem; }
    .tour-details span { font-size: .68rem; }

    /* Testimonials */
    .testi-masonry { grid-template-columns: 1fr; gap: 1rem; }
    .testi-col { gap: 1rem; }
    .testi-media-tall, .testi-media-hero { height: 320px; }

    /* Departure board — yatay scroll yerine kart listesi */
    .dep-table, .dep-table-row { overflow-x: auto; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-card { padding: 1.25rem; }

    /* Why/Adv */
    .why-grid, .adv-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-links-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-col h4 { font-size: .9rem; margin-bottom: .5rem; }
    .footer-newsletter { flex-direction: column; align-items: stretch; gap: 1rem; padding: 1.5rem 0; }
    .nl-form { flex-direction: column; align-items: stretch; width: 100%; }
    .nl-input-wrap, .nl-btn { width: 100%; }
    .footer-extras { flex-direction: column; align-items: stretch; gap: 1.5rem; padding: 1.5rem 0; }
    .footer-contact, .footer-social-section { flex: 1 1 auto; width: 100%; }
    .footer-social-links { flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; text-align: left; }

    /* Buttons → touch-friendly */
    .btn-primary, .btn-secondary, .btn-cta-header { min-height: 44px; }

    /* FAQ */
    .faq-q { font-size: .92rem; }

    /* Blog bento (anasayfa) mobile */
    .blog-bento { grid-template-columns: 1fr !important; grid-auto-rows: auto !important; }
    .blog-bento > * { grid-column: span 1 !important; grid-row: span 1 !important; height: auto !important; }
}

/* =============== ≤560px =============== (small mobile) */
@media (max-width: 560px) {
    :root { --header-h: 64px; --logo-h: 44px; --section-py: clamp(24px, 7vw, 48px); }

    .header-logo .logo-image { height: var(--logo-h); max-width: 180px; }

    /* Hero compact */
    .hero-section { border-radius: 20px; padding: 32px 0 24px; margin: 8px 0 16px; }
    .hero-title { font-size: clamp(1.45rem, 6vw, 1.9rem); }
    .hero-desc { font-size: .9rem; line-height: 1.5; }
    .hero-label { font-size: .7rem; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }

    /* Search */
    .search-bar { padding: .5rem; }
    .search-float { margin-top: -10px; }

    /* Categories */
    .cat-grid { grid-auto-rows: 180px; }

    /* Tour cards (swiper) */
    .tour-card .tour-card-body { padding: 1rem; }

    /* Testimonials */
    .testi-media-tall, .testi-media-hero { height: 280px; }
    .testi-text-card { padding: 1.1rem; }
    .testi-body { font-size: .85rem; }

    /* Destinations */
    .dest-item.span-6, .dest-item.span-3, .dest-item.span-4 { height: 180px !important; }

    /* Stats */
    .stats-grid { grid-template-columns: 1fr; }

    /* Header actions */
    .btn-outline-header { padding: .4rem .75rem; font-size: .75rem; }

    /* Modal / drawer içerikleri */
    .mobile-drawer { width: 86%; max-width: 360px; }

    /* Reveal kartlar padding */
    .card, .card-body { padding: 1rem; }
}

/* =============== ≤400px =============== (extra small) */
@media (max-width: 400px) {
    :root { --header-h: 60px; --logo-h: 40px; }
    .hero-section { padding: 24px 0 20px; border-radius: 16px; }
    .hero-title { font-size: 1.4rem; }
    .cat-grid { grid-auto-rows: 175px; }
    .testi-media-tall, .testi-media-hero { height: 240px; }
    .btn-outline-header span, .btn-cta-header span { display: none; }
}

/* ════════════════════════════════════════════════════════════════════
   SAYFA DETAY (blog-detay, yorumlar, kategori, tur) ortak mobile
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Page header başlıklar — blog-detay, yorumlar, kategori */
    .blog-page-title { font-size: clamp(1.5rem, 5vw, 2rem); }
    .blog-page-header { padding: 1.25rem 0 1.5rem; margin-bottom: 1.5rem; }

    /* Yorumlar stats mobile */
    .yorumlar-stats { gap: .5rem; }
    .yorumlar-stat { font-size: .78rem; padding: .4rem .75rem; }

    /* Blog detay content */
    .blog-detail-hero { padding: 1.25rem 0 1.5rem; margin-bottom: 1.5rem; }
    .blog-detail-content { font-size: .95rem; line-height: 1.7; }
    .blog-detail-meta { flex-wrap: wrap; gap: .75rem; font-size: .8rem; }

    /* Breadcrumb scroll on overflow */
    .blog-breadcrumb .container { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
    .blog-breadcrumb .container::-webkit-scrollbar { display: none; }
    .blog-breadcrumb a, .blog-breadcrumb .current { white-space: nowrap; }
}
