/* =================================================================
   Hill Turizm — Tasarım Sistemi
   Palet: Koyu Zümrüt Yeşili + Altın | Manevi / premium hava
   ================================================================= */
:root {
    --green-900: #062a1f;
    --green-800: #0b3d2e;
    --green-700: #12503c;
    --green-600: #1b6b4f;
    --gold-600: #b8901f;
    --gold-500: #c9a227;
    --gold-400: #e0c14f;
    --cream-50: #faf7ef;
    --cream-100: #f3eddc;
    --ink-900: #201f18;
    --ink-700: #4a4a3f;
    --ink-500: #767565;
    --line: #e7e1cd;
    --white: #ffffff;

    --font-head: Georgia, 'Times New Roman', 'Noto Serif', serif;
    --font-body: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

    --radius: 10px;
    --shadow-sm: 0 2px 8px rgba(6, 42, 31, .08);
    --shadow-md: 0 10px 30px rgba(6, 42, 31, .14);
    --shadow-lg: 0 24px 60px rgba(6, 42, 31, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink-900);
    background: var(--cream-50);
    line-height: 1.6;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--font-head); margin: 0 0 0.6rem; color: var(--green-900); line-height: 1.25; }
h1 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--ink-700); }
a { color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3.5rem 0; }
.section-tight { padding: 2rem 0; }
.section-alt { background: var(--cream-100); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.eyebrow {
    display: inline-block;
    color: var(--gold-600);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: .5rem;
}
.section-head h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--gold-500);
    margin: .8rem auto 0;
    border-radius: 3px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold-500); color: var(--green-900); }
.btn-gold:hover { background: var(--gold-400); box-shadow: var(--shadow-sm); }
.btn-green { background: var(--green-800); color: #fff; }
.btn-green:hover { background: var(--green-700); }
.btn-outline { background: transparent; border-color: var(--green-800); color: var(--green-800); }
.btn-outline:hover { background: var(--green-800); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-sm { padding: .5rem 1rem; font-size: .82rem; }
.btn-block { width: 100%; }

/* =================================================================
   Header
   ================================================================= */
.site-header {
    background: var(--green-900);
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* NOT: .header-inner ayni zamanda .container'dir; yatay padding'i (1.25rem)
       korumak icin kisayol yerine yalnizca dikey padding veriyoruz. */
    padding-block: .9rem;
}
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.logo img { display: block; height: 44px; width: auto; }

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.6rem;
    margin: 0;
    padding: 0;
}
.main-nav a {
    color: #e7ece8;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 500;
    padding: .3rem 0;
    border-bottom: 2px solid transparent;
}
.main-nav a.active, .main-nav a:hover { color: var(--gold-400); border-color: var(--gold-500); }

.menu-toggle { display: none; }

/* =================================================================
   Hero
   ================================================================= */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(6,42,31,.55), rgba(6,42,31,.82)), var(--green-800);
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(201,162,39,.18), transparent 60%);
    pointer-events: none;
}
.hero-inner { position: relative; max-width: 680px; padding-block: 4rem; }
.hero .eyebrow { color: var(--gold-400); }
.hero h1 { color: #fff; }
.hero h1 em { color: var(--gold-400); font-style: normal; }
.hero p { color: #dfe7e1; font-size: 1.05rem; max-width: 560px; }
.hero-actions { display: flex; gap: .8rem; margin-top: 1.6rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-stats div { }
.hero-stats strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--gold-400); }
.hero-stats span { font-size: .82rem; color: #cbd6ce; }

/* =================================================================
   Kart grid genel
   ================================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    text-align: center;
}
.feature-card .icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--cream-100);
    color: var(--gold-600);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
}

/* =================================================================
   Filtre şeridi (tur listeleme)
   ================================================================= */
.filter-bar {
    background: var(--cream-100);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}
.filter-bar h2 { margin: 0; font-size: 1.4rem; }
.filter-bar h2 em { color: var(--gold-600); font-style: normal; }
.filter-fields { display: flex; gap: 1rem; flex-wrap: wrap; align-items: flex-end; }
.filter-field label {
    display: block;
    font-size: .78rem;
    color: var(--ink-500);
    margin-bottom: .3rem;
}
.filter-field select {
    min-width: 160px;
    padding: .6rem .8rem;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: .9rem;
}

.month-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2rem;
}
.month-tabs a {
    padding: .55rem 1.1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink-700);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
}
.month-tabs a.active {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--green-900);
}
.month-tabs a:hover:not(.active) { border-color: var(--gold-500); color: var(--gold-600); }

/* =================================================================
   Tur Kartı
   ================================================================= */
.tour-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.tour-card-head {
    background: var(--green-900);
    color: #fff;
    padding: .8rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.tour-card-head .tour-title {
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .01em;
}
.tour-card-head .tour-badge {
    display: inline-block;
    background: var(--gold-500);
    color: var(--green-900);
    font-size: .7rem;
    font-weight: 700;
    padding: .15rem .55rem;
    border-radius: 999px;
    margin-right: .5rem;
}
.tour-card-head img.airline-logo { height: 26px; background: #fff; border-radius: 4px; padding: 2px 6px; }

.tour-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
}
.leg-box {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .9rem;
}
.leg-box .leg-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gold-600);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-bottom: .3rem;
}
.leg-box .leg-date { font-weight: 700; font-size: .95rem; color: var(--green-900); }
.leg-box .leg-route { font-size: .8rem; color: var(--ink-500); margin-bottom: .7rem; }
.hotel-mini { display: flex; gap: .6rem; align-items: center; }
.hotel-mini img { width: 54px; height: 40px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.hotel-mini .name { font-size: .85rem; font-weight: 600; color: var(--ink-900); }
.hotel-mini .stars { color: var(--gold-500); font-size: .75rem; letter-spacing: 1px; }
.hotel-mini .nights { font-size: .75rem; color: var(--ink-500); }

.tour-transfer-note {
    grid-column: 1 / -1;
    text-align: center;
    font-size: .82rem;
    color: var(--green-700);
    background: var(--cream-100);
    border-radius: 6px;
    padding: .5rem .8rem;
}
.tour-transfer-note strong { color: var(--green-800); }

.tour-card-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px dashed var(--line);
    padding-top: 1rem;
}
.tour-price .amount { font-size: 1.35rem; font-weight: 700; color: var(--green-700); font-family: var(--font-head); }
.tour-price .note { font-size: .76rem; color: var(--ink-500); }
.tour-card-actions { display: flex; gap: .6rem; }

/* =================================================================
   Modal (Hızlı İncele / Detaylar / Galeri Lightbox)
   ================================================================= */
.site-modal {
    position: fixed;
    inset: 0;
    background: rgba(6, 20, 15, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 200;
}
.site-modal[hidden] { display: none; }
.modal-box {
    background: #fff;
    border-radius: var(--radius);
    max-width: 640px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.modal-header {
    background: var(--gold-500);
    color: var(--green-900);
    padding: .9rem 1.25rem;
    font-weight: 700;
    font-size: .95rem;
}
.modal-close {
    position: absolute;
    top: .6rem; right: .8rem;
    background: rgba(255,255,255,.7);
    border: none;
    border-radius: 50%;
    width: 32px; height: 32px;
    font-size: 1.1rem;
    cursor: pointer;
}
.modal-body { padding: 1.25rem; }
.modal-body img.modal-full-img { border-radius: 8px; width: 100%; }

.segment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-bottom: 1rem; }
.segment-box {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .75rem;
    text-align: center;
}
.segment-box .seg-type { font-size: .72rem; color: var(--gold-600); font-weight: 700; text-transform: uppercase; margin-bottom: .3rem; }
.segment-box .seg-route { font-weight: 700; font-size: .85rem; color: var(--green-900); }
.segment-box .seg-date { font-size: .78rem; color: var(--ink-500); }

.price-table { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.price-table th, .price-table td {
    text-align: center;
    padding: .55rem .4rem;
    border-bottom: 1px solid var(--line);
    font-size: .85rem;
}
.price-table th { color: var(--ink-500); font-weight: 600; font-size: .75rem; text-transform: uppercase; }
.price-table td.price-value { color: var(--green-700); font-weight: 700; }

.service-list { list-style: none; margin: 0; padding: 0; }
.service-list li {
    padding: .55rem 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
    display: flex;
    gap: .6rem;
    align-items: flex-start;
}
.service-list li::before { content: '✓'; color: var(--green-700); font-weight: 700; }
.service-list li.excluded::before { content: '✕'; color: #b23b3b; }
.service-list li.excluded { color: var(--ink-500); }

/* =================================================================
   Galeri
   ================================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}
.gallery-grid a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }

/* =================================================================
   Otel vitrini
   ================================================================= */
.hotel-showcase-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.hotel-showcase-card img { height: 190px; object-fit: cover; width: 100%; }
.hotel-showcase-body { padding: 1.1rem; }
.hotel-showcase-body .stars { color: var(--gold-500); font-size: .85rem; }
.hotel-showcase-body .distance {
    display: inline-block;
    margin-top: .4rem;
    font-size: .78rem;
    color: var(--green-700);
    background: var(--cream-100);
    padding: .2rem .6rem;
    border-radius: 999px;
}

/* =================================================================
   Blog
   ================================================================= */
.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.blog-card img { height: 180px; object-fit: cover; }
.blog-card-body { padding: 1.1rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.blog-card-body .date { font-size: .76rem; color: var(--gold-600); font-weight: 700; text-transform: uppercase; }
.blog-card-body h3 { font-size: 1.05rem; }
.blog-card-body p { font-size: .88rem; flex: 1; }
.blog-card-body .read-more { font-size: .85rem; font-weight: 700; color: var(--green-800); text-decoration: none; }

.blog-detail-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; }
.blog-detail-cover img { width: 100%; height: 380px; object-fit: cover; }
.blog-detail-content { max-width: 760px; margin: 0 auto; font-size: 1rem; }
.blog-detail-content h2, .blog-detail-content h3 { margin-top: 1.8rem; }
.blog-detail-content img { border-radius: 8px; margin: 1rem 0; }

/* =================================================================
   CTA bandı
   ================================================================= */
.cta-band {
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    color: #fff;
    text-align: center;
    padding: 3rem 1.25rem;
    border-radius: var(--radius);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #dbe6df; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }

/* =================================================================
   Footer
   ================================================================= */
.site-footer { background: var(--green-900); color: #cfd8d2; margin-top: 3rem; }

/* Zemine fısıltı dozunda girih dokusu */
.site-footer::after {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--pattern-gold);
    background-size: 88px 88px;
    opacity: .04;
    mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 75%);
    pointer-events: none;
}
.site-footer > .container, .site-footer .footer-bottom { position: relative; z-index: 1; }

/* ---- Tek sıra, 4 kolon: marka (sol) + Hizmetlerimiz + Hızlı Erişim + İletişim ---- */
.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.15fr;
    gap: 2.5rem;
    /* Yatay padding .container'dan (1.25rem) korunsun diye kisayol kullanmiyoruz */
    padding-block: 3.2rem 2.4rem;
    align-items: start;
}
.footer-brand-col { max-width: 340px; }
.footer-logo { height: 46px; width: auto; margin-bottom: 1rem; }
.footer-tagline { color: #b7c2bb; font-size: .88rem; line-height: 1.65; margin: 0 0 1.1rem; }
.footer-trust { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; margin-bottom: 1.1rem; }
.trust-chip {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .4rem .85rem; border-radius: 999px;
    border: 1px solid rgba(201,162,39,.35);
    color: var(--gold-400);
    font-size: .76rem; font-weight: 600; letter-spacing: .01em;
}
.trust-chip svg { flex-shrink: 0; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #cfd8d2;
    display: flex; align-items: center; justify-content: center;
    transition: background-color .25s ease, color .25s ease, transform .25s var(--ease-soft);
}
.footer-social a:hover { background: var(--gold-500); color: var(--green-900); transform: translateY(-3px); }

.footer-col h4 { color: var(--gold-400); font-size: .92rem; margin-bottom: .9rem; }
.footer-col p { color: #b7c2bb; font-size: .88rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { color: #cfd8d2; text-decoration: none; font-size: .88rem; }
.footer-col a:hover { color: var(--gold-400); }
.footer-contact li > a, .footer-contact li > span {
    display: inline-flex; align-items: flex-start; gap: .5rem;
    color: #cfd8d2; font-size: .88rem;
}
.footer-contact svg { flex-shrink: 0; margin-top: .18rem; color: var(--gold-400); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1rem 0;
    font-size: .82rem;
    color: #93a099;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-copy { color: #93a099; }

/* --- "Dream Office Team tarafından yapıldı" belirteci --- */
.made-by {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    padding: .3rem .7rem .3rem .8rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
    /* Sabit WhatsApp butonu (sağ alt köşe) ile üst üste binmesini önlemek için sağ boşluk */
    margin-right: 68px;
    transition: border-color .35s ease, background-color .35s ease, transform .35s var(--ease-soft, ease);
}
.made-by-label {
    font-size: .72rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #8b988f;
    transition: color .35s ease;
}
.made-by-logo {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    border-radius: 4px;
}
.made-by-logo img {
    display: block;
    height: 26px;
    width: auto;
    /* Varsayılan: hafif soluk ve renksiz — hover'da canlanır */
    filter: grayscale(1) brightness(1.4) opacity(.6);
    transition: filter .4s ease, transform .5s var(--ease-soft, ease);
}
/* Hover: logo canlanır, hafifçe büyür; rozet altınla belirir; parıltı geçer */
.made-by:hover {
    border-color: rgba(201,162,39,.55);
    background: rgba(201,162,39,.08);
    transform: translateY(-2px);
}
.made-by:hover .made-by-label { color: var(--gold-400); }
.made-by:hover .made-by-logo img {
    filter: grayscale(0) brightness(1) opacity(1) drop-shadow(0 0 6px rgba(254,215,71,.5));
    transform: scale(1.08);
}
/* Parıltı (shine) süpürmesi */
.made-by-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
}
.made-by:hover .made-by-logo::after {
    animation: made-by-shine .9s ease forwards;
}
@keyframes made-by-shine {
    0%   { left: -120%; }
    100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
    .made-by, .made-by-logo img { transition: none; }
    .made-by:hover { transform: none; }
    .made-by:hover .made-by-logo img { transform: none; }
    .made-by:hover .made-by-logo::after { animation: none; }
}
@media (max-width: 600px) {
    .footer-bottom-inner { justify-content: center; text-align: center; }
    .made-by { margin-right: 0; }
}

/* =================================================================
   WhatsApp float
   ================================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.3);
    z-index: 90;
    animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse {
    0% { box-shadow: 0 6px 18px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,.5); }
    70% { box-shadow: 0 6px 18px rgba(0,0,0,.3), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 6px 18px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,0); }
}

/* WhatsApp butonunun 22px altta + 58px yüksekliğinde olmasına göre,
   üst üste binmeyecek şekilde onun tam üstüne, ortalanmış olarak yerleşir. */
.back-to-top {
    position: fixed;
    bottom: 94px;
    right: 27px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--green-800);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(6,42,31,.35);
    cursor: pointer;
    z-index: 89;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, background .2s ease, visibility .25s;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--green-700);
}

@media (max-width: 480px) {
    .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
    .back-to-top { width: 42px; height: 42px; right: 21px; bottom: 82px; }
}

/* =================================================================
   Sayfa içerikleri / genel
   ================================================================= */
.page-hero {
    background: linear-gradient(180deg, rgba(6,42,31,.75), rgba(6,42,31,.9)), var(--green-800);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 3.5rem 0;
    text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .3rem; }
.page-hero p { color: #d9e3dd; }

.page-content { max-width: 820px; margin: 0 auto; }
.page-content img { border-radius: 8px; margin: 1rem 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.contact-info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.contact-info-card .row { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: 1rem; }
.contact-info-card .row .icon { color: var(--gold-600); font-size: 1.1rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--ink-500);
    background: #fff;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
}

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 960px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand-col { grid-column: 1 / -1; max-width: none; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .footer-inner { grid-template-columns: 1fr; }
}

/* Orta genişlik: 10 menü öğesi taşmasın diye yatay nav'ı sıkılaştır */
@media (max-width: 1280px) {
    .main-nav ul { gap: .95rem; }
    .main-nav a { font-size: .85rem; }
}

/* Panel başlığı/altlığı yalnızca mobil menüde görünür (masaüstünde gizli) */
.nav-panel-head, .nav-panel-foot { display: none; }
body.nav-open { overflow: hidden; }
/* Menü paneli açıkken yüzen butonları gizle (panelin kendi CTA'ları var) */
body.nav-open .whatsapp-float,
body.nav-open .back-to-top { opacity: 0 !important; visibility: hidden !important; pointer-events: none; }

/* Küçük masaüstü / tablet: sağdan kayan tam ekran menü paneli */
@media (max-width: 1100px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
    }
    .menu-toggle span { width: 24px; height: 2px; background: var(--emerald-800); border-radius: 2px; }
    .logo img { height: 38px; }

    /* Panel: ekranın sağından tam boy kayarak gelir */
    .main-nav {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 300;
        display: flex;
        flex-direction: column;
        background: linear-gradient(160deg, var(--green-900) 0%, #06231a 100%);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform .42s var(--ease-soft), visibility 0s linear .42s;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    .main-nav.open {
        transform: translateX(0);
        visibility: visible;
        transition: transform .42s var(--ease-soft), visibility 0s;
        box-shadow: -20px 0 50px rgba(0,0,0,.35);
    }
    .main-nav::before {
        content: '';
        position: absolute; inset: 0;
        background: radial-gradient(circle at 88% 12%, rgba(201,162,39,.16), transparent 46%);
        pointer-events: none;
    }

    .nav-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.15rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav-panel-logo {
        height: 32px;
        width: auto;
        display: block;
    }
    .nav-close {
        flex-shrink: 0;
        width: 44px; height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.16);
        background: rgba(255,255,255,.05);
        color: #fff;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer;
        transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .35s var(--ease-soft);
    }
    .nav-close:hover, .nav-close:focus-visible {
        background: var(--gold-500); color: var(--green-900);
        border-color: var(--gold-500); transform: rotate(90deg);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: .5rem 0;
        flex: 1 0 auto;
    }
    .main-nav li { border-top: none; }
    .main-nav a {
        display: flex;
        align-items: center;
        padding: 1.05rem 1.6rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: #eaf1ec !important;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    /* Masaüstü kayan alt çizgiyi panelde kapat, sol altın gösterge ekle */
    .main-nav a::after { display: none; }
    .main-nav a::before {
        content: '';
        position: absolute; left: 0; top: 50%;
        transform: translateY(-50%) scaleY(0);
        transform-origin: center;
        width: 3px; height: 58%;
        background: var(--gold-500);
        transition: transform .25s var(--ease-soft);
    }
    .main-nav a { position: relative; transition: padding-left .25s var(--ease-soft), color .25s ease, background-color .25s ease; }
    .main-nav a:hover, .main-nav a.active {
        color: var(--gold-400) !important;
        background: rgba(255,255,255,.04);
        padding-left: 1.9rem;
    }
    .main-nav a:hover::before, .main-nav a.active::before { transform: translateY(-50%) scaleY(1); }

    /* Açılışta menü öğeleri kademeli belirir */
    .main-nav.open li {
        opacity: 0;
        transform: translateX(26px);
        animation: nav-item-in .5s var(--ease-soft) forwards;
    }
    .main-nav.open li:nth-child(1)  { animation-delay: .10s; }
    .main-nav.open li:nth-child(2)  { animation-delay: .15s; }
    .main-nav.open li:nth-child(3)  { animation-delay: .20s; }
    .main-nav.open li:nth-child(4)  { animation-delay: .25s; }
    .main-nav.open li:nth-child(5)  { animation-delay: .30s; }
    .main-nav.open li:nth-child(6)  { animation-delay: .35s; }
    .main-nav.open li:nth-child(7)  { animation-delay: .40s; }
    .main-nav.open li:nth-child(8)  { animation-delay: .45s; }
    .main-nav.open li:nth-child(9)  { animation-delay: .50s; }
    .main-nav.open li:nth-child(10) { animation-delay: .55s; }

    .nav-panel-foot {
        display: flex;
        flex-direction: column;
        gap: .7rem;
        padding: 1.2rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .nav-wa, .nav-tel {
        display: flex; align-items: center; justify-content: center; gap: .55rem;
        padding: .9rem 1rem;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
    }
    .nav-wa { background: #25d366; color: #fff; }
    .nav-wa:hover { background: #1fbe5b; }
    .nav-tel { background: rgba(255,255,255,.06); color: #eaf1ec; border: 1px solid rgba(255,255,255,.14); }
    .nav-tel:hover { background: rgba(255,255,255,.1); }
}
@keyframes nav-item-in {
    to { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
    .main-nav { transition: none; }
    .main-nav.open li { animation: none; opacity: 1; transform: none; }
}

@media (max-width: 860px) {
    .logo img { height: 34px; }
    .tour-card-body { grid-template-columns: 1fr; }
    .segment-grid { grid-template-columns: 1fr; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .filter-bar { flex-direction: column; align-items: stretch; }
    .hero { min-height: 460px; }
}

/* =================================================================
   ✦ Estetik & Hareket Katmanı — Girih (İslami geometri) + kemer + animasyon
   Bağımlılıksız: yalnızca CSS + data-URI SVG (CSP uyumlu)
   ================================================================= */

:root {
    /* Sekiz köşeli yıldız (rub'el hizb) — soluk altın çizgili döşenebilir doku */
    --pattern-gold: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23c9a227' stroke-width='1'%3E%3Cpolygon points='32,4 60,32 32,60 4,32'/%3E%3Crect x='13' y='13' width='38' height='38'/%3E%3Ccircle cx='32' cy='32' r='6'/%3E%3C/g%3E%3C/svg%3E");
    --ease-soft: cubic-bezier(.22, 1, .36, 1);
}

/* ---- Tezhip ayracı: bölüm başlığı altındaki süsleme ----
   Not: elmas + çizgiler bilinçli olarak h2'nin kendi pseudo-elemanı değil,
   .section-head sarmalayıcısının ::after'ı — h2::before kullanıldığında
   negatif margin metnin ÜZERİNE biniyordu (masaüstünde büyük fontla
   belirginleşen bir çakışma hatasıydı). Sarmalayıcıya taşımak, süslemeyi
   başlık metninden bağımsız, her zaman altta sabit tutar. */
.section-head h2::after,
.section-head h2::before { content: none; }

.section-head::after {
    content: '';
    display: block;
    width: 92px;
    height: 16px;
    margin: 1.1rem auto 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolygon points='10,1 19,10 10,19 1,10' fill='none' stroke='%23c9a227' stroke-width='1.6'/%3E%3C/svg%3E"),
        linear-gradient(var(--gold-500), var(--gold-500)),
        linear-gradient(var(--gold-500), var(--gold-500));
    background-size: 15px 15px, 30px 2px, 30px 2px;
    background-position: center center, left center, right center;
    background-repeat: no-repeat;
}
/* ---- Ambiyans geometrik doku katmanları ---- */
.hero::before {
    content: '';
    position: absolute;
    inset: -20%;
    background-image: var(--pattern-gold);
    background-size: 76px 76px;
    opacity: .10;
    mask-image: radial-gradient(ellipse at 70% 40%, #000 10%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 10%, transparent 72%);
    animation: pattern-drift 60s linear infinite;
    pointer-events: none;
}
@keyframes pattern-drift {
    from { background-position: 0 0; }
    to   { background-position: 152px 152px; }
}
.section-alt { position: relative; overflow: hidden; }
.section-alt::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 420px; height: 420px;
    background-image: var(--pattern-gold);
    background-size: 64px 64px;
    opacity: .05;
    mask-image: radial-gradient(circle at 80% 20%, #000 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(circle at 80% 20%, #000 20%, transparent 72%);
    pointer-events: none;
}
.section-alt > .container { position: relative; }

/* Düz section'lar için fısıltı dozunda tam genişlik girih dokusu.
   section-alt ile dönüşümlü kullanılır: desenli-düz-desenli ritmi. */
.section-soft { position: relative; overflow: hidden; }
.section-soft::before {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--pattern-gold);
    background-size: 88px 88px;
    opacity: .035;
    mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
    pointer-events: none;
}
.section-soft > .container { position: relative; }

/* ---- Hero: kademeli açılış animasyonu ---- */
.hero-inner > * { opacity: 0; animation: rise-in .8s var(--ease-soft) forwards; }
.hero-inner > .eyebrow      { animation-delay: .05s; }
.hero-inner > h1            { animation-delay: .18s; }
.hero-inner > p             { animation-delay: .32s; }
.hero-inner > .hero-actions { animation-delay: .46s; }
.hero-inner > .hero-stats   { animation-delay: .60s; }
@keyframes rise-in {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* h1 içindeki altın kelimenin altını çizen animasyon */
.hero h1 em {
    position: relative;
    display: inline-block;
}
.hero h1 em::after {
    content: '';
    position: absolute;
    left: 0; bottom: -.08em;
    height: 3px; width: 100%;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    animation: draw-underline .7s var(--ease-soft) 1s forwards;
}
@keyframes draw-underline { to { transform: scaleX(1); } }

.hero-stats strong { transition: color .3s ease; }
.hero-stats div { position: relative; padding-left: .1rem; }

/* ---- Scroll ile beliren öğeler (JS ekler) ---- */
.will-reveal { opacity: 0; transform: translateY(28px); }
.is-revealed {
    opacity: 1; transform: none;
    transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft);
}

/* ---- Navigasyon: kayan altın alt çizgi ---- */
.main-nav a { position: relative; border-bottom: none !important; }
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    height: 2px; width: 100%;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease-soft);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); transform-origin: left; }

/* ---- Butonlar: altın parlama (sheen) ---- */
.btn { position: relative; overflow: hidden; }
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
    transform: skewX(-18deg);
    transition: left .6s var(--ease-soft);
}
.btn-gold:hover::before { left: 140%; }
.btn:active { transform: translateY(0) scale(.98); }

/* ---- Tur kartı: yükselme + altın kenar ---- */
.tour-card {
    transition: transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft), border-color .3s ease;
}
.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-400);
}
.tour-card-head { position: relative; }
.tour-card-head::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0; height: 2px; width: 100%;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease-soft);
}
.tour-card:hover .tour-card-head::after { transform: scaleX(1); }
.hotel-mini img { transition: transform .4s var(--ease-soft); }
.tour-card:hover .hotel-mini img { transform: scale(1.06); }

/* ---- Özellik kartı: üst altın şerit + ikon hareketi ---- */
.feature-card {
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease-soft);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .icon { transition: transform .4s var(--ease-soft), background-color .3s ease, color .3s ease; }
.feature-card:hover .icon {
    transform: rotate(8deg) scale(1.08);
    background: var(--green-800);
    color: var(--gold-400);
}

/* ---- Otel kartı ---- */
.hotel-showcase-card img {
    transition: transform .5s var(--ease-soft);
}
.hotel-showcase-card { transition: transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft); }
.hotel-showcase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hotel-showcase-card:hover img { transform: scale(1.04); }

/* ---- Blog kartı hover ---- */
.blog-card { transition: transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft); overflow: hidden; }
.blog-card img { transition: transform .5s var(--ease-soft); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card:hover img { transform: scale(1.05); }
.blog-card .read-more { transition: gap .2s ease, color .2s ease; }
.blog-card:hover .read-more { color: var(--gold-600); }

/* ---- Galeri: hover'da altın örtü + büyüteç ---- */
.gallery-grid a { position: relative; }
.gallery-grid a::after {
    content: '⊕';
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    background: linear-gradient(rgba(6,42,31,0), rgba(6,42,31,.55));
    opacity: 0;
    transition: opacity .35s ease;
}
.gallery-grid a:hover::after { opacity: 1; }

/* ---- CTA bandı: geometrik doku ---- */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--pattern-gold);
    background-size: 72px 72px;
    opacity: .12;
    mask-image: radial-gradient(circle at 50% 120%, #000, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 120%, #000, transparent 70%);
    pointer-events: none;
}
.cta-band > * { position: relative; }

/* ---- Footer: ince altın geometrik üst şerit ---- */
.site-footer { position: relative; }
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background:
        linear-gradient(90deg, transparent, var(--gold-500), transparent),
        var(--pattern-gold);
    background-size: 100% 100%, 32px 3px;
    opacity: .9;
}

/* ---- Modal: yumuşak giriş ---- */
.site-modal { animation: modal-fade .25s ease forwards; }
.site-modal .modal-box { animation: modal-pop .35s var(--ease-soft) forwards; }
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop {
    from { opacity: 0; transform: translateY(16px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- Ay sekmeleri & filtre: küçük dokunuşlar ---- */
.month-tabs a { transition: transform .2s ease, border-color .2s ease, color .2s ease, background-color .2s ease; }
.month-tabs a:hover { transform: translateY(-2px); }
.filter-field select { transition: border-color .2s ease, box-shadow .2s ease; }
.filter-field select:focus { border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,162,39,.18); outline: none; }

/* ---- Erişilebilirlik: görünür klavye odağı ---- */
a:focus-visible, .btn:focus-visible, button:focus-visible, select:focus-visible {
    outline: 3px solid var(--gold-500);
    outline-offset: 2px;
}

/* ---- Hareketi azalt tercihi: tüm animasyonları kapat ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .hero-inner > *, .hero h1 em::after { opacity: 1 !important; transform: none !important; }
    .will-reveal { opacity: 1 !important; transform: none !important; }
}

/* =================================================================
   ✦✦ İNANÇ-TARZI FERAH REDESIGN — açık zemin · yeşil + altın · premium
   (Dosyanın sonunda: önceki kuralları bilinçli olarak geçersiz kılar)
   ================================================================= */

:root {
    --emerald-900: #06291e;
    --emerald-800: #0c3b2e;
    --emerald-700: #14523d;
    --emerald-600: #1c6b50;
    --gold-700: #a67c14;
    --page-bg: #ffffff;
    --alt-bg: #f6f2e8;
    --ink: #253029;
    --ink-soft: #5b6660;
    --hairline: #ece6d7;

    /* Palet köprüsü: eski taban katmanının değişkenleri yeni palete sabitlenir.
       Eski kurallar (footer, page-hero, butonlar…) böylece redesign renkleriyle
       birebir aynı tona oturur; iki palet birbirinden kayamaz. */
    --green-900: var(--emerald-900);
    --green-800: var(--emerald-800);
    --green-700: var(--emerald-700);
    --green-600: var(--emerald-600);
    --cream-100: var(--alt-bg);
    --line: var(--hairline);
}

body { background: var(--page-bg); color: var(--ink); }
h1, h2, h3, h4 { color: var(--emerald-800); letter-spacing: -0.01em; }
.section { padding: 4.5rem 0; }
.container-narrow { max-width: 820px; }

.section-alt { background: var(--alt-bg); }

/* ---- Üst bilgi çubuğu ---- */
.top-bar { background: var(--emerald-900); color: #cdd8d1; font-size: .8rem; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; padding-block: .5rem; gap: 1rem; }
.top-bar-note { color: #b9c7bf; letter-spacing: .01em; }
.top-bar-links { display: flex; align-items: center; gap: 1.1rem; }
.top-bar-links a { display: inline-flex; align-items: center; gap: .35rem; color: #e7ede9; text-decoration: none; font-weight: 600; }
.top-bar-links a:hover { color: var(--gold-400); }
.top-bar-links a svg { color: var(--gold-400); }
.top-bar-wa { color: #7ee0a0 !important; }

/* ---- Header: beyaz, ferah ---- */
.site-header { background: #fff; box-shadow: 0 1px 0 var(--hairline), 0 6px 20px rgba(6,42,31,.05); }
.header-inner { padding-block: 1rem; }
.main-nav a { color: var(--emerald-800); font-weight: 600; }
.main-nav a.active, .main-nav a:hover { color: var(--gold-700); }
.menu-toggle span { background: var(--emerald-800); }
@media (max-width: 860px) {
    /* Mobil menü paneli koyu zümrüt temalıdır; arka plan/renk kuralları
       1100px off-canvas bloğunda tanımlıdır. Burada yalnızca üst şerit ayarları. */
    .top-bar-note { display: none; }
    .top-bar-inner { justify-content: center; }
}

/* =================================================================
   HERO SLIDER
   ================================================================= */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background: var(--emerald-800);
}
.hero-track { position: absolute; inset: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(105deg, rgba(6,42,31,.92) 12%, rgba(6,42,31,.6) 60%, rgba(12,59,46,.4));
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.06);
    transition: opacity 1s var(--ease-soft), transform 7s linear, visibility 1s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
/* geometrik girih dokusu overlay */
.hero-slider::after {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--pattern-gold);
    background-size: 78px 78px;
    opacity: .07;
    pointer-events: none;
    z-index: 2;
}
.hero-slide .hero-inner { position: relative; z-index: 3; width: 100%; max-width: 660px; min-width: 0; padding-block: 5rem; }
.hero-slide .eyebrow { color: var(--gold-400); }
.hero-slide h1 { color: #fff; font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.hero-slide h1 em { color: var(--gold-400); font-style: normal; position: relative; }
.hero-slide p { color: #e2ebe5; font-size: 1.08rem; max-width: 560px; }
.hero-slide .hero-actions { margin-top: 1.8rem; }
/* sadece aktif slaytta metin kademeli belirsin */
.hero-slide .hero-inner > * { opacity: 0; }
.hero-slide.is-active .hero-inner > * { animation: rise-in .8s var(--ease-soft) forwards; }
.hero-slide.is-active .hero-inner > .eyebrow      { animation-delay: .15s; }
.hero-slide.is-active .hero-inner > h1            { animation-delay: .3s; }
.hero-slide.is-active .hero-inner > p             { animation-delay: .45s; }
.hero-slide.is-active .hero-inner > .hero-actions { animation-delay: .6s; }

.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 5;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(6,42,31,.35);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background-color .2s ease, border-color .2s ease;
}
.hero-arrow:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--emerald-900); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }
/* bottom, hero üzerine -42px (masaüstü) / -30px (mobil) taşan arama kartının
   üstünde kalacak şekilde ayarlandı; aksi halde noktalar kartın altında kalıyordu. */
.hero-dots { position: absolute; bottom: 56px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: .5rem; }
.hero-dots button {
    width: 10px; height: 10px; padding: 0;
    border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,.4);
    transition: background-color .25s ease, width .25s ease;
}
.hero-dots button.is-active { background: var(--gold-500); width: 26px; border-radius: 6px; }

/* =================================================================
   ARAMA / FİLTRE KARTI (hero üzerine taşan)
   ================================================================= */
.search-card {
    position: relative;
    z-index: 10;
    margin-top: -42px;
    margin-bottom: 1rem;
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1.1rem;
    align-items: end;
}
.search-field label {
    display: block;
    font-size: .74rem; text-transform: uppercase; letter-spacing: .07em;
    color: var(--gold-700); font-weight: 700; margin-bottom: .45rem;
}
.search-select { position: relative; }
.search-select::after {
    content: '▾'; position: absolute; right: .9rem; top: 50%; transform: translateY(-50%);
    color: var(--emerald-600); pointer-events: none; font-size: .8rem;
}
.search-select select {
    width: 100%;
    appearance: none; -webkit-appearance: none;
    padding: .85rem 2rem .85rem 1rem;
    border: 1px solid var(--hairline);
    border-radius: 10px;
    background: var(--alt-bg);
    font-size: .95rem; color: var(--ink);
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.search-select select:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,162,39,.15); }
.search-submit { padding: .9rem 1.6rem; height: fit-content; }

/* =================================================================
   GÜVEN ŞERİDİ
   ================================================================= */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 1.4rem 1rem;
    box-shadow: var(--shadow-sm);
}
.trust-item { display: flex; align-items: center; gap: .8rem; padding: 0 1rem; }
.trust-item + .trust-item { border-left: 1px solid var(--hairline); }
.trust-item > svg { color: var(--gold-600); flex-shrink: 0; }
.trust-item strong { display: block; color: var(--emerald-800); font-size: .98rem; font-family: var(--font-head); }
.trust-item span { font-size: .8rem; color: var(--ink-soft); }

/* =================================================================
   KATEGORİ KARTLARI
   ================================================================= */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.5rem; }
.cat-card {
    position: relative;
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 2.4rem 1.5rem 1.6rem;
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    transition: transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft), border-color .3s ease;
}
.cat-card .cat-arch {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 130%; height: 90px;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,162,39,.14), transparent 70%);
    pointer-events: none;
}
.cat-icon {
    width: 68px; height: 68px;
    margin: 0 auto 1.1rem;
    border-radius: 50% 50% 12px 12px / 60% 60% 12px 12px;
    background: var(--alt-bg);
    color: var(--gold-600);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--hairline);
    transition: background-color .3s ease, color .3s ease, transform .4s var(--ease-soft);
}
.cat-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.cat-card p { font-size: .88rem; color: var(--ink-soft); flex: 1; margin-bottom: 1rem; }
.cat-link { font-weight: 700; font-size: .88rem; color: var(--gold-700); transition: letter-spacing .2s ease; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.cat-card:hover .cat-icon { background: var(--emerald-800); color: var(--gold-400); transform: translateY(-3px); }
.cat-card:hover .cat-link { letter-spacing: .02em; }

/* ---- Neden biz: ikon kutusu premium ---- */
.why-grid .feature-card { text-align: center; padding: 2rem 1.6rem; }
.why-grid .feature-card .icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--alt-bg);
    color: var(--gold-600);
    border: 1px solid var(--hairline);
}
.why-grid .feature-card:hover .icon { background: var(--emerald-800); color: var(--gold-400); transform: rotate(0) scale(1.06); }
.why-grid .feature-card h3 { font-size: 1.1rem; }
.why-grid .feature-card p { font-size: .9rem; color: var(--ink-soft); }

/* ---- Otel kartı başlık ---- */
.hotel-showcase-body h3 { font-size: 1.15rem; margin-bottom: .3rem; }

/* =================================================================
   SIKÇA SORULAN SORULAR (akordeon)
   ================================================================= */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
    border: 1px solid var(--hairline);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.is-open { border-color: var(--gold-400); box-shadow: var(--shadow-sm); }
.faq-q {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.15rem 1.35rem;
    background: none; border: none; cursor: pointer;
    text-align: left;
    font-family: var(--font-head);
    font-size: 1.02rem; font-weight: 600; color: var(--emerald-800);
}
.faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--alt-bg); color: var(--gold-700);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; line-height: 1;
    transition: transform .3s var(--ease-soft), background-color .3s ease, color .3s ease;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--emerald-800); color: var(--gold-400); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-soft); }
.faq-a p { padding: 0 1.35rem 1.25rem; margin: 0; color: var(--ink-soft); font-size: .94rem; }

/* =================================================================
   REDESIGN — RESPONSIVE
   ================================================================= */
@media (max-width: 960px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0; }
    .trust-item:nth-child(odd) { border-left: none; }
    .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--hairline); padding-top: 1.2rem; }
}
@media (max-width: 860px) {
    .hero-slider { min-height: 520px; }
    .search-card { grid-template-columns: 1fr; margin-top: -30px; }
    .hero-arrow { display: none; }
    .cat-grid { grid-template-columns: 1fr; }
    .trust-strip { grid-template-columns: 1fr; }
    .trust-item { justify-content: flex-start; border-left: none !important; }
    .trust-item + .trust-item { border-top: 1px solid var(--hairline); padding-top: 1rem; }
    .section { padding: 3rem 0; }
}

/* =================================================================
   Kurumsal (Hakkımızda) sayfası
   ================================================================= */
.about-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}
.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--pattern-gold);
    background-size: 78px 78px;
    opacity: .08;
    pointer-events: none;
}
.about-hero-inner { position: relative; padding-block: 3.5rem; }
.about-hero .eyebrow { color: var(--gold-400); }
.about-hero h1 { color: #fff; font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: .6rem; }
.about-slogan {
    font-family: var(--font-head);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--gold-400);
    margin: 0;
}

.about-stats { margin-top: -38px; margin-bottom: 0; position: relative; z-index: 5; }

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-prose h2 { margin-top: .4rem; }
.about-prose p { font-size: 1.02rem; line-height: 1.8; }
.about-prose strong { color: var(--emerald-800); }
.about-media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.slogan-banner {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--emerald-900), var(--emerald-700));
}
.slogan-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--pattern-gold);
    background-size: 72px 72px;
    opacity: .1;
    pointer-events: none;
}
.slogan-banner .eyebrow { position: relative; color: var(--gold-400); }
.slogan-banner-text {
    position: relative;
    font-family: var(--font-head);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin: .5rem 0 0;
}
.slogan-banner-text::before,
.slogan-banner-text::after { color: var(--gold-400); }

.pull-quote {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
    border: none;
    position: relative;
}
.pull-quote::before {
    content: '“';
    display: block;
    font-family: var(--font-head);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--gold-400);
    margin-bottom: -.5rem;
}
.pull-quote p {
    font-family: var(--font-head);
    font-style: italic;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: var(--emerald-800);
    line-height: 1.6;
}
.pull-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 700;
    font-size: .9rem;
    color: var(--gold-700);
    letter-spacing: .03em;
}

@media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-media img { height: 260px; }
    .about-stats { margin-top: -28px; }
}

/* =================================================================
   ✦✦ UMRE / TUR LİSTESİ — planlayıcı + rota şeritli tur kartı
   Signature: kutsal yolculuğun duraklarını gösteren "rota şeridi"
   ================================================================= */

/* ---- Sayfa başlığı: soluk geometrik doku (tüm alt sayfalar) ----
   Not: kural .tours-hero değil genel .page-hero — Oteller, Blog,
   İletişim, blog-detay gibi tüm düz başlıklar aynı girih dokusunu alır. */
.page-hero { position: relative; overflow: hidden; }
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero::before {
    content: '';
    position: absolute; inset: -20%;
    background-image: var(--pattern-gold);
    background-size: 76px 76px;
    opacity: .08;
    mask-image: radial-gradient(ellipse at 80% 30%, #000 8%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 80% 30%, #000 8%, transparent 70%);
    pointer-events: none;
}

/* ---- Planlayıcı paneli ---- */
.tour-planner {
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: 18px;
    padding: 1.6rem 1.8rem;
    box-shadow: 0 10px 30px rgba(6,42,31,.06);
    margin-bottom: 1.4rem;
}
.planner-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.planner-head .eyebrow { margin-bottom: .2rem; }
.planner-head h2 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.5rem); }
.planner-head h2 em { font-style: normal; color: var(--gold-700); }
.planner-reset {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .82rem; font-weight: 600; color: var(--ink-soft);
    text-decoration: none; padding: .5rem .9rem;
    border: 1px solid var(--hairline); border-radius: 999px; white-space: nowrap;
    transition: color .2s ease, border-color .2s ease;
}
.planner-reset:hover { color: var(--emerald-800); border-color: var(--gold-400); }

.planner-row { display: flex; align-items: center; gap: 1rem; padding: .7rem 0; }
.planner-row + .planner-row { border-top: 1px dashed var(--hairline); }
.planner-label {
    flex-shrink: 0; width: 48px;
    font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
    color: var(--ink-soft); font-weight: 700;
}
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .5rem .95rem; border-radius: 999px;
    border: 1px solid var(--hairline); background: #fff;
    color: var(--ink); font-size: .86rem; font-weight: 600;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease, transform .2s ease;
}
.chip:hover { border-color: var(--gold-400); color: var(--gold-700); transform: translateY(-1px); }
.chip.is-active { background: var(--emerald-800); border-color: var(--emerald-800); color: #fff; }
.chip-year { font-size: .72rem; opacity: .55; font-weight: 600; }
.chip.is-active .chip-year { opacity: .85; }
.chip-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
    background: var(--alt-bg); color: var(--gold-700);
    font-size: .68rem; font-weight: 700;
}
.chip.is-active .chip-count { background: rgba(255,255,255,.22); color: #fff; }

/* ---- Sonuç çubuğu ---- */
.results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.results-count { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.results-count strong { color: var(--emerald-800); font-size: 1.05rem; }
.results-count span { opacity: .7; }

/* ---- Tur kartı: yeniden kurgu ---- */
.tour-list { display: flex; flex-direction: column; gap: 1.5rem; }
.tour-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    margin-bottom: 0;
    border: 1px solid var(--hairline);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 20px rgba(6,42,31,.05);
}

.tc-media {
    position: relative; display: block; min-height: 240px;
    overflow: hidden; background: var(--emerald-800);
    text-decoration: none;
}
.tc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-soft); }
.tour-card:hover .tc-media img { transform: scale(1.05); }
.tc-media-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: .8; }
.tc-badge {
    position: absolute; top: .8rem; left: .8rem; z-index: 2;
    background: var(--gold-500); color: var(--emerald-900);
    font-size: .72rem; font-weight: 700; letter-spacing: .03em;
    padding: .3rem .7rem; border-radius: 999px;
}
.tc-days {
    position: absolute; bottom: .8rem; left: .8rem; z-index: 2;
    background: rgba(6,41,30,.8); color: #fff;
    font-size: .76rem; font-weight: 600;
    padding: .35rem .75rem; border-radius: 999px;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

.tc-main { display: flex; flex-direction: column; gap: 1rem; padding: 1.4rem 1.6rem; }
.tc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.tc-title { margin: 0; font-size: 1.25rem; line-height: 1.25; }
.tc-title .tc-group { display: block; font-family: var(--font-body); font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--gold-700); font-weight: 700; margin-bottom: .2rem; }
.tc-title a { color: var(--emerald-800); text-decoration: none; }
.tc-title a:hover { color: var(--gold-700); }
.tc-airline { height: 24px; flex-shrink: 0; background: #fff; border-radius: 4px; }
.tc-airline-name { font-size: .78rem; color: var(--ink-soft); white-space: nowrap; }

/* Signature: rota şeridi */
.tc-route {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .6rem;
    background: var(--alt-bg);
    border: 1px solid var(--hairline);
    border-radius: 12px;
    padding: .85rem 1rem;
}
.tc-stop { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.tc-route .tc-stop:last-child { justify-content: flex-end; text-align: right; }
.tc-route .tc-stop:last-child .tc-stop-info { align-items: flex-end; }
.tc-stop img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.tc-stop-info { display: flex; flex-direction: column; min-width: 0; }
.tc-city { font-family: var(--font-head); font-size: .95rem; color: var(--emerald-800); font-weight: 600; }
.tc-city b { color: var(--gold-700); font-weight: 700; }
.tc-hotel { font-size: .8rem; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.tc-stars { color: var(--gold-500); font-size: .72rem; letter-spacing: 1px; }
.tc-connector {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    background: #fff; border: 1px solid var(--hairline);
    box-shadow: var(--shadow-sm); color: var(--gold-600);
}
.tc-connector svg { transform: rotate(90deg); }

.tc-dates { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.tc-leg { display: flex; flex-direction: column; }
.tc-leg-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; color: var(--gold-700); font-weight: 700; }
.tc-leg-date { font-weight: 700; color: var(--emerald-800); font-size: .95rem; }
.tc-leg-route { font-size: .76rem; color: var(--ink-soft); }

.tc-foot {
    margin-top: auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
    padding-top: 1rem; border-top: 1px solid var(--hairline);
}
.tc-price { display: flex; flex-direction: column; }
.tc-amount { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--emerald-700); line-height: 1.1; }
.tc-price-note { font-size: .76rem; color: var(--ink-soft); }
.tc-actions { display: flex; gap: .6rem; }

@media (max-width: 780px) {
    .tour-card { grid-template-columns: 1fr; }
    .tc-media { min-height: 190px; }
    .tc-route { grid-template-columns: 1fr; gap: .8rem; }
    .tc-route .tc-stop:last-child { justify-content: flex-start; text-align: left; }
    .tc-route .tc-stop:last-child .tc-stop-info { align-items: flex-start; }
    .tc-connector { justify-self: center; }
    .planner-row { flex-direction: column; align-items: flex-start; gap: .55rem; }
    .planner-head { flex-direction: column; }
}

/* =================================================================
   ✦✦ TUR DETAY — künye kapağı + yapışkan rezervasyon + yol çizelgesi
   Signature: kutsal yolculuğun dikey "yolculuk programı" zaman çizelgesi
   ================================================================= */

/* ---- Kapak / künye ---- */
.tour-hero {
    position: relative;
    background: var(--emerald-800);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}
.tour-hero-inner { position: relative; z-index: 1; }
.th-breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; margin-bottom: 1rem; color: #cfe0d7; }
.th-breadcrumb a { color: #cfe0d7; text-decoration: none; }
.th-breadcrumb a:hover { color: var(--gold-400); }
.th-breadcrumb span { opacity: .5; }
.th-badge {
    display: inline-block; background: var(--gold-500); color: var(--emerald-900);
    font-size: .72rem; font-weight: 700; letter-spacing: .04em;
    padding: .3rem .8rem; border-radius: 999px; margin-bottom: .9rem;
}
.tour-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.7rem); max-width: 20ch; margin-bottom: 1.3rem; }
.th-facts { display: flex; flex-wrap: wrap; gap: .6rem; }
.th-fact {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.12);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.16);
    padding: .5rem .9rem; border-radius: 999px;
    font-size: .86rem; font-weight: 600; color: #fff;
}
.th-fact svg { color: var(--gold-400); flex-shrink: 0; }

/* ---- İki kolon yerleşim ---- */
.tour-detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 2.5rem; align-items: start; }
.tdl-main { min-width: 0; }

.detail-block { margin-bottom: 2.5rem; }
.detail-block:last-child { margin-bottom: 0; }
.detail-head { font-size: clamp(1.3rem, 2.2vw, 1.65rem); margin-bottom: 1.3rem; }
.detail-kicker {
    display: block; font-family: var(--font-body);
    font-size: .74rem; text-transform: uppercase; letter-spacing: .08em;
    color: var(--gold-700); font-weight: 700; margin-bottom: .25rem;
}
.detail-lead { font-size: 1.05rem; color: var(--ink); line-height: 1.75; }

/* ---- Signature: yolculuk zaman çizelgesi ---- */
.journey-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.journey-timeline::before {
    content: ''; position: absolute; left: 19px; top: 8px; bottom: 8px;
    width: 2px; background: repeating-linear-gradient(var(--gold-400) 0 5px, transparent 5px 11px);
}
.jt-item { position: relative; display: flex; gap: 1.1rem; padding: 0 0 1.4rem; }
.jt-item:last-child { padding-bottom: 0; }
.jt-marker {
    position: relative; z-index: 1; flex-shrink: 0;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--emerald-800); color: var(--gold-400);
    box-shadow: 0 0 0 4px var(--page-bg), 0 4px 12px rgba(6,42,31,.18);
}
.jt-body { display: flex; flex-direction: column; padding-top: .15rem; }
.jt-type { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-700); font-weight: 700; }
.jt-route { font-family: var(--font-head); font-size: 1.1rem; color: var(--emerald-800); font-weight: 600; }
.jt-meta { font-size: .85rem; color: var(--ink-soft); }
.jt-note {
    margin: 1rem 0 0; font-size: .85rem; color: var(--emerald-700);
    background: var(--alt-bg); border: 1px solid var(--hairline);
    border-radius: 10px; padding: .7rem 1rem;
}

/* ---- Konaklama kartları ---- */
.stay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stay-card {
    border: 1px solid var(--hairline); border-radius: 16px; overflow: hidden; background: #fff;
    box-shadow: 0 6px 20px rgba(6,42,31,.05);
    transition: transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.stay-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stay-media { position: relative; height: 170px; overflow: hidden; background: var(--emerald-800); }
.stay-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-soft); }
.stay-card:hover .stay-media img { transform: scale(1.05); }
.stay-city {
    position: absolute; left: .8rem; bottom: .8rem;
    background: rgba(6,41,30,.82); color: #fff;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    font-size: .78rem; font-weight: 700; padding: .3rem .75rem; border-radius: 999px;
}
.stay-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .35rem; }
.stay-body h3 { margin: 0; font-size: 1.1rem; }
.stay-stars { color: var(--gold-500); font-size: .9rem; letter-spacing: 1px; }
.stay-distance { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--ink-soft); }
.stay-distance svg { color: var(--gold-600); }

/* ---- Hizmetler: kompakt dahil listesi + dahil değil şeridi ----
   CSS kolonları: maddeler doğal akar, grid satır hizasından doğan boşluk olmaz */
.incl-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 2rem; }
.incl-list li {
    display: flex; gap: .5rem; align-items: flex-start;
    font-size: .82rem; line-height: 1.45; margin: 0 0 .5rem;
    break-inside: avoid; -webkit-column-break-inside: avoid;
}
.incl-list li > svg { flex-shrink: 0; width: 15px; height: 15px; margin-top: .12rem; color: var(--emerald-600); }
.incl-text { color: var(--ink-soft); }
.incl-text strong { color: var(--emerald-800); font-weight: 700; }
.excl-strip { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem .85rem; margin-top: .9rem; padding-top: .9rem; border-top: 1px dashed var(--hairline); }
.excl-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #a9553f; }
.excl-item { display: inline-flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--ink-soft); }
.excl-item::before { content: '✕'; color: #c0705a; font-weight: 700; font-size: .7rem; }

/* ---- Tur Programı: numaralı gün çizelgesi (minimal) ---- */
.itinerary { list-style: none; margin: 0; padding: 0; position: relative; }
.itinerary::before { content: ''; position: absolute; left: 17px; top: 12px; bottom: 12px; width: 2px; background: var(--hairline); }
.itin-item { position: relative; display: flex; gap: .9rem; padding-bottom: 1rem; }
.itin-item:last-child { padding-bottom: 0; }
.itin-day {
    position: relative; z-index: 1; flex-shrink: 0;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--emerald-800); color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: .95rem; font-weight: 700; line-height: 1;
    box-shadow: 0 0 0 4px var(--page-bg);
}
.itin-day small { font-size: .48rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; opacity: .7; margin-top: 1px; }
.itin-body { padding-top: .35rem; min-width: 0; }
.itin-body h4 { margin: 0 0 .15rem; font-size: .92rem; color: var(--emerald-800); }
.itin-body p { margin: 0; color: var(--ink-soft); font-size: .82rem; line-height: 1.5; }

/* ---- Ücretler: yetişkin oda kartları + çocuk/bebek tablosu ---- */
.fee-group { margin-bottom: 1.75rem; }
.fee-group:last-of-type { margin-bottom: 0; }
.fee-group-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.fee-group-head h4 { margin: 0; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--emerald-800); }
.fee-chip { display: inline-flex; align-items: center; font-size: .74rem; font-weight: 700; color: var(--gold-700); background: var(--alt-bg); border: 1px solid var(--hairline); padding: .3rem .8rem; border-radius: 999px; }
.fee-sub { font-size: .82rem; color: var(--ink-soft); }

.fee-rooms { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 1rem; }
.fee-room {
    position: relative; border: 1px solid var(--hairline); border-radius: 14px;
    padding: 1.15rem 1.2rem; background: #fff; display: flex; flex-direction: column; gap: .15rem;
    transition: border-color .2s ease, box-shadow .25s ease, transform .25s var(--ease-soft);
}
.fee-room:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.fee-room.is-primary { border-color: var(--gold-400); background: linear-gradient(180deg, #fffdf6, #fff); box-shadow: 0 8px 24px rgba(184,144,31,.12); }
.fee-room-tag { position: absolute; top: -10px; left: 1.15rem; background: var(--gold-500); color: var(--emerald-900); font-size: .64rem; font-weight: 700; letter-spacing: .02em; padding: .2rem .6rem; border-radius: 999px; }
.fee-room-name { font-weight: 700; color: var(--emerald-800); font-size: .95rem; }
.fee-room-old { font-size: .85rem; color: var(--ink-soft); text-decoration: line-through; }
.fee-room-price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--emerald-700); line-height: 1.15; }

.fee-child-wrap { border: 1px solid var(--hairline); border-radius: 14px; overflow: hidden; }
.fee-child { width: 100%; border-collapse: collapse; }
.fee-child thead th { text-align: left; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); font-weight: 700; padding: .8rem 1.2rem; background: var(--alt-bg); border-bottom: 1px solid var(--hairline); }
.fee-child thead th:last-child { text-align: right; }
.fee-child td { padding: 1rem 1.2rem; border-bottom: 1px solid var(--hairline); vertical-align: middle; }
.fee-child tbody tr:last-child td { border-bottom: none; }
.fee-child .fc-age { font-weight: 700; color: var(--emerald-800); font-size: .9rem; border-right: 1px solid var(--hairline); white-space: nowrap; width: 1%; background: #fcfbf6; }
.fee-child .fc-type strong { display: block; color: var(--emerald-800); font-size: .95rem; }
.fee-child .fc-type span { font-size: .8rem; color: var(--ink-soft); }
.fee-child .fc-price { text-align: right; white-space: nowrap; }
.fee-child .fc-price s { display: block; font-size: .8rem; color: var(--ink-soft); }
.fee-child .fc-price b { font-family: var(--font-head); font-size: 1.15rem; color: var(--emerald-700); }
.fee-foot-note { margin: 1.1rem 0 0; font-size: .8rem; color: var(--ink-soft); }

/* ---- Rezervasyon kartı: kayıt durumu + iletişim ---- */
.bc-status { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.bc-status strong { color: #a9553f; font-weight: 700; }
.bc-status-dot { width: 9px; height: 9px; border-radius: 50%; background: #d9843f; box-shadow: 0 0 0 3px rgba(217,132,63,.2); flex-shrink: 0; }
.bc-title { margin: 0 0 .5rem; font-size: 1.2rem; }
.bc-text { margin: 0 0 1.25rem; font-size: .88rem; color: var(--ink-soft); line-height: 1.6; }

/* ---- Yan panel kartları ---- */
.tdl-side { display: flex; flex-direction: column; gap: 1.5rem; }
.side-card { background: #fff; border: 1px solid var(--hairline); border-radius: 18px; padding: 1.5rem; box-shadow: 0 6px 20px rgba(6,42,31,.05); }
.side-card-head { font-size: 1.15rem; margin: 0 0 1.2rem; }

/* ---- Rezervasyon kartı ---- */
.booking-card {
    background: #fff; border: 1px solid var(--hairline); border-radius: 18px;
    padding: 1.5rem; box-shadow: 0 16px 40px rgba(6,42,31,.1);
}
.bc-urgency {
    display: inline-flex; align-items: center; gap: .4rem;
    background: #fbefe6; color: #a9553f;
    font-size: .74rem; font-weight: 700;
    padding: .35rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}
.bc-price { padding-bottom: 1.1rem; border-bottom: 1px solid var(--hairline); margin-bottom: 1.1rem; }
.bc-from { display: block; font-size: .78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.bc-amount { display: block; font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: var(--emerald-700); line-height: 1.1; }
.bc-amount-sm { font-size: 1.25rem; }
.bc-price-label { display: block; font-size: .82rem; color: var(--ink-soft); margin-top: .2rem; }
.bc-rooms { list-style: none; margin: 0 0 1.1rem; padding: 0; }
.bc-rooms li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .5rem 0; font-size: .88rem; border-bottom: 1px dashed var(--hairline); }
.bc-rooms li:last-child { border-bottom: none; }
.bc-rooms li span { color: var(--ink-soft); }
.bc-rooms li strong { color: var(--emerald-800); font-weight: 700; white-space: nowrap; }
.bc-rooms li.is-primary strong { color: var(--gold-700); }
.bc-summary { margin: 0 0 1.25rem; }
.bc-summary div { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; border-bottom: 1px dashed var(--hairline); }
.bc-summary div:last-child { border-bottom: none; }
.bc-summary dt { color: var(--ink-soft); font-size: .85rem; }
.bc-summary dd { margin: 0; font-weight: 600; font-size: .85rem; color: var(--emerald-800); text-align: right; }
.bc-cta { display: flex; flex-direction: column; gap: .6rem; }
.bc-trust { display: flex; align-items: center; gap: .5rem; margin: 1.1rem 0 0; font-size: .78rem; color: var(--ink-soft); line-height: 1.4; }
.bc-trust svg { color: var(--emerald-600); flex-shrink: 0; }

@media (max-width: 900px) {
    .tour-detail-layout { grid-template-columns: 1fr; gap: 2rem; }
    .booking-card { position: static; }
}
@media (max-width: 560px) {
    .stay-grid { grid-template-columns: 1fr; }
    .incl-list { columns: 1; }
}

/* =================================================================
   ✦✦ İLETİŞİM SAYFASI — sosyal satır + ziyaret kartı
   ================================================================= */
.contact-info-card .row .icon { color: var(--gold-600); display: flex; margin-top: .1rem; }
.contact-social { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px dashed var(--hairline); }
.contact-social strong { display: block; font-size: .82rem; color: var(--emerald-800); margin-bottom: .6rem; }
.contact-social-links { display: flex; gap: .6rem; }
.contact-social-links a {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--alt-bg); border: 1px solid var(--hairline);
    color: var(--emerald-700);
    display: flex; align-items: center; justify-content: center;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease-soft);
}
.contact-social-links a:hover { background: var(--emerald-800); border-color: var(--emerald-800); color: var(--gold-400); transform: translateY(-3px); }

/* Harita yoksa: girih dokulu ziyaret kartı */
.visit-card {
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; gap: .35rem;
    min-height: 320px; padding: 2.5rem 2rem;
    background: var(--alt-bg);
    border: 1px solid var(--hairline); border-radius: var(--radius);
}
.visit-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--pattern-gold);
    background-size: 72px 72px;
    opacity: .06;
    mask-image: radial-gradient(circle at 50% 40%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
}
.visit-card > * { position: relative; }
.visit-icon {
    width: 62px; height: 62px; border-radius: 50%;
    background: #fff; border: 1px solid var(--hairline);
    color: var(--gold-600);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: .6rem;
}
.visit-card h3 { margin: 0; }
.visit-card p { margin: 0; color: var(--ink-soft); font-size: .92rem; max-width: 380px; }
.visit-card .visit-note { font-size: .84rem; }
.visit-card .btn { margin-top: 1rem; }

/* ============ HAC BİLGİ SAYFASI ============ */
.hac-note {
    max-width: 760px;
    margin: 1.75rem auto 0;
    text-align: center;
    font-size: .92rem;
    color: var(--ink-soft, #5c6b60);
    background: var(--cream-100);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}
.hac-note strong { color: var(--green-800); }

.process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: hac-step;
}
.process-step {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
}
.process-step:last-child { border-bottom: none; }
.process-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-800);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(6,42,31,.2);
}
.process-body h3 { margin: .2rem 0 .35rem; font-size: 1.12rem; }
.process-body p { margin: 0; color: var(--ink-700); font-size: .93rem; }

@media (max-width: 480px) {
    .process-num { width: 38px; height: 38px; font-size: 1.05rem; }
}

/* =================================================================
   Butik Umre sayfası
   ================================================================= */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
/* Yatay dizilimli özellik kartı (ikon solda, metin sağda) */
.feature-card-row {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    text-align: left;
}
.feature-card-row .icon { margin: 0; flex-shrink: 0; }
.feature-card-row h3 { margin: .15rem 0 .4rem; }
.feature-card-row p { margin: 0; }

/* Bölüm başlığı altındaki açıklama */
.section-lead {
    max-width: 640px;
    margin: .85rem auto 0;
    color: var(--ink-soft, #5c6b60);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 760px) {
    .grid-2 { grid-template-columns: 1fr; }
}

/* =================================================================
   ✦✦ ANASAYFA — görsel öncelikli kompakt tur kartı (2+ öne çıkan tur varken)
   Tekli öne çıkan tur hâlâ tam detaylı .tour-card kullanır.
   ================================================================= */
.tour-digest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }

.tour-digest-card {
    position: relative;
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid rgba(6,42,31,.08); border-radius: 18px;
    overflow: hidden; text-decoration: none; color: inherit;
    box-shadow: 0 14px 34px rgba(6,42,31,.10);
    transition: transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.tour-digest-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(6,42,31,.18); }

/* ---- Kapak fotoğrafı bandı ---- */
.tdc-cover {
    position: relative;
    min-height: 190px;
    background-size: cover; background-position: center;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: .9rem 1rem 1rem;
}
.tdc-cover--empty { background: var(--emerald-800); }
.tdc-cover-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: .5; }
.tour-digest-card:hover .tdc-cover { transform: none; }

.tdc-cover-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; }
.tdc-badge {
    display: inline-block; background: var(--gold-500); color: var(--emerald-900);
    font-size: .68rem; font-weight: 700; letter-spacing: .02em;
    padding: .3rem .7rem; border-radius: 999px;
    box-shadow: 0 2px 8px rgba(6,42,31,.25);
}
.tdc-airline-chip {
    margin-left: auto;
    display: inline-flex; align-items: center;
    background: #fff; border-radius: 8px; padding: .3rem .5rem;
    box-shadow: 0 2px 8px rgba(6,42,31,.25);
}
.tdc-airline-chip img { height: 20px; width: auto; display: block; }
.tdc-airline-chip-text { font-size: .72rem; font-weight: 700; color: var(--emerald-800); padding: .35rem .6rem; }

.tdc-cover-bottom { position: relative; }
.tdc-title {
    margin: 0 0 .3rem; color: #fff;
    font-size: 1.25rem; font-weight: 700; line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.tdc-date-line {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .8rem; font-weight: 600; color: #eef3f0;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.tdc-date-line svg { color: var(--gold-400); flex-shrink: 0; }

/* ---- Gövde: otel satırları ---- */
.tdc-body { padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.tdc-stop { display: flex; align-items: center; gap: .7rem; }
.tdc-stop img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.tdc-stop-text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.tdc-stop-city { font-size: .68rem; text-transform: uppercase; letter-spacing: .03em; color: var(--gold-700); font-weight: 700; }
.tdc-stop-hotel { font-size: .86rem; color: var(--ink); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tdc-stop-stars { flex-shrink: 0; font-size: .72rem; color: var(--gold-500); letter-spacing: 1px; align-self: center; }

/* ---- Alt: süre + fiyat + CTA ---- */
.tdc-foot {
    display: flex; align-items: flex-end; justify-content: space-between; gap: .75rem;
    padding: .9rem 1.1rem; border-top: 1px solid var(--hairline);
}
.tdc-duration { display: flex; flex-direction: column; gap: .15rem; font-size: .76rem; color: var(--ink-soft); }
.tdc-duration strong { color: var(--emerald-800); font-size: .88rem; }
.tdc-price { text-align: right; line-height: 1.15; }
.tdc-price s { display: block; font-size: .72rem; color: var(--ink-soft); }
.tdc-price b { font-family: var(--font-head); font-size: 1.25rem; color: var(--emerald-700); }
.tdc-price-label { display: block; font-size: .68rem; color: var(--ink-soft); }
.tdc-price-note { font-size: .82rem; color: var(--gold-700); }

.tdc-cta {
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .85rem; background: var(--emerald-800); color: #fff;
    font-size: .84rem; font-weight: 700; letter-spacing: .01em;
    transition: background-color .25s ease, gap .25s ease;
}
.tour-digest-card:hover .tdc-cta { background: var(--gold-600); color: var(--emerald-900); gap: .55rem; }
