/* ============================================================
   GöcekAlize Otel – Main Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary:       #0a1628;
  --primary-light: #152338;
  --gold:          #c9a96e;
  --gold-light:    #e0c48e;
  --gold-dark:     #a8843f;
  --white:         #ffffff;
  --off-white:     #f8f5f0;
  --gray-light:    #ece8e2;
  --gray:          #999999;
  --text:          #2c2c2c;
  --text-light:    #666666;
  --transition:    0.3s ease;
  --shadow:        0 4px 24px rgba(10, 22, 40, 0.10);
  --shadow-hover:  0 10px 40px rgba(10, 22, 40, 0.18);
  --radius:        8px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

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

ul { list-style: none; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.left { text-align: left; }

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 20px auto;
}
.section-header.left .divider { margin-left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--primary);
}

/* ==============================
   HEADER / NAVBAR
   ============================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 22px 0;
}

#header.transparent { background: transparent; }

#header.scrolled {
  background: var(--primary);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  color: var(--white);
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: height 0.4s ease;
}
#header.scrolled .logo-img { height: 40px; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 8px 14px;
  border-radius: 4px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 55%; }

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Language Selector */
.lang-selector {
  display: flex;
  gap: 4px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.18);
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 4px 8px;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
}
.lang-btn.active {
  font-weight: bold;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================
   HERO – MAIN
   ============================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/anasayfaxx.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,22,40,0.72) 0%,
    rgba(10,22,40,0.40) 50%,
    rgba(10,22,40,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeDown 0.8s ease 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  opacity: 0;
  animation: fadeDown 0.8s ease 0.5s forwards;
}
.hero-title span { color: var(--gold); }

/* Tagline */
.hero-tagline-wrapper {
  height: 44px;
  overflow: hidden;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeDown 0.8s ease 0.7s forwards;
}

#heroTagline {
  display: block;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.3px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
#heroTagline.fade-out { opacity: 0; transform: translateY(-16px); }
#heroTagline.fade-in  { opacity: 0; transform: translateY(16px); }

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: pulseOpacity 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: drawLine 2s ease-in-out infinite;
}

@keyframes drawLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes pulseOpacity {
  0%,100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 50px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.75) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 14px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 0.62rem; }

/* ==============================
   FEATURES BAR
   ============================== */
.features-bar { background: var(--primary); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  padding: 44px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
  cursor: default;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--primary-light); }

.feature-icon {
  width: 62px;
  height: 62px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.feature-icon i { font-size: 1.4rem; color: var(--gold); transition: var(--transition); }

.feature-item:hover .feature-icon { background: var(--gold); }
.feature-item:hover .feature-icon i { color: var(--primary); }

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
}
.feature-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ==============================
   ABOUT SECTION
   ============================== */
.about-section { padding: 110px 0; background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 22px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}
.highlight-item { display: flex; align-items: center; gap: 10px; }
.highlight-item i { color: var(--gold); font-size: 1rem; }
.highlight-item span { font-size: 0.88rem; font-weight: 500; color: var(--text); }

.about-image { position: relative; }
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}
.about-img-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--primary);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-hover);
}
.badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.badge-text {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* ==============================
   ROOMS SECTION (Home)
   ============================== */
.rooms-section { padding: 110px 0; background: var(--white); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.room-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.room-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.06); }

.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}

.room-card-body { display: flex; flex-direction: column; flex: 1; padding: 28px; }

.room-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.room-name { font-size: 1.35rem; color: var(--primary); margin-bottom: 12px; }
.room-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 20px; min-height: calc(1.65em * 3); }

.room-features { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.room-feature { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-light); }
.room-feature i { color: var(--gold); }

.room-checklist { margin-bottom: 22px; }
.room-checklist p { font-size: 0.85rem; color: var(--text-light); }

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid var(--gray-light);
}
.room-price { display: flex; flex-direction: column; }
.price-from { font-size: 0.68rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 1.55rem; color: var(--primary); font-weight: 700; }
.price-night { font-size: 0.72rem; color: var(--gray); }

/* ==============================
   GALLERY PREVIEW (Home)
   ============================== */
.gallery-preview { padding: 110px 0; background: var(--off-white); }

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-row-big {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-row-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-row-big .g-item { height: 320px; }
.gallery-row-small .g-item { height: 200px; }
.gallery-grid .g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-grid .g-item.tall { grid-row: span 2; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.06); }

.g-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.5);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.g-overlay i { font-size: 2rem; color: var(--white); }
.g-item:hover .g-overlay { opacity: 1; }

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials-section {
  padding: 110px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 340px;
  color: rgba(201,169,110,0.04);
  line-height: 1;
  pointer-events: none;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.5); }

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

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,169,110,0.5);
}

.t-stars { color: var(--gold); margin-bottom: 20px; font-size: 0.9rem; letter-spacing: 2px; }
.t-text {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 26px;
}

.t-author { display: flex; align-items: center; gap: 14px; }

.t-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}
.t-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.t-country { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
  padding: 110px 0;
  background: var(--gold);
  text-align: center;
}
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--primary); margin-bottom: 18px; }
.cta-section p { font-size: 1.05rem; color: var(--primary); opacity: 0.75; margin-bottom: 44px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==============================
   ROOMS PAGE – Full Cards
   ============================== */
.rooms-page { padding: 80px 0; }

.quick-compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px; }
.gen-am-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.quick-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.transport-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }

.room-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  transition: box-shadow 0.35s ease;
}
.room-full-card:hover { box-shadow: var(--shadow-hover); }
.room-full-card.reversed { direction: rtl; }
.room-full-card.reversed .room-full-info { direction: ltr; }

.room-full-img { position: relative; min-height: 440px; }
.room-full-img img { width: 100%; height: 100%; object-fit: cover; }

.room-full-info { min-width: 0; padding: 50px 44px; display: flex; flex-direction: column; justify-content: center; }
.room-full-info .room-name { font-size: 1.9rem; color: var(--primary); margin-bottom: 14px; }
.room-full-info .room-desc { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; margin-bottom: 28px; }

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}
.amenity { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text-light); min-width: 0; }
.amenity span { overflow-wrap: break-word; }
.amenity i { color: var(--gold); width: 16px; flex-shrink: 0; }

.price-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 24px;
}

/* ==============================
   GALLERY PAGE
   ============================== */
.gallery-section { padding: 80px 0; }

.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-btn {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.35s ease;
  aspect-ratio: 4 / 3;
}
.masonry-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.04); }

.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.5);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
  color: var(--white);
}
.masonry-overlay i { font-size: 1.8rem; }
.masonry-overlay span { font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; }
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }

#lightboxImg {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(0,0,0,0.7);
}

#lightboxClose {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: var(--white); font-size: 2rem;
  cursor: pointer; line-height: 1;
  transition: var(--transition);
}
#lightboxClose:hover { color: var(--gold); }

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.3rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
#lightboxPrev { left: 24px; }
#lightboxNext { right: 24px; }
.lb-arrow:hover { background: rgba(201,169,110,0.3); border-color: var(--gold); }

/* ==============================
   ABOUT PAGE
   ============================== */
.about-story { padding: 110px 0; background: var(--off-white); }
.about-mission { padding: 110px 0; background: var(--white); }

.stats-section { padding: 80px 0; background: var(--primary); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  display: block;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.value-card {
  text-align: center;
  padding: 44px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }

.value-icon {
  width: 72px; height: 72px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  transition: var(--transition);
}
.value-icon i { font-size: 1.5rem; color: var(--gold); transition: var(--transition); }
.value-card:hover .value-icon { background: var(--gold); }
.value-card:hover .value-icon i { color: var(--primary); }
.value-title { font-size: 1.25rem; color: var(--primary); margin-bottom: 12px; }
.value-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.72; }

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-section { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
}

.contact-info-header h3 {
  font-size: 1.9rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.contact-info-header p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 38px;
}

.contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 38px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.c-icon {
  width: 50px; height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-icon i { color: var(--gold); font-size: 1rem; }
.c-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.c-value { font-size: 0.95rem; color: var(--text); font-weight: 500; line-height: 1.5; }
.c-value a:hover { color: var(--gold); }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--primary); transform: translateY(-3px); }

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 50px 44px;
}
.contact-form-wrap h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-err { font-size: 0.74rem; color: #e74c3c; margin-top: 5px; display: none; }
.form-err.show { display: block; }

.form-success {
  display: none;
  background: #edf7ee;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.92rem;
}
.form-success.show { display: block; }

.map-section { padding: 0 0 80px; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ==============================
   FOOTER
   ============================== */
footer {
  background: var(--primary);
  color: var(--white);
}

.footer-top { padding: 80px 0 64px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 56px;
}

.footer-brand .logo { display: inline-block; margin-bottom: 20px; }
.footer-logo-img { height: 64px; width: auto; display: block; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.82; margin-bottom: 26px; }
.footer-social { display: flex; gap: 10px; }

.footer-h {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links { display: flex; flex-direction: column; gap: 13px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i { font-size: 0.58rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold); }

.footer-contact-list { display: flex; flex-direction: column; gap: 18px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; width: 14px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.55; }
.footer-contact-item a { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.55; text-decoration: none; transition: color 0.2s ease; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--gold); }

/* ==============================
   FLOATING ELEMENTS
   ============================== */

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.42);
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-float i { font-size: 1.5rem; }
.wa-text { white-space: nowrap; }

/* Back to top */
#backTop {
  position: fixed;
  bottom: 96px;
  right: 30px;
  z-index: 990;
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}
#backTop.visible { opacity: 1; pointer-events: all; }
#backTop:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .rooms-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .masonry { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .feature-item:nth-child(even) { border-bottom: none; }
}

@media (max-width: 768px) {
  /* Mobile Nav */
  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    padding: 40px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .lang-selector { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; }
  .hamburger { display: flex; }

  /* Layout */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { display: none; }
  .rooms-grid { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: 1fr; }
  .gallery-row-big { grid-template-columns: 1fr; }
  .gallery-row-small { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .quick-compare-grid { grid-template-columns: 1fr; }
  .gen-am-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-contact-grid { grid-template-columns: 1fr; }
  .transport-info-grid { grid-template-columns: 1fr; }
  .room-full-card { grid-template-columns: 1fr; }
  .room-full-card.reversed { direction: ltr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .price-strip { flex-direction: column; align-items: stretch; }
  .price-strip .btn { width: 100%; justify-content: center; }
  .room-full-img { min-height: 260px; }
  .room-full-info { padding: 36px 28px; }
  .contact-form-wrap { padding: 36px 24px; }

  /* Float buttons */
  .wa-text { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  #backTop { bottom: 96px; right: 20px; }
  .whatsapp-float { right: 20px; bottom: 20px; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .gallery-row-big { grid-template-columns: 1fr; }
  .gallery-row-small { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .gallery-filters { gap: 8px; }
  .filter-btn { padding: 7px 18px; font-size: 0.78rem; }
  .btn-google { white-space: normal; text-align: center; padding: 14px 20px; }
}

/* Oda kartı — WhatsApp fiyat butonu */
.btn-wa-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-wa-quote:hover {
  background: var(--gold);
  color: var(--primary);
}

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
:root {
  --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-section {
  background: var(--white);
  padding: 100px 0 80px;
}

/* Tıklanabilir kullanıcı adı */
.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.ig-handle i {
  font-size: 1.2rem;
  background: var(--ig-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ig-handle:hover {
  color: #bc1888;
}

/* 3'lü fotoğraf ızgarası */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* Kare fotoğraf kartı */
.ig-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--gray-light);
  text-decoration: none;
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ig-card:hover img {
  transform: scale(1.08);
}

/* Hover overlay */
.ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(188, 24, 136, 0.75) 0%,
    rgba(220, 39, 67, 0.75) 50%,
    rgba(240, 148, 51, 0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ig-card:hover .ig-overlay {
  opacity: 1;
}

.ig-overlay i {
  font-size: 2.2rem;
  color: #fff;
}

.ig-overlay span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* CTA butonu */
.ig-cta {
  text-align: center;
  margin-top: 44px;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: #fff;
  background: var(--ig-gradient);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.35);
}

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

.btn-instagram:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .ig-grid { gap: 10px; }
}

@media (max-width: 480px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* ============================================================
   GOOGLE REVIEWS SECTION
   ============================================================ */
.google-reviews-section {
  background: var(--off-white);
  padding: 100px 0 80px;
}

/* Genel puan bloğu */
.gr-overall-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}

.gr-overall {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  padding: 24px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 5px solid #4285F4;
}

.gr-big-score {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.gr-overall-stars {
  color: #FBBC05;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.gr-overall-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gr-overall-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Carousel wrapper */
.gr-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.gr-nav-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.gr-nav-btn:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white);
}

.gr-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.gr-viewport {
  overflow: hidden;
  flex: 1;
}

.gr-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Kart */
.gr-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.gr-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.gr-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.gr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gr-reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  line-height: 1.2;
}

.gr-review-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 3px;
}

.gr-google-badge {
  margin-left: auto;
  color: #4285F4;
  font-size: 1.15rem;
}

.gr-card-stars {
  color: #FBBC05;
  font-size: 0.88rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.gr-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.78;
  font-style: italic;
}

/* Nokta göstergeler */
.gr-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.gr-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  padding: 0;
}

.gr-dot.active {
  background: var(--primary);
  width: 26px;
}

/* Google CTA butonu */
.gr-cta {
  text-align: center;
  margin-top: 44px;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 14px 34px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-google i {
  color: #4285F4;
  font-size: 1.1rem;
  transition: color var(--transition);
}

.btn-google:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-google:hover i {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 991px) {
  .gr-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 600px) {
  .gr-card { flex: 0 0 100%; }
  .gr-nav-btn { width: 40px; height: 40px; font-size: 0.85rem; }
  .gr-overall { padding: 18px 24px; gap: 16px; }
  .gr-big-score { font-size: 3.2rem; }
}
