/* =====================================================
   286 Düğün & Davet — Demo Tanıtım Sayfası
   Palet: fildişi zemin, koyu lacivert, altın aksan
   ===================================================== */

:root {
  --navy: #16303f;
  --navy-dark: #0e2029;
  --gold: #c9a45c;
  --gold-light: #ead17a;
  --gold-dark: #9b713b;
  --ivory: #faf7f1;
  --ivory-dark: #f1ebe0;
  --text: #33414a;
  --muted: #74828b;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(22, 48, 63, .12);
  --radius: 14px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Segoe UI", Tahoma, sans-serif;
}

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

html { scroll-behavior: smooth; }

section[id], footer[id] { scroll-margin-top: 80px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-block;
  padding: .8rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-lg { padding: 1rem 2.4rem; font-size: 1.02rem; }
.btn-sm { padding: .55rem 1.3rem; font-size: .85rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-dark);
  font-weight: 600;
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(155, 113, 59, .35); }

.btn-outline {
  border-color: rgba(255, 255, 255, .7);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, .15); }

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

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

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: transform .3s ease;
}

.header-top {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  transition: max-height .3s ease, opacity .3s ease;
  max-height: 44px;
  overflow: hidden;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: .45rem;
}
.header-contact { display: flex; gap: 1.4rem; }
.header-contact a, .header-social a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.header-contact a:hover { color: var(--gold-light); }
.header-contact svg, .header-social svg { width: 15px; height: 15px; fill: var(--gold); }
.header-social a:hover svg { fill: var(--gold-light); }

.header-main {
  background: rgba(14, 32, 41, .55);
  backdrop-filter: blur(10px);
  transition: background .3s ease, box-shadow .3s ease;
}
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .55rem;
}
.logo img { height: 62px; width: auto; transition: height .3s ease; }

.main-nav { display: flex; gap: 1.6rem; }
.nav-link {
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .05em;
  padding-block: .4rem;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 1rem; }

/* Kaydırılınca küçülen header */
.site-header.scrolled .header-top { max-height: 0; opacity: 0; }
.site-header.scrolled .header-main { background: rgba(14, 32, 41, .96); box-shadow: 0 4px 24px rgba(0, 0, 0, .25); }
.site-header.scrolled .logo img { height: 48px; }

/* Mobil menü butonu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--white); transition: all .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero { position: relative; height: 100svh; min-height: 620px; overflow: hidden; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; transform: scale(1); z-index: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14, 32, 41, .78) 15%, rgba(14, 32, 41, .35) 60%, rgba(14, 32, 41, .15));
}

.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 700px; margin-top: 3rem; }
.hero-kicker {
  display: inline-block;
  font-size: .9rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  padding-left: 3.4rem;
  position: relative;
}
.hero-kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 2.6rem; height: 1px;
  background: var(--gold);
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-content p { font-size: 1.08rem; font-weight: 300; max-width: 560px; margin-bottom: 2rem; color: rgba(255,255,255,.9); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(14, 32, 41, .3);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .25s ease;
}
.hero-arrow svg { width: 26px; height: 26px; fill: var(--white); }
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hero-arrow:hover svg { fill: var(--navy-dark); }
.hero-prev { left: 1.6rem; }
.hero-next { right: 1.6rem; }

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: .6rem;
}
.hero-dots button {
  width: 34px; height: 4px;
  border: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background .25s ease;
}
.hero-dots button.active { background: var(--gold); }

/* =====================================================
   RAKAMLAR
   ===================================================== */
.stats { background: var(--navy); color: var(--white); padding-block: 2.6rem; }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-num, .stat-suffix {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
}
.stat p { margin-top: .2rem; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.75); }

/* =====================================================
   BÖLÜM ORTAK
   ===================================================== */
.section { padding-block: 5.5rem; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.2rem; }
.section-kicker {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .7rem;
}
.section-head h2, .about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-head p { color: var(--muted); }

.section-head-light h2 { color: var(--white); }
.section-head-light p { color: rgba(255, 255, 255, .75); }
.section-head-light .section-kicker { color: var(--gold-light); }

/* =====================================================
   ORGANİZASYONLAR (hizmet kartları)
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(22, 48, 63, .18); }
.service-img { overflow: hidden; aspect-ratio: 16 / 10; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-body { padding: 1.5rem 1.6rem 1.7rem; }
.service-body h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy); margin-bottom: .55rem; }
.service-body p { font-size: .93rem; color: var(--muted); margin-bottom: 1rem; }
.service-link {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
}
.service-link span { transition: margin-left .25s ease; margin-left: .2rem; display: inline-block; }
.service-link:hover span { margin-left: .6rem; }

/* =====================================================
   MEKANLAR
   ===================================================== */
.venues { background: var(--ivory-dark); }
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 1.4rem;
}
.venue-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: default;
}
.venue-lg { grid-column: span 2; grid-row: span 2; }
.venue-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.venue-card:hover img { transform: scale(1.06); }
.venue-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(14,32,41,0) 35%, rgba(14,32,41,.88));
  color: var(--white);
}
.venue-tag {
  align-self: flex-start;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .25rem .8rem;
  margin-bottom: .7rem;
}
.venue-overlay h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: .35rem; }
.venue-overlay p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
  max-width: 480px;
  margin-bottom: .9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.venue-card .btn { align-self: flex-start; }

/* =====================================================
   HAKKIMIZDA
   ===================================================== */
.about-inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 3.5rem;
  align-items: center;
}
.about-img { position: relative; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.about-badge {
  position: absolute;
  right: -1.2rem;
  bottom: 2rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-dark);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { font-family: var(--font-serif); font-size: 1.9rem; display: block; line-height: 1; }
.about-badge span { font-size: .85rem; font-weight: 500; }

.about-text .section-kicker { margin-bottom: .4rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }

.about-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.6rem;
  margin: 1.6rem 0 2rem;
}
.about-features li { display: flex; gap: .8rem; align-items: flex-start; }
.feat-icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: grid;
  place-items: center;
}
.feat-icon svg { width: 21px; height: 21px; fill: var(--navy-dark); }
.about-features strong { display: block; color: var(--navy); font-size: .95rem; }
.about-features small { color: var(--muted); font-size: .82rem; line-height: 1.4; display: block; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-block: 6.5rem;
  text-align: center;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(14, 32, 41, .72); }
.cta-content { position: relative; z-index: 1; color: var(--white); max-width: 760px; }
.cta-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 1rem; }
.cta-content p { color: rgba(255, 255, 255, .85); margin-bottom: 2rem; }

/* =====================================================
   GALERİ
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  border: none;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  background: var(--ivory-dark);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.06); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 22, 29, .94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 88vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lb-close, .lb-arrow {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  font-size: 2rem;
  transition: color .2s ease;
  z-index: 2;
}
.lb-close:hover, .lb-arrow:hover { color: var(--gold-light); }
.lb-close { top: 1.4rem; right: 1.8rem; font-size: 1.6rem; }
.lb-arrow { top: 50%; transform: translateY(-50%); font-size: 3.4rem; padding: 1rem; }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* =====================================================
   YORUMLAR
   ===================================================== */
.testimonials { background: var(--ivory-dark); }
.rating-line strong { color: var(--gold-dark); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: .4rem; right: 1.2rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--ivory-dark);
  line-height: 1;
}
.stars { color: var(--gold); letter-spacing: .2em; margin-bottom: .8rem; }
.testimonial p { font-size: .95rem; color: var(--text); font-style: italic; margin-bottom: 1rem; position: relative; z-index: 1; }
.testimonial footer { font-weight: 600; color: var(--navy); font-size: .9rem; }

/* =====================================================
   SSS
   ===================================================== */
.faq-inner { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold-dark);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 1.4rem 1.2rem; color: var(--muted); font-size: .94rem; }

/* =====================================================
   TEKLİF FORMU
   ===================================================== */
.quote {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.quote-form {
  max-width: 860px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 18px;
  padding: 2.4rem 2.6rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

/* Adım göstergesi */
.quote-progress {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2.2rem;
}
.qp-step { display: flex; align-items: center; gap: .6rem; flex: 0 0 auto; }
.qp-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ivory-dark);
  color: var(--muted);
  font-weight: 600;
  transition: all .3s ease;
}
.qp-label { font-size: .85rem; color: var(--muted); font-weight: 500; }
.qp-step.active .qp-dot, .qp-step.done .qp-dot {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-dark);
}
.qp-step.active .qp-label, .qp-step.done .qp-label { color: var(--navy); }
.qp-bar { flex: 1; height: 2px; background: var(--ivory-dark); position: relative; overflow: hidden; border-radius: 1px; }
.qp-bar span { position: absolute; inset: 0; width: 0; background: var(--gold); transition: width .4s ease; }
.qp-bar.filled span { width: 100%; }

/* Adımlar */
.quote-step { display: none; border: none; }
.quote-step.active { display: block; animation: stepIn .35s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.4rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field-wide { grid-column: 1 / -1; }
.form-field > span { font-size: .85rem; font-weight: 500; color: var(--navy); letter-spacing: .02em; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text);
  border: 1px solid #dcd5c8;
  border-radius: 10px;
  padding: .75rem .9rem;
  background: var(--ivory);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, .18);
}
.form-field input.invalid, .form-field select.invalid { border-color: #c0554d; box-shadow: 0 0 0 3px rgba(192, 85, 77, .15); }
textarea { resize: vertical; }

/* Mekan seçimi kartları */
.venue-pick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.venue-pick { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; display: block; }
.venue-pick input { position: absolute; opacity: 0; pointer-events: none; }
.venue-pick img { aspect-ratio: 1 / 1.1; object-fit: cover; width: 100%; transition: transform .4s ease; }
.venue-pick:hover img { transform: scale(1.05); }
.vp-name {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem .8rem .7rem;
  background: linear-gradient(180deg, transparent, rgba(14,32,41,.92));
  color: var(--white);
  font-weight: 600;
  font-size: .92rem;
  text-align: center;
}
.vp-name small { display: block; font-weight: 400; font-size: .74rem; color: rgba(255,255,255,.8); }
.venue-pick input:checked ~ img { transform: scale(1.05); }
.venue-pick:has(input:checked) {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.venue-pick:has(input:checked) .vp-name::before {
  content: "✓ ";
  color: var(--gold-light);
}

.form-error { color: #c0554d; font-size: .88rem; margin-top: .8rem; }

.kvkk {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-top: 1.2rem;
  font-size: .84rem;
  color: var(--muted);
  cursor: pointer;
}
.kvkk input { margin-top: .25rem; accent-color: var(--gold-dark); }
.kvkk.invalid span { color: #c0554d; }

.quote-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.8rem;
}

/* Başarı ekranı */
.quote-success { text-align: center; padding: 2rem 1rem; }
.qs-icon {
  width: 76px; height: 76px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: grid;
  place-items: center;
  animation: pop .45s ease;
}
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 70% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.qs-icon svg { width: 40px; height: 40px; fill: var(--navy-dark); }
.quote-success h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy); margin-bottom: .6rem; }
.quote-success p { color: var(--muted); max-width: 480px; margin-inline: auto; }
.quote-success a { color: var(--gold-dark); font-weight: 600; }
.qs-summary { margin-top: 1rem; font-size: .88rem; background: var(--ivory); border-radius: 10px; padding: .9rem 1.2rem; display: inline-block; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, .78); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-block: 4rem 3rem;
}
.footer-logo { height: 74px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; max-width: 300px; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: grid;
  place-items: center;
  transition: all .25s ease;
}
.footer-social svg { width: 17px; height: 17px; fill: rgba(255, 255, 255, .85); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social a:hover svg { fill: var(--navy-dark); }

.footer-col h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: .5rem;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 2px;
  background: var(--gold);
}
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a, .footer-contact a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s ease;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact { font-style: normal; }
.footer-contact p { margin-bottom: .6rem; font-size: .92rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 1.1rem;
  font-size: .84rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .4rem; }
.footer-demo-note { color: rgba(255, 255, 255, .4); }

/* =====================================================
   YARDIMCILAR
   ===================================================== */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .3s ease;
  box-shadow: var(--shadow);
}
.to-top svg { width: 24px; height: 24px; fill: var(--gold-light); }
.to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--gold-dark); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .venues-grid { grid-auto-rows: 260px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { max-width: 480px; margin-inline: auto; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--navy-dark);
    flex-direction: column;
    gap: .4rem;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .3);
  }
  .main-nav.open { transform: none; }
  .main-nav .nav-link { font-size: 1.1rem; padding-block: .7rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: flex; z-index: 110; }
  .header-contact a:last-child { display: none; }

  .venues-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .venue-lg { grid-column: span 2; grid-row: span 1; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .venue-pick-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { background-attachment: scroll; }
}

@media (max-width: 600px) {
  .section { padding-block: 3.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .venues-grid { grid-template-columns: 1fr; }
  .venue-lg { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .quote-form { padding: 1.6rem 1.2rem; }
  .qp-label { display: none; }
  .hero-arrow { display: none; }
  .header-contact a:first-child { font-size: .78rem; }
  .about-badge { right: .6rem; }
}
