/* ========================================
   ALUSSO THERMAL HOTEL — STYLES
   ======================================== */

:root {
    --bg: #faf7f2;
    --bg-alt: #f1ece2;
    --ink: #0e1b1a;
    --ink-soft: #4a5957;
    --line: rgba(14, 27, 26, 0.08);
    --gold: #c9a96a;
    --gold-soft: #e3c896;
    --teal-deep: #0a2e2a;
    --teal: #14524a;
    --teal-light: #2c8079;
    --white: #ffffff;
    --shadow-sm: 0 4px 16px rgba(10, 46, 42, 0.06);
    --shadow-md: 0 12px 40px rgba(10, 46, 42, 0.12);
    --shadow-lg: 0 30px 80px rgba(10, 46, 42, 0.18);
    --ease: cubic-bezier(0.65, 0.05, 0.36, 1);
    --container: 1340px;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .35s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; }
input, select { font-family: inherit; outline: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--ink);
}
h1 em, h2 em {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    color: var(--teal);
    font-weight: 300;
}
.section-pre {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}
.section-pre.light { color: var(--gold-soft); }
.section-title {
    font-size: clamp(38px, 4.5vw, 64px);
    margin-bottom: 26px;
}
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }
.section-head {
    text-align: left;
    max-width: 760px;
    margin-bottom: 70px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p {
    color: var(--ink-soft);
    font-size: 17px;
    margin-top: 12px;
}

/* ========== BUTTONS ========== */
.btn-primary, .btn-ghost, .btn-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all .45s var(--ease);
    position: relative;
    overflow: hidden;
}
/*
 * Buton kontrast kuralları (WCAG AA uyumlu):
 *   Altın (#c9a96a) arka plan üzerinde MUTLAKA koyu (ink) metin → kontrast 7+
 *   Koyu (ink/teal-deep) arka plan üzerinde MUTLAKA beyaz metin
 *   Beyaz arka plan üzerinde MUTLAKA koyu metin
 */
.btn-primary {
    background: var(--gold);
    color: var(--ink);              /* altın üzeri koyu → okunur */
    isolation: isolate;             /* ::before z-index:-1 buton dışına taşmasın */
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: translateY(101%);
    transition: transform .45s var(--ease);
    z-index: -1;                    /* tüm text node + element'lerin ARKASINDA */
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--white); }   /* overlay ink → metin beyaz */
.btn-primary:hover::before { transform: translateY(0); }

.btn-primary.dark { background: var(--teal-deep); color: var(--white); }   /* teal + white */
.btn-primary.dark::before { background: var(--gold); }
.btn-primary.dark:hover { color: var(--ink); }   /* overlay gold → metin koyu */

.btn-primary.light { background: var(--white); color: var(--ink); }
.btn-primary.light::before { background: var(--gold); }
.btn-primary.light:hover { color: var(--ink); }  /* overlay gold → metin koyu (white değil) */

.btn-primary.big { padding: 22px 48px; font-size: 12px; }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-ghost.light { color: var(--white); }

.btn-reserve {
    background: var(--gold);
    color: var(--ink);              /* altın üzeri koyu */
    padding: 14px 26px;
    font-size: 11px;
}
.btn-reserve:hover { background: var(--ink); color: var(--white); }

/* ========== TOP STRIP ========== */
.top-strip {
    background: var(--teal-deep);
    color: rgba(255,255,255,.85);
    font-size: 12.5px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-strip-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ts-left a, .ts-right a {
    margin-right: 24px;
    transition: color .3s var(--ease);
}
.ts-left a i { color: var(--gold); margin-right: 8px; }
.ts-left a:hover, .ts-right a:hover { color: var(--gold); }
.ts-right { display: flex; align-items: center; gap: 4px; }
.ts-right a { margin-right: 0; padding: 0 10px; }
.ts-right .lang { font-weight: 500; letter-spacing: 0.1em; }
.ts-right .lang.active { color: var(--gold); }
.ts-right .lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border: 1px solid rgba(201, 169, 97, .35);
    border-radius: 999px;
    color: var(--gold);
    font-weight: 600;
    transition: all .3s var(--ease);
}
.ts-right .lang-toggle:hover {
    background: var(--gold);
    color: #0a2e2a;
    border-color: var(--gold);
}
.ts-right .lang-toggle i { font-size: 13px; }
.ts-right .divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,.2);
    margin: 0 8px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: all .4s var(--ease);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-top {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 0.18em;
    color: var(--ink);
}
.logo-sub {
    font-size: 9.5px;
    letter-spacing: 0.42em;
    color: var(--ink-soft);
    margin-top: 4px;
}
.logo.light .logo-top, .logo.light .logo-sub { color: var(--white); }
.logo.light .logo-sub { color: rgba(255,255,255,.6); }

/* PNG / SVG logo (admin → site_logo) — büyük ve ferah */
.logo.logo-img {
    gap: 0;
    padding: 4px 0;
    line-height: 0;
}
.logo .brand-logo {
    height: 64px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    transition: opacity .25s ease, transform .35s ease;
}
.logo.logo-img:hover .brand-logo { opacity: .85; transform: scale(1.02); }

/* Navbar scroll edilince biraz küçült */
.navbar.scrolled .brand-logo { height: 52px; }

/* Footer logosu (koyu zemin üzerinde) */
.footer .logo .brand-logo,
.footer .logo .brand-logo-light {
    height: 80px;
    max-width: 320px;
}

@media (max-width: 768px) {
    .logo .brand-logo { height: 50px; max-width: 200px; }
    .navbar.scrolled .brand-logo { height: 44px; }
    .footer .logo .brand-logo { height: 64px; }
}

.nav-menu ul {
    display: flex;
    gap: 36px;
}
.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ink);
    position: relative;
    padding: 30px 0;
    display: inline-block;
}
.nav-menu a i { font-size: 9px; margin-left: 4px; transition: transform .3s var(--ease); }
.nav-menu li.has-mega:hover a i { transform: rotate(180deg); }
.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: all .35s var(--ease);
    transform: translateX(-50%);
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::before { width: 24px; }

/* MEGA MENU */
.has-mega { position: relative; }
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    width: 720px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--ease);
    border-top: 2px solid var(--gold);
}
.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.mega-card {
    text-align: center;
}
.mega-img {
    width: 100%;
    height: 130px;
    background-size: cover;
    background-position: center;
    margin-bottom: 12px;
    transition: transform .5s var(--ease);
}
.mega-card:hover .mega-img { transform: scale(1.04); }
.mega-card h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    transition: color .3s var(--ease);
}
.mega-card:hover h4 { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.hamburger {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--ink);
    transition: all .3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    z-index: 99;
    overflow: hidden;
    transition: height .45s var(--ease);
    -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
    height: calc(100vh - 90px);
    height: calc(100dvh - 90px); /* mobil tarayıcı barlarını hesaba kat */
    overflow-y: auto;
    overflow-x: hidden;
}
.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 14px 22px 28px;
    display: flex;
    flex-direction: column;
}
.mobile-menu li {
    border-bottom: 1px solid var(--line);
}
.mobile-menu li:last-child { border-bottom: none; }
.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink);
    text-decoration: none;
    transition: color .2s ease, padding-left .25s ease;
}
.mobile-menu a:hover,
.mobile-menu a:active { color: var(--gold); padding-left: 8px; }
.mobile-menu a i.fa-solid { color: var(--gold); font-size: 13px; width: 16px; text-align: center; }

/* Mobil menüdeki Rezervasyon butonu — diğer linklerden ayrıştır */
.mobile-menu .btn-reserve,
.mobile-menu a.btn-reserve {
    display: flex;
    justify-content: center;
    margin-top: 18px;
    padding: 16px 22px;
    background: linear-gradient(135deg, var(--gold) 0%, #b89460 100%);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px -10px rgba(201,169,106,.55);
}
.mobile-menu li:has(.btn-reserve) { border-bottom: none; }

/* Mobil menü alt bilgi (telefon + sosyal medya) */
.mobile-menu-foot {
    margin-top: 22px;
    padding: 22px;
    border-top: 1px solid var(--line);
    text-align: center;
    background: rgba(201,169,106,.04);
}
.mobile-menu-foot .mm-phone-block {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    color: var(--ink);
    font-size: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.5;
}
.mobile-menu-foot .mm-phone-block > i { color: var(--gold); padding-top: 4px; font-size: 13px; }
.mobile-menu-foot .mm-phone-html { display: inline-block; text-align: left; }
.mobile-menu-foot .mm-phone-html a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
}
.mobile-menu-foot .mm-phone-html a:hover { color: var(--gold); }
.mobile-menu-foot .mm-phone-html small {
    color: var(--ink-soft);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.5px;
}
.mobile-menu-foot .mm-phone-html br { margin: 2px 0; }
.mobile-menu-foot .mm-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--ink-soft);
    font-size: 13px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}
.mobile-menu-foot .mm-email i { color: var(--gold); }
.mobile-menu-foot .mm-email:hover { color: var(--gold); }
.mobile-menu-foot .mm-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.mobile-menu-foot .mm-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    transition: all .2s ease;
    padding: 0;
}
.mobile-menu-foot .mm-social a:hover {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
    padding-left: 0;
    transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: calc(100vh - 130px);
    min-height: 640px;
    overflow: hidden;
    background: var(--ink);
}
.hero-slider { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.4s var(--ease), visibility 0s linear 1.4s;
    z-index: 1;
    overflow: hidden;
    background: #000;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transition: opacity 1.4s var(--ease), visibility 0s linear 0s;
}
.hero-slide video,
.hero-slide iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}
.hero-slide video {
    transform: scale(1.05);
    transition: transform 8s linear;
}
.hero-slide.active video { transform: scale(1); }
/* YouTube embed: 16:9 oranını koruyarak ekranı kapat */
.hero-yt-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #000;
}
.hero-yt-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh;       /* 16/9 oranı, viewport height tabanlı */
    height: 56.25vw;       /* 9/16 oranı, viewport width tabanlı */
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,46,42,.35) 0%, rgba(10,46,42,.55) 100%),
        radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.4) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}
.hero-pre {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: heroFade 1s var(--ease) .3s forwards;
}
.hero-content h1 {
    font-size: clamp(50px, 7vw, 110px);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 28px;
    color: var(--white);
    opacity: 0;
    animation: heroFade 1s var(--ease) .5s forwards;
}
.hero-content h1 em {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    color: var(--gold-soft);
}
.hero-content p {
    max-width: 540px;
    font-size: 18px;
    color: rgba(255,255,255,.85);
    margin-bottom: 44px;
    opacity: 0;
    animation: heroFade 1s var(--ease) .7s forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    opacity: 0;
    animation: heroFade 1s var(--ease) .9s forwards;
}
@keyframes heroFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SLIDER NAV */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 32px;
}
.slider-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    transition: all .35s var(--ease);
    backdrop-filter: blur(10px);
}
.slider-nav button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}
.dots { display: flex; gap: 14px; }
.dot {
    width: 36px;
    height: 2px;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all .35s var(--ease);
}
.dot.active { background: var(--gold); width: 56px; }

.scroll-down {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--white);
}
.scroll-down small {
    font-size: 10px;
    letter-spacing: 0.4em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.scroll-down span {
    width: 1px;
    height: 50px;
    background: var(--gold);
    position: relative;
    overflow: hidden;
}
.scroll-down span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    animation: scrollLine 2.4s linear infinite;
}
@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.hero-side {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.hero-side a {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: all .3s var(--ease);
}
.hero-side a:hover { color: var(--gold); transform: translateX(4px); }

/* ========== PERFORMANS — CLS & LCP optimizasyonları ========== */
/* Görsellerin önceden alan kaplaması (CLS engelleme) */
img { max-width: 100%; height: auto; }

/* Off-screen sections için content-visibility (modern browser'larda render skip)
   NOT: IntersectionObserver çakışmasını önlemek için .reveal içeren bölümlerden
   çıkarıldı. Sadece reveal animasyonu OLMAYAN bölümlerde kullan. */

/* ========== BOOKING BAR ========== */
.booking-bar {
    background: var(--white);
    margin-top: -60px;
    margin-left: 5%;
    margin-right: 5%;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    padding: 28px 36px;
}
/* Embed widget modu — özel sağlayıcının HTML/iframe kodunu çevreler */
.booking-bar--widget { padding: 18px 24px; }
.booking-widget-wrap { width: 100%; }
.booking-widget-wrap iframe { width: 100%; border: 0; display: block; }
.booking-widget-wrap > * { max-width: 100%; }
.booking-form {
    display: grid;
    grid-template-columns: 1fr auto 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}
.b-field { display: flex; flex-direction: column; gap: 10px; }
.b-field label {
    font-size: 10.5px;
    letter-spacing: 0.25em;
    color: var(--ink-soft);
    font-weight: 600;
    text-transform: uppercase;
}
.b-input-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 18px;
    background: #fafaf7;
    transition: all .3s var(--ease);
}
.b-input-icon:focus-within {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,169,106,.12);
}
.b-input-icon i {
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}
.b-field input,
.b-field select {
    border: 0;
    padding: 0;
    font-size: 15px;
    color: var(--ink);
    background: transparent;
    width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.b-field input[type="date"] {
    letter-spacing: 0.3px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-feature-settings: 'tnum' 1;
    color: var(--ink);
}
/* Date picker takvim simgesini gizle (kendi ikonumuz var) */
.b-field input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: .35;
    filter: invert(50%);
}
.b-field input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: .7; }
.b-submit {
    background: var(--gold);
    color: var(--ink);
    border: 0;
    padding: 18px 36px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .35s var(--ease);
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(201,169,106,.25);
}
.b-submit:hover {
    background: var(--teal-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15,42,40,.3);
    animation: none; /* hover'da glow ve shimmer dursun, kullanıcı butonu kontrol ediyor */
}
.b-submit i { font-size: 12px; transition: transform .3s var(--ease); }
.b-submit:hover i { transform: translateX(4px); }

/* ====== ANA CTA: yavaş ve elegant glow (kullanıcının dikkati buraya) ====== */
@keyframes bb-cta-glow {
    0%, 100% {
        box-shadow:
            0 8px 20px rgba(201,169,106,.25),
            0 0 0 0 rgba(201,169,106,.0);
    }
    50% {
        box-shadow:
            0 12px 32px rgba(201,169,106,.45),
            0 0 0 8px rgba(201,169,106,.08),
            0 0 24px rgba(201,169,106,.35);
    }
}
@keyframes bb-cta-shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}
.b-submit {
    background:
        linear-gradient(90deg,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.22) 50%,
            rgba(255,255,255,0) 100%) 0 0 / 200% 100% no-repeat,
        var(--gold);
    animation:
        bb-cta-glow 3.2s ease-in-out infinite,
        bb-cta-shimmer 5s ease-in-out infinite;
    position: relative;
}
.b-submit:hover {
    animation-play-state: paused;
}

/* Anchor'a (rezervasyon butonu) tıklanınca dikkat çekici pulse */
@keyframes bb-pulse {
    0%   { box-shadow: var(--shadow-lg); }
    35%  { box-shadow: 0 0 0 6px rgba(201,169,106,.35), 0 16px 40px rgba(201,169,106,.35); }
    70%  { box-shadow: 0 0 0 14px rgba(201,169,106,.10), 0 16px 40px rgba(201,169,106,.20); }
    100% { box-shadow: var(--shadow-lg); }
}
.booking-bar.bb-highlight {
    animation: bb-pulse 2.2s var(--ease) both;
}

/* Hareket azaltma istemi olan kullanıcılar için animasyonu kapat */
@media (prefers-reduced-motion: reduce) {
    .b-submit { animation: none; }
}
/* Nights badge */
.b-nights {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 14px;
    color: var(--gold);
    min-width: 50px;
    position: relative;
}
.b-nights::before, .b-nights::after {
    content: '';
    position: absolute;
    top: 38px;
    width: 22px;
    height: 1px;
    background: var(--gold);
    opacity: .45;
}
.b-nights::before { left: -24px; }
.b-nights::after  { right: -24px; }
.b-nights span {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: var(--gold);
}
.b-nights small {
    font-size: 9.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 4px;
}

/* Guests trigger (button look) */
.b-guests-field { position: relative; }
.b-guests-trigger {
    width: 100%;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: left;
    color: var(--ink);
}
.b-guests-trigger span {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
}
.b-guests-trigger .b-chevron {
    color: var(--ink-soft);
    font-size: 11px;
    transition: transform .3s var(--ease);
    margin-left: auto; /* desktop: chevron sağa pinli */
}
@media (max-width: 700px) {
    .b-guests-trigger { justify-content: flex-start; }
    .b-guests-trigger .b-chevron { margin-left: 0; } /* mobilde text'e yakın */
}
.b-guests-trigger.is-open .b-chevron { transform: rotate(180deg); }
.b-guests-trigger.is-open {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,169,106,.12);
}

/* Guests popup */
.b-guests-popup {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,.15);
    padding: 22px;
    z-index: 50;
    border: 1px solid var(--line);
    animation: bk-pop-in .25s var(--ease);
}
@keyframes bk-pop-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.b-guests-popup[hidden] { display: none; }

.b-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.b-guest-row:last-of-type { border-bottom: 0; padding-bottom: 14px; }
.b-guest-info strong {
    display: block;
    font-size: 14px;
    color: var(--ink);
    font-weight: 600;
}
.b-guest-info small {
    display: block;
    font-size: 12px;
    color: var(--ink-soft);
    margin-top: 2px;
}

.b-counter {
    display: flex;
    align-items: center;
    gap: 14px;
}
.b-cnt-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: var(--white);
    color: var(--gold);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s var(--ease);
}
.b-cnt-btn:hover {
    background: var(--gold);
    color: var(--ink);
    transform: scale(1.08);
}
.b-cnt-val {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    min-width: 18px;
    text-align: center;
}

.b-apply-btn {
    width: 100%;
    margin-top: 10px;
    background: var(--gold);
    color: var(--white);
    border: 0;
    padding: 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s var(--ease);
}
.b-apply-btn:hover { background: var(--teal-deep); }

@media (max-width: 1100px) {
    .booking-form { grid-template-columns: 1fr 1fr; }
    .b-nights { display: none; }
    /* Misafir alanı ve buton tam satıra yayılır */
    .b-guests-field { grid-column: 1 / -1; }
    .b-submit       { grid-column: 1 / -1; justify-content: center; }
    .b-guests-popup { max-width: 420px; }
}
@media (max-width: 700px) {
    .booking-form { grid-template-columns: 1fr; gap: 14px; }
    .b-submit { padding: 16px 24px; }
    .b-guests-popup { left: 0; right: 0; max-width: none; }
}

/* ========== ABOUT ========== */
.about { padding: 140px 0 120px; }
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}
.about-text .lead {
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 18px;
    line-height: 1.55;
}
.about-text p { color: var(--ink-soft); margin-bottom: 30px; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 36px 0;
    margin-bottom: 36px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stat h3 {
    font-size: 48px;
    color: var(--teal);
    margin-bottom: 4px;
}
.stat span {
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
    text-transform: uppercase;
}

.about-visual {
    position: relative;
    height: 600px;
}
.av-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}
.av-sub {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 55%;
    height: 280px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    border: 12px solid var(--bg);
}
.av-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 14px 32px rgba(201,169,106,.35), inset 0 0 0 2px rgba(255,255,255,.18);
    text-align: center;
    /* Nazikçe nefes alan animasyon — dönmüyor, sadece scale */
    animation: badgeBreath 4s ease-in-out infinite;
}
.av-badge::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,.4);
    pointer-events: none;
}
.av-badge span {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1.25;
    padding: 0 12px;
    opacity: .9;
    font-weight: 500;
}
.av-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    margin-top: 6px;
    line-height: 1;
    padding: 0 10px;
    letter-spacing: 0.04em;
}
@keyframes badgeBreath {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}
@keyframes spinSlow {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

/* ========== ROOMS ========== */
.rooms {
    padding: 120px 0;
    background: var(--bg-alt);
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.room-card {
    background: var(--white);
    overflow: hidden;
    transition: all .5s var(--ease);
    box-shadow: var(--shadow-sm);
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.room-img {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.room-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.3) 100%);
}
.room-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--teal-deep);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 0.2em;
    padding: 8px 14px;
    z-index: 2;
}
.room-tag.gold { background: var(--gold); }
.room-body { padding: 32px 28px; }
.room-body h3 {
    font-size: 28px;
    margin-bottom: 8px;
}
.room-body p {
    color: var(--ink-soft);
    font-size: 14.5px;
    margin-bottom: 18px;
    min-height: 44px;
}
.room-feats {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
}
.room-feats li {
    font-size: 12.5px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 6px;
}
.room-feats i { color: var(--gold); }
.room-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all .3s var(--ease);
}
.room-link i { transition: transform .35s var(--ease); }
.room-link:hover { color: var(--gold); }
.room-link:hover i { transform: translateX(6px); }

/* Oda kartında "KEŞFET" butonu (homepage + oda-detay related rooms) */
.room-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 4px;
    padding: 14px 18px;
    font-size: 11.5px;
    letter-spacing: 0.22em;
}
.room-btn i { transition: transform .35s var(--ease); font-size: 11px; }
.room-btn:hover i { transform: translateX(6px); }

.rooms-cta {
    text-align: center;
    margin-top: 60px;
}

/* ========== THERMAL ========== */
.thermal {
    position: relative;
    padding: 160px 0;
    color: var(--white);
    overflow: hidden;
}
.thermal-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}
.thermal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(10,46,42,.92) 30%, rgba(10,46,42,.6) 100%);
    z-index: 1;
}
.thermal .container { position: relative; z-index: 2; }
.thermal-grid { max-width: 720px; }
.thermal-text p {
    font-size: 17px;
    color: rgba(255,255,255,.85);
    margin-bottom: 50px;
}
.thermal-feats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    margin-bottom: 50px;
}
.tf {
    border-left: 2px solid var(--gold);
    padding-left: 22px;
}
.tf i { color: var(--gold); font-size: 28px; margin-bottom: 12px; }
.tf h4 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
}
.tf span {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
}

/* ========== GASTRONOMY ========== */
.gastronomy { padding: 140px 0; }
.gastro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 320px 320px;
    gap: 16px;
}
.gastro-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: var(--white);
    transition: all .55s var(--ease);
}
.gastro-card.big {
    grid-column: span 2;
    grid-row: span 2;
}
.gastro-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,27,26,.85) 100%);
    transition: all .5s var(--ease);
}
.gastro-card:hover::before { background: linear-gradient(180deg, rgba(10,27,26,.3) 0%, rgba(10,27,26,.95) 100%); }
.gastro-card:hover { transform: scale(1.01); }
.gastro-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}
.gastro-info span {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 8px;
}
.gastro-info h3 {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 4px;
}
.gastro-card.big .gastro-info h3 { font-size: 44px; }
.gastro-info p {
    font-size: 13.5px;
    color: rgba(255,255,255,.75);
}

/* ========== ACTIVITIES ========== */
.activities {
    padding: 140px 0;
    background: var(--bg-alt);
}
.act-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.act-text p { color: var(--ink-soft); margin-bottom: 40px; max-width: 480px; }
.act-list { display: flex; flex-direction: column; gap: 0; }
.act-list li {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink);
    transition: all .3s var(--ease);
}
.act-list li:hover { padding-left: 12px; color: var(--teal); }
.act-list li span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

.act-visual {
    position: relative;
    height: 580px;
}
.av-card {
    position: absolute;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}
.act-visual .av-card:nth-child(1) {
    top: 0;
    right: 0;
    width: 75%;
    height: 70%;
}
.av-card.small {
    width: 50%;
    height: 220px;
    bottom: 0;
    left: 0;
    border: 10px solid var(--bg-alt);
}
.av-card.small.alt {
    width: 38%;
    height: 180px;
    bottom: 60px;
    left: auto;
    right: -20px;
    border: 0;
    box-shadow: var(--shadow-lg);
}

/* ========== AWARDS ========== */
.awards {
    position: relative;
    padding: 140px 0 130px;
    background:
        radial-gradient(ellipse at top right, rgba(201,169,106,.15), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(44,128,121,.18), transparent 55%),
        linear-gradient(180deg, #081f1c 0%, #0a2e2a 100%);
    color: var(--white);
    overflow: hidden;
}
.awards::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
}
.awards-deco {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201,169,106,.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}
.awards .container { position: relative; z-index: 2; }
.awards .section-head p { color: rgba(255,255,255,.7); }

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-bottom: 70px;
}
.award-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 32px 36px;
    transition: all .55s var(--ease);
    overflow: hidden;
}
.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: translateX(-100%);
    transition: transform .8s var(--ease);
}
.award-card::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 80px;
    height: 80px;
    background:
        linear-gradient(135deg, transparent 50%, var(--gold) 50%, var(--gold) 52%, transparent 52%);
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.award-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(160deg, rgba(201,169,106,.08) 0%, rgba(255,255,255,.02) 100%);
    border-color: rgba(201,169,106,.35);
    box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.award-card:hover::before { transform: translateX(0); }
.award-card:hover::after { opacity: .7; }

.award-card.featured {
    background: linear-gradient(160deg, rgba(201,169,106,.18) 0%, rgba(201,169,106,.04) 100%);
    border-color: rgba(201,169,106,.35);
}
.award-card.featured::before {
    transform: translateX(0);
    background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-soft));
}

.award-medal {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,169,106,.15), rgba(201,169,106,.05));
    border: 1.5px solid rgba(201,169,106,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    transition: all .5s var(--ease);
}
.award-medal i {
    font-size: 32px;
    color: var(--gold);
    transition: transform .5s var(--ease);
}
.award-card:hover .award-medal {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201,169,106,.4);
}
.award-card:hover .award-medal i { color: var(--ink); transform: rotate(-8deg) scale(1.05); }

.award-medal.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201,169,106,.3);
}
.award-medal.gold i { color: var(--ink); }

.award-year {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: var(--ink);
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1.5px solid var(--gold);
}

.award-source {
    font-size: 11.5px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.award-source i { font-size: 14px; }

.award-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
}

.award-card p {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 28px;
    min-height: 96px;
}
.award-card p strong {
    color: var(--gold-soft);
    font-weight: 600;
}

.award-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.award-rating > span:last-child {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}
.stars { display: flex; gap: 4px; color: var(--gold); font-size: 13px; }
.score { display: flex; align-items: baseline; gap: 2px; }
.score strong {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}
.score span {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    font-weight: 500;
}

.awards-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    text-align: center;
}
.aw-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 26px 36px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 60px;
    background: rgba(255,255,255,.02);
    backdrop-filter: blur(8px);
    max-width: 100%;
}
.aw-logos > span:not(.aw-dot) {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    font-weight: 500;
    transition: color .3s var(--ease);
}
.aw-logos > span:not(.aw-dot):hover { color: var(--gold); }
.aw-logos i { color: var(--gold); font-size: 16px; }
.aw-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
}

/* ========== REVIEWS — Premium ========== */
.reviews {
    padding: 140px 0 150px;
    background:
        radial-gradient(circle at 15% 20%, rgba(201,169,97,.06), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(10,46,42,.05), transparent 50%),
        var(--bg-alt);
    position: relative;
    overflow: hidden;
}
.reviews::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,97,.4), transparent);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 70px;
}

.review-card {
    position: relative;
    background: #fff;
    border-radius: 4px;
    padding: 44px 36px 32px;
    border: 1px solid rgba(10,46,42,.07);
    box-shadow:
        0 1px 0 rgba(255,255,255,.6) inset,
        0 18px 50px -20px rgba(10,46,42,.18);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
    overflow: hidden;
    /* a olarak render edildiği için */
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.review-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}
.review-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, #e0c485 50%, var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .6s var(--ease);
}
.review-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 1px 0 rgba(255,255,255,.6) inset,
        0 36px 70px -25px rgba(10,46,42,.32);
    border-color: rgba(201,169,97,.35);
}
.review-card:hover::before { transform: scaleX(1); }

/* Top: dekoratif tırnak + Google ikonu */
.rv-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: -10px;
}
.rv-quote {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 96px;
    line-height: .7;
    color: var(--gold);
    opacity: .55;
    letter-spacing: -.05em;
}
.rv-source {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(10,46,42,.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.rv-source .fa-google {
    background: linear-gradient(45deg,#4285f4 0%,#ea4335 33%,#fbbc05 66%,#34a853 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rv-source.src-tadv .fa-tripadvisor { color: #00aa6c; }
.rv-source.src-trip .fa-plane       { color: #2681ff; }
.rv-source.src-bk   .fa-bed         { color: #003580; }

.rv-stars {
    display: flex;
    gap: 4px;
    color: #f5b301;
    font-size: 15px;
    letter-spacing: 0;
}
.rv-stars .fa-regular { color: rgba(245,179,1,.25); }

.rv-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 24px;
    color: var(--teal-deep);
    font-weight: 600;
    margin: 2px 0 0;
    line-height: 1.25;
    letter-spacing: -.2px;
}
.rv-body {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
    flex: 1;
    position: relative;
    padding-left: 14px;
    border-left: 2px solid rgba(201,169,97,.35);
}

/* Foot: avatar + isim + tarih */
.rv-foot {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    margin-top: 6px;
    border-top: 1px solid rgba(10,46,42,.08);
}
.rv-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1.5px;
    box-shadow:
        0 0 0 3px #fff,
        0 0 0 4px rgba(201,169,97,.5),
        0 6px 14px rgba(10,46,42,.18);
    flex-shrink: 0;
}
.rv-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.rv-meta strong {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--teal-deep);
    font-weight: 600;
    letter-spacing: .2px;
}
.rv-meta-sub {
    font-size: 12px;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .3px;
}
.rv-meta-sub i { color: var(--gold); font-size: 10px; }
.rv-meta-sub .rv-dot { color: var(--gold); font-weight: 700; }

.rv-go {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-soft);
    border: 1px solid rgba(10,46,42,.12);
    font-size: 12px;
    transition: background .35s, color .35s, border-color .35s, transform .35s;
    flex-shrink: 0;
    margin-left: auto;
}
.review-card:hover .rv-go {
    background: var(--gold);
    color: #1a1a1a;
    border-color: var(--gold);
    transform: rotate(-15deg);
}

/* Bölüm altı CTA satırı */
.reviews-cta-row {
    margin-top: 50px;
    text-align: center;
}
.reviews-cta-row .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
}
.reviews-cta-row .btn-primary .fa-google {
    background: linear-gradient(45deg,#4285f4 0%,#ea4335 33%,#fbbc05 66%,#34a853 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
}

/* Empty state — yorum yokken Google'a CTA */
.reviews-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    max-width: 620px;
    margin: 60px auto 0;
    padding: 60px 50px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid rgba(10,46,42,.08);
    box-shadow: 0 24px 60px -25px rgba(10,46,42,.2);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
}
.reviews-empty::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg,#4285f4 0%,#ea4335 33%,#fbbc05 66%,#34a853 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .6s var(--ease);
}
.reviews-empty:hover { transform: translateY(-6px); border-color: rgba(201,169,97,.4); box-shadow: 0 36px 80px -30px rgba(10,46,42,.3); }
.reviews-empty:hover::before { transform: scaleX(1); }
.re-google {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1px solid rgba(10,46,42,.1);
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    font-size: 28px;
    margin-bottom: 4px;
}
.re-google .fa-google {
    background: linear-gradient(45deg,#4285f4 0%,#ea4335 33%,#fbbc05 66%,#34a853 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.re-stars { color: #f5b301; font-size: 18px; letter-spacing: 4px; }
.reviews-empty h3 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--teal-deep);
    margin: 0;
    letter-spacing: -.3px;
}
.reviews-empty p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0;
    max-width: 460px;
}
.reviews-empty p strong { color: var(--teal-deep); font-weight: 600; }
.re-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    margin-top: 6px;
    background: var(--teal-deep);
    color: #fff;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background .3s, color .3s;
}
.reviews-empty:hover .re-cta { background: var(--gold); color: #1a1a1a; }

@media (max-width: 980px){
    .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px){
    .reviews { padding: 90px 0 100px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
    .review-card { padding: 36px 26px 26px; }
    .rv-quote { font-size: 76px; }
    .rv-title { font-size: 21px; }
    .rv-body { font-size: 16px; }
}

/* ========== GALLERY ========== */
.gallery { padding: 140px 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 14px;
}
.g-item {
    background-size: cover;
    background-position: center;
    cursor: zoom-in;
    transition: all .5s var(--ease);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border-radius: 4px;
}
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-item:hover { transform: scale(1.01); }
/* Default overlay div (anasayfa + diğer yerler için) — hover-only */
.g-item .g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,46,42,.55), rgba(10,46,42,.15) 50%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s var(--ease);
    pointer-events: none;
}
.g-item .g-overlay i {
    font-size: 28px;
    color: #fff;
    background: rgba(201,169,106,.95);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: scale(.7);
    transition: transform .35s var(--ease);
    box-shadow: 0 12px 28px -10px rgba(0,0,0,.4);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-item:hover .g-overlay i { transform: scale(1); }
/* Eski pseudo-element ikonları kapat (artık .g-overlay div kullanılıyor) */
.g-item::before,
.g-item::after { content: none !important; display: none !important; }
/* Eski rule body — kullanılmaz ama placeholder olarak kalsın (artık devre dışı) */
.g-item__placeholder-after { display: none; }

/* ========== CTA BOOKING ========== */
.cta-booking { padding: 0 0 140px; }
.cta-card {
    background: linear-gradient(115deg, var(--teal-deep) 0%, var(--teal) 100%);
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,106,.2), transparent 70%);
    border-radius: 50%;
}
.cta-text { position: relative; z-index: 2; }
.cta-text p {
    color: rgba(255,255,255,.8);
    font-size: 16px;
    max-width: 480px;
}
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,.7);
    padding: 100px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.f-col.brand p {
    margin-top: 24px;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.f-social { display: flex; gap: 12px; }
.f-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    transition: all .35s var(--ease);
}
.f-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    transform: translateY(-3px);
}

.f-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 26px;
    font-weight: 600;
}
.f-col ul li { margin-bottom: 12px; font-size: 14.5px; }
.f-col ul li a { transition: all .3s var(--ease); }
.f-col ul li a:hover { color: var(--gold); padding-left: 6px; }

.f-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.6;
}
.f-contact li i { color: var(--gold); margin-top: 4px; min-width: 16px; }

.newsletter {
    margin-top: 22px;
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,.2);
}
.newsletter input {
    flex: 1;
    padding: 12px 0;
    background: transparent;
    border: 0;
    color: var(--white);
    font-size: 14px;
}
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter button {
    color: var(--gold);
    padding: 0 12px;
    transition: all .3s var(--ease);
}
.newsletter button:hover { color: var(--white); transform: translateX(4px); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 13px;
    color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--gold); }

/* ========== FLOATING BUTTON ========== */
.float-reserve {
    position: fixed;
    right: -50px;
    top: 50%;
    transform: rotate(-90deg);
    transform-origin: center;
    background: var(--gold);
    color: var(--white);
    padding: 14px 26px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    z-index: 50;
    transition: all .35s var(--ease);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
}
.float-reserve:hover {
    background: var(--ink);
    right: -42px;
}

/* ========================================
   WHATSAPP FLOATING WIDGET (sticky, all pages)
   ======================================== */
.wa-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9990;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- FAB Button --- */
.wa-fab {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 24px rgba(37, 211, 102, .45),
        0 4px 12px rgba(0, 0, 0, .15);
    transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s ease;
}
.wa-fab:hover {
    transform: scale(1.08);
    box-shadow:
        0 12px 32px rgba(37, 211, 102, .55),
        0 6px 18px rgba(0, 0, 0, .18);
}
.wa-fab:active { transform: scale(.98); }
.wa-fab i { line-height: 1; }

/* Pulse ring */
.wa-fab-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25d366;
    opacity: 0;
    animation: waPulse 2s ease-out infinite;
    pointer-events: none;
}
@keyframes waPulse {
    0%   { transform: scale(.8); opacity: .9; }
    80%  { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Notification badge */
.wa-fab-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background: #ff3b30;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(255, 59, 48, .4);
    border: 2px solid #fff;
    transition: transform .25s ease, opacity .25s ease;
}
.wa-widget.opened .wa-fab-badge,
.wa-widget.seen   .wa-fab-badge { opacity: 0; transform: scale(.5); pointer-events: none; }
.wa-widget.opened .wa-fab-pulse { animation: none; opacity: 0; }

/* --- Popup Card --- */
.wa-popup {
    position: absolute;
    bottom: 84px;
    right: 0;
    width: 340px;
    max-width: calc(100vw - 48px);
    background: #fff;
    border-radius: 16px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .18),
        0 4px 12px rgba(0, 0, 0, .08);
    overflow: hidden;
    transform: translateY(20px) scale(.95);
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom right;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
}
.wa-widget.opened .wa-popup {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Popup head (WhatsApp green bar) */
.wa-popup-head {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    color: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.wa-popup-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, .25);
}
.wa-popup-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    background: #fff;
}
.wa-popup-avatar i {
    font-size: 22px;
    color: #fff;
}
.wa-online-dot {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 14px;
    height: 14px;
    background: #4cd964;
    border: 2px solid #128c7e;
    border-radius: 50%;
}

.wa-popup-id { flex: 1; min-width: 0; }
.wa-popup-id strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}
.wa-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, .85);
    margin-top: 2px;
}
.wa-status-dot {
    width: 7px;
    height: 7px;
    background: #4cd964;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(76, 217, 100, .7);
    animation: waStatusBlink 2s ease-in-out infinite;
}
@keyframes waStatusBlink {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76, 217, 100, .7); }
    50%      { box-shadow: 0 0 0 5px rgba(76, 217, 100, 0); }
}

.wa-popup-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
    flex-shrink: 0;
}
.wa-popup-close:hover { background: rgba(255, 255, 255, .15); color: #fff; }

/* Popup body (chat-like background) */
.wa-popup-body {
    background: #ece5dd;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,.03) 0%, transparent 60%);
    padding: 20px 18px 16px;
    min-height: 110px;
    position: relative;
}
.wa-bubble {
    background: #fff;
    border-radius: 4px 14px 14px 14px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #303030;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
    position: relative;
    max-width: 92%;
    animation: waBubbleIn .4s ease both;
    animation-delay: .15s;
    opacity: 0;
}
.wa-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #fff transparent;
}
@keyframes waBubbleIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* CTA button */
.wa-popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff !important;
    text-decoration: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: filter .2s ease, transform .15s ease;
}
.wa-popup-cta:hover { filter: brightness(1.08); }
.wa-popup-cta:active { transform: scale(.99); }
.wa-popup-cta i { font-size: 18px; }

/* Mobile */
@media (max-width: 540px) {
    .wa-widget { right: 16px; bottom: 16px; }
    .wa-fab { width: 56px; height: 56px; font-size: 28px; }
    .wa-popup { width: 300px; bottom: 74px; }
    .wa-popup-body { padding: 16px 14px 12px; }
}

/* ========================================
   PAGE: ROOMS LISTING (odalar.html)
   ======================================== */

/* PAGE HERO (used by inner pages) */
.page-hero {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    display: flex;
    align-items: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8,31,28,.85) 0%, rgba(10,46,42,.65) 100%);
}
.page-hero .container {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1;
}
.page-hero h1 em {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    color: var(--gold-soft);
}
.page-hero p {
    max-width: 600px;
    color: rgba(255,255,255,.8);
    font-size: 17px;
}
.page-hero .hero-pre {
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 1;
    animation: none;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 32px;
}
.breadcrumb a { color: var(--gold-soft); transition: color .3s var(--ease); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 9px; opacity: .5; }
.breadcrumb span { color: var(--white); }
.breadcrumb.dark { color: var(--ink-soft); margin-bottom: 30px; }
.breadcrumb.dark a { color: var(--teal); }
.breadcrumb.dark a:hover { color: var(--gold); }
.breadcrumb.dark span { color: var(--ink); }

/* FILTER BAR */
.rooms-filter {
    background: var(--white);
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 90px;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,.96);
}
.filter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.filter-info {
    font-size: 13px;
    color: var(--ink-soft);
    letter-spacing: 0.05em;
}
.filter-info strong {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--teal);
    margin-right: 6px;
    font-weight: 400;
}
.filter-tabs {
    display: flex;
    gap: 6px;
    background: var(--bg-alt);
    padding: 6px;
    border-radius: 50px;
}
.ft-btn {
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    border-radius: 50px;
    transition: all .3s var(--ease);
}
.ft-btn:hover { color: var(--ink); }
.ft-btn.active {
    background: var(--teal-deep);
    color: var(--white);
}
.filter-sort {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    text-transform: uppercase;
}
.filter-sort select {
    border: 1px solid var(--line);
    padding: 10px 16px;
    font-size: 13px;
    color: var(--ink);
    background: var(--white);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}

/* ROOMS LIST */
.rooms-list { padding: 80px 0 100px; background: var(--bg); }
.rooms-grid-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.room-card-lg {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all .5s var(--ease);
}
.room-card-lg:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.room-card-lg.reverse { grid-template-columns: 1fr 1.1fr; }
.room-card-lg.reverse .rcl-img { order: 2; }
.room-card-lg.reverse .rcl-body { order: 1; }

.rcl-img {
    background-size: cover;
    background-position: center;
    min-height: 460px;
    position: relative;
    overflow: hidden;
}
.rcl-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4) 100%);
}
.rcl-thumbs {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(0,0,0,.55);
    color: var(--white);
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rcl-body {
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}
.rcl-cat {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}
.rcl-body h3 {
    font-size: 38px;
    margin-bottom: 14px;
    color: var(--ink);
}
.rcl-head p {
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 15.5px;
}
.rcl-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.rcl-feats li {
    font-size: 13.5px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 10px;
}
.rcl-feats i { color: var(--gold); width: 18px; text-align: center; }

.rcl-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.rcl-price span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 4px;
}
.rcl-price strong {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--teal-deep);
}
.rcl-price small { font-size: 13px; color: var(--ink-soft); margin-left: 4px; }

/* ========================================
   PAGE: ROOM DETAIL (oda-detay.html)
   ======================================== */

/* HERO GALLERY */
.room-hero {
    padding-top: 4px;
    background: var(--bg);
}
.room-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4px;
    height: 580px;
}
.rh-main {
    background-size: cover;
    background-position: center;
    position: relative;
}
.rh-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
}
.rh-thumb {
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: opacity .35s var(--ease);
}
.rh-thumb:hover { opacity: .85; }

/* ====== ODA DETAY GALERİ GRID'İ (içerik altı) ====== */
.rd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px;
}
.rd-gal-item {
    position: relative;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    background-color: #0e1b1a;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.rd-gal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.rd-gal-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(15,42,40,.55), rgba(15,42,40,0) 60%);
    color: var(--white);
    font-size: 22px;
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.rd-gal-item:hover .rd-gal-overlay { opacity: 1; }

@media (max-width: 900px) {
    .rd-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}
@media (max-width: 600px) {
    .rd-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.rh-view-all {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255,255,255,.95);
    color: var(--ink);
    padding: 14px 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    backdrop-filter: blur(10px);
    transition: all .35s var(--ease);
    display: flex;
    align-items: center;
    gap: 10px;
}
.rh-view-all:hover { background: var(--gold); color: var(--ink); }

/* DETAIL CONTENT */
.room-detail { padding: 60px 0 100px; background: var(--bg); }
.room-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.rd-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 36px;
}
.rd-head h1 {
    font-size: clamp(40px, 5vw, 64px);
    margin: 4px 0 14px;
    color: var(--ink);
}
.rd-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--ink-soft);
}
.rd-rating .stars { color: var(--gold); font-size: 14px; }
.rd-rating strong { color: var(--ink); }
.rd-share { display: flex; gap: 10px; }
.rd-share button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    transition: all .3s var(--ease);
}
.rd-share button:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,169,106,.06);
}

/* QUICK INFO */
.rd-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--white);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 60px;
}
.rd-quick li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 0 14px;
    border-right: 1px solid var(--line);
}
.rd-quick li:last-child { border-right: 0; }
.rd-quick i {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 8px;
}
.rd-quick span {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.rd-quick strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.2;
}

/* SECTIONS */
.rd-section {
    padding: 50px 0;
    border-bottom: 1px solid var(--line);
}
.rd-section:last-child { border-bottom: 0; }
.rd-title {
    font-size: clamp(30px, 3vw, 42px);
    margin-bottom: 24px;
    color: var(--ink);
}
.rd-title em {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    color: var(--teal);
}
.rd-lead {
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.55;
}
.rd-section p {
    color: var(--ink-soft);
    margin-bottom: 14px;
    line-height: 1.75;
}

/* AMENITIES */
.rd-amenities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 36px;
    margin-top: 30px;
}
.amen-group h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}
.amen-group h4 i { color: var(--gold); font-size: 16px; }
.amen-group ul li {
    font-size: 14px;
    color: var(--ink-soft);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.amen-group ul li i {
    color: var(--teal);
    font-size: 11px;
}

/* FLOORPLAN */
.rd-floorplan { margin-top: 30px; }
.fp-img {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: var(--shadow-md);
}
.fp-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.fp-stat { text-align: center; border-right: 1px solid var(--line); }
.fp-stat:last-child { border-right: 0; }
.fp-stat span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 6px;
}
.fp-stat strong {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--teal);
    font-weight: 400;
}

/* POLICIES */
.rd-policies {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 30px;
}
.policy {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all .3s var(--ease);
}
.policy:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.policy i {
    color: var(--gold);
    font-size: 22px;
    margin-top: 2px;
    width: 28px;
    text-align: center;
}
.policy strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 4px;
}
.policy span {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
}

/* BOOKING SIDEBAR */
.rd-side {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.booking-card {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    overflow: hidden;
}
.bc-head {
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    color: var(--white);
    padding: 28px 30px;
    text-align: center;
}
.bc-head > span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 8px;
}
.bc-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.bc-price strong {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    color: var(--gold-soft);
}
.bc-price small { font-size: 14px; color: rgba(255,255,255,.7); }
.bc-old {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
}
.bc-old s { margin-right: 8px; }
.bc-old em {
    font-style: normal;
    background: var(--gold);
    color: var(--ink);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.bc-form { padding: 28px 30px; }
.bc-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.bc-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bc-row.split > div { display: flex; flex-direction: column; gap: 6px; }
.bc-row label {
    font-size: 10.5px;
    letter-spacing: 0.25em;
    color: var(--ink-soft);
    font-weight: 600;
}
.bc-row input, .bc-row select {
    border: 1px solid var(--line);
    padding: 12px 14px;
    font-size: 14px;
    color: var(--ink);
    background: var(--white);
    transition: border-color .3s var(--ease);
}
.bc-row input:focus, .bc-row select:focus { border-color: var(--gold); outline: none; }

.bc-summary {
    margin: 22px 0 22px;
    padding: 18px;
    background: var(--bg-alt);
}
.bc-line {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: var(--ink-soft);
    padding: 6px 0;
}
.bc-line strong { color: var(--ink); font-weight: 600; }
.bc-line .discount { color: #c0392b; }
.bc-line.total {
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 14px;
    font-size: 16px;
}
.bc-line.total span, .bc-line.total strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--teal-deep);
    font-weight: 600;
}

.bc-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 30px;
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
}
.bc-trust div {
    font-size: 12.5px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 10px;
}
.bc-trust i { color: var(--teal); }

.bc-call {
    background: var(--ink);
    color: var(--white);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .35s var(--ease);
}
.bc-call:hover { background: var(--gold); color: var(--ink); }
.bc-call i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all .3s var(--ease);
}
.bc-call:hover i { background: rgba(0,0,0,.15); color: var(--white); }
.bc-call span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 2px;
}
.bc-call strong {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* SIMILAR ROOMS */
.similar-rooms {
    padding: 100px 0;
    background: var(--bg-alt);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 18, .96);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.lb-close, .lb-prev, .lb-next {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    transition: all .3s var(--ease);
    z-index: 2;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.lb-close { top: 30px; right: 30px; }
.lb-prev { left: 40px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 40px; top: 50%; transform: translateY(-50%); }
.lb-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 13px;
    letter-spacing: 0.2em;
    background: rgba(0,0,0,.4);
    padding: 8px 18px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* NAV ACTIVE */
.nav-menu a.active { color: var(--gold); }
.nav-menu a.active::before { width: 24px; }

/* ========================================
   PAGE: ROOMS RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
    .room-card-lg, .room-card-lg.reverse { grid-template-columns: 1fr; }
    .room-card-lg .rcl-img { min-height: 380px; }
    .room-card-lg.reverse .rcl-img { order: 0; }
    .room-card-lg.reverse .rcl-body { order: 0; }

    .room-hero-grid { grid-template-columns: 1fr; height: auto; }
    .rh-main { height: 380px; }
    .rh-side { grid-template-columns: repeat(4, 1fr); grid-template-rows: 100px; }

    .room-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .rd-side { position: static; }
    .booking-card { max-width: 500px; margin: 0 auto; }
    .bc-call { max-width: 500px; margin: 0 auto; width: 100%; }

    .rd-amenities { grid-template-columns: repeat(2, 1fr); }
    .rd-policies { grid-template-columns: 1fr; }

    .rooms-filter { top: 0; position: relative; }
    .filter-inner { gap: 18px; }
    .filter-tabs { width: 100%; overflow-x: auto; }
}

@media (max-width: 700px) {
    .page-hero { height: 360px; background-attachment: scroll; }
    .breadcrumb { font-size: 11px; gap: 8px; }

    .filter-inner { flex-direction: column; align-items: stretch; }
    .filter-info { text-align: center; }
    .filter-tabs { justify-content: flex-start; }
    .filter-sort { justify-content: space-between; }

    .rcl-body { padding: 32px 24px; gap: 22px; }
    .rcl-body h3 { font-size: 30px; }
    .rcl-feats { grid-template-columns: 1fr; }
    .rcl-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
    .rcl-foot .btn-primary { width: 100%; }

    .rh-side { grid-template-columns: repeat(2, 1fr); grid-template-rows: 80px 80px; }
    .rh-view-all { padding: 10px 16px; font-size: 11px; bottom: 16px; right: 16px; }

    .rd-head { flex-direction: column; }
    .rd-quick { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 12px; }
    .rd-quick li { padding: 12px; border-right: 0; border-bottom: 1px solid var(--line); }
    .rd-quick li:nth-last-child(-n+2) { border-bottom: 0; }
    .rd-amenities { grid-template-columns: 1fr; gap: 28px; }

    .fp-overlay { position: static; grid-template-columns: 1fr 1fr; padding: 20px; }
    .fp-img { height: 240px; }

    .lb-prev, .lb-next { width: 44px; height: 44px; }
    .lb-prev { left: 16px; }
    .lb-next { right: 16px; }
    .lb-close { top: 16px; right: 16px; }
}

/* ========================================
   PAGE: TERMAL & SPA (termal-spa.html)
   ======================================== */

/* HERO STATS */
.spa-hero { height: 600px; }
.spa-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 800px;
}
.shs strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    color: var(--gold-soft);
    line-height: 1;
}
.shs strong small {
    font-size: 22px;
    color: var(--gold);
    margin-left: 2px;
    font-weight: 300;
}
.shs span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-top: 10px;
}

/* INTRO */
.spa-intro { padding: 130px 0 110px; background: var(--bg); }
.spa-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.sig-text .lead {
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 18px;
}
.sig-text p {
    color: var(--ink-soft);
    margin-bottom: 16px;
    line-height: 1.75;
}
.sig-text .btn-primary { margin-top: 16px; }

.sig-visual {
    position: relative;
    height: 600px;
}
.sig-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}
.sig-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    border: 12px solid var(--bg);
}
.sig-water {
    position: absolute;
    bottom: 60px;
    left: 0;
    z-index: 3;
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    color: var(--white);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 180px;
}
.sig-water i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}
.sig-water strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 4px;
}
.sig-water span {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
}

/* BENEFITS */
.benefits {
    padding: 120px 0;
    background: var(--bg-alt);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.bn-card {
    background: var(--white);
    padding: 44px 36px;
    transition: all .5s var(--ease);
    border-bottom: 3px solid transparent;
}
.bn-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--gold);
}
.bn-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,169,106,.15), rgba(201,169,106,.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all .4s var(--ease);
}
.bn-icon i {
    font-size: 28px;
    color: var(--gold);
    transition: all .4s var(--ease);
}
.bn-card:hover .bn-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}
.bn-card:hover .bn-icon i { color: var(--ink); transform: scale(1.05); }
.bn-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--ink);
}
.bn-card p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.7;
}

/* POOLS */
.pools {
    position: relative;
    padding: 130px 0 120px;
    color: var(--white);
    overflow: hidden;
}
.pools-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(44,128,121,.25), transparent 60%),
        linear-gradient(180deg, #061815 0%, #0a2e2a 100%);
    z-index: 0;
}
.pools-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    mix-blend-mode: lighten;
}
.pools .container { position: relative; z-index: 2; }
.pools .section-head { margin-bottom: 60px; }
.pools .section-head p { color: rgba(255,255,255,.7); }
.section-head.light { max-width: 700px; }

.pools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pool-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    transition: all .5s var(--ease);
    backdrop-filter: blur(10px);
}
.pool-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.06);
    border-color: rgba(201,169,106,.4);
    box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.pool-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform .6s var(--ease);
}
.pool-card:hover .pool-img { transform: scale(1.04); }
.pool-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5) 100%);
}
.pool-temp {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,.6);
    color: var(--gold);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pool-body { padding: 26px 24px; }
.pool-cat {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}
.pool-body h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}
.pool-body p {
    color: rgba(255,255,255,.65);
    font-size: 13.5px;
    line-height: 1.6;
}

/* HAMMAM */
.hammam { padding: 130px 0; background: var(--bg); }
.hammam-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.hammam-visual { position: relative; height: 600px; }
.hv-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}
.hv-sub {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 50%;
    height: 280px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    border: 12px solid var(--bg);
}
.hammam-text p {
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 30px;
    font-size: 16px;
}
.hammam-text strong { color: var(--teal); }

.hammam-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    margin-bottom: 40px;
}
.hl {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}
.hl i {
    color: var(--gold);
    font-size: 22px;
    margin-top: 4px;
    width: 30px;
    text-align: center;
}
.hl strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 2px;
}
.hl span {
    font-size: 13px;
    color: var(--ink-soft);
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--ink);
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(201,169,106,.3);
}
.free-badge i { font-size: 16px; }

/* TREATMENTS */
.treatments { padding: 130px 0 100px; background: var(--bg-alt); }

.treat-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 50px;
    background: var(--white);
    padding: 8px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}
.tt-btn {
    padding: 14px 32px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
    border-radius: 50px;
    transition: all .35s var(--ease);
    text-transform: uppercase;
}
.tt-btn:hover { color: var(--ink); }
.tt-btn.active {
    background: var(--teal-deep);
    color: var(--white);
}

.tt-pane { display: none; animation: fadeIn .6s var(--ease); }
.tt-pane.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.treat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.treat-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .5s var(--ease);
    position: relative;
}
.treat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.treat-card.vip {
    border: 1.5px solid var(--gold);
}
.vip-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 6px 12px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.treat-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform .6s var(--ease);
}
.treat-card:hover .treat-img { transform: scale(1.04); }
.treat-body { padding: 28px 26px; }
.treat-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.treat-meta span {
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.treat-meta i { color: var(--gold); }
.treat-meta .price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--teal-deep);
    font-weight: 400;
}
.treat-body h3 {
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 8px;
}
.treat-body p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.65;
}

/* INFO BAR */
.spa-info { padding: 100px 0; background: var(--bg); }
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
}
.info-card {
    background: var(--white);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    transition: all .4s var(--ease);
    border-top: 3px solid var(--gold);
}
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.info-card > i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 18px;
}
.info-card h4 {
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 22px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}
.info-card ul li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
.info-card ul li:last-child { border-bottom: 0; }
.info-card ul li span { color: var(--ink-soft); }
.info-card ul li strong { color: var(--ink); text-align: right; font-weight: 600; line-height: 1.4; }

.info-card .rules li {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    align-items: flex-start;
    color: var(--ink-soft);
    line-height: 1.5;
}
.info-card .rules li i {
    color: var(--teal);
    font-size: 11px;
    margin-top: 6px;
    min-width: 12px;
}

.info-card.highlight {
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    color: var(--white);
    border-top-color: var(--gold);
}
.info-card.highlight > i { color: var(--gold-soft); }
.info-card.highlight h4 { color: var(--white); }
.info-card.highlight p {
    color: rgba(255,255,255,.8);
    margin-bottom: 28px;
    line-height: 1.7;
}
.info-card.highlight .btn-primary {
    background: var(--gold);
    color: var(--ink);
    width: 100%;
}
.info-card.highlight .btn-primary::before { background: var(--white); }
.info-card.highlight .btn-primary:hover { color: var(--ink); }

/* SPA RESPONSIVE */
@media (max-width: 1100px) {
    .spa-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .spa-intro-grid, .hammam-flex { grid-template-columns: 1fr; gap: 60px; }
    .sig-visual, .hammam-visual { height: 500px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .pools-grid { grid-template-columns: repeat(2, 1fr); }
    .hammam-list { grid-template-columns: 1fr; gap: 0; }
    .treat-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .spa-hero { height: auto; padding: 80px 0; }
    .spa-hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
    .shs strong { font-size: 38px; }
    .shs strong small { font-size: 16px; }
    .spa-intro, .benefits, .pools, .hammam, .treatments, .spa-info { padding: 70px 0; }
    .sig-visual { height: 400px; }
    .sig-water { left: 12px; bottom: 30px; padding: 18px 22px; min-width: 140px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .pools-grid { grid-template-columns: 1fr; }
    .pool-img { height: 200px; }
    .hammam-visual { height: 380px; }
    .treat-tabs { width: 100%; padding: 6px; }
    .tt-btn { padding: 10px 14px; font-size: 11px; }
    .treat-grid { grid-template-columns: 1fr; }
    .info-card { padding: 32px 26px; }
}

/* ========================================
   PAGE: GASTRONOMI (gastronomi.html)
   ======================================== */
.gastro-intro { padding: 130px 0 100px; background: var(--bg); }
.gi-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
}
.gi-text .lead { font-size: 19px; color: var(--ink); margin-bottom: 18px; }
.gi-text p { color: var(--ink-soft); line-height: 1.75; }
.gi-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.gis {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--gold);
    transition: all .4s var(--ease);
}
.gis:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gis strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--teal);
    line-height: 1;
    font-weight: 400;
}
.gis span {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.restaurants { padding: 120px 0; background: var(--bg-alt); }
.cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--ink);
    margin: 80px 0 36px;
    padding-left: 24px;
    border-left: 3px solid var(--gold);
    font-weight: 500;
}

/* FEATURED RESTAURANT */
.rest-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 30px;
}
.rf-img {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 580px;
}
.rest-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--gold);
    color: var(--white);
    padding: 10px 18px;
    font-size: 11px;
    letter-spacing: 0.25em;
    font-weight: 600;
    z-index: 2;
}
.rf-body {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rest-cuisine {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.rf-body h2 {
    font-size: 48px;
    color: var(--ink);
    margin-bottom: 16px;
}
.rf-lead {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 30px;
}
.rest-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 28px 0;
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.ri { display: flex; flex-direction: column; gap: 6px; }
.ri i { color: var(--gold); font-size: 18px; margin-bottom: 4px; }
.ri span {
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.ri strong {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.4;
}
.rf-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost.dark {
    color: var(--ink);
    border-color: var(--line);
}
.btn-ghost.dark:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

/* RESTAURANT CARDS */
.rest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.rest-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .5s var(--ease);
}
.rest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.rest-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.rest-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.3) 100%);
}
.rest-cuisine-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(10px);
    color: var(--gold);
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 0.15em;
    z-index: 2;
    font-weight: 500;
}
.rest-card .rest-body { padding: 26px 24px; }
.rest-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--ink);
}
.rest-card p {
    color: var(--ink-soft);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: 60px;
}
.rest-meta {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 18px;
}
.rest-meta span {
    font-size: 11.5px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 6px;
}
.rest-meta i { color: var(--gold); }
.rest-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s var(--ease);
}
.rest-link i { transition: transform .3s var(--ease); }
.rest-link:hover { color: var(--gold); }
.rest-link:hover i { transform: translateX(4px); }
.rest-card.small p { min-height: 60px; }

/* CHEF SECTION */
.chef {
    position: relative;
    padding: 130px 0;
    color: var(--white);
    overflow: hidden;
}
.chef-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.chef-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(8,20,18,.92) 30%, rgba(10,46,42,.7) 100%);
}
.chef .container { position: relative; z-index: 2; }
.chef-grid { max-width: 700px; }
.chef-text p {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    margin-bottom: 18px;
    line-height: 1.75;
}
.chef-quote {
    margin-top: 40px;
    padding: 32px 36px 36px;
    background: rgba(255,255,255,.04);
    border-left: 3px solid var(--gold);
    backdrop-filter: blur(10px);
    position: relative;
}
.chef-quote i {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 16px;
    opacity: .5;
}
.chef-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 18px;
}
.chef-quote span { font-size: 13px; color: rgba(255,255,255,.7); }
.chef-quote strong { color: var(--gold); font-weight: 600; }

/* BARS */
.bars { padding: 130px 0; }
.bars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bar-card {
    height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
    transition: all .55s var(--ease);
}
.bar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(8,20,18,.92) 100%);
    transition: all .5s var(--ease);
}
.bar-card:hover { transform: translateY(-6px); }
.bar-card:hover::before { background: linear-gradient(180deg, rgba(8,20,18,.4) 0%, rgba(8,20,18,.95) 100%); }
.bar-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}
.bar-content > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}
.bar-content h3 {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 6px;
}
.bar-content p {
    font-size: 14px;
    color: rgba(255,255,255,.8);
    margin-bottom: 12px;
}
.bar-content small {
    font-size: 11.5px;
    color: var(--gold-soft);
    letter-spacing: 0.15em;
}

/* AI CONCEPT */
.ai-concept { padding: 100px 0; background: var(--bg); }
.ai-card {
    background: linear-gradient(115deg, var(--bg-alt) 0%, var(--white) 100%);
    border: 1px solid var(--line);
    padding: 60px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
}
.ai-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(201,169,106,.3);
}
.ai-icon i {
    font-size: 48px;
    color: var(--white);
}
.ai-text h2 {
    font-size: 40px;
    color: var(--ink);
    margin-bottom: 14px;
}
.ai-text h2 em {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    color: var(--teal);
}
.ai-text p {
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 24px;
}

/* ========================================
   PAGE: GALERI (galeri.html)
   ======================================== */
.gallery-page { padding: 100px 0 80px; background: var(--bg); }
.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
}
.gt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--white);
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--line);
    transition: all .35s var(--ease);
}
.gt-btn i { color: var(--gold); }
.gt-btn span {
    background: var(--bg-alt);
    color: var(--ink);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    letter-spacing: 0;
}
.gt-btn:hover { border-color: var(--gold); color: var(--ink); }
.gt-btn.active {
    background: var(--teal-deep);
    color: var(--white);
    border-color: var(--teal-deep);
}
.gt-btn.active i { color: var(--gold); }
.gt-btn.active span { background: rgba(255,255,255,.1); color: var(--gold); }

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}
.gm-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-alt);
}
.gm-item.tall { grid-row: span 2; }
.gm-item.wide { grid-column: span 2; }
.gm-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.gm-item:hover img { transform: scale(1.06); }
.gm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8,20,18,.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 22px;
    color: var(--white);
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.gm-item:hover .gm-overlay { opacity: 1; }
.gm-overlay span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
}
.gm-overlay i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.gallery-loadmore {
    text-align: center;
    margin-top: 60px;
}

/* VIDEO TOUR */
.video-tour {
    position: relative;
    padding: 140px 0;
    color: var(--white);
    overflow: hidden;
    text-align: center;
}
.vt-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.vt-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,20,18,.85) 0%, rgba(10,46,42,.92) 100%);
}
.vt-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.vt-play {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all .4s var(--ease);
    cursor: pointer;
}
.vt-play:hover { background: var(--white); color: var(--ink); transform: scale(1.05); }
.vt-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}
.video-tour p {
    color: rgba(255,255,255,.8);
    font-size: 17px;
    margin: 0 auto 36px;
    max-width: 540px;
}

/* ========================================
   PAGE: ILETISIM (iletisim.html)
   ======================================== */
.contact-cards { padding: 90px 0 0; background: var(--bg); }
.cc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}
.cc-card {
    background: var(--white);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all .4s var(--ease);
    display: block;
    color: var(--ink);
}
.cc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.cc-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 26px;
    transition: all .4s var(--ease);
}
.cc-card:hover .cc-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--ink);
}
.cc-icon.green {
    background: linear-gradient(135deg, #25D366, #1ebe57);
    color: var(--white);
}
.cc-card span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 6px;
}
.cc-card strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 4px;
}
.cc-card small { font-size: 12px; color: var(--ink-soft); }

.contact-main { padding: 100px 0; background: var(--bg); }
.cm-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.cm-text .lead { font-size: 18px; color: var(--ink); margin-bottom: 16px; }
.cm-text > p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 36px; }

.cm-info { display: flex; flex-direction: column; gap: 6px; margin-bottom: 36px; }
.cmi {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.cmi i {
    color: var(--gold);
    font-size: 22px;
    margin-top: 2px;
    width: 28px;
    text-align: center;
}
.cmi strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 2px;
}
.cmi span { font-size: 14px; color: var(--ink-soft); }

.cm-social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.cm-social > span {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-right: 8px;
}
.cm-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    transition: all .3s var(--ease);
}
.cm-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    transform: translateY(-3px);
}

.cm-form {
    background: var(--white);
    padding: 50px 50px 40px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold);
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.cf-field.full { grid-column: span 2; }
.cf-row .cf-field { margin-bottom: 0; }
.cf-field label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
}
.cf-field input, .cf-field select, .cf-field textarea {
    border: 1px solid var(--line);
    background: var(--white);
    padding: 14px 16px;
    font-size: 14.5px;
    color: var(--ink);
    transition: border-color .3s var(--ease);
    font-family: inherit;
    resize: vertical;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
    border-color: var(--gold);
    outline: none;
}
.cf-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--ink-soft);
    cursor: pointer;
}
.cf-check input { margin-top: 4px; accent-color: var(--gold); }
.cf-check a { color: var(--teal); text-decoration: underline; }

.cf-success {
    display: none;
    margin-top: 24px;
    padding: 18px 22px;
    background: rgba(46, 160, 89, .1);
    color: #2ea059;
    border-left: 3px solid #2ea059;
    font-size: 14px;
    align-items: center;
    gap: 12px;
}
.cf-success.show { display: flex; }
.cf-success i { font-size: 22px; }

/* MAP */
.map-section { position: relative; }
.map-wrap {
    position: relative;
    height: 540px;
}
.map-wrap iframe { width: 100%; height: 100%; display: block; filter: grayscale(20%); }
.map-overlay-card {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    width: 380px;
    background: var(--white);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--gold);
}
.map-overlay-card h3 {
    font-size: 28px;
    color: var(--ink);
    margin-bottom: 12px;
}
.map-overlay-card > p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.map-overlay-card > p i { color: var(--gold); margin-right: 6px; }
.map-distances {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    margin-bottom: 24px;
}
.map-distances > div {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.map-distances strong {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--teal);
    font-weight: 400;
    min-width: 70px;
}
.map-distances span {
    font-size: 13px;
    color: var(--ink-soft);
}

/* FAQ */
.faq { padding: 100px 0 130px; background: var(--bg-alt); }
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s var(--ease);
    border-left: 3px solid transparent;
}
.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-left-color: var(--gold);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal); }
.faq-item summary i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all .3s var(--ease);
    flex-shrink: 0;
}
.faq-item[open] summary i {
    background: var(--gold);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 30px 28px;
    color: var(--ink-soft);
    line-height: 1.75;
    font-size: 14.5px;
    animation: slideDown .4s var(--ease);
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE - new pages */
@media (max-width: 1100px) {
    .gi-grid { grid-template-columns: 1fr; gap: 50px; }
    .rest-feature { grid-template-columns: 1fr; }
    .rf-img { min-height: 380px; }
    .rf-body { padding: 40px; }
    .rf-body h2 { font-size: 38px; }
    .rest-grid { grid-template-columns: repeat(2, 1fr); }
    .bars-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-card { grid-template-columns: 1fr; padding: 40px; gap: 28px; text-align: center; }
    .ai-icon { margin: 0 auto; }

    .gallery-masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }

    .cc-grid { grid-template-columns: repeat(2, 1fr); margin-top: -100px; }
    .cm-grid { grid-template-columns: 1fr; gap: 50px; }
    .map-overlay-card {
        position: static;
        transform: none;
        width: auto;
        max-width: 600px;
        margin: -80px auto 0;
        z-index: 5;
    }
    .map-section { padding-bottom: 60px; }
}
@media (max-width: 700px) {
    .gastro-intro, .restaurants, .chef, .bars, .ai-concept { padding: 70px 0; }
    .gi-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .gis { padding: 24px 14px; }
    .gis strong { font-size: 40px; }
    .rf-body { padding: 32px 24px; }
    .rf-body h2 { font-size: 30px; }
    .rest-info { grid-template-columns: 1fr; gap: 16px; }
    .rf-actions { flex-direction: column; align-items: stretch; }
    .cat-title { font-size: 26px; margin: 60px 0 28px; padding-left: 16px; }
    .rest-grid { grid-template-columns: 1fr; }
    .rest-card p, .rest-card.small p { min-height: auto; }
    .bars-grid { grid-template-columns: 1fr; }
    .bar-card { height: 320px; }
    .chef-quote { padding: 24px 24px 28px; }
    .chef-quote p { font-size: 18px; }
    .ai-text h2 { font-size: 30px; }
    .ai-icon { width: 90px; height: 90px; }
    .ai-icon i { font-size: 38px; }

    .gallery-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
    .gt-btn { flex-shrink: 0; padding: 10px 16px; font-size: 11px; }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 8px; }
    .gm-item.wide { grid-column: span 2; }
    .gm-item.tall { grid-row: span 1; }
    .video-tour { padding: 80px 0; }
    .vt-play { width: 80px; height: 80px; font-size: 22px; margin-bottom: 30px; }

    .cc-grid { grid-template-columns: 1fr; margin-top: -80px; gap: 16px; }
    .cc-card { padding: 30px 24px; }
    .contact-main { padding: 70px 0; }
    .cm-form { padding: 32px 24px 28px; }
    .cf-row { grid-template-columns: 1fr; gap: 0; }
    .cf-field.full { grid-column: span 1; }
    .map-wrap { height: 380px; }
    .map-overlay-card { padding: 30px 24px; }
    .faq { padding: 70px 0 90px; }
    .faq-item summary { padding: 20px 22px; font-size: 17px; gap: 14px; }
    .faq-item summary i { width: 30px; height: 30px; font-size: 11px; }
    .faq-answer { padding: 0 22px 22px; font-size: 14px; }
}

/* ========== REVEAL ANIMATIONS ==========
   Sadece JS hazır olduğunda gizle (html.js-anim sınıfı JS tarafından eklenir).
   Bu sayede JS yavaş yüklenirse veya başarısız olursa içerik her zaman görünür kalır.
   Ayrıca prefers-reduced-motion için ve uzun bekleme önlemi için fallback timer var. */
html.js-anim .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    will-change: opacity, transform;
}
html.js-anim .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    html.js-anim .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .nav-menu, .nav-cta .btn-reserve { display: none; }
    .hamburger { display: flex; }
    .hero-content { padding: 0 32px; }
    .booking-form { grid-template-columns: repeat(3, 1fr); }
    .b-submit { grid-column: span 3; }
    .about-grid, .act-flex { grid-template-columns: 1fr; gap: 60px; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .gastro-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 280px 280px 280px 280px; }
    .gastro-card.big { grid-column: span 2; grid-row: span 1; }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-card { grid-template-columns: 1fr; padding: 70px 40px; }
    .float-reserve { display: none; }
    .hero-side { display: none; }
}

@media (max-width: 700px) {
    .top-strip { font-size: 11px; }
    .ts-left a { display: inline-block; margin-right: 12px; }
    .ts-left a:first-child + a { display: none; }
    .nav-inner { height: 72px; padding: 0 20px; }
    .logo-mark { width: 40px; height: 40px; font-size: 22px; }
    .logo-top { font-size: 17px; }
    .logo-sub { font-size: 8px; }
    .mobile-menu { top: 72px; }
    .mobile-menu.open { height: calc(100vh - 72px); }
    .hero { height: 86vh; }
    .hero-content { padding: 0 22px; }
    .hero-content h1 { font-size: 48px; }
    .hero-content p { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .scroll-down { display: none; }
    .slider-nav { bottom: 30px; gap: 18px; }
    .slider-nav button { width: 40px; height: 40px; }
    .booking-bar { margin: -40px 16px 0; padding: 24px 22px; }
    .booking-form { grid-template-columns: 1fr 1fr; }
    .b-submit { grid-column: span 2; }
    .container { padding: 0 22px; }
    .about, .rooms, .gastronomy, .activities, .gallery, .thermal { padding: 80px 0; }
    .section-title { font-size: 36px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat h3 { font-size: 36px; }
    .about-visual { height: 420px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .thermal-feats { grid-template-columns: 1fr; gap: 24px; }
    .gastro-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 240px); }
    .gastro-card.big { grid-column: span 1; }
    .awards-grid { grid-template-columns: 1fr; gap: 18px; }
    .award-card { padding: 32px 26px; }
    .award-card p { min-height: auto; }
    .aw-logos { gap: 14px; padding: 20px 24px; border-radius: 30px; }
    .aw-logos > span:not(.aw-dot) { font-size: 11px; }
    .act-visual { height: 420px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .g-item.tall, .g-item.wide { grid-row: span 1; grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cta-card { padding: 60px 28px; }
}

/* ========================================================================
   SUBPAGE STYLES — termal-spa, gastronomi, galeri, iletisim, oda-detay
   ======================================================================== */

/* -- Termal & SPA -------------------------------------------------------- */
.spa-intro-image {
    min-height: 480px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 70px -30px rgba(0,0,0,.35);
}
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 14px;
}
.benefit-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--ink-soft);
    font-size: 15px;
}
.benefit-list li i {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
    font-size: 12px;
    flex: 0 0 28px;
}
.spa-treatments { padding: 110px 0; background: var(--bg); }
.spa-gallery { padding: 110px 0; background: var(--bg-alt); }
.spa-facilities { padding: 110px 0; background: var(--bg); }
.spa-faq { padding: 110px 0; background: var(--bg-alt); }

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 60px;
}
.treatment-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 14px 40px -22px rgba(14,27,26,.18);
    border: 1px solid var(--line);
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}
.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -28px rgba(14,27,26,.28);
}
/* Görselli varyant */
.treatment-card.has-image { padding: 0; }
.treatment-card.has-image .tc-body { padding: 0 28px 28px; }
.treatment-card .tc-image {
    width: calc(100% + 0px);
    aspect-ratio: 16/10;
    background: #0e1b1a center/cover no-repeat;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    transition: transform .6s ease;
}
.treatment-card .tc-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(14,27,26,.55) 100%);
}
.treatment-card.has-image:hover .tc-image { transform: scale(1.04); }
.tc-icon-mini {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 42px; height: 42px;
    background: rgba(255,255,255,.95);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 17px;
    z-index: 2;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.tc-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    color: var(--gold);
    font-size: 24px;
}
.tc-body { display: flex; flex-direction: column; gap: 10px; }
.tc-cat {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}
.tc-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--ink);
    margin: 0;
}
.tc-body p,
.tc-desc,
.tc-desc p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 8px;
}
.tc-desc p:last-child { margin-bottom: 0; }
.tc-desc strong { color: var(--ink); }
.tc-desc em { color: var(--gold); font-style: normal; }
.tc-desc ul, .tc-desc ol { margin: 4px 0 8px; padding-left: 18px; }
.tc-desc ul li, .tc-desc ol li { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.tc-foot {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: var(--ink-soft);
}
.tc-foot strong {
    color: var(--teal-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
}
.tc-foot i { margin-right: 6px; color: var(--gold); }

.fac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
    margin-top: 60px;
}
.fac-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    border: 1px solid var(--line);
    transition: transform .3s, box-shadow .3s;
}
.fac-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -25px rgba(14,27,26,.25);
}
.fac-card i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
}
.fac-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--ink);
    margin: 0;
}

.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 50px; }
.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 20px 26px;
    transition: box-shadow .25s;
}
.faq-item[open] { box-shadow: 0 14px 30px -20px rgba(14,27,26,.2); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--ink);
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: var(--gold);
    transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

/* -- Gastronomi (restaurants) ------------------------------------------- */
.restaurants-list { padding: 100px 0; background: var(--bg); }
.rest-grid { display: flex; flex-direction: column; gap: 80px; }
.rest-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}
.rest-card.reverse { direction: rtl; }
.rest-card.reverse > * { direction: ltr; }
.rest-img {
    height: 480px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 70px -30px rgba(0,0,0,.4);
}
.rest-body { display: flex; flex-direction: column; gap: 18px; }
.rest-cat {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 700;
}
.rest-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    color: var(--ink);
    margin: 0;
    line-height: 1.1;
}
.rest-lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
}
.rest-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 22px;
    background: var(--bg-alt);
    border-radius: 14px;
    font-size: 14px;
    color: var(--ink-soft);
}
.rest-info i { color: var(--gold); margin-right: 6px; width: 16px; }
.rest-info strong { color: var(--ink); }
.rest-desc {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

/* -- Galeri -------------------------------------------------------------- */
.gallery-page { padding: 80px 0 110px; background: var(--bg); }
.gallery-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 280px;
    gap: 14px;
}
.gallery-grid-page .g-item {
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
    transition: transform .4s;
}
.gallery-grid-page .g-item:hover { transform: scale(1.02); }
.gallery-grid-page .g-item::before,
.gallery-grid-page .g-item::after { content: none !important; display: none !important; }
.gallery-grid-page .g-item { cursor: zoom-in; }
.gallery-grid-page .g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity .3s;
    color: #fff;
    text-align: center;
    gap: 10px;
}
.gallery-grid-page .g-item:hover .g-overlay { opacity: 1; }
.gallery-grid-page .g-overlay i { font-size: 28px; color: var(--gold); }

/* -- Lightbox ----------------------------------------------------------- */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(5,15,15,.94);
    display: none;
    align-items: center; justify-content: center;
    padding: 60px 60px;
    backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox .lb-stage {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.lightbox .lb-img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    object-fit: contain;
    background: #000;
}
.lightbox .lb-caption {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    text-align: center;
    letter-spacing: .3px;
}
.lightbox .lb-counter {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
    position: absolute;
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background .25s, transform .25s;
}
.lightbox .lb-close:hover,
.lightbox .lb-prev:hover,
.lightbox .lb-next:hover {
    background: var(--gold);
    color: #1a1a1a;
    border-color: var(--gold);
    transform: scale(1.05);
}
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev  { top: 50%; left: 24px;  transform: translateY(-50%); }
.lightbox .lb-next  { top: 50%; right: 24px; transform: translateY(-50%); }
.lightbox .lb-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox .lb-next:hover { transform: translateY(-50%) scale(1.05); }

@media (max-width: 700px){
    .lightbox { padding: 70px 12px; }
    .lightbox .lb-img { max-height: calc(100vh - 200px); }
    .lightbox .lb-prev,
    .lightbox .lb-next { width: 44px; height: 44px; }
    .lightbox .lb-prev { left: 8px; }
    .lightbox .lb-next { right: 8px; }
}

/* -- İletişim ------------------------------------------------------------ */
.contact-section { padding: 100px 0; background: var(--bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.ci-list { display: flex; flex-direction: column; gap: 22px; margin-top: 18px; }
.ci-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 14px 30px -24px rgba(14,27,26,.18);
}
.ci-item > i {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    color: var(--gold);
    font-size: 18px;
    flex: 0 0 48px;
}
.ci-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--ink);
    margin: 0 0 4px;
}
.ci-item p, .ci-item a {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
}
.ci-item a:hover { color: var(--gold); }

.contact-form-wrap {
    background: #fff;
    padding: 44px 40px;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px -30px rgba(14,27,26,.22);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--ink);
    margin: 0;
}
.contact-form > p {
    color: var(--ink-soft);
    font-size: 15px;
    margin: 0 0 6px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-soft);
    font-weight: 600;
}
.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--bg);
    transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,106,.18);
}
.form-status {
    min-height: 22px;
    font-size: 14px;
    margin: 0;
}

/* --- Anti-bot honeypot — görsel ve klavye gezinmesinden tamamen gizli --- */
.cg-hp {
    position: absolute !important;
    left: -10000px !important;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* --- Math CAPTCHA alanı --- */
.cg-captcha {
    background: linear-gradient(135deg, rgba(201,169,106,.06) 0%, rgba(201,169,106,.12) 100%);
    border: 1px dashed rgba(201,169,106,.45);
    border-radius: 12px;
    padding: 14px 16px;
    gap: 10px !important;
}
.cg-captcha label {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 14px !important;
    color: var(--ink) !important;
}
.cg-captcha label i { color: var(--gold); font-size: 16px; }
.cg-captcha label strong {
    color: var(--gold);
    font-weight: 700;
    margin-left: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
}
.cg-captcha input {
    max-width: 120px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
}

/* --- Gizlilik notu --- */
.cg-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 !important;
    padding-top: 4px;
    font-size: 12px !important;
    color: var(--ink-soft);
    line-height: 1.5;
}
.cg-note i { color: #2c7a4b; margin-top: 2px; flex-shrink: 0; }

.contact-map {
    position: relative;
    line-height: 0;
    background: var(--bg-alt);
}
.contact-map iframe { display: block; width: 100%; }
.contact-map .map-cta {
    position: absolute;
    right: 24px;
    bottom: 24px;
    line-height: 1;
}
.contact-map .map-cta .btn-primary {
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
@media (max-width: 700px){
    .contact-map .map-cta { right: 12px; bottom: 12px; }
    .contact-map .map-cta .btn-primary { padding: 12px 18px; font-size: 13px; }
}

/* -- Oda Detay (room-detail) -------------------------------------------- */
.room-detail-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    margin-top: 32px;
    align-items: start;
}
.rd-main { display: flex; flex-direction: column; gap: 36px; }
.rd-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.rd-head h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--ink);
    margin: 8px 0;
    line-height: 1.05;
}
.rd-rating {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--ink-soft);
    font-size: 14px;
}
.rd-rating .stars i { color: var(--gold); font-size: 14px; margin-right: 2px; }
.rd-share { display: flex; gap: 10px; }
.rd-share button {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    transition: all .2s;
}
.rd-share button:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.rd-quick {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}
.rd-quick li {
    padding: 22px 18px;
    border-right: 1px solid var(--line);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.rd-quick li:last-child { border-right: none; }
.rd-quick li i { color: var(--gold); font-size: 22px; }
.rd-quick li span { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-soft); }
.rd-quick li strong { color: var(--ink); font-size: 15px; }

.rd-section h2.rd-title,
.rd-section .rd-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--ink);
    margin: 0 0 18px;
}
.rd-title em { color: var(--gold); font-style: italic; }
.rd-lead {
    font-size: 18px;
    color: var(--ink);
    line-height: 1.6;
    margin: 0 0 14px;
    font-weight: 500;
}
.rd-section p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 14px;
}
.rd-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.amen-group h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--ink);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.amen-group h4 i { color: var(--gold); margin-right: 8px; }
.amen-group ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.amen-group ul li {
    color: var(--ink-soft);
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.amen-group ul li i { color: var(--gold); font-size: 12px; }

.rd-side {
    position: sticky;
    top: 100px;
}
.rd-booking {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 24px 60px -30px rgba(14,27,26,.25);
    border: 1px solid var(--line);
}
.rb-price { display: flex; flex-direction: column; gap: 4px; }
.rb-price span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink-soft);
}
.rb-price strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--ink);
    font-weight: 600;
}
.rb-price strong small {
    font-size: 14px;
    color: var(--ink-soft);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* -- Responsive subpages ------------------------------------------------- */
@media (max-width: 980px) {
    .rest-card,
    .rest-card.reverse { grid-template-columns: 1fr; gap: 24px; direction: ltr; }
    .rest-img { height: 360px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .room-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .rd-side { position: static; }
    .rd-quick { grid-template-columns: repeat(2, 1fr); }
    .rd-quick li:nth-child(2) { border-right: none; }
    .rd-quick li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 30px 24px; }
    .rd-head { flex-direction: column; }
    .rd-head h1 { font-size: 36px; }
    .treatments-grid { grid-template-columns: 1fr; }
    .fac-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid-page { grid-template-columns: 1fr; grid-auto-rows: 240px; }
}

/* ============== ROOM DETAIL LIGHTBOX ============== */
.rh-view-all .rh-count {
    margin-left: 6px;
    opacity: 0.85;
    font-weight: 600;
}
.room-lightbox {
    position: fixed; inset: 0;
    background: rgba(8, 12, 18, 0.96);
    z-index: 9999;
    display: flex; flex-direction: column;
    backdrop-filter: blur(8px);
    animation: lbFade 0.25s ease;
}
.room-lightbox[hidden] { display: none; }
@keyframes lbFade { from { opacity: 0 } to { opacity: 1 } }

.room-lightbox .lb-stage {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 60px 80px 20px;
    overflow: hidden;
    position: relative;
}
.room-lightbox .lb-img {
    max-width: 100%;
    max-height: calc(100vh - 220px);
    width: auto !important;
    height: auto !important;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
}
.room-lightbox .lb-caption {
    position: absolute;
    bottom: 6px;
    left: 0; right: 0;
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.room-lightbox .lb-close,
.room-lightbox .lb-nav {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 48px; height: 48px;
    border-radius: 50%;
    display: grid; place-items: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
    z-index: 2;
}
.room-lightbox .lb-close:hover,
.room-lightbox .lb-nav:hover {
    background: rgba(212, 175, 55, 0.85);
    border-color: rgba(212, 175, 55, 1);
    transform: scale(1.05);
}
.room-lightbox .lb-close { top: 20px; right: 20px; }
.room-lightbox .lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.room-lightbox .lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.room-lightbox .lb-prev:hover,
.room-lightbox .lb-next:hover { transform: translateY(-50%) scale(1.05); }

.room-lightbox .lb-thumbs {
    display: flex;
    gap: 10px;
    padding: 18px 20px;
    overflow-x: auto;
    background: rgba(0,0,0,0.5);
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,0.5) transparent;
}
.room-lightbox .lb-thumb {
    flex: 0 0 110px;
    height: 70px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.6;
    padding: 0;
}
.room-lightbox .lb-thumb:hover { opacity: 0.9; }
.room-lightbox .lb-thumb.active {
    opacity: 1;
    border-color: var(--accent, #d4af37);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .room-lightbox .lb-stage { padding: 50px 16px 12px; }
    .room-lightbox .lb-close { top: 12px; right: 12px; width: 40px; height: 40px; }
    .room-lightbox .lb-nav   { width: 40px; height: 40px; }
    .room-lightbox .lb-prev  { left: 8px; }
    .room-lightbox .lb-next  { right: 8px; }
    .room-lightbox .lb-thumb { flex: 0 0 80px; height: 56px; }
    .room-lightbox .lb-img   { max-height: calc(100vh - 180px); }
}

.rh-thumb { cursor: pointer; transition: transform 0.3s ease; }
.rh-thumb:hover { transform: scale(1.03); }

/* ========================================
   RESERVATION CTA — Oda detay yan panel başlığı
   ======================================== */
.rb-cta-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 12px 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.rb-cta-head i {
    font-size: 28px;
    color: var(--accent, #c8a96a);
    margin-bottom: 6px;
}
.rb-cta-head span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft, #6b6b6b);
}
.rb-cta-head strong {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--ink, #1a1a1a);
    line-height: 1.2;
}

/* ========================================
   SPA TREATMENT — kart altı CTA butonu
   ======================================== */
.tc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}
.tc-foot .tc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--accent, #c8a96a);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.25s ease, transform 0.2s ease;
}
.tc-foot .tc-cta:hover {
    background: var(--teal-deep, #0f4c4a);
    transform: translateY(-1px);
}
.tc-foot .tc-cta i { font-size: 12px; }
@media (max-width: 480px) {
    .tc-foot { flex-direction: column; align-items: stretch; }
    .tc-foot .tc-cta { justify-content: center; }
}

/* ========================================
   ROOMS LIST — kart altı 2 buton (Rezervasyon + Detaylar)
   ======================================== */
.rcl-foot .btn-primary,
.rcl-foot .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.rcl-foot .btn-primary i,
.rcl-foot .btn-ghost i { font-size: 12px; }
@media (min-width: 720px) {
    .rcl-foot { justify-content: flex-end; gap: 10px; }
}

/* ====================================================================
   INSTAGRAM CAROUSEL
   ==================================================================== */
.insta {
    position: relative;
    padding: 110px 0 120px;
    background:
        radial-gradient(1200px 600px at 80% 0%, rgba(225, 48, 108, .06) 0%, transparent 60%),
        radial-gradient(900px 600px at 0% 100%, rgba(131, 52, 175, .05) 0%, transparent 60%),
        var(--bg);
}
.insta::before {
    content: "";
    position: absolute; left: 0; right: 0; top: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 48, 108, .35), rgba(131, 52, 175, .35), transparent);
}
.insta .section-text { max-width: 640px; margin: 14px auto 0; }
.insta-handle {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 16px; padding: 8px 16px;
    border: 1px solid rgba(225, 48, 108, .25); border-radius: 999px;
    color: var(--text); text-decoration: none;
    font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px;
    transition: all .25s ease;
}
.insta-handle i {
    background: linear-gradient(45deg, #feda77 0%, #f58529 25%, #dd2a7b 50%, #8134af 75%, #515bd4 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
}
.insta-handle:hover { border-color: rgba(225, 48, 108, .55); transform: translateY(-1px); }

.insta-carousel {
    position: relative;
    margin-top: 48px;
    padding: 0 8px;
}
.ic-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 78%);
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 4px 28px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(225, 48, 108, .3) transparent;
}
.ic-track::-webkit-scrollbar { height: 6px; }
.ic-track::-webkit-scrollbar-track { background: transparent; }
.ic-track::-webkit-scrollbar-thumb { background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af); border-radius: 3px; }
.ic-track.dragging { cursor: grabbing; user-select: none; scroll-behavior: auto; }
.ic-track.dragging .ic-card { pointer-events: none; }

/* 5 gönderi göstereceğimiz için sütun sayısı az tutuldu → her kare daha büyük görünür */
@media (min-width: 640px)  { .ic-track { grid-auto-columns: minmax(0, calc((100% - 20px * 1) / 2)); } }
@media (min-width: 980px)  { .ic-track { grid-auto-columns: minmax(0, calc((100% - 20px * 2) / 3)); } }
@media (min-width: 1240px) { .ic-track { grid-auto-columns: minmax(0, calc((100% - 20px * 3) / 4)); } }

.ic-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    scroll-snap-align: start;
    background: var(--card);
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: pointer;
}
.ic-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .55s ease, filter .35s ease;
    display: block;
}
.ic-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(0, 0, 0, .18); }
.ic-card:hover img { transform: scale(1.07); filter: brightness(.7); }

.ic-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 14px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .35) 45%, transparent 70%);
    opacity: 0;
    transition: opacity .3s ease;
}
.ic-card:hover .ic-overlay { opacity: 1; }
.ic-overlay > i.fa-instagram {
    position: absolute; top: 12px; left: 12px;
    font-size: 20px;
    background: linear-gradient(45deg, #feda77 0%, #f58529 25%, #dd2a7b 50%, #8134af 75%, #515bd4 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ic-overlay p {
    font-family: 'Inter', sans-serif;
    font-size: 12px; line-height: 1.45;
    margin: 0; color: rgba(255, 255, 255, .92);
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
    overflow: hidden;
}
.ic-go {
    position: absolute; top: 12px; right: 12px;
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    color: #fff; font-size: 11px;
    transition: background .25s ease, transform .25s ease;
}
.ic-card:hover .ic-go { background: linear-gradient(45deg, #f58529, #dd2a7b); transform: rotate(-8deg) scale(1.08); }

.ic-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border, rgba(0, 0, 0, .08));
    background: #fff;
    color: var(--text);
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .2s ease;
}
.ic-nav:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b);
    color: #fff; border-color: transparent;
    transform: translateY(-50%) scale(1.06);
}
.ic-prev { left: -10px; }
.ic-next { right: -10px; }
@media (max-width: 640px) {
    .ic-prev { left: 4px; } .ic-next { right: 4px; }
    .ic-nav { width: 38px; height: 38px; }
}

.insta-cta { text-align: center; margin-top: 18px; }
.insta-cta .btn-primary {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    border: none; color: #fff;
    padding: 14px 28px; border-radius: 999px;
    font-family: 'Inter', sans-serif; font-weight: 600;
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(221, 42, 123, .3);
    transition: transform .25s ease, box-shadow .25s ease;
}
.insta-cta .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(221, 42, 123, .42); }

.insta-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 56px 24px;
    margin: 36px auto 0;
    max-width: 560px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(254, 218, 119, .08), rgba(225, 48, 108, .06), rgba(131, 52, 175, .08));
    border: 1px dashed rgba(225, 48, 108, .25);
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, border-color .25s ease;
}
.insta-empty:hover { transform: translateY(-2px); border-color: rgba(225, 48, 108, .55); }
.insta-empty > i {
    font-size: 48px;
    background: linear-gradient(45deg, #feda77 0%, #f58529 25%, #dd2a7b 50%, #8134af 75%, #515bd4 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.insta-empty h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; margin: 14px 0 8px; }
.insta-empty p  { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-muted); margin: 0 0 18px; max-width: 420px; }
.insta-empty .ie-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 999px;
    background: linear-gradient(45deg, #f58529, #dd2a7b);
    color: #fff; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px;
}

/* ========================================
   CORPORATE PAGE — sol menü + sağ içerik
   ======================================== */
.corporate-section {
    padding: 80px 0 100px;
    background: var(--bg);
}
.corporate-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

/* Sol — Mobile toggle */
.corp-toggle {
    display: none;
    width: 100%;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.corp-toggle .corp-chevron {
    margin-left: auto;
    transition: transform .25s ease;
    color: var(--gold);
}
.corp-toggle[aria-expanded="true"] .corp-chevron { transform: rotate(180deg); }

/* Sol Menü */
.corp-side { position: sticky; top: 110px; }
.corp-nav {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 0 14px;
    box-shadow: 0 18px 50px -28px rgba(14,27,26,.18);
}
.corp-nav h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--ink);
    margin: 0 24px 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}
.corp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.corp-nav ul a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all .2s ease;
    position: relative;
}
.corp-nav ul a i.fa-solid:first-child {
    color: var(--gold);
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.corp-nav ul a:hover {
    background: rgba(201,169,106,.06);
    color: var(--ink);
}
.corp-nav ul a.active {
    background: linear-gradient(90deg, rgba(201,169,106,.14) 0%, rgba(201,169,106,.04) 100%);
    color: var(--ink);
    border-left-color: var(--gold);
    font-weight: 600;
}
.corp-pin {
    margin-left: auto;
    color: var(--gold);
    font-size: 12px;
}

/* Sağ İçerik */
.corp-content {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 50px 56px;
    box-shadow: 0 20px 60px -34px rgba(14,27,26,.18);
    min-height: 400px;
}
.corp-content-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,169,106,.15) 0%, rgba(201,169,106,.05) 100%);
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.corp-content-icon i {
    font-size: 26px;
    color: var(--gold);
}
.corp-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 18px;
}
.corp-content .corp-lead {
    font-size: 17px;
    color: var(--ink-soft);
    margin: 0 0 24px;
    line-height: 1.6;
}
.corp-body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    font-size: 15.5px;
    line-height: 1.75;
}
.corp-body p { margin: 0 0 16px; }
.corp-body h3, .corp-body h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink);
    margin: 32px 0 12px;
    line-height: 1.25;
}
.corp-body h3 { font-size: 24px; }
.corp-body h4 { font-size: 20px; }
.corp-body strong { color: var(--ink); font-weight: 600; }
.corp-body ul, .corp-body ol {
    margin: 0 0 20px;
    padding-left: 20px;
}
.corp-body ul li, .corp-body ol li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.corp-body ul li::marker { color: var(--gold); }
.corp-body a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201,169,106,.3);
    transition: border-color .2s ease;
}
.corp-body a:hover { border-color: var(--gold); }
.corp-body blockquote {
    border-left: 3px solid var(--gold);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(201,169,106,.05);
    font-style: italic;
    color: var(--ink-soft);
}

/* ===== Konsept & Bilgiler — özel bileşenler ===== */
.corp-body .lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.corp-body .info-table {
    margin: 0 0 24px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}
.corp-body .info-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}
.corp-body .info-table thead th {
    background: rgba(201,169,106,.08);
    color: var(--ink);
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
}
.corp-body .info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,.05);
    vertical-align: middle;
}
.corp-body .info-table tr:last-child td { border-bottom: 0; }
.corp-body .info-table tr:hover td { background: rgba(201,169,106,.04); }

.corp-body .note-box {
    background: rgba(201,169,106,.06);
    border-left: 3px solid var(--gold);
    padding: 18px 22px;
    border-radius: 0 6px 6px 0;
    margin: 20px 0 28px;
}
.corp-body .note-box p { margin: 0 0 10px; }
.corp-body .note-box p:last-child { margin-bottom: 0; }
.corp-body .note-box ul { margin: 0; padding-left: 18px; }
.corp-body .note-box ul li { margin-bottom: 6px; font-size: 14.5px; }

.corp-body .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 0 0 28px;
}
.corp-body .info-grid.two-col {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.corp-body .info-grid .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    transition: all .25s ease;
}
.corp-body .info-grid .info-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(201,169,106,.12);
    transform: translateY(-2px);
}
.corp-body .info-grid .info-item i {
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
    width: 22px;
    text-align: center;
}
.corp-body .info-grid .info-item > div { display: flex; flex-direction: column; gap: 2px; }
.corp-body .info-grid .info-item strong {
    font-size: 14.5px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.35;
}
.corp-body .info-grid .info-item span {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.4;
}

.corp-body .check-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 24px;
}
.corp-body .check-list.two-col {
    columns: 2;
    column-gap: 28px;
}
.corp-body .check-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    break-inside: avoid;
}
.corp-body .check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .corp-body .info-table { font-size: 13.5px; }
    .corp-body .info-table th,
    .corp-body .info-table td { padding: 10px 12px; }
    .corp-body .info-grid { grid-template-columns: 1fr; }
    .corp-body .info-grid.two-col { grid-template-columns: 1fr; }
    .corp-body .check-list.two-col { columns: 1; }
}

/* Tablet */
@media (max-width: 1024px) {
    .corporate-layout { grid-template-columns: 240px 1fr; gap: 32px; }
    .corp-content { padding: 40px 36px; }
    .corp-content h2 { font-size: 32px; }
}

/* Mobile */
@media (max-width: 768px) {
    .corporate-section { padding: 40px 0 60px; }
    .corporate-layout { grid-template-columns: 1fr; gap: 0; }
    .corp-side { position: static; }
    .corp-toggle { display: flex; }
    .corp-nav {
        display: none;
        margin-bottom: 24px;
        padding: 16px 0 8px;
    }
    .corp-nav.open { display: block; }
    .corp-nav h3 { display: none; }
    .corp-content { padding: 32px 22px; }
    .corp-content h2 { font-size: 26px; }
    .corp-content .corp-lead { font-size: 15px; }
}

/* ========================================
   QUILL EDITOR OUTPUT — admin Quill çıktısı
   Frontend'de hero başlığı, açıklama vs.
   ======================================== */
.ql-size-small  { font-size: 0.75em; }
.ql-size-large  { font-size: 1.5em; }
.ql-size-huge   { font-size: 2.5em; }
.ql-align-center { display: block; text-align: center; }
.ql-align-right  { display: block; text-align: right; }
.ql-align-justify{ display: block; text-align: justify; }
.ql-font-serif   { font-family: 'Cormorant Garamond', serif; }
.ql-font-monospace { font-family: 'Courier New', monospace; }
/* Hero başlıkta inline <span> color/size düzgün uygulansın */
.hero-content h1 .ql-size-huge,
.hero-content h1 .ql-size-large {
    line-height: 1;
    display: inline-block;
}
