/* ═══════════════════════════════════════════════
   Angel Yatçılık — Shared Stylesheet
   Brand: #1A1A1A | #C49A28 | #F2F0EB
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --black:      #1A1A1A;
  --gold:       #C49A28;
  --gold-lt:    #D4AE4A;
  --gold-dk:    #9C7A1A;
  --cream:      #F2F0EB;
  --cream-dk:   #E6E3DB;
  --warm:       #6B6560;
  --white:      #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w:      1100px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 3rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
nav.scrolled {
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(196,154,40,0.2);
}
nav.solid {
  background: var(--black);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo span { color: var(--gold); }
.nav-logo svg { width: 28px; height: 28px; }
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }

/* Hamburger — mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── SECTION BASE ── */
section { padding: 100px 3rem; }
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--black);
}
.section-title em { font-style: italic; color: var(--gold-dk); }
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.section-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--warm);
  max-width: 520px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.9rem 2.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(196,154,40,0.1); }

.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 0.9rem 2.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s;
}
.btn-dark:hover { background: var(--gold); color: var(--black); }

/* ── HERO (Landing) ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.5) 0%, rgba(26,26,26,0.25) 50%, rgba(26,26,26,0.7) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-weight: 500;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.8rem;
}
.hero-actions {
  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: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* ── PAGE HERO (iç sayfalar) ── */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 60px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.75) 100%);
}
.page-hero-content {
  position: relative;
  padding: 0 3rem;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  color: var(--white);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--gold); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  line-height: 1.6;
}

/* ── SERVICES (landing) ── */
.services { background: var(--black); }
.services .section-title { color: var(--white); }
.services .section-desc  { color: rgba(255,255,255,0.55); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease), filter 0.5s;
  filter: brightness(0.55);
}
.service-card:hover .service-card-bg { transform: scale(1.06); filter: brightness(0.4); }
.service-card-body {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-card-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  opacity: 0.85;
}
.service-card-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.service-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-desc-preview {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.service-card:hover .service-desc-preview { max-height: 80px; }
.service-arrow {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-arrow svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.service-card:hover .service-arrow { opacity: 1; transform: translateY(0); }

/* ── STATS ── */
.stats {
  background: var(--gold);
  padding: 60px 3rem;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 6rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.7);
  margin-top: 0.4rem;
}

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 60%;
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}
.about-badge {
  position: absolute;
  top: 2rem;
  right: -3rem;
  background: var(--gold);
  color: var(--black);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge-txt {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature { display: flex; align-items: flex-start; gap: 1rem; }
.feature-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55rem;
}
.feature-text { font-size: 0.88rem; line-height: 1.6; color: var(--warm); }
.feature-text strong { color: var(--black); font-weight: 500; }

/* ── GALLERY STRIP ── */
.gallery { padding: 0; overflow: hidden; cursor: grab; }
.gallery:active { cursor: grabbing; }
.gallery-strip {
  display: flex;
  gap: 5px;
  width: max-content;
  animation: galleryMarquee var(--gallery-duration, 30s) linear infinite;
}
.gallery-strip:hover { animation-play-state: paused; }
.gallery-item {
  flex: 0 0 200px;
  width: 200px;
  height: 267px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.85);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }

@keyframes galleryMarquee {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── PACKAGES ── */
.experience { background: var(--cream-dk); }
.experience-inner { max-width: var(--max-w); margin: 0 auto; }
.experience-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.experience-header .divider { margin: 1.5rem auto; }
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.package {
  background: var(--white);
  border-radius: 3px;
  padding: 2.5rem;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.package:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(26,26,26,0.08);
  transform: translateY(-4px);
}
.package.featured { background: var(--black); border-top-color: var(--gold); }
.package-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(196,154,40,0.12);
  color: var(--gold-dk);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.package.featured .package-tag { background: rgba(196,154,40,0.2); color: var(--gold); }
.package-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.5rem; }
.package.featured .package-name { color: var(--white); }
.package-desc { font-size: 0.82rem; color: var(--warm); line-height: 1.6; margin-bottom: 1.8rem; }
.package.featured .package-desc { color: rgba(255,255,255,0.55); }
.package-items { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.package-items li { font-size: 0.83rem; color: var(--warm); display: flex; align-items: center; gap: 0.6rem; }
.package.featured .package-items li { color: rgba(255,255,255,0.65); }
.package-items li::before { content: ''; display: inline-block; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; }
.package-btn {
  width: 100%;
  padding: 0.85rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.25s;
  display: block;
}
.package-btn-outline { border: 1px solid var(--cream-dk); color: var(--black); }
.package-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.package-btn-gold { background: var(--gold); color: var(--black); }
.package-btn-gold:hover { background: var(--gold-lt); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--black); }
.testimonials .section-label { color: var(--gold); }
.testimonials .section-title { color: var(--white); text-align: center; }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .divider { margin: 1.5rem auto; background: rgba(196,154,40,0.4); }
.reviews-meta { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.8rem; }
.reviews-meta span { color: var(--gold); }

/* ── REVIEWS CAROUSEL ── */
.slider-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: calc(var(--max-w) + 120px);
  margin: 0 auto;
  padding: 0 60px;
}
.slider-viewport {
  overflow: hidden;
  width: 100%;
}
.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.tcard {
  border: 1px solid rgba(196,154,40,0.15);
  border-radius: 3px;
  padding: 2rem;
  flex: 0 0 calc((100% - 3rem) / 3); /* 3 per view */
  min-width: 0;
  transition: border-color 0.3s;
}
.tcard:hover { border-color: rgba(196,154,40,0.35); }
.tcard-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 1.2rem; }
.tcard-photo {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  margin-bottom: 0.8rem; border: 1px solid rgba(196,154,40,0.2);
}
.tcard-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tcard-author { font-size: 0.78rem; color: var(--gold); font-weight: 500; letter-spacing: 0.08em; }
.tcard-city { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* Arrow buttons */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(196,154,40,0.1);
  border: 1px solid rgba(196,154,40,0.25);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  user-select: none;
}
.slider-arrow:hover { background: rgba(196,154,40,0.22); border-color: var(--gold); }
.slider-arrow:disabled { opacity: 0.25; cursor: default; }
.slider-prev { left: 0; }
.slider-next { right: 0; }

/* Dots */
.slider-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 2.5rem;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(196,154,40,0.25);
  border: none; cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* Google badge */
.google-badge {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 2.5rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 900px) {
  .slider-outer { padding: 0 44px; }
  .tcard { flex: 0 0 calc((100% - 1.5rem) / 2); } /* 2 per view */
}
@media (max-width: 600px) {
  .slider-outer { padding: 0 36px; }
  .tcard { flex: 0 0 100%; } /* 1 per view */
}

/* ── CONTACT ── */
.contact { background: var(--cream); }
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-item-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 0.3rem; }
.contact-item-val { font-size: 0.92rem; color: var(--black); line-height: 1.5; }
.form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  color: var(--black);
  outline: none;
  transition: border-color 0.25s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold); color: var(--black); }
.form-submit svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ── SERVICE DETAIL STYLES ── */
.detail-overview { background: var(--cream); }
.detail-overview-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}
.detail-body p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--warm);
  margin-bottom: 1.2rem;
}
.detail-body p:first-of-type { font-size: 1.05rem; color: var(--black); }

.detail-includes { margin-top: 2.5rem; }
.detail-includes-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.includes-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.includes-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--warm);
}
.includes-list li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.detail-card {
  background: var(--white);
  border-radius: 3px;
  border-top: 3px solid var(--gold);
  padding: 2rem;
  position: sticky;
  top: 92px;
  box-shadow: 0 8px 40px rgba(26,26,26,0.07);
}
.detail-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.detail-specs { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dk);
  font-size: 0.85rem;
}
.spec-row:last-child { border-bottom: none; padding-bottom: 0; }
.spec-label { color: var(--warm); }
.spec-val { color: var(--black); font-weight: 500; }
.detail-card .btn-primary { width: 100%; text-align: center; display: block; margin-bottom: 0.8rem; }
.detail-card-note { font-size: 0.72rem; color: var(--warm); text-align: center; line-height: 1.5; }

/* ── RELATED SERVICES ── */
.related { background: var(--cream-dk); }
.related-inner { max-width: var(--max-w); margin: 0 auto; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.related-card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,26,26,0.1); }
.related-card-img {
  height: 200px;
  overflow: hidden;
}
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.related-card:hover .related-card-img img { transform: scale(1.06); }
.related-card-body { padding: 1.5rem; }
.related-card-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.related-card-desc { font-size: 0.82rem; color: var(--warm); line-height: 1.6; margin-bottom: 1rem; }
.related-card-link {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.related-card:hover .related-card-link { gap: 0.7rem; }
.related-card-link svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--black);
  padding: 80px 3rem;
  text-align: center;
}
.cta-banner .section-title { color: var(--white); margin-bottom: 0.8rem; }
.cta-banner .section-title em { color: var(--gold-lt); }
.cta-banner p { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 60px 3rem 30px;
  border-top: 1px solid rgba(196,154,40,0.2);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; color: var(--white); }
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 0.8rem;
  max-width: 240px;
}
.footer-socials { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(196,154,40,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  transition: border-color 0.25s, color 0.25s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .detail-overview-inner { grid-template-columns: 1fr; }
  .detail-card { position: static; }
}
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 70px 1.5rem; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .packages { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-badge { right: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .page-hero-content { padding: 0 1.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .stats-inner { gap: 2rem; }
  .gallery-item { flex: 0 0 130px; width: 130px; height: 173px; }
  .services-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
  color: #fff;
}
