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

:root {
  --primary: #0A261D;
  --secondary: #164A41;
  --fresh: #4D774E;
  --mint: #9DC88D;
  --gold: #C5A880;
  --gold-light: #DFCDAB;
  --gold-dark: #A8895E;
  --bg-main: #FAFAF7;
  --bg-alt: #F2EFE9;
  --surface: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-light: #8A8A8A;
  --border: rgba(197, 168, 128, 0.3);
  --shadow-sm: 0 4px 20px rgba(10, 38, 29, 0.04);
  --shadow-md: 0 10px 40px rgba(10, 38, 29, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 38, 29, 0.14);
  --shadow-xl: 0 40px 100px rgba(10, 38, 29, 0.18);
  --slow: 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  --medium: 0.4s ease;
  --fast: 0.2s ease;
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-main);
  color: var(--text-body);
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--primary);
  font-weight: 400;
  line-height: 1.2;
}

p {
  line-height: 1.8;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--medium);
}

/* DARK SCROLLED NAVBAR - High contrast, luxurious */
.navbar.scrolled {
  background: rgba(10, 38, 29, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  box-shadow: var(--shadow-md);
}

/* NAV LOGO STACK - BIGGER */
.nav-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  text-decoration: none;
  transition: filter var(--medium);
}

.navbar.scrolled .nav-logo-stack {
  filter: brightness(1.15);
}

.brand-logo-spa {
  height: 68px;
  width: auto;
  display: block;
  transition: height var(--medium);
}

.brand-hotel-row {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.85;
}

.brand-at-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.brand-logo-hotel {
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(0.9);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--surface);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color var(--medium);
}

/* Scrolled nav links stay light for contrast on dark bg */
.navbar.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover {
  color: var(--gold) !important;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--medium);
}

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

.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.6rem 1.8rem;
  color: var(--gold) !important;
  transition: all var(--medium);
}

.navbar.scrolled .nav-cta {
  color: var(--gold) !important;
  border-color: var(--gold);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--primary) !important;
}

.nav-cta::after {
  display: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--surface);
  transition: all 0.3s;
}

/* Hamburger stays white on dark scrolled nav */
.navbar.scrolled .nav-hamburger span {
  background: var(--surface);
}

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* HERO SLIDESHOW */
.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 18s infinite;
}

.hero-slide:nth-child(1) {
  animation: heroSlideFirst 18s infinite;
  opacity: 1;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

@keyframes heroSlideFirst {
  0%, 33% {
    opacity: 1;
    transform: scale(1);
  }
  41% {
    opacity: 0;
  }
  92% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  8% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  41% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 38, 29, 0.55) 0%, rgba(10, 38, 29, 0.75) 60%, rgba(10, 38, 29, 0.9) 100%);
  z-index: 1;
}

/* Dekoratif köşe çizgileri */
.hero-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 2;
  opacity: 0.5;
}

.hero-corner-tl {
  top: 6rem;
  left: 4rem;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.hero-corner-br {
  bottom: 4rem;
  right: 4rem;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

/* Parçacıklar */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 15%;
  top: 30%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 35%;
  top: 70%;
  animation-delay: 1.5s;
}

.particle:nth-child(3) {
  left: 60%;
  top: 20%;
  animation-delay: 3s;
}

.particle:nth-child(4) {
  left: 80%;
  top: 55%;
  animation-delay: 4.5s;
}

.particle:nth-child(5) {
  left: 50%;
  top: 80%;
  animation-delay: 2s;
}

.particle:nth-child(6) {
  left: 25%;
  top: 50%;
  animation-delay: 6s;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  20% {
    opacity: 0.8;
    transform: translateY(-20px) scale(1);
  }

  80% {
    opacity: 0.4;
    transform: translateY(-80px) scale(0.8);
  }

  100% {
    opacity: 0;
    transform: translateY(-120px) scale(0);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  padding: 0 2rem;
  margin-top: 5rem;
}

.hero-badge {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 0.6rem 1.8rem;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--surface);
  margin-bottom: 1.5rem;
  font-weight: 300;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

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

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 168, 128, 0.2);
  backdrop-filter: blur(10px);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  padding: 1.2rem 2.5rem;
  text-align: center;
}

.hero-stat span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.hero-stat em {
  display: block;
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.3rem;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(197, 168, 128, 0.25);
  flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.15rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--slow);
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary);
  border: 1px solid var(--gold);
}

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

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--surface);
}

.btn-secondary:hover {
  background: var(--surface);
  color: var(--primary);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }

  100% {
    transform: scaleY(1) translateY(20px);
    opacity: 0;
  }
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--primary);
  padding: 1.2rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(197, 168, 128, 0.15);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.marquee-track .sep {
  color: var(--gold) !important;
  font-size: 0.6rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SECTIONS COMMON ── */
section {
  padding: 8rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--gold);
  font-style: italic;
}

.section-header .divider,
.divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.section-header p {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ── SERVICES ── */
#hizmetler {
  background: var(--bg-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--surface);
  padding: 3rem 2.5rem;
  border: 1px solid transparent;
  text-align: center;
  transition: all var(--slow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--medium);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.service-icon {
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  transition: all var(--medium);
}

.service-card:hover .service-icon {
  background: var(--secondary);
}

.service-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-alt);
}

.service-duration {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── STATS ── */
.stats-section {
  background: var(--primary);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.stats-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(197, 168, 128, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(157, 200, 141, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  border-right: 1px solid rgba(197, 168, 128, 0.15);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.stat-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 0;
  opacity: 0.4;
}

/* ── ABOUT ── */
#hakkimizda {
  background: var(--bg-alt);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-image {
  position: relative;
}

/* ABOUT IMAGE: 3-UP GRID */
.about-img-trio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  position: relative;
}

.about-img-trio .about-img-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.about-img-trio .about-img-side {
  grid-column: 2 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  aspect-ratio: 4/3;
}

.about-frame-deco {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  width: 60%;
  height: 90%;
  border: 1px solid rgba(197, 168, 128, 0.25);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: 12%;
  right: 0;
  background: var(--primary);
  color: var(--gold);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.about-badge .num {
  font-size: 3rem;
  font-weight: 400;
  display: block;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.about-badge .lbl {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.4rem;
  display: block;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-text-secondary {
  color: var(--text-light) !important;
  font-size: 0.9rem !important;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature .check {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.about-feature small {
  color: var(--text-light);
  font-size: 0.78rem;
}

.btn-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--gold);
  transition: all var(--medium);
}

.btn-about-cta:hover {
  color: var(--gold);
  gap: 1.5rem;
}

.btn-about-cta .arrow {
  transition: transform var(--medium);
}

.btn-about-cta:hover .arrow {
  transform: translateX(4px);
}

/* ── PROCESS ── */
.process-section {
  background: var(--bg-main);
  padding: 8rem 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}

.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(197, 168, 128, 0.15);
  line-height: 1;
  margin-bottom: -0.5rem;
  display: block;
}

.process-icon {
  font-size: 2.2rem;
  margin: 0 auto 1rem;
  width: 70px;
  height: 70px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.process-connector {
  position: absolute;
  top: 6rem;
  right: -1px;
  width: 1px;
  height: 70px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.process-step:last-child .process-connector {
  display: none;
}

/* ── VIDEO SHOWCASE ── */
.video-showcase {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.video-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.video-panel {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.video-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.video-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, #0a0a0a);
  pointer-events: none;
}

.video-text-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem 4rem 3rem;
  background: #0a0a0a;
}

.video-text-panel .section-label {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.video-text-panel h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.video-text-panel h2 span {
  color: var(--gold);
  font-style: italic;
}

.video-text-panel p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 380px;
}

.video-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.video-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.8);
  letter-spacing: 0.04em;
}

.video-feature-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.video-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

/* ── GALLERY ── */
#galeri {
  background: var(--bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 4;
  grid-row: span 1;
}

.gallery-item:nth-child(3) {
  grid-column: span 4;
  grid-row: span 1;
}

.gallery-item:nth-child(n+4) {
  grid-column: span 4;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--slow);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 38, 29, 0.55);
  opacity: 0;
  transition: opacity var(--medium);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--surface);
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
  transform: translateY(15px);
  transition: transform var(--medium);
}

.gallery-item:hover .gallery-item-overlay span {
  transform: translateY(0);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 38, 29, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--medium);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: transform var(--medium);
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

/* ── TESTIMONIALS ── */
#yorumlar {
  background: var(--primary);
  color: var(--surface);
}

#yorumlar .section-header h2 {
  color: var(--surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid rgba(197, 168, 128, 0.15);
  position: relative;
  transition: border-color var(--medium), transform var(--medium);
  background: rgba(255, 255, 255, 0.02);
}

.testimonial-card:hover {
  border-color: rgba(197, 168, 128, 0.4);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  color: rgba(197, 168, 128, 0.1);
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 3px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-name {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.rating-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.rating-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.rating-count {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.3rem;
}

/* ── PACKAGES ── */
.packages-section {
  background: var(--bg-alt);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.package-card {
  background: var(--surface);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all var(--slow);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-featured {
  background: var(--primary);
  border-color: var(--gold);
  transform: scale(1.04);
}

.package-featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.package-badge-top {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  white-space: nowrap;
}

.package-tier {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.package-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.package-card h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.package-featured h3 {
  color: var(--surface);
}

.package-duration {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.package-featured .package-duration {
  color: rgba(255, 255, 255, 0.45);
  border-color: rgba(197, 168, 128, 0.15);
}

.package-list {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  flex: 1;
}

.package-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.package-featured .package-list li {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.05);
}

/* Package CTA - no price */
.pkg-contact-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 1.25rem;
  display: block;
  text-align: center;
}

.btn-pkg {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all var(--medium);
}

.btn-pkg:hover {
  background: var(--gold);
  color: var(--surface);
}

.btn-pkg-featured {
  background: var(--gold);
  color: var(--primary);
}

.btn-pkg-featured:hover {
  background: var(--gold-light);
  color: var(--primary);
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--bg-main);
  text-align: center;
  padding: 8rem 2rem;
}

.cta-inner {
  position: relative;
  display: inline-block;
}

.cta-deco-left,
.cta-deco-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.25;
}

.cta-deco-left {
  left: -4rem;
}

.cta-deco-right {
  right: -4rem;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-light);
}

.cta-note {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

.cta-note::before {
  content: '✓ ';
  color: var(--mint);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary);
  color: var(--gold);
  padding: 1.2rem 3rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--medium);
  margin-top: 2rem;
}

.btn-whatsapp:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

/* ── FAQ ── */
.faq-section {
  background: var(--bg-alt);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary);
  text-align: left;
  transition: color var(--medium);
  gap: 1rem;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--medium);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── CONTACT ── */
#iletisim {
  background: var(--surface);
  padding: 6rem 2rem;
}

.contact-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.contact-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all var(--medium);
}

.contact-card:hover .contact-icon-wrap {
  background: var(--primary);
}

.contact-icon {
  font-size: 1.4rem;
}

.contact-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.contact-card p,
.contact-card a {
  color: var(--text-dark);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}

.contact-card a:hover {
  color: var(--gold);
}

/* ── FOOTER ── */
footer {
  background: var(--primary);
  padding: 5rem 2rem 3rem;
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--surface);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-logo em {
  color: var(--gold);
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.25rem;
}

/* FOOTER HOTEL LINE */
.footer-hotel-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  opacity: 0.55;
}

.footer-hotel-brand img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-at-sep {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
}

/* IHG LINE */
.footer-ihg {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.6rem;
}

.footer-ihg strong {
  color: var(--gold);
  font-weight: 500;
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--medium);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links span {
  color: rgba(197, 168, 128, 0.25);
}

.footer-divider {
  width: 50px;
  height: 1px;
  background: rgba(197, 168, 128, 0.2);
  margin: 2rem auto;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
}

.footer-copy span {
  color: var(--gold);
}

/* ── FLOATING WA ── */
.float-wa {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: all var(--medium);
}

.float-wa::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid #25D366;
  animation: waPulse 2s linear infinite;
}

.float-wa:hover {
  transform: scale(1.08);
}

.float-wa svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.float-wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--primary);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(5px);
  transition: all var(--medium);
  pointer-events: none;
}

.float-wa:hover .float-wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--gold);
  border: 1px solid rgba(197, 168, 128, 0.3);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all var(--medium);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--secondary);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links {
    gap: 1.6rem;
  }

  .navbar,
  .navbar.scrolled {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid rgba(197, 168, 128, 0.15);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    border-right: none;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-connector {
    display: none;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .package-featured {
    transform: scale(1);
  }

  .package-featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 1.5rem 2rem;
  }

  .navbar.scrolled {
    padding: 1rem 2rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-frame-deco {
    display: none;
  }

  .hero-corner {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .brand-logo-spa {
    height: 52px;
  }

  .brand-logo-hotel {
    height: 24px;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open a {
    color: var(--surface) !important;
  }

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

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0;
  }

  .hero-stat-divider {
    width: 50px;
    height: 1px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 12;
    grid-row: span 1;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 2rem 1rem;
  }

  section {
    padding: 5rem 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .cta-deco-left,
  .cta-deco-right {
    display: none;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .float-wa-tooltip {
    display: none;
  }

  .scroll-top {
    left: 1.5rem;
    bottom: 1.5rem;
  }

  .float-wa {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .video-showcase-inner {
    grid-template-columns: 1fr;
  }

  .video-text-panel {
    padding: 3rem 1.5rem;
  }

  .video-panel::after {
    background: linear-gradient(to bottom, transparent 60%, #0a0a0a);
  }
}

@media (max-width: 480px) {
  .hero-stats {
    display: none;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 3rem;
  }

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

  .brand-logo-spa {
    height: 46px;
  }

  .brand-logo-hotel {
    height: 20px;
  }
}