/* =========================================
   ALEV DURMUŞOĞLU · DOĞUM FOTOĞRAFÇISI
   Stil Dosyası
   ========================================= */

:root {
  --cream: #FAF8FB;
  --petal: #F5EFF5;
  --blush: #E8D8E8;
  --rose: #B8899B;
  --rose-dark: #9E6F87;
  --bark: #6B4462;
  --charcoal: #2E1F2C;
  --warm-gray: #8B7488;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;

  --nav-h: 72px;
  --max-w: 1160px;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(250, 248, 251, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--blush);
  transition: box-shadow 0.3s;
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(107,68,98,0.08); }

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--bark);
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 400;
}

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

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.3s;
}

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

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--bark);
  transition: all 0.3s;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  padding: 0.82rem 2.2rem;
  background: transparent;
  color: var(--bark);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--blush);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-1px);
}

/* ---- SECTION HELPERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--bark);
}

h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--bark);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--petal);
  padding-top: var(--nav-h);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 4rem 2rem 2rem;
  animation: fadeUp 1.2s ease both;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  width: 100%;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease 0.3s both;
}

.hero-strip-photo {
  height: 220px;
  overflow: hidden;
}

.hero-strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.hero-strip-photo:hover img { transform: scale(1.05); }

.hero-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 2rem 4rem;
  animation: fadeUp 1.2s ease 0.5s both;
}

@media (max-width: 768px) {
  .hero-strip { grid-template-columns: repeat(3, 1fr); }
  .hero-strip-photo:nth-child(4),
  .hero-strip-photo:nth-child(5) { display: none; }
  .hero-strip-photo { height: 160px; }
}

@media (max-width: 480px) {
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip-photo:nth-child(3),
  .hero-strip-photo:nth-child(4),
  .hero-strip-photo:nth-child(5) { display: none; }
  .hero-strip-photo { height: 130px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,137,155,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(232,216,232,0.3) 0%, transparent 50%);
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.2;
  color: var(--bark);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--rose);
}

.hero-sub {
  font-size: 0.88rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.2;
  color: var(--bark);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--rose);
}


  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  margin-bottom: 3rem;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-gray);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 2s ease 1s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

/* ---- INTRO QUOTE ---- */
.intro-quote {
  padding: 5rem 0;
  background: var(--white);
}

.intro-quote blockquote {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.5;
  color: var(--bark);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.intro-quote blockquote em {
  font-style: italic;
  color: var(--rose);
}

/* ---- VALUES ---- */
.values {
  padding: 7rem 0;
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-top: 2px solid var(--blush);
  transition: border-color 0.3s, transform 0.3s;
}

.value-item:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 1.5rem;
  color: var(--rose);
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 2rem 0 3rem;
  background: var(--petal);
}

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

.testimonial {
  padding: 2.5rem;
  background: var(--white);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--blush);
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 2rem;
  pointer-events: none;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
}

.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
}

/* ---- PACKAGES PREVIEW ---- */
.packages-preview {
  padding: 7rem 0;
  background: var(--cream);
}

.packages-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.package-card {
  padding: 2.5rem 1.5rem;
  background: var(--white);
  text-align: center;
  border: 1px solid var(--petal);
  transition: all 0.3s;
  position: relative;
}

.package-card:hover {
  border-color: var(--blush);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107,68,98,0.08);
}

.package-card.featured {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(184,137,155,0.25);
}

.pkg-badge {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: var(--rose);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pkg-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--bark);
  margin-bottom: 0.4rem;
}

.package-card.featured .pkg-name { color: var(--cream); }
.package-card.featured .pkg-type { color: var(--blush); }
.package-card.featured .pkg-price { color: var(--white); }

.pkg-type {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
}

.pkg-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--rose);
}

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

/* ---- INSTAGRAM ---- */
.instagram-section {
  padding: 7rem 0;
  background: var(--petal);
}

.ig-sub {
  color: var(--warm-gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 4px;
  margin-bottom: 2rem;
}

.ig-item {
  background: var(--blush);
  display: block;
  overflow: hidden;
  position: relative;
}

/* Vary heights for visual interest */
.ig-item-1 { grid-row: span 2; }

.ig-item {
  transition: opacity 0.3s;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107,68,98,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.ig-overlay span {
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

/* ---- PAGE HERO ---- */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  background: var(--petal);
  border-bottom: 1px solid var(--blush);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--bark);
  margin-top: 0.5rem;
}

.page-hero-sub {
  max-width: 620px;
  margin-top: 1rem;
  color: var(--warm-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---- ABOUT ---- */
.about-section {
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6rem;
  align-items: start;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--bark);
  margin-bottom: 2rem;
}

.about-text p {
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.about-img-placeholder {
  background: var(--blush);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gray);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--blush);
}

.stat {
  background: var(--white);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--rose);
  font-weight: 300;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ---- PHASES ---- */
.about-philosophy {
  padding: 7rem 0;
  background: var(--petal);
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.phase {
  padding: 2rem;
  background: var(--white);
}

.phase-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 300;
}

.phase h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.phase p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

.phases-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--warm-gray);
  font-style: italic;
}

/* ---- TAAHHÜT ---- */
.taahhut {
  padding: 7rem 0;
  background: var(--bark);
}

.taahhut .section-eyebrow { color: var(--blush); }
.taahhut h2 { color: var(--cream); }

.taahhut-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.taahhut-inner p {
  color: rgba(250,248,251,0.8);
  margin: 1.5rem 0 3rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.delivery-times {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.delivery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.delivery-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--rose);
  font-weight: 300;
}

.delivery-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
}

.delivery-sep {
  color: var(--blush);
  font-size: 1.5rem;
}

/* ---- PACKAGES FULL ---- */
.packages-full {
  padding: 7rem 0;
}

.pkg-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 6rem;
}

.pkg-full-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--petal);
  position: relative;
  transition: all 0.3s;
}

.pkg-full-card:hover {
  box-shadow: 0 8px 32px rgba(107,68,98,0.08);
}

.pkg-full-card--featured {
  background: var(--rose);
  border-color: var(--rose);
  margin-top: -1rem;
  box-shadow: 0 16px 48px rgba(184,137,155,0.25);
}

.pkg-full-badge {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: var(--rose);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pkg-full-header { margin-bottom: 2rem; }

.pkg-full-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--bark);
  margin-bottom: 0.3rem;
}

.pkg-full-card--featured .pkg-full-name { color: var(--cream); }
.pkg-full-card--featured .pkg-full-type { color: var(--blush); }

.pkg-full-type {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}

.pkg-full-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--rose);
}

.pkg-full-list {
  list-style: none;
  margin-bottom: 2rem;
}

.pkg-full-list li {
  font-size: 0.85rem;
  color: var(--warm-gray);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--petal);
  line-height: 1.5;
}

.pkg-full-card--featured .pkg-full-list li {
  color: rgba(250,248,251,0.85);
  border-color: rgba(232,216,232,0.25);
}

.pkg-full-list li::before {
  content: '— ';
  color: var(--rose);
}

.pkg-btn { width: 100%; text-align: center; }

/* Extras */
.extras-section {
  padding: 5rem 0;
  border-top: 1px solid var(--blush);
  margin-bottom: 4rem;
}

.extras-section h2 { text-align: center; margin-bottom: 3rem; }
.extras-section .section-eyebrow { text-align: center; display: block; }

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.extra-card {
  padding: 2.5rem;
  background: var(--petal);
}

.extra-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--bark);
  margin-bottom: 0.75rem;
}

.extra-card p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.extra-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--rose) !important;
  margin-top: 1rem !important;
}

.extra-note {
  font-size: 0.78rem !important;
  font-style: italic;
}

/* Other sessions */
.other-sessions {
  margin-bottom: 5rem;
}

.other-sessions h2,
.other-sessions .section-eyebrow { text-align: center; }
.other-sessions h2 { margin-bottom: 3rem; }

.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.other-card {
  padding: 2rem;
  background: var(--white);
  border-top: 2px solid var(--blush);
  transition: border-color 0.3s;
}

.other-card:hover { border-color: var(--rose); }

.other-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--bark);
  margin-bottom: 0.75rem;
}

.other-card p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.other-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--rose) !important;
  margin-top: 1rem !important;
}

/* Rezervasyon box */
.rezervasyon-box {
  background: var(--petal);
  padding: 5rem 2rem;
}

.rezervasyon-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.rezervasyon-inner p {
  color: var(--warm-gray);
  margin: 1rem 0;
  font-size: 0.92rem;
}

.rezervasyon-note {
  font-size: 0.8rem !important;
  font-style: italic;
  margin-bottom: 2rem !important;
}

/* ---- GALLERY ---- */
.gallery-section {
  padding: 4rem 0 7rem;
}

.gallery-filter {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background: none;
  border: 1px solid var(--blush);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
}

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

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--petal) 100%);
}

.gallery-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.88rem;
  color: var(--warm-gray);
}

.gallery-note a {
  color: var(--rose);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 1px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,10,20,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-content img {
  max-height: 85vh;
  max-width: 85vw;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2.5rem;
  color: var(--blush);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--white); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--blush);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 1rem;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--white); }

/* ---- CONTACT ---- */
.contact-section {
  padding: 5rem 0 7rem;
}

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

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--rose);
}

.contact-info > p {
  color: var(--warm-gray);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-items {
  margin-bottom: 2.5rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--petal);
  align-items: center;
}

.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.contact-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--bark);
  transition: color 0.2s;
}

.contact-value:hover { color: var(--rose); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
}

.rezervasyon-card {
  background: var(--petal);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.rezervasyon-card h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--bark);
  margin: 1rem 0 1.5rem;
  line-height: 1.5;
}

.rezervasyon-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.rezervasyon-list li {
  font-size: 0.88rem;
  color: var(--warm-gray);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--blush);
}

.rezervasyon-list li::before {
  content: '→ ';
  color: var(--rose);
}

.rezervasyon-note {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.faq-card {
  background: var(--white);
  padding: 2rem;
  border-left: 3px solid var(--rose);
}

.faq-card h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 400;
}

.faq-item {
  margin-bottom: 1.25rem;
}

.faq-q {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--bark);
  margin-bottom: 0.4rem;
}

.faq-a {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--rose); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

.mini-film-eki {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--petal);
  border-left: 2px solid var(--rose);
}

.mini-film-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--rose);
  margin-bottom: 0.4rem;
}

/* ---- ÖDÜLLER ---- */
.oduller-section {
  padding: 2rem 0 3rem;  /* üst az, alt normal */
  background: var(--cream);
}

.oduller-grid {
  display: flex;
  gap: 0;
  border: 1px solid var(--blush);
  overflow: hidden;
}

.odul-card {
  flex: 1;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  text-align: center;
  border-right: 1px solid var(--blush);
  transition: background 0.3s;
}

.odul-card:last-child { border-right: none; }

.odul-card:hover { background: var(--petal); }

.odul-icon {
  font-size: 0.9rem;
  color: var(--rose);
  margin-bottom: 0.6rem;
}

.odul-yil {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
}

.odul-card h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--bark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.odul-derece {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
}

/* ---- HASTANELER & DOKTORLAR ---- */
.hastaneler-section {
  padding: 3rem 0 2rem;
  background: var(--petal);
}

.hastane-doktor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hastane-card,
.doktor-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--blush);
}

.hastane-card h3,
.doktor-card h3 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-family: var(--font-sans);
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--blush);
}

.liste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
}

.liste-grid span {
  font-size: 0.83rem;
  color: var(--warm-gray);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--petal);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .oduller-grid { flex-direction: column; }
  .odul-card { border-right: none; border-bottom: 1px solid var(--blush); }
  .odul-card:last-child { border-bottom: none; }
  .hastane-doktor-grid { grid-template-columns: 1fr; }
  .liste-grid { grid-template-columns: 1fr; }
}

/* ---- FİLMLER ---- */
.films-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.film-card {
  background: var(--white);
  border: 1px solid var(--petal);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.film-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107,68,98,0.1);
}

.film-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.film-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

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


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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-row { grid-template-columns: repeat(2, 1fr); }
  .pkg-full-grid { grid-template-columns: repeat(2, 1fr); }
  .phases-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--blush);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .packages-row { grid-template-columns: 1fr; }
  .pkg-full-grid { grid-template-columns: 1fr; }
  .phases-grid { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .ig-item-1 { grid-row: span 1; }

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

  .gallery-item--wide { grid-column: span 1; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .package-card.featured { transform: none; }

  .pkg-full-card--featured { margin-top: 0; }
}

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

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

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

/* =========================================
   WHATSAPP YÜZEN BUTON
   style.css dosyasının sonuna ekleyin
   ========================================= */
 
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bark);
  color: var(--cream);
  padding: 0.7rem 1.2rem 0.7rem 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 24px rgba(46, 31, 44, 0.18);
  transition: background 0.25s, transform 0.2s, opacity 0.3s;
  opacity: 0;
  transform: translateY(8px);
}
 
.wa-float.visible {
  opacity: 1;
  transform: translateY(0);
}
 
.wa-float:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}
 
.wa-float svg {
  flex-shrink: 0;
}
 
@media (max-width: 600px) {
  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.7rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    justify-content: center;
  }
  .wa-float span {
    display: none;
  }
}
 
/* ---- WHATSAPP YÜZEN BUTON ---- */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bark);
  color: var(--cream);
  padding: 0.7rem 1.2rem 0.7rem 0.9rem;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 24px rgba(46, 31, 44, 0.18);
  transition: background 0.25s, transform 0.2s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

.wa-float.visible {
  opacity: 1;
  pointer-events: auto;
}

.wa-float:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

.wa-float svg { flex-shrink: 0; }

@media (max-width: 600px) {
  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem;
    width: 48px;
    height: 48px;
    justify-content: center;
  }
  .wa-float span { display: none; }
}
