/* ============================================================
   ARAD HOTEL — Global Stiller
   ============================================================ */

/* ── Değişkenler ── */
:root {
  --gold:    #C9A84C;
  --gold-dk: #a8882e;
  --dark:    #1C1C1C;
  --dark2:   #2C2C2C;
  --bg:      #F8F5EF;
  --white:   #FFFFFF;
  --gray:    #6c6c6c;
  --border:  #e5e0d8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;

  --radius: 2px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 36px rgba(0,0,0,0.18);
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark2);
  background: var(--white);
  line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Yardımcı sınıflar ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.bg-dark     { background: var(--dark); color: var(--white); }
.bg-bg       { background: var(--bg); }
.bg-white    { background: var(--white); }

/* ── Başlık sistemi ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
}

/* ── Butonlar ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(28,28,28,0.97);
  backdrop-filter: blur(8px);
  height: 72px;
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover .logo-name { color: var(--gold); }
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.logo:hover .logo-mark { background: var(--gold-dk); }
.logo-mark-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  transition: color var(--transition);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.header-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.8rem !important;
}
.header-cta:hover { background: var(--gold-dk) !important; }
.header-cta::after { display: none !important; }

/* ── Dil Değiştirici ── */
.lang-switcher {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-left: 12px;
  flex-shrink: 0;
}
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  padding: 4px 9px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  line-height: 1.2;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil menü */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--dark);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  padding-top: 72px;
}
.hero-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
  color: rgba(255,255,255,0.9);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 200px;
  width: 220px;
  text-align: center;
  white-space: nowrap;
}
/* Call button — white solid so black phone emoji is visible */
.hero-actions .btn-outline {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  font-size: 1rem;
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.88);
  color: var(--dark);
  border-color: var(--white);
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 1.8s ease infinite;
}

/* ============================================================
   ODA KARTLARI
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.room-card {
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.room-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-img { transform: scale(1.05); }
.room-card-img-wrap { overflow: hidden; flex-shrink: 0; }
.room-card-body {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}
.room-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.room-card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}
.room-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.room-tag {
  background: var(--bg);
  color: var(--dark2);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 99px;
  font-weight: 600;
}

/* ============================================================
   HİZMETLER İKON GRİD
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-top: 48px;
}
.service-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.service-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.service-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ============================================================
   KAHVALTI FEATURE BÖLÜMÜ
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }
.feature-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.65s ease;
}
.feature-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-img-pair .img-zoom-wrap { border-radius: var(--radius); }
.feature-img-pair img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0;
}
.feature-text .section-subtitle {
  max-width: 100%;
  margin-bottom: 28px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--dark2);
}
.feature-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--gold);
  padding: 64px 0;
  text-align: center;
}
.cta-banner .section-title { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.88); margin-bottom: 32px; }
.cta-banner .btn-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-outline { border-color: var(--white); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--gold); }

/* ============================================================
   GALERI
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(28,28,28,0.45); }
.gallery-overlay span {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay span { opacity: 1; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 220px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 16px;
  transition: var(--transition);
  user-select: none;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

/* ============================================================
   ODA DETAY SAYFASI
   ============================================================ */
.page-hero {
  height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 72px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.65));
  display: flex;
  align-items: flex-end;
  padding: 48px;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
}
.page-hero-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.breadcrumb {
  padding: 16px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
}
.breadcrumb-inner a { color: var(--gold); transition: var(--transition); }
.breadcrumb-inner a:hover { color: var(--gold-dk); }
.breadcrumb-inner span { color: var(--border); }

/* Oda detay layout */
.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.room-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.room-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.room-feature-item .icon { color: var(--gold); font-size: 1.1rem; }

/* İletişim formu kartı */
.contact-card {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 36px 32px;
  border-radius: var(--radius);
  position: sticky;
  top: 90px;
}
.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.contact-card-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 24px;
}

/* Form */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--dark2);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark2);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================================
   YAKINDA NE VAR TABLOSU
   ============================================================ */
.nearby-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 0.9rem;
}
.nearby-table th {
  background: var(--dark);
  color: var(--gold);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.nearby-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--dark2);
  background: var(--white);
}
.nearby-table td:first-child {
  font-size: 1.05rem;
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', var(--font-body);
}
.nearby-table tr:last-child td { border-bottom: none; }
.nearby-table tr:hover td { background: var(--bg); }

/* ============================================================
   İLETİŞİM BİLGİLERİ
   ============================================================ */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', var(--font-body);
  flex-shrink: 0;
  color: var(--white);
}
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--dark2);
}
.contact-info-value a { transition: var(--transition); }
.contact-info-value a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: 2px;
}
.footer-logo-sub {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-about {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-item .ico { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   WHATSAPP YÜZEN BUTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   MOBİL STICKY CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 901;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
}
.mobile-cta-bar a {
  flex: 1;
  padding: 15px;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}
.mobile-cta-bar .cta-call { background: var(--gold); color: var(--white); }
.mobile-cta-bar .cta-call:hover { background: var(--gold-dk); }
.mobile-cta-bar .cta-wa   { background: #25D366; color: var(--white); }
.mobile-cta-bar .cta-wa:hover { background: #1ebe5d; }

/* ============================================================
   ANİMASYONLAR
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ── Görsel hover zoom sarmalayıcı ── */
.img-zoom-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  display: block;
}
.img-zoom-wrap img {
  display: block;
  width: 100%;
  transition: transform 0.65s ease;
}
.img-zoom-wrap:hover img { transform: scale(1.07); }
.img-zoom-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0);
  transition: background 0.4s ease;
  pointer-events: none;
}
.img-zoom-wrap:hover::after { background: rgba(201,168,76,0.07); }

/* Hizmetler sayfası hero */
.services-page-hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 72px;
}
.services-page-hero .page-hero-overlay {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

/* ── Oda Fotoğraf Galerisi ── */
.room-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.room-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--border);
}
.room-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.room-gallery-item:hover img { transform: scale(1.06); }
.room-gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.room-gallery-item:hover::after { background: rgba(0,0,0,0.15); }
.room-gallery-featured {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

/* ============================================================
   RESPONSİF
   ============================================================ */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: span 2; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Responsive 2-col grids (harita/tablo vb.) ── */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .loc-grid { grid-template-columns: 1fr !important; }
  .loc-grid-btn { display: none; }
}

@media (max-width: 768px) {
  .room-gallery { grid-template-columns: 1fr 1fr; }
  .room-gallery-featured { aspect-ratio: 4/3; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .rooms-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > *:last-child { grid-column: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .room-features-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: flex; }
  .whatsapp-float { bottom: 72px; }
  .hero-scroll { display: none; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .page-hero { height: 320px; }
  .page-hero-overlay { padding: 28px 24px; }
  .feature-img { height: 280px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 200px; text-align: center; }
}
