@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #b8860b;
  --gold-light: #d4a017;
  --gold-pale: #f5e6b8;
  --dark: #0a0f1e;
  --dark-2: #111827;
  --muted: #64748b;
  --light: #f8f6f1;
  --white: #ffffff;
  --surface: #e8e4dc;
  --border: rgba(184,134,11,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── CONTAINER ─────────────────────────────────────── */
.container { width: min(1180px, 92%); margin: 0 auto; }

/* ─── HEADER ─────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s;
  padding: 0;
}

header.scrolled:not(.header-light),
header.header-inner {
  background: rgba(10, 15, 30, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

header.header-inner.scrolled {
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}

header.top {
  background: transparent;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  transition: padding 0.3s;
}

header.scrolled .nav-wrap { padding: 0.65rem 0; }

.brand {
  display: flex;
  align-items: center;
  color: var(--white);
  flex-shrink: 0;
}

.brand-logo {
  height: 88px;
  width: auto;
  max-width: min(420px, 78vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 18px rgba(255, 255, 255, 0.15));
}

header.top .brand {
  background: rgba(10, 15, 30, 0.55);
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

header.scrolled .brand-logo { height: 72px; }

.menu-toggle {
  display: none;
  border: 1px solid rgba(212, 160, 23, 0.55);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}

nav a:hover {
  color: #fff;
  background: rgba(184, 134, 11, 0.28);
  border-color: rgba(212, 160, 23, 0.55);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.25);
  transform: translateY(-1px);
}

nav a.active {
  color: var(--dark);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.45);
  text-shadow: none;
}

/* ─── HERO SLIDER ─────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active { opacity: 1; z-index: 1; }
.slide.prev { opacity: 0; z-index: 0; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}

.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.88) 0%, rgba(10,15,30,0.55) 60%, rgba(10,15,30,0.3) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 820px;
  padding: 0 1.5rem;
  text-align: center;
}

.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
}

.slide.active .slide-tag { opacity: 1; transform: translateY(0); }

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s 0.5s, transform 0.6s 0.5s;
}

.slide.active .slide-title { opacity: 1; transform: translateY(0); }

.slide-desc {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.7s, transform 0.5s 0.7s;
}

.slide.active .slide-desc { opacity: 1; transform: translateY(0); }

.slide-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s 0.9s, transform 0.5s 0.9s;
}

.slide.active .slide-actions { opacity: 1; transform: translateY(0); }

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 10px;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.slider-dot.active { background: var(--gold); transform: scale(1.4); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
}

.slider-arrow:hover { background: rgba(184,134,11,0.6); transform: translateY(-50%) scale(1.08); }
.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; }

.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  border: 2px solid var(--gold);
}

.btn:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(184,134,11,0.35); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
}

.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; transform: translateY(-2px); box-shadow: none; }

.btn-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}

.btn-dark:hover { background: var(--dark-2); }

/* ─── SECTION ─────────────────────────────────────────── */
section { padding: 5rem 0; }

main.page-section {
  padding-top: calc(7.5rem + 88px);
  padding-bottom: 5rem;
}

main.page-section > .container > .section-label.reveal,
main.page-section > .container > .section-title.reveal,
main.page-section > .container > .section-desc.reveal {
  opacity: 1;
  transform: none;
}

main.page-section > .container > .section-title {
  scroll-margin-top: calc(7.5rem + 88px);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.6rem;
}

.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 2.5rem;
  font-size: 1.02rem;
}

/* ─── QUICK ACTIONS ─────────────────────────────────── */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: -3rem;
  position: relative;
  z-index: 5;
}

.quick-action {
  background: var(--white);
  border: 1px solid var(--surface);
  border-radius: 14px;
  padding: 1.3rem 1.1rem;
  box-shadow: 0 12px 32px rgba(10,15,30,0.1);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column; gap: 0.3rem;
}

.quick-action:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(10,15,30,0.14);
  border-color: var(--gold);
}

.quick-action-icon {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.quick-action strong { font-size: 0.95rem; font-weight: 600; }
.quick-action span { color: var(--muted); font-size: 0.85rem; }

/* ─── STATS ─────────────────────────────────────────── */
.stats-section {
  background: var(--dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8860b' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; }

.stat {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

/* ─── SERVICE CARDS ─────────────────────────────────── */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(10,15,30,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10,15,30,0.12);
  border-color: var(--border);
}

.card h3 { font-family: 'Playfair Display', serif; font-size: 1.12rem; margin-bottom: 0.65rem; }

.service-card {
  padding: 0;
  overflow: hidden;
}

.service-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
}

.service-card-content { padding: 1.3rem; }
.service-card-content h3 { margin-bottom: 0.5rem; }
.service-card-content p { color: var(--muted); font-size: 0.92rem; }

/* ─── PROCESS ─────────────────────────────────────────── */
.process-section { background: #f0ece4; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-pale) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(184,134,11,0.2);
  transition: background 0.3s, color 0.3s;
}

.process-step:hover .step-number { background: var(--gold); color: white; }

.process-step h3 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

/* ─── WHY US ─────────────────────────────────────────── */
.why-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.4rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--surface);
  box-shadow: 0 4px 16px rgba(10,15,30,0.05);
  transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover { border-color: var(--gold); transform: translateX(4px); }

.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-card h3 { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.3rem; }
.why-card p { color: var(--muted); font-size: 0.87rem; }

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-us-intro .section-desc {
  margin-bottom: 1.5rem;
}

/* ─── GALLERY ─────────────────────────────────────────── */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

@media (max-width: 768px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  border: none;
  background: none;
  padding: 0;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,15,30,0.75) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 1rem;
}

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

.gallery-item-overlay span {
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
}

/* Gallery grid for yaptiklarimiz */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid .gallery-item {
  aspect-ratio: 4 / 3;
  break-inside: auto;
}

.gallery-grid .gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid .gallery-item span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(10, 15, 30, 0.82));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-grid .gallery-item:hover span { opacity: 1; }

/* ─── CTA BAND ─────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.18) 0%, transparent 70%);
}

.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  color: white;
}

.cta-inner .section-title { color: white; }
.cta-inner .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto 2rem; }

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

/* ─── TESTIMONIALS ─────────────────────────────────────── */
.testimonials-section { background: var(--dark-2); padding: 5rem 0; }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-label { }

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.8rem;
  transition: border-color 0.3s;
}

.testimonial-card:hover { border-color: var(--gold); }

.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { font-weight: 600; color: white; font-size: 0.9rem; }
.testimonial-role { color: var(--gold-light); font-size: 0.8rem; }

/* ─── HIGHLIGHT ─────────────────────────────────────────── */
.highlight {
  background: #f1f5f9;
  border-left: 4px solid var(--gold);
  padding: 1rem;
  border-radius: 8px;
}

/* ─── SERVICE LANDING (boyabadana vb.) ──────────────────── */
.service-page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  margin-bottom: 3rem;
  box-shadow: 0 12px 40px rgba(10, 15, 30, 0.2);
}

.service-page-hero .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.service-page-hero .section-desc {
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.service-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.apt-package {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.apt-package-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.apt-package h3 {
  margin-bottom: 0.65rem;
}

.apt-package > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.apt-package-list {
  list-style: none;
  margin-top: auto;
  padding-top: 0.5rem;
}

.apt-package-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: var(--dark);
}

.apt-package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ─── SERVICE REGIONS ───────────────────────────────────── */
.service-regions-block {
  padding: 4rem 0;
}

.service-regions-block .section-desc {
  margin-bottom: 1.25rem;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-tags li {
  background: var(--white);
  border: 1px solid var(--surface);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(10, 15, 30, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.region-tags li:hover {
  border-color: var(--gold-light);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.12);
}

/* ─── CONTACT FORM ─────────────────────────────────────── */
.contact-form { display: grid; gap: 1.1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--surface);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer { background: #020617; color: #cbd5e1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  padding: 4rem 0 2.5rem;
}

.footer-col h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.2rem; margin-bottom: 1rem; }
.footer-col h4 { color: white; font-size: 0.92rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col p { font-size: 0.9rem; line-height: 1.7; color: rgba(203,213,225,0.75); }

.footer-brand-tagline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.footer-links, .footer-contact { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a, .footer-contact a { color: rgba(203,213,225,0.75); font-size: 0.9rem; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact li { font-size: 0.88rem; color: rgba(203,213,225,0.7); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(148,163,184,0.15);
  margin: 0;
}

.footer-bottom {
  padding: 1.2rem 0 1.6rem;
}

.footer-bottom-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
  font-size: 0.82rem; color: #475569;
}

.footer-bottom-inner p { margin: 0; }

.footer-bottom-inner {
  align-items: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-legal a {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ─── LEGAL PAGES ───────────────────────────────────────── */
.legal-content {
  max-width: 820px;
}

.legal-content h1.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.65rem;
  color: var(--dark);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-content a {
  color: var(--gold);
  font-weight: 500;
}

.legal-content a:hover {
  color: var(--gold-light);
}

/* ─── CONTACT LIST ─────────────────────────────────────── */
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-list li { font-size: 0.95rem; }

/* ─── LIGHTBOX ─────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  display: none; align-items: center; justify-content: center;
  background: rgba(2,6,23,0.93);
  z-index: 2000;
  padding: 1rem;
}

.lightbox.active { display: flex; }

.lightbox figure { margin: 0; max-width: 960px; width: 100%; }

.lightbox img { width: 100%; max-height: 84vh; object-fit: contain; border-radius: 10px; }

.lightbox figcaption { color: #e2e8f0; text-align: center; margin-top: 0.8rem; font-size: 0.88rem; }

.lightbox button {
  position: absolute; border: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(148,163,184,0.25);
  color: white; font-size: 1.2rem; cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}

.lightbox button:hover { background: rgba(184,134,11,0.6); }
.lightbox .close { top: 18px; right: 18px; }
.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

/* ─── FLOATING CTA (Telefon & WhatsApp) ─────────────────── */
.floating-cta {
  position: fixed;
  right: 1.15rem;
  bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
  z-index: 1150;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  pointer-events: none;
}

.floating-cta a {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-cta a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
}

.floating-cta a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.floating-cta-phone {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--dark);
}

.floating-cta-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.floating-cta svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

body:has(.lightbox.active) .floating-cta {
  opacity: 0;
  pointer-events: none;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── MEDIA QUERIES ─────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root {
    --mobile-header-h: 5.75rem;
  }

  main.page-section {
    padding-top: calc(var(--mobile-header-h) + 1.5rem);
  }

  main.page-section > .container > .section-title {
    scroll-margin-top: calc(var(--mobile-header-h) + 1.5rem);
  }

  .brand-logo {
    height: 56px;
    max-width: min(260px, 58vw);
  }

  header.scrolled .brand-logo {
    height: 50px;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .hero-slider,
  body.menu-open main {
    pointer-events: none;
  }

  header.nav-open,
  header.nav-open.top,
  header.nav-open.scrolled,
  header.nav-open.header-inner {
    z-index: 1201;
    background: var(--dark);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  header.nav-open .brand {
    background: rgba(10, 15, 30, 0.55);
    padding: 0.35rem 0.75rem;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  }

  header.nav-open .nav-wrap {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
  }

  .nav-wrap {
    flex-wrap: nowrap;
    position: relative;
    z-index: 2;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 2.75rem;
    min-height: 2.75rem;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }

  .brand {
    position: relative;
    z-index: 2;
    min-width: 0;
  }

  header.nav-open .menu-toggle {
    background: rgba(184, 134, 11, 0.25);
    border-color: var(--gold-light);
  }

  nav {
    position: fixed;
    top: var(--mobile-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
    width: 100%;
    margin: 0;
    padding: 1.25rem 1.5rem 2rem;
    background: var(--dark);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body > nav.open {
    z-index: 999;
  }

  nav.open {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    max-width: 300px;
    margin: auto 0;
    padding: 0;
    border-top: none;
    flex: 1;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 0.9rem 1.25rem;
    text-align: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    text-shadow: none;
  }

  nav a.active {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-color: var(--gold-light);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
  }

  nav a:hover {
    transform: none;
    background: rgba(184, 134, 11, 0.22);
    border-color: rgba(212, 160, 23, 0.45);
  }

  nav a.active:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  }

  .quick-actions { margin-top: 2rem; }
  .process-grid::before { display: none; }
  .slider-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .lightbox .prev { left: 8px; }
  .lightbox .next { right: 8px; }

  .floating-cta {
    right: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    gap: 0.6rem;
  }

  .floating-cta a {
    width: 3.1rem;
    height: 3.1rem;
  }

  .floating-cta svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .why-us-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-us-intro .section-desc {
    margin-bottom: 1.25rem;
  }

  .why-us-intro .btn {
    width: 100%;
    justify-content: center;
  }

  .why-card {
    padding: 1.15rem;
  }

  .why-card:hover {
    transform: none;
  }

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

  .service-page-hero-actions {
    flex-direction: column;
  }

  .service-page-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── FAQ ACCORDION ─────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--surface);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.8rem;
  background: var(--white);
}

.faq-question {
  width: 100%; text-align: left;
  background: none; border: none;
  padding: 1.2rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--dark);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.2rem; color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* ─── BLOG CARD ─────────────────────────────────────────── */
.blog-card { overflow: hidden; }
.blog-card-img { height: 200px; overflow: hidden; border-radius: 10px 10px 0 0; margin: -1.5rem -1.5rem 1rem; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-meta { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.5rem; }
