/* Responsive Scroll-to-top (new) */
.scrolltop-btn {
  position: fixed; right: clamp(12px, 2.5vw, 20px); bottom: clamp(12px, 3vw, 28px);
  width: clamp(42px, 5.5vw, 56px); height: clamp(42px, 5.5vw, 56px);
  display: grid; place-items: center;
  background: linear-gradient(135deg, #0b3d3a, #0e6a62);
  color: #fff; border: 0; border-radius: 999px;
  box-shadow: 0 10px 24px rgba(14,106,98,0.35);
  cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px) scale(.96);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, box-shadow .25s ease;
  z-index: 60;
}
.scrolltop-btn.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.scrolltop-btn i { font-size: clamp(16px, 2.3vw, 20px); }
.scrolltop-btn:active { transform: translateY(1px) scale(.98); }
@media (prefers-reduced-motion: reduce) {
  .scrolltop-btn { transition: none; }
}
.about-cta-section .cta-content a.btn.btn-primary,
.about-cta-section .cta-content a.btn.btn-primary:hover,
.about-cta-section .cta-content a.btn.btn-primary:focus,
.about-cta-section .cta-content a.btn.btn-primary:active,
.about-cta-section .cta-content a.btn.btn-primary:visited {
    background: linear-gradient(135deg, #0b3d3a, #0e6a62) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    border: 2px solid #0b3d3a !important;
    box-shadow: 0 10px 24px rgba(14,106,98,0.35), 0 0 0 1px rgba(14,106,98,0.9) !important;
}
.about-cta-section .cta-content a.btn.btn-primary i {
    color: #ffffff !important;
}
/* =========================================================
   MiniBi'Otel – Hotel Website Styles
   ========================================================= */

/* -------- Reset / Base -------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scrollbar-gutter: stable both-edges; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid #0ea5e9; outline-offset: 2px; }

/* Container */
.container { width: 100%; max-width: 1200px; padding-inline: 16px; margin-inline: auto; }
.section { padding-block: 64px; }

/* -------- Header -------- */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(6px);
  border-bottom: 1px solid #e5e7eb;
}

/* Topbar */
.topbar { display: none !important; }

/* Navbar spacing to account for topbar */
.navbar { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); backdrop-filter: saturate(150%) blur(6px); border-bottom: 1px solid #e5e7eb; }
.navbar .nav-container { height: 72px; }

/* Mobile overlay menu */
.mobile-menu-overlay { position: fixed; inset: 0; z-index: 9999; opacity: 0; visibility: hidden; transition: opacity 220ms ease; pointer-events: none; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu-overlay::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.42); backdrop-filter: blur(2px); z-index: 1; }
.mobile-drawer { position: absolute; left: 0; top: 0; bottom: 0; width: 50vw; max-width: 420px; background: #ffffff; border-right: 1px solid #e5e7eb; padding: 12px; display: grid; grid-template-rows: auto 1fr auto; transform: translateX(-105%); transition: transform 300ms ease; z-index: 2; }
.mobile-menu-overlay.active .mobile-drawer { transform: translateX(0); }
.mobile-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 2px 0 6px; border-bottom: 1px solid #e5e7eb; margin-bottom: 6px; }
.mobile-logo { height: 32px; width: auto; object-fit: contain; }
.mobile-close { background: transparent; border: 0; font-size: 22px; padding: 6px; border-radius: 8px; color: #334155; }
.mobile-close:hover { background: #f1f5f9; }
.mobile-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; align-content: flex-start; align-items: stretch; }
.mobile-menu > li { margin: 0; }
.mobile-link { display: block; padding: 8px 12px; border-radius: 10px; color: #334155; line-height: 1.1; }
.mobile-link:hover { background: #f1f5f9; color: #0f766e; }
.mobile-menu > li + li { border-top: 0; }
.mobile-has-dropdown .mobile-toggle { width: 100%; text-align: left; background: transparent; border: 0; padding: 8px 12px; border-radius: 10px; color: #334155; display: flex; align-items: center; justify-content: space-between; line-height: 1.1; }
.mobile-submenu { display: none; list-style: none; padding-left: 10px; margin: 0; }
.mobile-has-dropdown.open .mobile-submenu { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu > li { padding: 0; }
.mobile-submenu li { padding: 0; }
.mobile-submenu .mobile-link { padding: 6px 12px; }
.mobile-bottom { border-top: 1px solid #e5e7eb; padding-top: 8px; margin-top: 6px; display: grid; gap: 6px; }
.mobile-phone { color: #0f766e; font-weight: 600; }
.mobile-socials a { margin-right: 10px; color: #334155; }

@media (min-width: 1024px) {
  .mobile-menu-overlay { display: none !important; }
}

/* Hide inline nav on mobile, show hamburger */
@media (max-width: 1024px) {
  .nav-menu { display: none !important; }
  .hamburger { display: flex !important; }
}

/* Smaller phones: drawer wider */
@media (max-width: 480px) {
  .mobile-drawer { width: 78vw; }
}

/* Responsive spacing for drawer menu items */
@media (max-width: 360px) {
  .mobile-menu { gap: 2px; }
  .mobile-link, .mobile-has-dropdown .mobile-toggle { padding: 6px 10px; }
  .mobile-submenu .mobile-link { padding: 4px 10px; }
  .mobile-logo { height: 28px; }
  .mobile-drawer { width: 82vw; }
}
@media (min-width: 361px) and (max-width: 480px) {
  .mobile-menu { gap: 3px; }
  .mobile-link, .mobile-has-dropdown .mobile-toggle { padding: 8px 12px; }
  .mobile-submenu .mobile-link { padding: 6px 12px; }
  .mobile-drawer { width: 78vw; }
}
@media (min-width: 481px) and (max-width: 768px) {
  .mobile-menu { gap: 6px; }
  .mobile-link, .mobile-has-dropdown .mobile-toggle { padding: 10px 14px; }
  .mobile-submenu .mobile-link { padding: 8px 12px; }
  .mobile-drawer { width: 60vw; max-width: 420px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-menu { gap: 8px; }
  .mobile-link, .mobile-has-dropdown .mobile-toggle { padding: 12px 16px; }
  .mobile-submenu .mobile-link { padding: 10px 14px; }
  .mobile-drawer { width: 50vw; }
}

/* Explicit spacing request: main menu 14px, submenu 8px */
.mobile-menu { gap: 14px; }
.mobile-has-dropdown.open .mobile-submenu { gap: 8px; }

/* Prevent background scroll when menu open */
/* Remove scroll locking behavior per request */
body.no-scroll { overflow: auto; }
body.no-scroll .topbar { pointer-events: auto; }
.header .bar { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav { display: flex; gap: 16px; }
.nav a { font-size: 14px; color: #334155; }
.nav a:hover, .nav a.is-active { color: #0ea5e9; }

/* =========================================================
   HERO (Slider'lı) — Beyaz boşluk/flash fixleri dâhil
   ========================================================= */

/* Tüm yükseklikler tek standarda: 100svh */
.hero,
.hero-slider,
.slide {
  min-height: 100svh;
  height: 100svh;
}

/* Hero kök */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;        /* ::after sadece hero içinde kalsın */
  display: flow-root;        /* margin collapse keser */
  background: #000;          /* slider imajı yüklenmeden siyah perde */
  color: #fff;
  will-change: transform;
  backface-visibility: hidden;
  padding-bottom: 1px;       /* sub-pixel gap fix */
  margin-bottom: -1px;       /* sub-pixel gap fix */
}

/* Alt gradient – içeride ve ince tut */
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 0;                 /* remove fade to avoid color seam */
  background: none;
  pointer-events: none;
  z-index: 1;
}

/* Slider alanı */
.hero-slider {
  position: absolute;
  inset: 0;
}

/* Tekil slide */
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: none;                   /* JS aktif olmayan ortamda ilk slide görünecek */
  align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(1.02);          /* 1.05 yerine daha güvenli */
  transition: opacity .6s ease-in-out, transform .6s ease-in-out;
  will-change: opacity, transform;
}

.slide.is-active { display: flex; opacity: 1; transform: scale(1); }
.slide.is-prev { display: flex; opacity: 0; }

/* Slide içerik */
.slide-content {
  text-align: center;
  max-width: 820px;
  padding: 0 20px;
  z-index: 2;
  animation: slideInUp 1s ease-out both;
}
.slide-title { font-size: clamp(28px, 4vw, 56px); line-height: 1.1; font-weight: 800; }
.slide-sub { margin-top: 12px; font-size: clamp(14px, 1.6vw, 18px); color: #e2e8f0; }
.cta-row { margin-top: 24px; display: inline-flex; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 18px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 600;
}
.btn.primary { background: #0ea5e9; color: #fff; }
.btn.primary:hover { background: #0284c7; }
.btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn.ghost:hover { border-color: #fff; }

/* Animasyon */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  .slide, .slide-content { transition: none !important; animation: none !important; }
}

/* Sub‑pixel çizgi ihtimaline karşı güvenlik kenarı (gerekirse aç) */
/* .hero { padding-bottom: 1px; margin-bottom: -1px; } */

/* -------- Pager / Arrows (isteğe bağlı sınıflar) -------- */
.hero-pager {
  position: absolute; z-index: 2; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.dot {
  width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.6);
}
.dot.is-active { background: #fff; }

/* =========================================================
   ABOUT — margin yerine padding (collapse yok)
   ========================================================= */
.about {
  margin-top: -1px;          /* overlap hero by 1px to hide any seam */
  padding-top: 24px;
  padding-bottom: 64px;
  background: #f8f9fa;
  position: relative;
  z-index: 0;
}
.about .lead { font-size: clamp(16px, 1.8vw, 18px); color: #334155; }

/* =========================================================
   ROOMS
   ========================================================= */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 20px;
}
@media (min-width: 640px) {
  .rooms-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.room-card {
  border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  display: flex; flex-direction: column;
}
.room-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-body { padding: 16px; display: grid; gap: 8px; }
.room-title { font-size: 18px; font-weight: 700; }
.room-desc { color: #475569; font-size: 14px; }
.room-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.price { color: #0ea5e9; font-weight: 700; }

/* Oda Detay */
.room-detail {
  display: grid; gap: 24px;
}
@media (min-width: 920px) {
  .room-detail { grid-template-columns: 1.2fr .8fr; }
}
.room-detail .gallery {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.room-detail .gallery .item { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 12px; }
.room-attrs {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 12px;
}
.room-attrs .attr {
  border: 1px solid #e5e7eb; border-radius: 12px; padding: 10px; font-size: 14px;
}
.amenities { margin-top: 16px; padding-left: 18px; color: #334155; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.gallery-grid .cell { position: relative; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; }

/* =========================================================
   CONTACT
   ========================================================= */
.form {
  width: 100%; max-width: 680px; display: grid; gap: 12px;
}
.input, .textarea {
  width: 100%; border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px 14px;
  font: inherit; background: #fff;
}
.input:focus, .textarea:focus { border-color: #0ea5e9; box-shadow: 0 0 0 3px rgba(14,165,233,.15); }
.textarea { min-height: 140px; resize: vertical; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid #e5e7eb; background: #fff; color: #475569;
  padding-block: 28px; font-size: 14px;
}
.footer .row {
  display: flex; flex-direction: column; gap: 10px;
}
@media (min-width: 640px) {
  .footer .row { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* =========================================================
   UTILITIES
   ========================================================= */
.h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1.2; font-weight: 800; margin: 0 0 12px; }
.h2 { font-size: clamp(22px, 3vw, 28px); line-height: 1.25; font-weight: 700; margin: 0 0 10px; }
.muted { color: #64748b; }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 640px) {
  .nav { gap: 10px; }
  .btn { height: 42px; padding-inline: 14px; }
  .room-attrs { grid-template-columns: 1fr; }
}

/* Dark mode rules removed for simplicity */

/* Reset and Base Styles */
:root {
    --vh: 1vh;
    --brand: #20B2AA;
    --brand-600: #189e97;
    --brand-50: #e6f7f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
    font-family: 'Merriweather', serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #20B2AA, #FFD700);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

/* Base typography */
h1 {
    font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
    line-height: 1.2;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}
h2 {
    font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.25rem);
    line-height: 1.25;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    text-align: center;
}
h3 {
    font-size: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
    line-height: 1.3;
    color: #334155;
    margin: 0 0 0.5rem 0;
}
p {
    color: #475569;
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(32, 178, 170, 0.4);
    color: #ffffff; /* hover'da metin beyaz kalsın */
}

/* CTA içindeki birincil butonların okunabilirliği için kontrast arttırımı */
.about-cta-section .btn-primary,
.about-cta .btn-primary {
    color: #ffffff !important;
    text-shadow: 0 1px 0 rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #0f766e, #14b8a6); /* CTA alanında daha koyu zemin */
    border: 2px solid #0f766e; /* beyaz fonda çerçeve görünür */
}
.about-cta-section .btn-primary:hover,
.about-cta .btn-primary:hover {
    color: #ffffff !important;
    text-shadow: 0 1px 0 rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #0b5f59, #11978a);
    border-color: #0b5f59;
}

/* Stronger specificity for anchors inside CTA to ensure readability */
.about-cta-section a.btn.btn-primary,
.about-cta-section a.btn.btn-primary:hover,
.about-cta-section a.btn.btn-primary:focus,
.about-cta-section a.btn.btn-primary:active,
.about-cta-section a.btn.btn-primary:visited {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    border-color: inherit;
}
.about-cta-section a.btn.btn-primary i {
    color: #ffffff !important;
}

/* Focus state for accessibility */
.about-cta-section .btn-primary:focus-visible {
    outline: 3px solid rgba(20,184,166,0.35);
    outline-offset: 2px;
}

/* Keep secondary buttons white on dark hero backgrounds */
.hero .btn-secondary,
.page-hero .btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}
.hero .btn-secondary:hover,
.page-hero .btn-secondary:hover {
    background: #ffffff;
    color: #20B2AA;
}

.btn-secondary {
    background: transparent;
    color: #20B2AA;
    border: 2px solid #20B2AA;
    margin-left: 15px;
    backdrop-filter: none;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.btn-secondary:hover {
    background: #20B2AA;
    color: #ffffff;
    border-color: #20B2AA;
    box-shadow: 0 8px 20px rgba(32,178,170,0.35);
    transform: translateY(-2px);
}

.btn-secondary:active {
    background: #1a9d98;
    border-color: #1a9d98;
    color: #ffffff;
    transform: translateY(0);
}

.btn-secondary:focus-visible {
    outline: 2px solid #99f6e4;
    outline-offset: 2px;
}

/* Logo Styles */
.logo-image {
    max-height: 60px;
    width: auto;
    display: block;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Navigation */
.navbar { position: sticky; top: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); z-index: 1000; transition: all 0.3s ease; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-item.has-dropdown { position: relative; }
.nav-item.has-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
    z-index: 50;
}
.nav-item.has-dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px; /* hover buffer to prevent gap flicker */
}
.nav-item.has-dropdown:hover .dropdown-menu { display: block; }
.nav-item.has-dropdown { padding-bottom: 10px; }
.nav-item.has-dropdown:hover .dropdown-caret { transform: rotate(180deg); }
.dropdown-caret { font-size: 10px; margin-left: 6px; transition: transform 200ms ease; }
.dropdown-menu li { list-style: none; }
.dropdown-link {
    display: block;
    padding: 10px 12px;
    color: #334155;
    border-radius: 8px;
}
.dropdown-link:hover { background: #f1f5f9; color: #0f766e; }

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #20B2AA;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #20B2AA, #48D1CC);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section with Slider */
.hero {
    min-height: 100svh;
    height: 100svh;
    position: relative;
    overflow: hidden;
    isolation: isolate;        /* ::after sadece hero içinde kalsın */
    display: flow-root;        /* margin collapse keser */
    background: #000;          /* slider imajı yüklenmeden siyah perde */
    color: #fff;
    will-change: transform;
    backface-visibility: hidden;
    padding-bottom: 1px;       /* sub-pixel gap fix */
    margin-bottom: -1px;       /* sub-pixel gap fix */
}

.hero::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 64px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(248,249,250,.92));
    pointer-events: none;
    z-index: 1;
}

.hero-slider {
    min-height: 100svh;
    height: 100svh;
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    min-height: 100svh;
    height: 100svh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;                   /* JS aktif olmayan ortamda ilk slide görünecek */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.02);          /* 1.05 yerine daha güvenli */
    transition: opacity .6s ease-in-out, transform .6s ease-in-out;
    will-change: opacity, transform;
}
.slide::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.42); z-index: 1; pointer-events: none; }

.slide.is-active { display: flex; opacity: 1; transform: scale(1); }
.slide.is-prev { display: flex; opacity: 0; }

.slide-content {
    text-align: center;
    max-width: 820px;
    padding: 0 20px;
    z-index: 2; /* above overlay */
    animation: slideInUp 1s ease-out both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 18px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.6);
    font-family: 'Merriweather', serif;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #f3f4f6;
    text-shadow: 0 1px 10px rgba(0,0,0,.5);
    font-family: 'Merriweather', serif;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
    text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

@media (max-width: 768px) {
  .slide::before { background: rgba(0,0,0,.5); }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.4rem; }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 2;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.dot.active {
    background: #20B2AA;
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* =========================================================
   PAGE HERO — Unified subpage banners
   ========================================================= */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 52vh, 520px);
  padding: clamp(64px, 9vw, 110px) 0;
  color: #ffffff;
  background-color: #0e1628; /* prevent white flash before bg-image loads */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Modern multi-scrim for readability on any image */
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.18) 100%),
    radial-gradient(120% 80% at 20% 50%, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 55%);
  z-index: 0;
}
.page-hero h1, .page-hero h2, .page-hero p {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,.45);
}

/* Optional light variant if needed in the future */
.page-hero--light {
  color: #0f172a;
}
.page-hero--light::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.75) 100%);
}

.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 5.6vw, 52px); line-height: 1.12; margin: 0 0 10px; }
.page-hero h2 { font-size: clamp(18px, 2.8vw, 22px); font-weight: 500; opacity: .95; margin: 0 0 8px; }
.page-hero p  { font-size: clamp(14px, 2.3vw, 17px); opacity: .92; margin: 0; }

/* Center-flow reveal animations */
@keyframes hero-pop {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
/* Disable opacity-based animation to avoid flash during navigation */
.page-hero h1, .page-hero h2, .page-hero p { animation: none; }

/* Variants — background images (can be swapped to your own assets) */
.page-hero--about { background-image: url('../images/minikbiotel-hakkimizda.jpg'); }
.page-hero--rooms { background-image: url('../images/minikbiotel-odalar.jpg'); }
.page-hero--room-detail { background-image: url('../images/minikbiotel-odalar.jpg'); }
.page-hero--gallery { background-image: url('../images/minikbiotel-galeri.jpg'); }
.page-hero--contact { background-image: url('../images/minikbiotel-iletisim.jpg'); }

@media (max-width: 640px) {
  .page-hero { min-height: clamp(200px, 40vh, 340px); padding: 48px 0; }
  .page-hero h1 { font-size: clamp(24px, 7vw, 32px); }
}

/* About Section */
.about {
    margin-top: 0;
    padding-top: 24px;
    padding-bottom: 64px;
    background: #ffffff;
    position: relative;
    z-index: 0;
}

.about-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(32, 178, 170, 0.3);
}

.section-badge i {
    font-size: 0.8rem;
}

.about-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.main-image {
    height: 400px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.small-image {
    height: 180px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.small-image:hover {
    transform: scale(1.05);
}

.about-description {
    margin-bottom: 3rem;
}

.about-description p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(32, 178, 170, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(32, 178, 170, 0.15);
    border-color: rgba(32, 178, 170, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #20B2AA;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-cta .btn-primary {
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(32, 178, 170, 0.3);
}

.about-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.4);
}

.btn-outline {
    background: transparent;
    color: #20B2AA;
    border: 2px solid #20B2AA;
}

.btn-outline:hover {
    background: #20B2AA;
    color: white;
    transform: translateY(-3px);
}



.image-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.image-overlay i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.image-overlay p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Rooms Section */
.rooms {
    padding: 120px 0;
    background: white;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.room-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.room-card.featured {
    border: 3px solid #FFD700;
    transform: scale(1.05);
}

.room-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.room-image {
    height: 280px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFD700;
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.room-image .image-overlay {
    color: white;
}

.room-content {
    padding: 2.5rem;
}

.room-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.room-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.room-features {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    font-size: 0.95rem;
}

.room-features i {
    color: #20B2AA;
    width: 20px;
    font-size: 1rem;
}



/* Amenities Section */
.amenities {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.amenity-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #20B2AA, #48D1CC);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.amenity-item:hover::before {
    transform: scaleX(1);
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.amenity-item i { font-size: 3rem; color: var(--brand); margin-bottom: 1.25rem; transition: transform 0.3s ease, color .2s ease; }
.amenity-item:hover i { transform: scale(1.06); color: var(--brand-600); }

.amenity-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.amenity-item p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 280px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item .image-overlay {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.gallery-item .image-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.gallery-item .image-overlay p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    font-size: 1.8rem;
    color: #20B2AA;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #20B2AA;
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
    transform: translateY(-2px);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: #20B2AA;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #bdc3c7;
    font-style: italic;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #20B2AA;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    color: #bdc3c7;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #20B2AA;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, #48D1CC, #20B2AA);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(32, 178, 170, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Mobile centering tweaks for index texts and footer */
@media (max-width: 640px) {
  /* Index: About section text center */
  .about .about-copy { text-align: center; }
  .about-checklist li { justify-content: center; }
  .about-chips { justify-content: center; }

  /* Footer: center content */
  .footer-content { justify-items: center; text-align: center; }
  .footer-section { text-align: center; }
  .footer .social-links { display: flex; justify-content: center; }
}

/* Force fixed header on mobile and desktop */
.navbar { position: fixed !important; top: 0; left: 0; right: 0; z-index: 1000; }
/* Offset page content for fixed header height */
body { padding-top: 72px; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Legacy mobile dropdown disabled in favor of overlay */
    .nav-menu { position: static; width: auto; box-shadow: none; padding: 0; }
    .nav-menu.active { left: auto; }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-header h2 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .image-showcase {
        order: -1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        bottom: 30px;
        gap: 1rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about,
    .rooms,
    .amenities,
    .gallery,
    .contact {
        padding: 80px 0;
    }


}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===== İLETİŞİM SAYFASI STİLLERİ ===== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInUp 1s ease;
}

.contact-hero .hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    animation: slideInUp 1s ease 0.2s both;
}

.contact-hero .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease 0.4s both;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-card a {
    color: #20B2AA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #48D1CC;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #20B2AA;
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-sidebar .contact-card {
    text-align: left;
}

.contact-sidebar .contact-card.featured {
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    color: white;
}

.contact-sidebar .contact-card.featured h3,
.contact-sidebar .contact-card.featured p {
    color: white;
}

.btn-whatsapp {
    background: #25D366 !important;
    color: white !important;
    border: none !important;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
    transform: translateY(-3px);
}

.social-links-contact { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; }
@media (min-width: 1024px) { /* desktop */
  .social-links-contact { justify-content: flex-start !important; }
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: #20B2AA;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: #48D1CC;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #20B2AA;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 4rem;
    color: #20B2AA;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* ===== GALERİ SAYFASI STİLLERİ ===== */

/* Gallery Hero */
.gallery-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2068&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.gallery-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInUp 1s ease;
}

.gallery-hero .hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    animation: slideInUp 1s ease 0.2s both;
}

.gallery-hero .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease 0.4s both;
}

/* Gallery Filter */
.gallery-filter-section {
    display: none !important;
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e1e8ed;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #20B2AA;
    background: #20B2AA;
    color: white;
    transform: translateY(-2px);
}

.filter-btn i {
    font-size: 1.1rem;
}

/* Main Gallery */
.main-gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.9), rgba(72, 209, 204, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none; /* hover dışı tıklama almasın */
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    pointer-events: auto; /* hover olduğunda tıklanabilir */
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.gallery-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.gallery-view-btn {
    background: white;
    color: #20B2AA;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.gallery-view-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* Video Gallery */
.video-gallery-section { display: none !important; }

.video-gallery-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.video-gallery-section p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-play-btn i {
    font-size: 2rem;
    color: #20B2AA;
}

.video-item:hover .video-play-btn {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.video-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.video-overlay p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* Gallery CTA */
.gallery-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    color: white;
}

.gallery-cta-section .cta-content {
    text-align: center;
}

.gallery-cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.gallery-cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

.lightbox-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.lightbox-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-info {
    padding: 2rem;
    text-align: center;
}

.lightbox-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.lightbox-info p {
    color: #666;
    line-height: 1.6;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-nav {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

/* ===== MOBİL UYUMLULUK ===== */

@media (max-width: 768px) {
    /* Contact Page */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery Page */
    .filter-controls {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .lightbox-image-container {
        height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-hero .hero-content h1,
    .gallery-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-content h2,
    .gallery-hero .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .contact-card,
    .faq-item {
        padding: 1.5rem;
    }
    
    .gallery-item,
    .video-item {
        margin: 0 10px;
    }
}







.gallery-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Merriweather', serif;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: white;
    color: #20B2AA;
    border: 2px solid white;
}

.cta-buttons .btn:hover {
    background: transparent;
    color: white;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-modal.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.lightbox-image-container {
    max-height: 70vh;
    overflow: hidden;
}

.lightbox-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.lightbox-info {
    padding: 2rem;
    text-align: center;
}

.lightbox-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Merriweather', serif;
}

.lightbox-info p {
    color: #666;
    line-height: 1.6;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.lightbox-nav {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.show {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.video-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* ===== CONTACT PAGE STYLES ===== */

.contact-hero {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.8), rgba(72, 209, 204, 0.8)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-info-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-card.featured {
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    color: white;
}

.contact-card.featured .btn {
    background: white;
    color: #20B2AA;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-card.featured .contact-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Merriweather', serif;
}

.contact-card.featured h3 {
    color: white;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-card a {
    color: #20B2AA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #48D1CC;
}

.contact-card.featured a {
    color: white;
}

.contact-card.featured a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form-section {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Merriweather', serif;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #20B2AA;
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links-contact a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: #20B2AA;
    color: white;
    transform: translateY(-2px);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Merriweather', serif;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.map-section {
    padding: 4rem 0;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 2rem;
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 4rem;
    color: #20B2AA;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Merriweather', serif;
}

.map-placeholder p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Design for Contact and Gallery */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-navigation {
        padding: 0 1rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .gallery-item {
        margin: 0 1rem;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* ===== ABOUT US PAGE STYLES ===== */
.page-header {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.9), rgba(255, 215, 0, 0.8)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.our-story {
    padding: 80px 0;
    background: #ffffff; /* About: beyaz arka plan */
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}



/* modern story media */
.story-media {
    display: grid;
    gap: 14px;
}
.story-main {
    aspect-ratio: 16 / 11;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    min-height: 380px;
}
.story-media.two-up { /* removed usage but keep safe default */
    grid-template-columns: 1fr;
}
.story-media { background: #f3f4f6; }

/* subtle load effects */
.story-media img {
    opacity: 1;
    transform: none;
    transition: opacity 600ms ease, transform 700ms ease;
}
.story-media img.is-loaded {
    opacity: 1;
    transform: scale(1);
}
.story-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 640px) {
  /* About page main image: show full image on mobile without horizontal scroll */
  .story-main { width: 100%; aspect-ratio: auto; min-height: 0; }
  .story-main img { width: 100%; height: auto; object-fit: contain; }
}
.story-float-card {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(1.4) blur(6px);
    color: #1f2937;
    padding: 10px 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.story-float-card i {
    color: #20B2AA;
}
.story-thumb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.story-thumb {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}
.story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
  .story-content { grid-template-columns: 1fr; gap: 32px; }
}

.mission-values {
    padding: 80px 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mission-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #20B2AA;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.mission-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-photo {
    height: 250px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.member-photo .image-overlay {
    text-align: center;
    color: white;
}

.member-photo .image-overlay i {
    font-size: 4rem;
    opacity: 0.8;
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.position {
    color: #20B2AA;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-info p {
    color: #555;
    line-height: 1.6;
}

.hotel-features {
    padding: 80px 0;
    background: white;
}

.hotel-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Force 3x columns layout for Hotel Features */
.hotel-features .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 992px) {
    .hotel-features .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .hotel-features .features-grid { grid-template-columns: 1fr; }
}

.feature-item { text-align: center; padding: 20px 16px; background: #f8f9fa; border-radius: 14px; transition: all 0.25s ease; border: 1px solid #e5e7eb; }

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #20B2AA;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #ECFEFF; /* brand-50 */
    border: 2px solid #20B2AA; /* brand */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.6rem;
    color: #0f766e; /* brand-700 */
    opacity: 1;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-item p {
    color: #555;
    line-height: 1.6;
}

.awards-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.awards-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.award-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.award-icon i {
    font-size: 2rem;
    color: white;
}

.award-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.award-item p {
    color: #555;
    line-height: 1.6;
}

.about-cta-section {
    padding: 64px 0;
    background: #ffffff;
}
.room-section + .about-cta-section { margin-top: clamp(28px, 6vw, 56px); }

.about-cta-section .cta-content {
    max-width: 920px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* simple stats row above CTA */
.about-stats-section {
    padding: 60px 0;
    background: #ffffff; /* sade ve açık arka plan */
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.about-stats-section .stats-row, .about-cta-section .stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 20px auto 30px;
}
.about-stats-section .stat, .about-cta-section .stat {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}
.about-stats-section .stat:hover {
    border-color: #20B2AA;
}
.about-stats-section .stat-number, .about-cta-section .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937; /* daha okunaklı koyu metin */
}
.about-stats-section .stat-label, .about-cta-section .stat-label {
    font-size: 0.95rem;
    color: #64748b;
}
@media (max-width: 600px) {
    .about-stats-section .stats-row, .about-cta-section .stats-row { grid-template-columns: 1fr; }
}

/* Otel özellikleri ikon stili ile aynı görünüm */
.about-stats-section .stat-icon, .about-cta-section .stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #ECFEFF;
    border: 1.5px solid #20B2AA;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-stats-section .stat-icon i, .about-cta-section .stat-icon i {
    color: #0f766e;
    font-size: 1.4rem;
}

.about-cta-section .cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.about-cta-section .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    color: #475569;
}

.about-cta-section .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-section .cta-buttons .btn-secondary {
    background: transparent;
    color: #20B2AA;
    border: 2px solid #20B2AA;
}

.about-cta-section .cta-buttons .btn-secondary:hover {
    background: #20B2AA;
    color: #ffffff;
}

/* ===== ROOMS PAGE STYLES ===== */
/* Room intro for individual room pages */
.room-intro { padding: clamp(64px, 6vw, 96px) 0; background: #ffffff; text-align: center; }
.page-hero + .room-intro { margin-top: clamp(12px, 2vw, 24px); }
.room-intro .intro-header { text-align: center; max-width: 900px; margin: 0 auto clamp(18px, 3vw, 36px); }
.room-intro .intro-header h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 clamp(12px, 2.4vw, 22px); font-weight: 800; }
.room-intro .intro-header p { font-size: clamp(15px, 1.6vw, 18px); color: #475569; max-width: 760px; margin: 0 auto clamp(18px, 3vw, 30px); line-height: 1.75; text-align: center !important; }
.room-intro .feature-item h3, .room-intro .feature-item p { text-align: center; margin: 6px 0 0; }
.room-intro .features-grid { margin-top: clamp(14px, 2.2vw, 22px); display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(10px, 2vw, 16px); justify-items: center; max-width: 1100px; margin-left: auto; margin-right: auto; }
.room-intro .features-grid.grid-3x2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 600px) and (max-width: 991px) { .room-intro .features-grid.grid-3x2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 992px) { .room-intro .features-grid.grid-3x2 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
/* Room intro feature items — minimal line-icon style (like reference) */
/* Chip-like compact outline style similar to btn-outline */
.room-intro .feature-item { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 12px); 
  padding: clamp(10px, 1.2vw, 14px) clamp(14px, 1.6vw, 18px); 
  background: transparent !important;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  min-height: clamp(38px, 3.6vw, 50px); 
  box-shadow: none !important;
}
.room-intro .feature-icon { width: clamp(22px, 2.2vw, 28px); height: clamp(22px, 2.2vw, 28px); display: inline-flex; align-items: center; justify-content: center; margin: 0; background: transparent !important; border: 0 !important; box-shadow: none !important; }
.room-intro .feature-icon i { font-size: clamp(22px, 2vw, 28px); color: #0f766e; opacity: .95; }
.room-intro .feature-item h3 { font-size: clamp(15px, 1.5vw, 18px); margin: 0; color: #334155; font-weight: 600; line-height: 1; }
.room-intro .feature-item p { display: none; }
.room-intro .feature-item:hover { border-color: #20B2AA; box-shadow: 0 1px 6px rgba(32,178,170,.08); }
@media (max-width: 768px) {
  .room-intro .features-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
}
@media (max-width: 480px) {
  .room-intro .features-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
}
/* Mobile: force 2-column layout for grid-3x2 to avoid single long column */
@media (max-width: 480px) {
  .room-intro .features-grid.grid-3x2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}

/* Simple image grid for room gallery */
.room-gallery { padding: 60px 0; background: #ffffff; text-align: center; }
.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.room-gallery-title { text-align: center; margin: 0 0 24px; font-size: clamp(22px, 3vw, 32px); }
.room-gallery-row { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.room-gallery-row a { display: block; border-radius: 12px; overflow: hidden; }
.room-gallery-row img { width: 100%; height: 260px; object-fit: cover; cursor: zoom-in; display: block; }
@media (max-width: 900px) { .room-gallery-row { grid-template-columns: 1fr 1fr; } .room-gallery-row img { height: 220px; } }
@media (max-width: 600px) { .room-gallery-row { grid-template-columns: 1fr; } .room-gallery-row img { height: 220px; } }

/* Reduce gap between room intro icons and gallery */
.room-intro + .room-gallery { margin-top: -12px; padding-top: 0; }
@media (max-width: 768px) { .room-intro + .room-gallery { margin-top: -8px; padding-top: 0; } }

/* Room lightbox slider (responsive) */
/* */

/* =========================================================
   PREMIUM ROOM SLIDER — Beautiful, responsive slider for room details
   ========================================================= */
/* */

/* =========================================================
   SIMPLE SLIDER — Minimal, no-autoplay, just arrows + dots
   ========================================================= */
/* */
/* */

/* Lightbox */
.lightbox-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox-backdrop.active { display: flex; }
.lightbox-content { max-width: 92vw; max-height: 88vh; }
.lightbox-content img { width: 100%; height: auto; display: block; border-radius: 8px; }
.lightbox-close { position: absolute; top: 16px; right: 16px; color: #fff; background: rgba(255,255,255,.15); border: 0; width: 40px; height: 40px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.room-gallery-grid img { width: 100%; height: 240px; object-fit: cover; border-radius: 12px; display: block; }
@media (max-width: 992px) {
  .room-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* Single row of 3 images */
/* room-gallery-row removed */
@media (max-width: 900px) { .room-gallery-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .room-gallery-row { grid-template-columns: 1fr; } .room-gallery-row img { height: 220px; } }
@media (max-width: 600px) {
  .room-gallery-grid { grid-template-columns: 1fr; }
  .room-gallery-grid img { height: 220px; }
}

/* =========================================================
   ROOM DETAIL SPACING REFINEMENTS (based on index spacing)
   ========================================================= */
.page-hero + .room-intro { margin-top: clamp(12px, 2.8vw, 36px); }
.room-intro { padding-top: clamp(16px, 3.5vw, 48px); padding-bottom: clamp(16px, 3.5vw, 48px); }
.room-intro .intro-header h2 { margin: 0 0 clamp(10px, 2vw, 18px); }
.room-intro .intro-header p { margin: 0 auto clamp(12px, 2.2vw, 22px); }

/* Ensure consistent spacing for all headings inside intro header */
.room-intro .intro-header h1,
.room-intro .intro-header h2,
.room-intro .intro-header h3 { margin-bottom: clamp(12px, 2.4vw, 20px) !important; }

@media (max-width: 480px) {
  .room-intro .intro-header p { margin: 0 auto 18px; }
}
.room-intro .features-grid { margin-top: clamp(12px, 2.2vw, 24px); gap: clamp(12px, 2.2vw, 18px); }
.room-intro .room-actions { margin-top: clamp(16px, 3vw, 28px) !important; }

/* Ensure section-to-section spacing on room pages feels airy */
.page-hero--rooms { padding-bottom: clamp(24px, 4vw, 56px); }
.room-intro + section { margin-top: clamp(24px, 5vw, 56px); }

/* ===== Global section spacing defaults across pages ===== */
:where(main > section):not(.hero):not(.page-hero) {
  padding: clamp(40px, 6vw, 80px) 0;
}
:where(.page-hero) + :where(section) {
  padding-top: clamp(16px, 3vw, 32px);
}

/* Rooms page: overview spacing and typography */
.room-overview { padding: clamp(40px, 6vw, 80px) 0; background: #ffffff; }
.page-hero + .room-overview { margin-top: clamp(16px, 3vw, 32px); }
.room-overview .overview-content { max-width: 900px; margin: 0 auto; text-align: center; }
.room-overview h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: clamp(10px, 2vw, 16px); }
.room-overview p { font-size: clamp(15px, 2vw, 18px); color: #475569; }

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.overview-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.7;
}

.room-section {
    padding: 80px 0;
    background: white;
}

.room-section:nth-child(even) {
    background: #f8f9fa;
}

.room-section.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.room-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.room-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.room-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0;
}

.room-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.room-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.room-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.room-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    word-break: break-word;
    hyphens: auto;
}

.room-features li:last-child {
    border-bottom: none;
}

.room-features i {
    color: #20B2AA;
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 100;
    opacity: 0.8;
}





.room-image {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Room image slider */
.room-slider {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    height: clamp(220px, 50vw, 460px);
}
.room-slider .slides {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
.room-slider .slide {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: none;
}
.room-slider .slide.active { display: block; }
.room-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 200ms ease, transform 200ms ease;
}
.room-slider .slider-btn:hover {
    background: rgba(0,0,0,0.6);
}
.room-slider img.slide { cursor: zoom-in; }
.room-slider .slider-btn.prev { left: 10px; }
.room-slider .slider-btn.next { right: 10px; }

.room-slider .image-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.room-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.room-actions .btn {
    flex: 0 0 auto;
    min-width: 0;
    text-align: center;
}

/* ===== RESPONSIVE DESIGN FOR ROOMS PAGE ===== */
@media (max-width: 1200px) {
    .room-content {
        max-width: 100%;
        gap: 50px;
    }
    
    .room-features ul {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .room-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .room-header {
        justify-content: center;
    }
    
    .room-features ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
        margin: 0;
        gap: 10px;
    }
    

    
    .room-actions {
        justify-content: center;
    }
    
    .room-actions .btn {
        flex: none;
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .room-section {
        padding: 60px 0;
    }
    
    .room-header h2 {
        font-size: 2rem;
    }
    
    .room-description {
        font-size: 1rem;
    }
    
    .room-features h3 {
        font-size: 1.3rem;
    }
    
    .room-features ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
        gap: 8px;
    }
    
    .room-features li {
        font-size: 0.9rem;
        padding: 8px 0;
        gap: 8px;
    }
    
    .room-features i {
        font-size: 0.75rem;
        width: 14px;
        font-weight: 100;
        opacity: 0.7;
    }
    

    
    .room-slider { aspect-ratio: 16 / 11; }
    
    .room-image .image-overlay i {
        font-size: 2.5rem;
    }
    
    .room-image .image-overlay p {
        font-size: 1rem;
    }
    
    .room-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .room-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .room-overview h2,
    .room-header h2 {
        font-size: 1.8rem;
    }
    
    .room-overview p,
    .room-description {
        font-size: 0.95rem;
    }
    
    .room-features h3 {
        font-size: 1.2rem;
    }
    
    .room-features li {
        font-size: 0.85rem;
        gap: 8px;
        padding: 6px 0;
    }
    
    .room-features i {
        font-size: 0.7rem;
        width: 12px;
        font-weight: 100;
        opacity: 0.6;
    }
    

    
    .room-slider { aspect-ratio: 4 / 3; }
    
    .room-image .image-overlay i {
        font-size: 2rem;
    }
    
    .room-image .image-overlay p {
        font-size: 0.9rem;
    }
    
    .room-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* ===== COMPACT LAYOUT FOR BETTER RESPONSIVENESS ===== */
@media (max-width: 600px) {
    .room-content {
        gap: 30px;
    }
    .room-features ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .room-features ul {
        gap: 8px;
    }
    
    .room-features li {
        padding: 6px 0;
        gap: 6px;
    }
    
    .room-features i {
        font-size: 0.7rem;
        width: 12px;
        font-weight: 100;
        opacity: 0.6;
    }
    

    
    .room-actions .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ===== ENHANCED RESPONSIVE DESIGN FOR ROOMS PAGE ===== */
@media (max-width: 400px) {
    .room-features ul {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .room-features li {
        padding: 4px 0;
        gap: 4px;
        font-size: 0.8rem;
    }
    
    .room-features i {
        font-size: 0.65rem;
        width: 10px;
        font-weight: 100;
        opacity: 0.5;
    }
    
    .room-content {
        gap: 25px;
        padding: 0 15px;
    }
    
    .room-header h2 {
        font-size: 1.6rem;
    }
    
    .room-description {
        font-size: 0.9rem;
    }
    

}

/* ===== FLUID GRID SYSTEM FOR BETTER RESPONSIVENESS ===== */
@media (min-width: 1400px) {
    .room-features ul {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .room-features li {
        padding: 15px 0;
        gap: 15px;
        font-size: 1rem;
    }
    
    .room-features i {
        font-size: 1rem;
        width: 20px;
        font-weight: 100;
        opacity: 0.8;
    }
}

/* ===== TABLET LANDSCAPE OPTIMIZATION ===== */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .room-features ul {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .room-features li {
        padding: 8px 0;
        gap: 8px;
    }
    
    .room-features i {
        font-size: 0.8rem;
        width: 16px;
    }
}

/* ===== PRINT STYLES FOR ROOMS PAGE ===== */
@media print {
    .room-features ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .room-features li {
        padding: 5px 0;
        border-bottom: 1px solid #ccc;
    }
    
    .room-features i {
        color: #000 !important;
        opacity: 0.7;
    }
    
    .room-image {
        display: none;
    }
    
    .room-actions {
        display: none;
    }
}

/* ===== ROOM PREVIEW SECTION ===== */
.featured-rooms { padding: clamp(40px, 6vw, 80px) 0; background: white; }

.featured-rooms h2 { text-align: center; font-size: 2.5rem; margin-bottom: 2rem; color: #2c3e50; }

.rooms-preview { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 1.75rem; margin-bottom: 2rem; }

.room-preview-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.room-preview-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.room-preview-card.featured {
    border: 3px solid #FFD700;
    transform: scale(1.05);
}

.room-preview-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.room-preview-image {
    height: 250px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.room-preview-content {
    padding: 2rem;
}

.room-preview-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.room-preview-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rooms-cta {
    text-align: center;
}

/* ===== AMENITIES PREVIEW SECTION ===== */
.amenities-preview { padding: clamp(40px, 6vw, 80px) 0; background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%); }

/* Fix: visible secondary button on light background */
.amenities-preview .btn.btn-secondary {
    background: transparent;
    color: #20B2AA;
    border: 2px solid #20B2AA;
}
.amenities-preview .btn.btn-secondary:hover {
    background: #20B2AA;
    color: #ffffff;
}

.amenities-preview h2 { text-align: center; font-size: 2.5rem; margin-bottom: 2rem; color: #2c3e50; }

.amenities-preview .amenities-grid { margin-bottom: 2rem; }

.amenities-cta {
    text-align: center;
}

/* ===== GALLERY PREVIEW SECTION ===== */
.gallery-preview { padding: clamp(40px, 6vw, 80px) 0; background: white; }

.gallery-preview h2 { text-align: center; font-size: 2.5rem; margin-bottom: 2rem; color: #2c3e50; }

.gallery-preview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }

.gallery-preview-item {
    height: 250px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-preview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-preview-item .image-overlay { text-align: center; color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.5); }
.gallery-preview-item .image-overlay p { color: #fff; }

.gallery-preview-item .image-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.gallery-preview-item .image-overlay p {
    font-size: 1.1rem;
    font-weight: 500;
}

.gallery-cta {
    text-align: center;
}

/* ===== CONTACT CTA SECTION ===== */
.contact-cta, .booking-cta { padding: clamp(40px, 6vw, 80px) 0; text-align: center; }
.booking-cta { background: #ffffff; }
.booking-cta .cta-content { max-width: 900px; margin: 0 auto; }
.booking-cta .cta-content h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 1rem; color: #2c3e50; }
.booking-cta .cta-content p { font-size: clamp(16px, 2vw, 18px); margin-bottom: 1.5rem; color: #475569; }
.booking-cta .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.booking-cta .btn-primary { background: linear-gradient(135deg, #0b3d3a, #0e6a62); border: 2px solid #0b3d3a; color: #fff; }
.booking-cta .btn-primary:hover { filter: brightness(1.05); }
.booking-cta .btn-secondary { background: transparent; color: #0f766e; border: 2px solid #0f766e; }
.booking-cta .btn-secondary:hover { background: #0f766e; color: #fff; }
.room-section + .booking-cta { margin-top: clamp(28px, 6vw, 56px); }

.contact-cta .cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-cta .cta-content p { font-size: 1.3rem; margin-bottom: 1.5rem; opacity: 0.95; }

.contact-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-cta .btn-secondary:hover {
    background: white;
    color: #20B2AA;
}

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .rooms-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-cta .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-cta .cta-content p {
        font-size: 1.1rem;
    }
    
    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .featured-rooms,
    .amenities-preview,
    .gallery-preview,
    .contact-cta { padding: clamp(36px, 10vw, 64px) 0; }
    
    .contact-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-cta .cta-content p {
        font-size: 1rem;
    }
}

/* Force light background for About section across themes */
@media (prefers-color-scheme: dark) {
  .about { background: #ffffff !important; }
  .about-lead, .about-checklist li { color: #475569 !important; }
  .chip, .quick-item { background: #ffffff !important; border-color: #e5e7eb !important; color: #334155 !important; }
}

/* Section backgrounds */
.hero ~ section:nth-of-type(even),
.page-hero ~ section:nth-of-type(even) {
  background: #ffffff !important;
}
.hero ~ section:nth-of-type(odd),
.page-hero ~ section:nth-of-type(odd) {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%) !important;
}

/* Fallback: pages without a hero/page-hero */
body > section:nth-of-type(odd) { background: #ffffff; }
body > section:nth-of-type(even) { background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%); }
/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

#about .about-copy h2, .about-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  margin: 8px 0 12px;
  color: #1f2937;
  text-align: left;
}

.about-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #475569;
  margin-bottom: 18px;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 16px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 15px;
}

.about-checklist i { color: var(--brand); width: 18px; text-align: center; font-size: 14px; opacity: .9; }

.about-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 20px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; background: #fff; border: 1px solid #e5e7eb; border-radius: 999px; font-size: 13px; color: #334155; }
.chip i { color: var(--brand); font-size: 14px; opacity: .9; }

.about-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.about-cta .btn { padding: 12px 18px; border-radius: 12px; }

.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0 20px; }

.about-media { display: grid; gap: 12px; }
.media-main { position: relative; aspect-ratio: 4/3; border-radius: 16px; background-size: cover; background-position: center; overflow: hidden; }
.media-float-card { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.9); backdrop-filter: saturate(120%) blur(6px); color: #111827; font-weight: 600; border: 1px solid #e5e7eb; border-radius: 999px; padding: 8px 12px; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }
.media-float-card i { color: #20B2AA; }
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.media-thumb { aspect-ratio: 4/3; border-radius: 12px; background-size: cover; background-position: center; overflow: hidden; }

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

@media (max-width: 640px) {
  .about { padding: 48px 0; }
  .about-quick { grid-template-columns: 1fr; }
  .about-cta { justify-content: center; }
}

@media (prefers-color-scheme: dark) {
  .about { background: #0e1628; }
  .about-lead, .about-checklist li, .chip, .quick-item { color: #a3b1c6; }
  .chip, .quick-item { background: #0f172a; border-color: #1f2937; }
  .media-float-card { background: rgba(15,23,42,.9); color: #e5e7eb; border-color: #1f2937; }
}

/* Hero seam fix override */
body .hero::after { height: 0 !important; background: none !important; }
body .about { margin-top: -1px; }

/* =========================================================
   ABOUT — Responsive Redesign (Overrides)
   ========================================================= */
.about {
  background: #ffffff; /* neutral background */
  padding-top: 40px;
  padding-bottom: 72px;
}

.about::before { content: none; }

.about-header {
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 40px);
}

.about-header .section-badge {
  margin-bottom: 16px;
}

.about-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  margin: 0 0 8px;
}

.about-header .about-subtitle {
  font-size: clamp(14px, 2vw, 18px);
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .image-showcase { order: -1; }
}

.about-description p {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #475569;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.feature-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(32,178,170,0.12);
  backdrop-filter: saturate(120%) blur(6px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(32,178,170,0.35);
  box-shadow: 0 12px 30px rgba(24, 94, 88, 0.12);
}

.image-showcase { gap: clamp(12px, 2vw, 24px); }

.main-image {
  height: clamp(320px, 42vh, 520px);
}

.image-grid { gap: clamp(10px, 2vw, 24px); }

.small-image { height: clamp(140px, 24vh, 220px); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: clamp(16px, 2.4vw, 24px);
  background: rgba(255,255,255,0.9);
  border: 1px solid #e5e7eb;
}

.stat-item {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  background: #fff;
}

.stat-number { font-size: clamp(22px, 3.2vw, 36px); }
.stat-label { font-size: clamp(12px, 1.6vw, 14px); }

.about-cta { gap: 12px; }
.about-cta .btn { padding: 12px 20px; border-radius: 14px; }

@media (max-width: 768px) {
  .about { padding-bottom: 64px; }
  .about-header { text-align: center; }
  .about-cta { justify-content: center; }
}

@media (prefers-color-scheme: dark) {
  .about { background: #0b1220; }
  .about-description p { color: #a3b1c6; }
  .feature-card { background: #0f172a; border-color: rgba(148,163,184,0.18); }
  .about-stats { background: #0f172a; border-color: #1f2937; }
  .stat-item { background: #0f172a; border-color: #1f2937; }
}

/* Room intro exact centering enforcement */
.room-intro .intro-header, .room-intro .intro-header p { text-align: center !important; }

/* Ensure room slider images are visible despite generic .slide rules */
.room-slider .slides .slide { display: block !important; }
.room-slider .slides .slide.active { opacity: 1 !important; }

/* === Lightbox final overrides: fit image fully and center === */
.lightbox-modal.show { display: flex !important; align-items: center; justify-content: center; padding: clamp(12px, 3vw, 28px); }
.lightbox-content { width: auto; max-width: min(96vw, 1400px); max-height: 92vh; background: transparent; box-shadow: none; border-radius: 12px; }
.lightbox-image-container { width: 100%; max-width: min(96vw, 1400px); max-height: 84vh; aspect-ratio: auto; overflow: hidden; background: #000; border: 10px solid #ffffff; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,.45); display: flex; align-items: center; justify-content: center; }
.lightbox-image-container img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain !important; display: block; }
.lightbox-info { color: #ffffff; text-align: center; padding: 12px 16px; margin-top: 10px; background: rgba(0,0,0,.6); border-radius: 12px; backdrop-filter: saturate(120%) blur(4px); }
.lightbox-info h3 { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.5); }
.lightbox-info p { color: #e5e7eb; text-shadow: 0 1px 2px rgba(0,0,0,.35); }

/* Room gallery spacing and slider responsiveness so it never collides with footer */
.room-gallery { padding-bottom: clamp(80px, 10vw, 140px); }
.room-slider { max-height: min(680px, 72vh); }
@media (max-width: 768px) {
  .room-slider { max-height: 60vh; }
  .room-slider .slider-btn { width: 36px; height: 36px; }
}
@media (max-width: 480px) {
  .room-slider { max-height: 55vh; }
}

/* Minik Oda slider — galeri lightbox ölçülerine yakın boyutlandırma */
/* minikGallerySlider removed */
