/* ==========================================================================
   Otel Sitesi - Ana stil dosyası (E-4 tasarım dili)
   Renkler :root içinde, vurgu ve koyu renk yönetim panelinden değiştirilebilir.
   ========================================================================== */

/* Yazı tipleri (yerel, Google Fonts'a bağlanmaz) */
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 400 700; font-display: swap;
    src: url(../fonts/sourcesans3-latin-ext.woff2) format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 400 700; font-display: swap;
    src: url(../fonts/sourcesans3-latin.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 600 700; font-display: swap;
    src: url(../fonts/playfair-latin-ext.woff2) format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 600 700; font-display: swap;
    src: url(../fonts/playfair-latin.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

:root {
    --accent: #c8783a;
    --dark: #16313b;
    --text: #2a3540;
    --muted: #6b7680;
    --line: #e4e1dc;
    --bg-soft: #f6f4f0;
    --white: #fff;
    --success: #2e7d4f;
    --danger: #b3261e;
    --warn: #b7791f;
    --radius: 6px;
    --shadow: 0 2px 14px rgba(20, 30, 40, .07);
    --font: "Source Sans 3", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-head: "Playfair Display", Georgia, serif;
    --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.25; color: var(--dark); }
h1, h2 { font-family: var(--font-head); font-weight: 700; font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 820px; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.text-right { text-align: right; }

.icon { width: 18px; height: 18px; flex-shrink: 0; vertical-align: -3px; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    transition: background .2s, color .2s, border-color .2s;
    white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--dark); color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--accent); color: #fff; }
.btn-outline { border-color: var(--line); color: var(--dark); background: #fff; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline-light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--dark); }
.btn-whatsapp { background: #25a35a; color: #fff; }
.btn-whatsapp:hover { background: #1c8447; color: #fff; }
.btn-danger { background: #fff; border-color: #f0c5c1; color: var(--danger); }
.btn-danger:hover { background: var(--danger); border-color: var(--danger); color: #fff; }
.btn[disabled], .btn.is-disabled { opacity: .55; pointer-events: none; }

/* ---------- Üst bar ve menü ---------- */
.topbar { background: var(--dark); color: rgba(255,255,255,.75); font-size: 14px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.topbar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-contact a, .topbar-contact span { display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar .icon { width: 15px; height: 15px; color: var(--accent); }
.topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: #fff; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social .icon { color: rgba(255,255,255,.75); }
.topbar-social a:hover .icon { color: #fff; }

.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 46px; height: 46px; flex-shrink: 0; }
.logo-text { font-family: var(--font); font-size: 24px; font-weight: 700; color: var(--dark); line-height: 1.05; letter-spacing: -.2px; }
.logo-text small { display: block; margin-top: 2px; font-size: 12px; font-weight: 400; color: var(--muted); letter-spacing: .3px; }
.logo:hover .logo-text { color: var(--dark); }
.logo-light .logo-text { color: #fff; }
.logo-img { max-height: 56px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 24px; }
.main-nav ul a { font-weight: 600; font-size: 15px; padding: 28px 0; position: relative; }
.main-nav ul a.active, .main-nav ul a:hover { color: var(--accent); }
.main-nav ul a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 18px; height: 2px; background: var(--accent); }

.nav-toggle { display: none; background: none; border: 0; padding: 6px; color: var(--dark); }
.nav-toggle .icon { width: 28px; height: 28px; }

/* ---------- Uyarılar ---------- */
.alert { padding: 12px 16px; border-radius: var(--radius); margin: 16px 0; font-size: 15px; }
.alert-success { background: #e8f4ec; border: 1px solid #b9dcc6; color: #1e5c38; }
.alert-error { background: #fdecea; border: 1px solid #f3c1bb; color: #8a1c14; }
.alert-info { background: #eaf3f8; border: 1px solid #bfd9e6; color: #1f5670; }
.alert-warn { background: #fff6e0; border: 1px solid #f1d98b; color: #6b4d0a; }
.alert .icon { margin-right: 4px; }

/* ---------- Hero ve rezervasyon barı ---------- */
.hero { position: relative; min-height: 660px; display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,24,30,.78) 0%, rgba(10,24,30,.45) 60%, rgba(10,24,30,.22) 100%); }
.hero-content { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 70px; }
.hero .eyebrow { color: #f0c9a4; }
.hero h1 { color: #fff; font-size: 54px; max-width: 700px; margin-bottom: 16px; }
.hero p { font-size: 19px; max-width: 600px; color: rgba(255,255,255,.88); margin-bottom: 36px; }
.hero-stars { display: flex; gap: 3px; margin-bottom: 14px; color: #e8b64a; }
.hero-stars .icon { width: 18px; height: 18px; }

.booking-bar {
    background: #fff; border-radius: var(--radius); box-shadow: 0 10px 40px rgba(0,0,0,.22); color: var(--text);
    max-width: 1060px; padding: 22px; display: grid; grid-template-columns: 1.2fr 1.2fr .8fr .8fr auto; gap: 14px; align-items: end;
}
.booking-bar .btn { height: 46px; padding: 0 28px; }
.booking-bar-note { grid-column: 1 / -1; margin: -4px 0 0; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.booking-bar-note .icon { color: var(--accent); width: 15px; height: 15px; }
.nights-badge { display: inline-block; margin-left: 6px; padding: 1px 8px; background: var(--bg-soft); border-radius: 20px; color: var(--accent); font-size: 12px; letter-spacing: 0; text-transform: none; font-weight: 700; vertical-align: 1px; }
.nights-badge:empty { display: none; }

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 22px 18px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item .icon { width: 32px; height: 32px; color: var(--accent); }
.trust-item strong { display: block; color: var(--dark); line-height: 1.25; }
.trust-item span { font-size: 14px; color: var(--muted); line-height: 1.3; display: block; }

/* ---------- Form alanları ---------- */
.field { display: block; }
.field > span { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .4px; }
.field input, .field select, .field textarea {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid #d5d9dd;
    border-radius: var(--radius);
    background: #fff;
    font: inherit;
    font-size: 15px;
    color: var(--text);
}
.field textarea { height: auto; padding: 10px 12px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,120,58,.15); }
.field small { display: block; margin-top: 4px; font-size: 13px; color: var(--muted); }
.field-row { display: flex; gap: 8px; flex-wrap: wrap; }
.field-row input { min-width: 0; flex: 1 1 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.form-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.field-full { grid-column: 1 / -1; }
.message-form.compact .form-grid { grid-template-columns: 1fr; gap: 12px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 16px; color: var(--muted); }
.check input { margin-top: 4px; accent-color: var(--accent); }
.check a { color: var(--accent); text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Seçim kartları (pansiyon, ödeme yöntemi, ek hizmet) */
.choice-list { display: grid; gap: 10px; margin-bottom: 6px; }
.choice { display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; transition: border-color .2s, background .2s; background: #fff; }
.choice:hover { border-color: #d3b9a3; }
.choice input { margin-top: 5px; accent-color: var(--accent); width: 17px; height: 17px; flex-shrink: 0; }
.choice:has(input:checked) { border-color: var(--accent); background: #fdf7f1; box-shadow: 0 0 0 1px var(--accent) inset; }
.choice-body { flex: 1; min-width: 0; }
.choice-body strong { display: block; color: var(--dark); line-height: 1.3; }
.choice-body span { font-size: 14px; color: var(--muted); display: block; }
.choice-price { text-align: right; font-weight: 700; color: var(--dark); white-space: nowrap; }
.choice-price small { display: block; font-weight: 400; color: var(--muted); font-size: 12px; }

/* ---------- Bölümler ---------- */
.section { padding: 80px 0; }
.section-tight { padding: 40px 0 70px; }
.section-muted { background: var(--bg-soft); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; gap: 20px; }
.section-head.center { display: block; text-align: center; }
.section-head.center p { max-width: 640px; margin: 10px auto 0; color: var(--muted); }
.section-head h2 { font-size: 36px; margin: 0; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.link-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--accent); }
.link-more:hover { color: var(--dark); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Kartlar ---------- */
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.hover-lift { transition: transform .25s, box-shadow .25s; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(20,30,40,.12); }
.card-media { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; background: #e6eaee; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hover-lift:hover .card-media img { transform: scale(1.05); }
.badge { display: inline-block; padding: 4px 10px; border-radius: 3px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #fff; background: var(--accent); }
.card-media .badge { position: absolute; top: 14px; left: 14px; }
.card-media .badge-featured { left: auto; right: 14px; background: var(--dark); }
.badge-light { background: var(--bg-soft); color: var(--dark); }
.badge-ok { background: var(--success); }
.badge-low { background: var(--warn); }
.badge-soldout { background: var(--danger); }
.card-body { padding: 20px 20px 14px; flex: 1; }
.card-title { font-family: var(--font); font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.card-text { margin: 0; color: var(--muted); font-size: 15px; }

/* Oda kartı (anasayfa, benzer odalar) */
.room-meta { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px 16px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.room-meta li { display: flex; align-items: center; gap: 6px; }
.room-meta .icon { width: 16px; height: 16px; color: var(--dark); }
.room-card .card-body { padding-bottom: 16px; }
.room-card .room-meta { margin-top: 12px; }
.room-card-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 20px 18px; border-top: 1px solid var(--line); }
.price-from small { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; line-height: 1.2; }
.price-from strong { font-size: 24px; color: var(--accent); line-height: 1.15; font-weight: 700; }
.price-from em { font-style: normal; font-size: 13px; color: var(--muted); }

/* Oda listesi satırı (oda arama sonuçları) */
.room-row { display: grid; grid-template-columns: 340px 1fr 230px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 22px; transition: box-shadow .25s; }
.room-row:hover { box-shadow: 0 10px 28px rgba(20,30,40,.1); }
.room-row-media { position: relative; display: block; overflow: hidden; background: #e6eaee; min-height: 240px; }
.room-row-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.room-row:hover .room-row-media img { transform: scale(1.05); }
.room-row-media .badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.room-row-body { padding: 22px 24px; display: flex; flex-direction: column; }
.room-row-body h3 { font-family: var(--font); font-size: 22px; margin-bottom: 6px; }
.room-row-body p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.room-row-body .room-meta { margin-bottom: 14px; }
.chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.chip { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 20px; background: var(--bg-soft); font-size: 13px; color: var(--text); }
.chip .icon { width: 13px; height: 13px; color: var(--success); }
.chip-offer { background: #fdf0e3; color: #9a5520; font-weight: 600; }
.room-row-price { border-left: 1px solid var(--line); padding: 22px 22px; display: flex; flex-direction: column; justify-content: center; gap: 4px; text-align: right; background: #fcfbf9; }
.room-row-price .label { font-size: 13px; color: var(--muted); }
.room-row-price .amount { font-size: 28px; font-weight: 700; color: var(--accent); line-height: 1.1; }
.room-row-price .old { text-decoration: line-through; color: var(--muted); font-size: 15px; }
.room-row-price .sub { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.room-row-price .btn + .btn { margin-top: 8px; }
.room-row.is-unavailable .room-row-media img { filter: grayscale(.9) brightness(.85); }
.room-row.is-unavailable .amount { color: var(--muted); }
.avail-note { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; justify-content: flex-end; }
.avail-note.ok { color: var(--success); }
.avail-note.low { color: var(--warn); }
.avail-note.no { color: var(--danger); }

/* ---------- Kategoriler / olanaklar ---------- */
.facility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.facility-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; transition: border-color .2s, box-shadow .2s; }
.facility-item:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.facility-icon { display: grid; place-items: center; width: 58px; height: 58px; background: var(--bg-soft); border-radius: 50%; margin-bottom: 16px; color: var(--accent); }
.facility-icon .icon { width: 28px; height: 28px; }
.facility-item h3 { font-family: var(--font); font-size: 18px; margin-bottom: 6px; }
.facility-item p { margin: 0; color: var(--muted); font-size: 15px; }

.facility-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 72px; }
.facility-row:last-child { margin-bottom: 0; }
.facility-row:nth-child(even) .facility-media { order: 2; }
.facility-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: #e6eaee; }
.facility-media img { width: 100%; height: 100%; object-fit: cover; }
.facility-text h2 { font-size: 32px; }
.facility-text p { color: #3f4a54; }
.facility-text .facility-icon { margin-bottom: 14px; }

/* ---------- Hakkımızda bölümü ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.about-badge { position: absolute; right: -20px; bottom: -20px; background: var(--accent); color: #fff; padding: 20px 26px; border-radius: var(--radius); display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); }
.about-badge strong { font-size: 46px; font-weight: 700; line-height: 1; }
.about-badge span { font-size: 14px; line-height: 1.3; }
.about-text h2 { font-size: 36px; }
.why-list { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 18px; }
.why-list li { display: flex; gap: 14px; }
.why-list .icon { width: 42px; height: 42px; padding: 10px; background: var(--bg-soft); border-radius: 50%; color: var(--accent); }
.why-list strong { display: block; color: var(--dark); }
.why-list span { font-size: 15px; color: var(--muted); }

.stats-band { background: var(--dark); color: #fff; padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 20px; }
.stats-grid strong { display: block; font-size: 44px; font-weight: 700; color: var(--accent); line-height: 1.1; }
.stats-grid span { color: rgba(255,255,255,.75); }

/* ---------- Kampanyalar ---------- */
.offer-card { display: flex; flex-direction: column; }
.offer-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #e6eaee; }
.offer-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.offer-card:hover .offer-media img { transform: scale(1.05); }
.offer-percent { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--accent); color: #fff; padding: 6px 14px; border-radius: 3px; font-weight: 700; font-size: 20px; line-height: 1.2; }
.offer-percent small { font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-left: 4px; }
.offer-card .card-body { flex: 1; }
.offer-terms { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 4px; font-size: 14px; color: var(--muted); }
.offer-terms li { display: flex; gap: 8px; align-items: center; }
.offer-terms .icon { width: 15px; height: 15px; color: var(--accent); }
.offer-foot { padding: 14px 20px 20px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.code-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border: 1px dashed var(--accent); border-radius: 4px; font-weight: 700; letter-spacing: 1px; color: var(--accent); background: #fdf7f1; font-size: 14px; }
.code-chip .icon { width: 14px; height: 14px; }
button.code-chip { cursor: pointer; font-family: inherit; }
button.code-chip.copied { background: var(--success); border-color: var(--success); color: #fff; }

/* ---------- Galeri ---------- */
.chip-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.chip-filter a { padding: 8px 18px; border: 1px solid var(--line); border-radius: 30px; font-weight: 600; font-size: 14px; background: #fff; }
.chip-filter a:hover { border-color: var(--accent); }
.chip-filter a.active { background: var(--dark); border-color: var(--dark); color: #fff; }
.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-item { position: relative; display: block; break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; background: #e6eaee; cursor: zoom-in; }
.gallery-item img { width: 100%; height: auto; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 12px; color: #fff; font-size: 14px; background: linear-gradient(transparent, rgba(0,0,0,.65)); opacity: 0; transition: opacity .3s; }
.gallery-item:hover figcaption { opacity: 1; }
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.gallery-strip .gallery-item { margin: 0; aspect-ratio: 1; }
.gallery-strip .gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Müşteri yorumları ---------- */
.testimonial { position: relative; margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px 26px; display: flex; flex-direction: column; }
.testimonial .quote-mark { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; color: var(--bg-soft); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars .icon { width: 17px; height: 17px; color: var(--line); }
.stars .icon.on { color: #e0a82e; }
.testimonial blockquote { margin: 0 0 20px; color: #3f4a54; font-size: 16px; flex: 1; }
.testimonial figcaption strong { display: block; color: var(--dark); }
.testimonial figcaption span { font-size: 14px; color: var(--muted); }

/* ---------- Çerez bildirimi ---------- */
.cookie-notice { position: fixed; left: 20px; bottom: 20px; max-width: 420px; background: var(--dark); color: rgba(255,255,255,.85); padding: 18px 20px; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,.25); z-index: 70; font-size: 14px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 0; }
.cookie-notice a { color: #fff; text-decoration: underline; }

/* ---------- Demo modu ---------- */
.demo-bar { background: #fff3cd; color: #664d03; border-bottom: 1px solid #f1d98b; text-align: center; font-size: 14px; padding: 8px 16px; line-height: 1.45; }
.demo-bar a { color: #664d03; font-weight: 700; text-decoration: underline; margin-left: 6px; white-space: nowrap; }

.is-demo .card-media, .is-demo .gallery-main, .is-demo .about-media, .is-demo .offer-media,
.is-demo .facility-media, .is-demo .gallery-item, .is-demo .room-row-media, .is-demo .summary-thumb { position: relative; }
.is-demo .card-media::after,
.is-demo .gallery-main::after,
.is-demo .about-media::after,
.is-demo .offer-media::after,
.is-demo .facility-media::after,
.is-demo .gallery-item::after,
.is-demo .room-row-media::after,
.is-demo .lightbox::after,
.is-demo .hero::before {
    content: "DEMO AMAÇLIDIR\A Görseller temsilidir";
    white-space: pre;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-14deg);
    padding: 6px 16px;
    background: rgba(15, 20, 25, .5);
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.35;
    text-align: center;
    pointer-events: none;
    z-index: 3;
}
.is-demo .gallery-main::after,
.is-demo .lightbox::after { font-size: 20px; padding: 10px 26px; letter-spacing: 4px; }
.is-demo .gallery-strip .gallery-item::after { font-size: 10px; padding: 4px 8px; letter-spacing: 1px; }
.is-demo .hero::before { content: "DEMO AMAÇLIDIR · Görseller temsilidir"; white-space: nowrap; left: auto; top: auto; right: 16px; bottom: 10px; transform: none; font-size: 11px; padding: 4px 10px; letter-spacing: 1px; }
.is-demo .lightbox::after { position: fixed; background: rgba(15, 20, 25, .35); }

/* ---------- CTA ---------- */
.cta { background: var(--accent); color: #fff; padding: 56px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta h2 { color: #fff; font-size: 30px; margin-bottom: 6px; }
.cta p { margin: 0; color: rgba(255,255,255,.9); }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cta .btn-accent { background: var(--dark); }
.cta .btn-accent:hover { background: #fff; color: var(--dark); }

/* ---------- Sayfa başlığı ---------- */
.page-header { background: var(--bg-soft); padding: 44px 0 40px; border-bottom: 1px solid var(--line); }
.page-header h1 { font-size: 38px; margin: 0; }
.page-header p { margin: 10px 0 0; color: var(--muted); max-width: 640px; }
.page-header-sm { padding: 18px 0; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.page-header-sm .breadcrumb { margin: 0; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; opacity: .6; }

/* ---------- Oda arama sayfası ---------- */
.search-summary { background: var(--dark); color: #fff; padding: 22px 0; }
.search-summary .booking-bar { box-shadow: none; max-width: none; }
.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; gap: 12px; flex-wrap: wrap; }
.results-bar p { margin: 0; }
.sort-form select { height: 40px; border: 1px solid #d5d9dd; border-radius: var(--radius); padding: 0 10px; font: inherit; font-size: 14px; background: #fff; }
.empty-state { text-align: center; padding: 60px 20px; border: 1px dashed var(--line); border-radius: var(--radius); }
.empty-state .icon { width: 48px; height: 48px; color: var(--line); margin-bottom: 12px; }

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 44px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 42px; height: 42px; padding: 0 12px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); font-weight: 600; font-size: 15px; }
.pagination a:hover { border-color: var(--accent); }
.pagination .current { background: var(--dark); border-color: var(--dark); color: #fff; }
.pagination .dots { border: 0; }

/* ---------- Oda detay ---------- */
.detail-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 26px; }
.detail-head h1 { font-size: 34px; margin: 10px 0 6px; }
.detail-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.detail-sub { color: var(--muted); margin: 0; display: flex; align-items: center; gap: 6px; }
.detail-price { text-align: right; flex-shrink: 0; }
.detail-price small { display: block; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.detail-price strong { display: block; font-size: 34px; color: var(--accent); line-height: 1.1; }
.detail-price span { font-size: 14px; color: var(--muted); }

.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.detail-side { position: sticky; top: 100px; display: grid; gap: 20px; }

.gallery { margin-bottom: 20px; }
.gallery-main { position: relative; aspect-ratio: 16 / 10; background: #e6eaee; border-radius: var(--radius); overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: var(--dark); display: grid; place-items: center; z-index: 4; }
.gallery-nav:hover { background: #fff; }
.gallery-nav.prev { left: 14px; }
.gallery-nav.next { right: 14px; }
.gallery-count { position: absolute; right: 14px; bottom: 14px; z-index: 4; background: rgba(0,0,0,.6); color: #fff; font-size: 13px; padding: 3px 10px; border-radius: 20px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 8px; margin-top: 8px; }
.gallery-thumbs button { padding: 0; border: 2px solid transparent; border-radius: 4px; overflow: hidden; aspect-ratio: 3 / 2; background: none; opacity: .7; }
.gallery-thumbs button.active, .gallery-thumbs button:hover { border-color: var(--accent); opacity: 1; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.lightbox { position: fixed; inset: 0; background: rgba(10,14,18,.94); z-index: 200; display: flex; align-items: center; justify-content: center; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox button { position: absolute; background: none; border: 0; color: #fff; padding: 12px; }
.lightbox .icon { width: 32px; height: 32px; }
.lightbox .lb-close { top: 12px; right: 12px; }
.lightbox .lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-caption { position: absolute; left: 0; right: 0; bottom: 18px; text-align: center; color: rgba(255,255,255,.85); font-size: 15px; }

.quick-facts { list-style: none; margin: 0 0 20px; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); border: 1px solid var(--line); border-radius: var(--radius); }
.quick-facts li { padding: 16px; display: grid; justify-items: center; text-align: center; border-right: 1px solid var(--line); }
.quick-facts li:last-child { border-right: 0; }
.quick-facts .icon { width: 26px; height: 26px; color: var(--accent); margin-bottom: 6px; }
.quick-facts span { font-size: 13px; color: var(--muted); }
.quick-facts strong { color: var(--dark); line-height: 1.3; }

.box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 20px; }
.detail-side .box { margin: 0; }
.box-title { font-family: var(--font); font-size: 20px; font-weight: 700; padding-bottom: 12px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.text-content p { color: #3f4a54; }
.text-content h3 { margin-top: 1.5em; font-size: 19px; }

.feature-group { font-family: var(--font); font-size: 15px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin: 18px 0 10px; }
.feature-group:first-of-type { margin-top: 0; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 16px; font-size: 15px; }
.feature-list li { display: flex; align-items: center; gap: 8px; }
.feature-list .icon { width: 16px; height: 16px; color: var(--success); }

.detail-table { display: grid; grid-template-columns: 1fr 1fr; margin: 0; column-gap: 32px; }
.detail-table div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.detail-table dt { color: var(--muted); }
.detail-table dd { margin: 0; font-weight: 600; color: var(--dark); text-align: right; }

.map-wrap { aspect-ratio: 16 / 8; border-radius: var(--radius); overflow: hidden; margin-bottom: 8px; background: #e6eaee; }
.map-wrap iframe, .map-full iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-full { height: 420px; }

/* Rezervasyon kutusu (oda detay yan panel) */
.booking-widget { border-top: 4px solid var(--accent); }
.booking-widget .form-grid { gap: 12px; margin-bottom: 12px; }
.widget-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.widget-price strong { font-size: 30px; color: var(--accent); line-height: 1.1; }
.widget-price span { color: var(--muted); font-size: 14px; }
.quote-lines { list-style: none; margin: 16px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line); display: grid; gap: 6px; font-size: 15px; }
.quote-lines li { display: flex; justify-content: space-between; gap: 10px; }
.quote-lines .neg { color: var(--success); }
.quote-total { display: flex; justify-content: space-between; align-items: baseline; margin: 12px 0 16px; padding-top: 12px; border-top: 2px solid var(--dark); }
.quote-total span { font-weight: 600; color: var(--dark); }
.quote-total strong { font-size: 28px; color: var(--accent); }
.side-perks { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; font-size: 14px; color: var(--muted); }
.side-perks li { display: flex; gap: 8px; align-items: flex-start; }
.side-perks .icon { width: 16px; height: 16px; color: var(--success); margin-top: 3px; }
.share-box { display: flex; align-items: center; gap: 8px; padding: 16px 20px; }
.share-box > span { font-weight: 600; margin-right: auto; }
.share-box a, .share-box button { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--bg-soft); border: 0; color: var(--dark); }
.share-box a:hover, .share-box button:hover { background: var(--accent); color: #fff; }

/* ---------- Rezervasyon akışı ---------- */
.stepper { display: flex; gap: 0; list-style: none; padding: 0; margin: 0 0 34px; counter-reset: step; }
.stepper li { flex: 1; display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--muted); position: relative; counter-increment: step; }
.stepper li::before { content: counter(step); display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--line); font-size: 14px; background: #fff; flex-shrink: 0; }
.stepper li::after { content: ""; flex: 1; height: 2px; background: var(--line); margin: 0 14px; }
.stepper li:last-child { flex: 0 0 auto; }
.stepper li:last-child::after { display: none; }
.stepper li.done { color: var(--dark); }
.stepper li.done::before { content: "✓"; background: var(--success); border-color: var(--success); color: #fff; }
.stepper li.done::after { background: var(--success); }
.stepper li.current { color: var(--dark); }
.stepper li.current::before { background: var(--accent); border-color: var(--accent); color: #fff; }

.res-layout { display: grid; grid-template-columns: 1fr 390px; gap: 32px; align-items: start; }
.res-main .box { margin-bottom: 22px; }
.summary-card { position: sticky; top: 100px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.summary-thumb { position: relative; aspect-ratio: 16 / 9; background: #e6eaee; overflow: hidden; }
.summary-thumb img { width: 100%; height: 100%; object-fit: cover; }
.summary-body { padding: 22px; }
.summary-body h3 { font-family: var(--font); font-size: 20px; margin-bottom: 4px; }
.stay-dates { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; margin: 16px 0; padding: 14px; background: var(--bg-soft); border-radius: var(--radius); text-align: center; }
.stay-dates small { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); }
.stay-dates strong { display: block; color: var(--dark); line-height: 1.3; }
.stay-dates .mid { font-size: 13px; color: var(--accent); font-weight: 700; }
.stay-dates .mid .icon { display: block; margin: 0 auto 2px; }
.sum-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15px; }
.sum-lines li { display: flex; justify-content: space-between; gap: 12px; }
.sum-lines li span:first-child { color: var(--muted); }
.sum-lines .neg { color: var(--success); }
.sum-lines .hidden { display: none; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; padding-top: 14px; border-top: 2px solid var(--dark); }
.sum-total span { font-weight: 700; color: var(--dark); }
.sum-total strong { font-size: 30px; color: var(--accent); line-height: 1.1; }
.summary-note { margin: 14px 0 0; font-size: 13px; color: var(--muted); display: flex; gap: 8px; }
.summary-note .icon { width: 16px; height: 16px; color: var(--success); margin-top: 3px; }
.promo-row { display: flex; gap: 8px; align-items: flex-end; }
.promo-row .field { flex: 1; }
.promo-row .btn { height: 46px; }
.promo-msg { margin: 8px 0 0; font-size: 14px; }
.promo-msg.ok { color: var(--success); }
.promo-msg.err { color: var(--danger); }

.confirm-head { text-align: center; padding: 10px 0 30px; }
.confirm-icon { display: inline-grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: #e8f4ec; color: var(--success); margin-bottom: 16px; }
.confirm-icon .icon { width: 44px; height: 44px; }
.confirm-icon.pending { background: #fff6e0; color: var(--warn); }
.confirm-head h1 { font-size: 34px; margin-bottom: 8px; }
.confirm-code { display: inline-block; margin: 14px 0 6px; padding: 12px 30px; border: 2px dashed var(--accent); border-radius: var(--radius); background: #fdf7f1; }
.confirm-code small { display: block; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.confirm-code strong { font-size: 34px; letter-spacing: 3px; color: var(--accent); font-family: var(--font); line-height: 1.2; }
.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.info-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.info-table th, .info-table td { padding: 9px 0; border-bottom: 1px dashed var(--line); text-align: left; vertical-align: top; }
.info-table th { color: var(--muted); font-weight: 400; width: 42%; padding-right: 12px; }
.info-table td { font-weight: 600; color: var(--dark); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }
.info-table .total td { font-size: 20px; color: var(--accent); }
.status-pill { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 13px; font-weight: 700; background: #eef1f3; color: #4d5861; }
.status-pill.bekliyor { background: #fff6e0; color: #8a5a00; }
.status-pill.onaylandi { background: #e6f3ea; color: #23693f; }
.status-pill.giris { background: #e3eff5; color: #235d7a; }
.status-pill.cikis { background: #eef0f2; color: #5d6770; }
.status-pill.iptal { background: #fbe7e5; color: #9a2019; }
.next-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; counter-reset: ns; }
.next-steps li { display: flex; gap: 14px; counter-increment: ns; }
.next-steps li::before { content: counter(ns); display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--bg-soft); color: var(--accent); font-weight: 700; flex-shrink: 0; }
.next-steps strong { display: block; color: var(--dark); }
.next-steps span { font-size: 14px; color: var(--muted); }
.bank-box { background: var(--bg-soft); border-radius: var(--radius); padding: 16px 18px; margin-top: 14px; font-size: 15px; }
.bank-box dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; }
.bank-box dt { color: var(--muted); }
.bank-box dd { margin: 0; font-weight: 600; color: var(--dark); word-break: break-all; }
.lookup-box { max-width: 560px; margin: 0 auto; }
.actions-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

/* ---------- Hizmetler (hakkımızda) ---------- */
.service-item { padding: 32px 28px; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .2s; }
.service-item:hover { box-shadow: var(--shadow); }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; background: var(--bg-soft); border-radius: 50%; margin-bottom: 18px; }
.service-icon .icon { width: 28px; height: 28px; color: var(--accent); }
.service-item h3 { font-family: var(--font); font-size: 19px; }
.service-item p { color: var(--muted); margin: 0; font-size: 15px; }

/* ---------- İletişim ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 32px; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; }
.contact-list strong { display: block; color: var(--dark); }
.ci-icon { display: grid; place-items: center; width: 48px; height: 48px; flex-shrink: 0; background: var(--bg-soft); border-radius: 50%; color: var(--accent); }
.contact-form-box { margin: 0; padding: 32px; }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 40px 0; }
.error-code { font-size: 110px; font-weight: 700; color: var(--accent); line-height: 1; }
.error-actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-top: 64px; padding-bottom: 48px; }
.site-footer h4 { color: #fff; font-size: 17px; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a:hover { color: #fff; }
.footer-about p { margin: 18px 0; }
.footer-times { margin-top: 18px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); }
.footer-social a:hover { background: var(--accent); }
.footer-contact p { display: flex; gap: 10px; }
.footer-contact .icon { color: var(--accent); margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 14px; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom a { color: #fff; }

.wa-float { position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.25); z-index: 60; }
.wa-float .icon { width: 30px; height: 30px; }
.wa-float:hover { color: #fff; transform: scale(1.06); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
    .main-nav { gap: 16px; }
    .main-nav ul { gap: 16px; }
    .main-nav ul a { font-size: 14px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .facility-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-layout { grid-template-columns: 1fr 340px; }
    .res-layout { grid-template-columns: 1fr 350px; }
    .feature-list { grid-template-columns: repeat(2, 1fr); }
    .room-row { grid-template-columns: 280px 1fr 210px; }
    .booking-bar { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .booking-bar .btn { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
    .nav-toggle { display: block; }
    .main-nav { position: fixed; top: 0; right: 0; bottom: 0; width: 290px; background: #fff; flex-direction: column; align-items: stretch; padding: 80px 24px 24px; box-shadow: -8px 0 30px rgba(0,0,0,.15); transform: translateX(100%); transition: transform .3s; z-index: 100; overflow-y: auto; }
    .main-nav.open { transform: none; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav ul a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
    .main-nav ul a.active::after { display: none; }
    .nav-toggle[aria-expanded="true"] { position: relative; z-index: 101; }

    .hero { min-height: 0; }
    .hero h1 { font-size: 38px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-item { border-bottom: 1px solid var(--line); }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: 0; }
    .trust-item:first-child { padding-left: 18px; }
    .about-split, .facility-row { grid-template-columns: 1fr; gap: 36px; }
    .facility-row:nth-child(even) .facility-media { order: 0; }
    .about-badge { right: 16px; bottom: -16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .detail-layout, .res-layout { grid-template-columns: 1fr; }
    .detail-side, .summary-card { position: static; }
    .res-layout .res-side { order: -1; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .room-row { grid-template-columns: 1fr; }
    .room-row-media { min-height: 0; aspect-ratio: 16 / 9; }
    .room-row-price { border-left: 0; border-top: 1px solid var(--line); text-align: left; }
    .avail-note { justify-content: flex-start; }
    .gallery-grid { columns: 2; }
    .gallery-strip { grid-template-columns: repeat(3, 1fr); }
    .confirm-grid { grid-template-columns: 1fr; }
    .topbar-right .topbar-link span { display: none; }
}

@media (max-width: 640px) {
    body { font-size: 15px; }
    .container { padding: 0 16px; }
    .hide-sm, .topbar-social { display: none; }
    .topbar-contact { gap: 14px; font-size: 13px; }
    .header-inner { min-height: 66px; }
    .logo-text { font-size: 21px; }
    .logo-text small { display: none; }
    .logo-mark { width: 40px; height: 40px; }
    .hero-content { padding-top: 40px; padding-bottom: 40px; }
    .hero h1 { font-size: 30px; }
    .hero p { font-size: 16px; margin-bottom: 24px; }
    .booking-bar { grid-template-columns: 1fr 1fr; padding: 16px; gap: 12px; }
    .booking-bar .field:nth-child(1), .booking-bar .field:nth-child(2) { grid-column: 1 / -1; }
    .section { padding: 56px 0; }
    .section-head { flex-direction: column; align-items: flex-start; }
    .section-head h2, .about-text h2 { font-size: 28px; }
    .grid-2, .grid-3, .grid-4, .facility-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: 0; border-bottom: 1px solid var(--line) !important; padding: 14px 0; }
    .trust-item:last-child { border-bottom: 0 !important; }
    .stats-grid strong { font-size: 34px; }
    .page-header { padding: 28px 0; }
    .page-header h1 { font-size: 28px; }
    .detail-head { flex-direction: column; align-items: flex-start; }
    .detail-head h1 { font-size: 26px; }
    .detail-price { text-align: left; }
    .detail-price strong { font-size: 28px; }
    .detail-table { grid-template-columns: 1fr; }
    .feature-list { grid-template-columns: 1fr 1fr; font-size: 14px; }
    .box { padding: 20px; }
    .quick-facts { grid-template-columns: repeat(2, 1fr); }
    .quick-facts li { border-right: 0; border-bottom: 1px solid var(--line); padding: 12px 6px; }
    .cookie-notice { left: 12px; right: 12px; bottom: 12px; max-width: none; }
    .logo-img { max-height: 44px; }
    .form-grid, .form-grid.cols-3 { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .results-bar { flex-direction: column; align-items: flex-start; }
    .map-full { height: 300px; }
    .stepper li span { display: none; }
    .stepper li.current span { display: inline; }
    .gallery-grid { columns: 1; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .room-row-body, .room-row-price { padding: 18px; }
    .confirm-code strong { font-size: 26px; }
    .choice { flex-wrap: wrap; }
    .choice-price { text-align: left; width: 100%; padding-left: 31px; }
    .promo-row { flex-direction: column; align-items: stretch; }
}

@media print {
    .topbar, .site-header, .site-footer, .wa-float, .detail-side, .gallery-thumbs, .gallery-nav, .section-muted, .no-print, .demo-bar, .cookie-notice, .stepper, .cta { display: none !important; }
    .detail-layout, .confirm-grid, .res-layout { grid-template-columns: 1fr; }
    .box { border: 1px solid #ccc; break-inside: avoid; }
    .section { padding: 20px 0; }
}

/* ---------- Küçük eklemeler ---------- */
.container.narrow-wide { max-width: 1000px; }
.text-center-link { text-align: center; margin: 34px 0 0; }
.offers-note { margin: 26px 0 0; text-align: center; }
.booking-hint { margin: 14px 0 0; }
.policy-details { margin-bottom: 16px; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 16px; background: var(--bg-soft); }
.policy-details summary { cursor: pointer; font-weight: 600; color: var(--dark); }
.policy-details .text-content { margin-top: 12px; font-size: 15px; }
.policy-details .text-content p:last-child { margin-bottom: 0; }
.promo-box .box-title { margin-bottom: 14px; padding-bottom: 10px; }
.res-side { display: grid; gap: 18px; }
.res-side .box { margin: 0; }

@media (max-width: 640px) {
    .topbar-contact .hide-sm { display: none; }
    .topbar-inner { min-height: 38px; }
}
