:root {
  --gold: #d4af37;
  --gold-light: #f3d98b;
  --gold-dark: #a8821f;
  --black: #0d0d0d;
  --dark: #161616;
  --dark-2: #1f1f1f;
  --gray: #9a9a9a;
  --light: #f5f5f5;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --gold-grad: linear-gradient(135deg, #f3d98b 0%, #d4af37 45%, #a8821f 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--light);
  background: var(--black);
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.3px;
  overflow-x: hidden;
}

h1, h2, h3, h4 { letter-spacing: 0.5px; }

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

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

section { padding: 90px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
}
.section-head h2 span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head p { color: var(--gray); margin-top: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn svg { width: 17px; height: 17px; }
.btn:hover { transform: translateY(-3px); }
.btn-gold {
  background: var(--gold-grad);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }

/* ---------- Header ---------- */
header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: background 0.3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
}
.logo img { height: 72px; width: auto; }
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--light);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold-grad);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-highlight {
  background: var(--gold-grad);
  color: var(--black);
  padding: 7px 14px;
  border-radius: 8px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-links a.nav-highlight::after { display: none; }
.nav-links a.nav-highlight:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
}
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn {
  padding: 9px 18px;
  font-size: 0.82rem;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.menu-toggle span {
  width: 26px; height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: 0.3s;
}

/* ---------- Mega Menu (Hizmetler) ---------- */
.has-submenu { position: relative; }
.has-submenu > a .caret {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}
.has-submenu:hover > a .caret { transform: rotate(180deg); }
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  margin-top: 18px;
  width: min(880px, 92vw);
  background: rgba(13, 13, 13, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 50;
}
.has-submenu::before {
  content: "";
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 28px;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.submenu a::after { display: none; }
.submenu a:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}
.submenu a img {
  width: 64px; height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.submenu a span {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--light);
  line-height: 1.25;
}
.submenu a:hover span { color: var(--gold); }

@media (max-width: 980px) {
  .submenu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 10px;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(212, 175, 55, 0.25);
    padding: 12px;
    box-shadow: none;
  }
  .has-submenu.open .submenu { display: grid; }
  .has-submenu > a .caret { transition: transform 0.2s ease; }
  .has-submenu.open > a .caret { transform: rotate(180deg); }
}

/* ---------- Hero Slider ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.hero-slider {
  position: relative;
  margin: 104px auto 0;
  max-width: 1280px;
  width: 100%;
  aspect-ratio: 1.83 / 1;
  max-height: 82vh;
  background: radial-gradient(circle at 50% 45%, #1b1b1b, #0d0d0d);
  overflow: hidden;
}
.hero-slider .slides, .hero-slider .slide { position: absolute; inset: 0; }
.hero-slider .slide {
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-slider .slide.active { opacity: 1; pointer-events: auto; }
.hero-slider .slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slider .slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.12) 0%, transparent 30%, rgba(13,13,13,0.55) 100%);
}
.slider-cta {
  position: absolute;
  left: 0; right: 0; bottom: 58px;
  z-index: 3;
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 16px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold-light);
  font-size: 2rem; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  backdrop-filter: blur(4px);
  transition: background 0.25s ease, transform 0.25s ease;
}
.slider-arrow:hover { background: var(--gold-grad); color: var(--black); }
.slider-arrow.prev { left: 22px; }
.slider-arrow.next { right: 22px; }
.slider-arrow.prev:hover { transform: translateY(-50%) scale(1.08); }
.slider-arrow.next:hover { transform: translateY(-50%) scale(1.08); }
.slider-dots {
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  z-index: 4;
  display: flex; gap: 9px;
  justify-content: center;
}
.slider-dots button {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dots button.active {
  background: var(--gold-grad);
  width: 28px; border-radius: 6px;
}
@media (max-width: 720px) {
  .hero-slider { margin-top: 94px; aspect-ratio: 1.83 / 1; }
  .hero-slider .slide img { object-fit: cover; }
  .slider-arrow { width: 36px; height: 36px; font-size: 1.4rem; }
  .slider-arrow.prev { left: 8px; } .slider-arrow.next { right: 8px; }
  .slider-cta { bottom: 30px; gap: 8px; }
  .slider-cta .btn { padding: 6px 12px; font-size: 0.68rem; gap: 5px; }
  .slider-cta .btn svg { width: 13px; height: 13px; }
  .slider-dots { bottom: 9px; }
  .slider-dots button { width: 8px; height: 8px; }
  .slider-dots button.active { width: 20px; }
  #hakkimizda { padding-top: 12px; }
  .about-text .btn { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
  .nav-links a {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.85), 0 0 4px rgba(212, 175, 55, 0.6);
  }
  .nav-links a:hover { color: var(--gold-light); }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 94px;
  background:
    radial-gradient(circle at 75% 30%, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(180deg, #0d0d0d 0%, #161616 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at 70% 40%, black, transparent 75%);
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 75%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.7rem);
  line-height: 1.12;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats .stat span { color: var(--gray); font-size: 0.9rem; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  background: linear-gradient(145deg, #1f1f1f, #141414);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 420px;
}
.hero-card img { margin: 0 auto 26px; max-width: 230px; }
.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
}
.hero-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: #111;
}
.hero-tile svg, .hero-tile img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.hero-tile span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 7px 10px;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  color: var(--gold-light);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
  text-align: center;
}
.tile-ph {
  display: none; /* img onerror ile gösterilir */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 120px;
  text-align: center;
  font-size: 0.74rem;
  color: var(--gray);
  background:
    repeating-linear-gradient(45deg, rgba(212,175,55,0.05) 0 10px, transparent 10px 20px),
    linear-gradient(135deg, #1c1c1c, #111);
  border-bottom: 1px dashed rgba(212, 175, 55, 0.25);
}
.tile-ph .emo { font-size: 1.7rem; }
.tile-ph small { color: var(--gold); opacity: 0.7; }
.hero-card .feature-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-card .feature-row:first-of-type { border-top: none; }
.hero-card .ico {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  font-size: 1.3rem;
}
.hero-card .feature-row strong { color: var(--white); font-size: 0.98rem; }
.hero-card .feature-row p { color: var(--gray); font-size: 0.83rem; margin: 0; }

/* ---------- Trust bar ---------- */
.trust {
  background: var(--dark);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-grid .item { color: var(--gray); font-weight: 400; }
.trust-grid .item .big {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 500;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .eyebrow {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
}
.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--white);
  margin: 14px 0 20px;
}
.about-text h2 span {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-text p { color: var(--gray); margin-bottom: 18px; }
.about-list { margin: 24px 0; }
.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  color: var(--light);
}
.about-list li::before {
  content: "✓";
  color: var(--black);
  background: var(--gold-grad);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-visual .box {
  background: linear-gradient(145deg, #1f1f1f, #141414);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.about-visual .box .num {
  font-size: 2.2rem;
  font-weight: 500;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-visual .box span { color: var(--gray); font-size: 0.9rem; }
.about-visual .box:nth-child(2) { margin-top: 28px; }
.about-visual .box:nth-child(3) { margin-top: -28px; }

#hakkimizda { padding-top: 45px; }

/* ---------- Services ---------- */
.services { background: var(--dark); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(160deg, #1c1c1c, #131313);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow);
}
.card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card-img.contain {
  background: #0d0d0d;
}
.card-img.contain img {
  object-fit: contain;
}
.card:hover .card-img img { transform: scale(1.08); }
.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 13, 13, 0.55));
}
.card-body { padding: 26px 28px 32px; }
.card-body h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.card-body p { color: var(--gray); font-size: 0.95rem; }

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.product {
  background: linear-gradient(160deg, #1c1c1c, #131313);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product .top {
  height: 190px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.product .top img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product:hover .top img { transform: scale(1.08); }
.product .top::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 13, 13, 0.5));
}
.product .body { padding: 26px 24px; }
.product .tag {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  background: var(--gold-grad);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 10px; }
.product p { color: var(--gray); font-size: 0.92rem; margin-bottom: 18px; }
.product .feats { margin-bottom: 22px; }
.product .feats li {
  color: var(--light);
  font-size: 0.88rem;
  padding: 5px 0;
  display: flex; gap: 9px; align-items: center;
}
.product .feats li::before { content: "●"; color: var(--gold); font-size: 0.6rem; }
.product .order { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }

/* ---------- Process ---------- */
.process { background: var(--dark); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 34px 26px;
  background: linear-gradient(160deg, #1c1c1c, #131313);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
}
.step .n {
  font-size: 2.4rem;
  font-weight: 500;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.step h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.step p { color: var(--gray); font-size: 0.9rem; }

/* ---------- Galeri ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.g-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.g-item.contain { background: #0d0d0d; }
.g-item.contain img { object-fit: contain; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.g-item:hover img { transform: scale(1.1); }
.g-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 14px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  background: linear-gradient(180deg, transparent, rgba(13, 13, 13, 0.9));
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.g-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.g-item:hover::before { border-color: rgba(212, 175, 55, 0.55); }
.g-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-figure {
  margin: 0;
  max-width: 90vw;
  max-height: 86vh;
  text-align: center;
}
.lb-figure img {
  max-width: 90vw;
  max-height: 78vh;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.lightbox.open .lb-figure img { transform: scale(1); }
.lb-figure figcaption {
  margin-top: 16px;
  color: var(--gold-light);
  letter-spacing: 1px;
  font-size: 0.95rem;
}
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.lb-close:hover, .lb-nav:hover { background: var(--gold-grad); color: var(--black); }
.lb-close {
  top: 24px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}
.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  font-size: 2.2rem;
  line-height: 1;
}
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
@media (max-width: 720px) {
  .lb-nav { width: 44px; height: 44px; font-size: 1.7rem; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 14px; }
}

/* ---------- WhatsApp CTA ---------- */
.wa-cta {
  background:
    radial-gradient(circle at 20% 50%, rgba(37, 211, 102, 0.12), transparent 50%),
    linear-gradient(135deg, #161616, #0d0d0d);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}
.wa-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(145deg, #1f1f1f, #141414);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 24px;
  padding: 48px;
  flex-wrap: wrap;
}
.wa-box h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 12px; }
.wa-box p { color: var(--gray); max-width: 520px; }
.wa-box .btn { white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: linear-gradient(160deg, #1c1c1c, #131313);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: rgba(212, 175, 55, 0.4); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 400;
  color: var(--white);
  font-size: 1.02rem;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--gray);
  padding: 0 26px;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 26px 24px; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.post {
  background: linear-gradient(160deg, #1c1c1c, #131313);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post .thumb {
  height: 170px;
  display: grid; place-items: center;
  font-size: 3rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.02));
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.post .content { padding: 26px 24px; }
.post .meta { color: var(--gold); font-size: 0.78rem; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }
.post h3 { color: var(--white); font-size: 1.18rem; margin: 12px 0; line-height: 1.35; }
.post p { color: var(--gray); font-size: 0.92rem; margin-bottom: 18px; }
.post .read { color: var(--gold); font-weight: 400; font-size: 0.9rem; display: inline-flex; gap: 6px; align-items: center; }
.post .read:hover { gap: 12px; transition: gap 0.2s ease; }

/* ---------- Blog kart görseli ---------- */
.post .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post .thumb { overflow: hidden; padding: 0; }
.post .thumb img { transition: transform 0.6s ease; }
.post:hover .thumb img { transform: scale(1.08); }

/* ---------- Article (blog yazısı) ---------- */
.article { padding: 40px 0 90px; }
.article-wrap { max-width: 820px; margin: 0 auto; }
.article-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 34px;
}
.article-inline-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  margin: 24px 0 28px;
  display: block;
}
.article-inline-img + em,
.article-body figure figcaption {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: -18px;
  margin-bottom: 28px;
  font-style: italic;
}
.article .meta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article .meta-row span { color: var(--gray); text-transform: none; letter-spacing: 0.3px; }
.article h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 26px;
}
.article-body p { color: var(--gray); margin-bottom: 20px; font-size: 1.02rem; }
.article-body h2 {
  color: var(--white);
  font-size: 1.4rem;
  margin: 38px 0 16px;
}
.article-body h2 span {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.article-body ul { margin: 0 0 20px; padding: 0; }
.article-body ul li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--light); padding: 7px 0;
}
.article-body ul li::before {
  content: "✓";
  color: var(--black);
  background: var(--gold-grad);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 900;
  flex-shrink: 0; margin-top: 4px;
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, 0.06);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin: 26px 0;
  color: var(--light);
  font-style: italic;
}
.article-cta {
  margin-top: 44px;
  background: linear-gradient(145deg, #1f1f1f, #141414);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
}
.article-cta h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.article-cta p { color: var(--gray); margin-bottom: 22px; }
.article-share {
  display: flex; gap: 14px; align-items: center;
  margin-top: 34px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray); font-size: 0.9rem;
}
.article-share a { color: var(--gold); }
.related { background: var(--dark); }
.back-link { display: inline-flex; gap: 8px; align-items: center; color: var(--gold); margin-top: 30px; font-weight: 500; }

/* ---------- Contact ---------- */
/* ---------- Müşteri Yorumları ---------- */
.reviews { background: var(--dark); }
.rating-summary {
  display: flex; gap: 12px; align-items: center; justify-content: center;
  margin-top: 14px; flex-wrap: wrap;
}
.rating-summary .stars { font-size: 1.4rem; letter-spacing: 3px; color: #f3c64a; }
.rating-summary strong { color: var(--white); font-size: 1.1rem; }
.rating-summary .muted { color: var(--gray); font-size: 0.95rem; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-bottom: 50px;
}
.review-card {
  background: linear-gradient(160deg, #1c1c1c, #131313);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 26px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column; gap: 14px;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, 0.35); }
.review-card .stars {
  color: #f3c64a; letter-spacing: 2px; font-size: 1.05rem;
}
.review-card p {
  color: var(--light); font-size: 0.96rem; line-height: 1.55;
  flex: 1;
}
.review-card .author { display: flex; flex-direction: column; gap: 2px; }
.review-card .author strong { color: var(--white); font-weight: 500; }
.review-card .author span { color: var(--gold); font-size: 0.82rem; }

.review-form-wrap {
  background: linear-gradient(160deg, #1c1c1c, #131313);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 38px;
  max-width: 760px;
  margin: 0 auto;
}
.review-form-wrap h3 {
  color: var(--white); font-size: 1.4rem; margin-bottom: 6px; text-align: center;
}
.review-form-wrap h3 span {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.review-form-wrap .muted {
  color: var(--gray); text-align: center; margin-bottom: 24px; font-size: 0.92rem;
}
.review-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.review-form .field { display: flex; flex-direction: column; }
.review-form .field.full { grid-column: 1 / -1; }
.review-form label {
  color: var(--light); font-size: 0.9rem; margin-bottom: 8px; font-weight: 400;
}
.review-form input,
.review-form select,
.review-form textarea {
  padding: 13px 16px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--light);
  font-family: inherit; font-size: 0.95rem;
}
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus { outline: none; border-color: var(--gold); }
.review-form textarea { resize: vertical; min-height: 100px; }
.star-input {
  display: flex; gap: 4px;
}
.star-input button {
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem; color: rgba(255,255,255,0.2);
  padding: 0; line-height: 1;
  transition: color 0.15s ease, transform 0.15s ease;
}
.star-input button:hover { transform: scale(1.1); }
.star-input button.active { color: #f3c64a; }
.review-form .btn { grid-column: 1 / -1; margin: 6px auto 0; }
@media (max-width: 720px) {
  .reviews { padding: 64px 0; }
  .review-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
  .review-card { padding: 22px 20px; }
  .review-form { grid-template-columns: 1fr; gap: 14px; }
  .review-form-wrap { padding: 24px 18px; border-radius: 16px; }
  .review-form-wrap h3 { font-size: 1.2rem; }
  .review-form input,
  .review-form select,
  .review-form textarea { padding: 12px 14px; font-size: 0.92rem; }
  .review-form .btn { width: 100%; padding: 12px 18px; }
  .star-input { justify-content: center; gap: 6px; }
  .star-input button { font-size: 2rem; padding: 4px; }
  .rating-summary { gap: 8px; }
  .rating-summary .stars { font-size: 1.2rem; }
}

.contact { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}
.contact-grid > * { height: 100%; display: flex; flex-direction: column; }
.contact-info {
  background: linear-gradient(160deg, #1c1c1c, #131313);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 38px;
  justify-content: space-between;
}
.contact-info .socials { margin-top: auto; padding-top: 14px; }
.contact-info h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 22px; }
.contact-info .row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info .row .ico {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.contact-info .row strong { color: var(--white); display: block; margin-bottom: 2px; }
.contact-info .row a, .contact-info .row span { color: var(--gray); }
.contact-info .row a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 10px; }
.socials a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold);
  font-size: 1.1rem;
  transition: 0.25s;
}
.socials a:hover { background: var(--gold-grad); color: var(--black); transform: translateY(-3px); }

.contact-form {
  background: linear-gradient(160deg, #1c1c1c, #131313);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 38px;
}
.contact-form .field { margin-bottom: 18px; }
.contact-form label { display: block; color: var(--light); font-size: 0.9rem; margin-bottom: 8px; font-weight: 400; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { display: flex; width: fit-content; margin: 4px auto 0; }

/* ---------- Footer ---------- */
footer {
  background: var(--black);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-col img { height: 56px; margin-bottom: 18px; }
.footer-col p { color: var(--gray); font-size: 0.92rem; }
.footer-col h4 { color: var(--white); margin-bottom: 18px; font-size: 1.05rem; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: var(--gray); font-size: 0.92rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 26px;
  text-align: center;
  color: var(--gray);
  font-size: 0.88rem;
}
.footer-bottom span { color: var(--gold); }
.design-credit {
  text-align: center;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.design-credit img {
  height: 58px;
  width: auto;
  margin: 0 auto 8px;
  display: block;
}
.design-credit span {
  display: block;
  color: var(--gray);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}
.design-credit a { display: inline-block; }
.design-credit a:hover span { color: var(--gold); }
.design-credit img { transition: transform 0.25s ease; }
.design-credit a:hover img { transform: translateY(-2px); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 999;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
  animation: pulse 2.2s infinite;
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

/* ---------- Page hero (blog) ---------- */
.page-hero {
  padding: 150px 0 70px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 60%),
    linear-gradient(180deg, #0d0d0d, #161616);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
}
.page-hero h1 span {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p { color: var(--gray); margin-top: 14px; max-width: 600px; margin-inline: auto; }
.crumb { color: var(--gray); font-size: 0.9rem; margin-bottom: 18px; }
.crumb a { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .logo img { height: 50px; }
  .nav-links {
    position: fixed;
    top: 94px; right: 0; left: auto;
    width: auto; min-width: 210px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(32px) saturate(150%) brightness(1.08);
    -webkit-backdrop-filter: blur(32px) saturate(150%) brightness(1.08);
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.12),
                0 12px 30px rgba(0, 0, 0, 0.4);
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding: 24px 26px;
    gap: 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom-left-radius: 14px;
    transform: translateX(120%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .menu-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }
  section { padding: 64px 0; }
  .steps { grid-template-columns: 1fr; }
  .wa-box { padding: 32px 24px; text-align: center; justify-content: center; }
  .wa-box p { margin-left: auto; margin-right: auto; }
  .wa-box .btn { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-col img { margin-left: auto; margin-right: auto; display: block; }
  .footer-col ul { padding: 0; list-style: none; }
  .footer-bottom { text-align: center; }
}
