:root {
  --bg: #0a0908;
  --bg-2: #14110d;
  --bg-3: #1c1814;
  --bg-4: #25201a;
  --gold: #F5C518;
  --gold-2: #E8B70F;
  --gold-light: #FFD43B;
  --gold-deep: #C99A0A;
  --text: #efe9dc;
  --text-dim: #8d8678;
  --text-mute: #5a554c;
  --border: rgba(245, 197, 24, 0.18);
  --border-strong: rgba(245, 197, 24, 0.4);
  --max: 1280px;
  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gold-light);
  line-height: 1.18;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.45rem; }

a { color: inherit; text-decoration: none; transition: color .25s ease; }
img { max-width: 100%; height: auto; display: block; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
}

.ornament {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  margin-bottom: 14px;
}
.ornament::before, .ornament::after {
  content: '';
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.top-bar {
  background: #060504;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  padding: 9px 0;
  color: var(--text-dim);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar-info { display: flex; gap: 26px; flex-wrap: wrap; }
.top-bar-info span, .top-bar-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
}
.top-bar-info a:hover { color: var(--gold); }
.top-bar-info svg { width: 13px; height: 13px; color: var(--gold); }
.top-bar-meta {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 9, 8, 0.86);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
}

.brand { display: flex; align-items: center; gap: 18px; }

.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: #1a1411;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.15);
  flex-shrink: 0;
}

.brand-logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--bg-2);
  padding: 4px;
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0;
  margin-bottom: 7px;
  display: block;
  line-height: 1;
}
.brand-text small {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  line-height: 1;
}

.main-nav { display: flex; gap: 36px; align-items: center; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.4px;
}
.main-nav a::after {
  content: ''; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease, left .35s ease;
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav a:hover::after { width: 100%; left: 0; }

.nav-cta {
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 2px;
  font-size: 0.82rem !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  transition: background .25s ease;
}
.nav-cta:hover { background: var(--gold); color: #0a0908 !important; }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; gap: 5px;
  flex-direction: column;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--gold);
  transition: .3s;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 580px;
  max-height: 820px;
  overflow: hidden;
  background: var(--bg);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
.slide.active { opacity: 1; visibility: visible; z-index: 2; }

.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-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(245, 197, 24, 0.16), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(184, 146, 77, 0.1), transparent 55%),
    linear-gradient(135deg, #14110d 0%, #0a0908 100%);
}
.slide-bg-fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.92) 0%, rgba(10, 9, 8, 0.7) 45%, rgba(10, 9, 8, 0.45) 75%, rgba(10, 9, 8, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.3) 0%, transparent 30%, rgba(10, 9, 8, 0.5) 100%);
}

.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.slide-inner { max-width: 680px; }

.slide-no {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease .3s, transform .8s ease .3s;
}
.slide-no::after {
  content: '';
  width: 60px; height: 1px;
  background: var(--gold);
}
.slide.active .slide-no { opacity: 1; transform: translateY(0); }

.slide-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--gold-light);
  margin-bottom: 22px;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease .5s, transform .9s ease .5s;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }

.slide-desc {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 560px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease .7s, transform .9s ease .7s;
}
.slide.active .slide-desc { opacity: 1; transform: translateY(0); }

.slide-cta-wrap {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease .9s, transform .9s ease .9s;
}
.slide.active .slide-cta-wrap { opacity: 1; transform: translateY(0); }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1411;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 1px;
  font-family: var(--sans);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '→';
  font-family: var(--serif);
  font-size: 1.1rem;
  transition: transform .3s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245, 197, 24, 0.28); }
.btn:hover::after { transform: translateX(4px); }

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(245, 197, 24, 0.5);
}
.btn-outline:hover { background: rgba(245, 197, 24, 0.08); border-color: var(--gold); }

.btn-no-arrow::after { display: none; }

.slider-nav {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 5;
  display: flex;
  gap: 12px;
}
.slider-arrow {
  width: 48px; height: 48px;
  background: rgba(10, 9, 8, 0.5);
  border: 1px solid var(--border-strong);
  color: var(--gold);
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
  backdrop-filter: blur(8px);
}
.slider-arrow:hover { background: var(--gold); color: #0a0908; }
.slider-arrow svg { width: 18px; height: 18px; }

.slider-dots {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 5;
  display: flex;
  gap: 10px;
  align-items: center;
}
.slider-dot {
  width: 28px; height: 2px;
  background: rgba(245, 197, 24, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.slider-dot.active { background: var(--gold); width: 48px; }

.slider-counter {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  z-index: 5;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 6px;
  color: var(--gold);
}

.trust-strip {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  position: relative;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  text-align: center;
}
.trust-item {
  position: relative;
  padding: 0 20px;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -25px; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.trust-number {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}
.trust-suffix { color: var(--gold); font-size: 1.5rem; vertical-align: super; }
.trust-label {
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.about-strip {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.06), transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #14110d, #0a0908);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--border);
  pointer-events: none;
}
.about-monogram {
  font-family: var(--serif);
  font-size: 11rem;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.about-visual-tag {
  position: absolute;
  bottom: 40px; left: 40px;
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.about-visual-meta {
  position: absolute;
  top: 40px; right: 40px;
  text-align: right;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.about-visual-meta strong { color: var(--gold-light); font-family: var(--serif); font-size: 0.95rem; display: block; margin-top: 4px; letter-spacing: 1.5px; }

.about-content h2 { margin: 14px 0 28px; }
.about-content p { color: var(--text); margin-bottom: 20px; font-size: 1.02rem; }
.about-features {
  list-style: none;
  margin: 30px 0 36px;
}
.about-features li {
  display: flex; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}
.about-features li:last-child { border-bottom: none; }
.about-features svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }

.section {
  padding: 110px 0;
  position: relative;
}
.section-alt { background: var(--bg-2); }

.section-head {
  text-align: center;
  margin-bottom: 70px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 { margin: 14px 0 14px; }
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.why-item {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: background .3s ease;
  position: relative;
}
.why-item:nth-child(3n) { border-right: none; }
.why-item:nth-last-child(-n+3) { border-bottom: none; }
.why-item:hover { background: var(--bg-3); }

.why-icon-wrap {
  width: 56px; height: 56px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  color: var(--gold);
  position: relative;
}
.why-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .3s ease;
}
.why-item:hover .why-icon-wrap::before { opacity: 1; }
.why-icon-wrap svg { width: 26px; height: 26px; }

.why-item h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: var(--gold-light);
}
.why-item p { color: var(--text-dim); font-size: 0.93rem; line-height: 1.65; }

.duyurular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}
.duyuru-card {
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
  transition: all .35s ease;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  min-height: 240px;
  max-height: 280px;
}
.duyuru-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  transform: scaleY(0.3);
  transform-origin: top;
  transition: transform .35s ease;
  z-index: 2;
}
.duyuru-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.duyuru-card:hover::before { transform: scaleY(1); }

.duyuru-img {
  position: relative;
  flex: 0 0 40%;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(245, 197, 24, 0.08), transparent 60%),
    linear-gradient(135deg, #14110d 0%, #0a0908 100%);
  overflow: hidden;
  border-right: 1px solid var(--border);
}
.duyuru-img img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  transition: transform .6s ease;
}
.duyuru-card:hover .duyuru-img img { transform: scale(1.04); }

.duyuru-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.duyuru-img-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.duyuru-img-fallback span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.duyuru-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.duyuru-card .tarih {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.duyuru-card .tarih::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.duyuru-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.duyuru-card p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 720px) {
  .duyurular-grid { grid-template-columns: 1fr; }
  .duyuru-card { flex-direction: column; min-height: auto; max-height: none; }
  .duyuru-img { flex: 0 0 200px; border-right: none; border-bottom: 1px solid var(--border); }
  .duyuru-body { padding: 22px 20px; }
  .duyuru-card h3 { font-size: 1.1rem; }
}
.duyuru-card .devam {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.duyuru-card .devam::after { content: '→'; transition: transform .25s ease; }
.duyuru-card:hover .devam::after { transform: translateX(4px); }

.sss-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.sss-item {
  border-bottom: 1px solid var(--border);
}
.sss-q {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  text-align: left;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  transition: color .25s ease;
}
.sss-q:hover { color: var(--gold); }
.sss-q .ic {
  width: 32px; height: 32px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all .3s ease;
  font-family: var(--sans);
  font-size: 1.3rem;
  line-height: 1;
}
.sss-item.open .sss-q .ic { background: var(--gold); color: #0a0908; transform: rotate(45deg); }

.sss-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.sss-a-inner {
  padding: 0 50px 26px 0;
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.75;
}

.sertifika-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: -1px;
}
.sertifika-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity .3s ease;
}
.sertifika-item:hover { opacity: 1; }
.sertifika-badge {
  width: 70px; height: 70px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0;
  position: relative;
}
.sertifika-badge::before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.cta-band {
  padding: 90px 0;
  position: relative;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(245, 197, 24, 0.1), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  width: 1px; height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  top: 50%;
  transform: translateY(-50%);
}
.cta-band::before { left: 6%; }
.cta-band::after { right: 6%; }

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}
.cta-band p {
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.page-hero {
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 197, 24, 0.1), transparent 60%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.page-hero .breadcrumb {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.page-hero .breadcrumb a { color: var(--gold); }

.page-content { padding: 80px 0; }
.page-content-inner {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.page-content-inner h2, .page-content-inner h3 { margin: 36px 0 18px; }
.page-content-inner p { margin-bottom: 20px; color: var(--text); }
.page-content-inner ul, .page-content-inner ol { margin: 18px 0 24px 26px; }
.page-content-inner li { margin-bottom: 10px; }
.page-content-inner img { border-radius: 2px; margin: 28px 0; border: 1px solid var(--border); }

.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.iletisim-info { padding: 20px 0; }
.iletisim-info h2 { margin-bottom: 28px; }
.iletisim-list { list-style: none; }
.iletisim-list li {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.iletisim-list li:last-child { border-bottom: none; }
.iletisim-list .ic {
  width: 48px; height: 48px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.iletisim-list .ic svg { width: 20px; height: 20px; }
.iletisim-list strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.iletisim-list span, .iletisim-list a {
  color: var(--text-dim);
  font-size: 0.96rem;
}
.iletisim-list a:hover { color: var(--gold); }

.harita-blok { display: flex; flex-direction: column; gap: 16px; }
.harita {
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 420px;
  background: var(--bg-2);
  position: relative;
}
.harita iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.6) contrast(0.85) brightness(0.85);
}
.harita-buyut {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background: var(--gold);
  color: var(--bg);
  padding: 9px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .25s ease;
}
.harita-buyut:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.65);
}
.harita-aksiyon {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.harita-aksiyon .btn {
  font-size: 0.85rem;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.slaytlar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.slayt-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .35s ease;
}
.slayt-card:hover { border-color: var(--border-strong); transform: translateY(-5px); }
.slayt-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-3); }
.slayt-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.slayt-card:hover .slayt-img img { transform: scale(1.06); }
.slayt-body { padding: 26px; }
.slayt-body h3 { margin-bottom: 10px; }
.slayt-body p { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 18px; }
.slayt-more { color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.slayt-more::after { content: ' →'; }

.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  transition: transform .25s ease;
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-btn:hover { transform: scale(1.08); color: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 12px 44px rgba(37, 211, 102, 0.75); }
}

.site-footer {
  background: #050403;
  border-top: 1px solid var(--border);
  padding: 80px 0 26px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand { display: flex; gap: 16px; align-items: center; margin-bottom: 22px; }
.footer-brand strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; }
.footer-brand small { display: block; color: var(--text-dim); font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; }

.footer-desc { color: var(--text-dim); font-size: 0.92rem; max-width: 320px; line-height: 1.7; margin-bottom: 22px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all .25s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-family: var(--sans);
  font-weight: 600;
}
.footer-col a, .footer-col span {
  display: block;
  color: var(--text-dim);
  font-size: 0.92rem;
  padding: 7px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-adres { line-height: 1.6; max-width: 240px; transition: color .2s; }
.footer-adres:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-mute);
  font-size: 0.82rem;
}
.footer-bottom .legal a { color: var(--text-dim); margin-left: 18px; }
.footer-bottom .legal a:hover { color: var(--gold); }

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-dim);
}

@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .why-item:nth-child(2n) { border-right: none; }
  .why-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .why-item:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .top-bar { display: none; }
  .main-nav {
    position: fixed; top: 88px; left: 0; right: 0;
    background: rgba(10, 9, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px;
    gap: 22px;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%);
    transition: transform .35s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero-slider { height: 70vh; min-height: 500px; }
  .slider-nav { bottom: 24px; right: 24px; }
  .slider-dots { bottom: 24px; left: 24px; }
  .slider-counter { display: none; }
  .slider-arrow { width: 40px; height: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .trust-item:nth-child(2)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { aspect-ratio: 16/12; }
  .about-monogram { font-size: 8rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none !important; }
  .why-item:not(:last-child) { border-bottom: 1px solid var(--border) !important; }
  .iletisim-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 70px 0; }
  .about-strip { padding: 70px 0; }
  .cta-band::before, .cta-band::after { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav-wrap { padding: 16px 20px; }
  .brand-mark { width: 46px; height: 46px; font-size: 1.2rem; }
  .brand-logo-img { width: 46px; height: 46px; }
  .brand-text strong { font-size: 1.25rem; }
  .brand-text small { font-size: 0.58rem; letter-spacing: 1.4px; }
  .nav-cta { display: none; }
  .slide-content { padding: 0 20px; }
  .slide-desc { font-size: 1rem; }
  .btn { padding: 13px 26px; font-size: 0.78rem; }

  /* Mobil iyileştirmeler */
  .section { padding: 50px 0 !important; }
  .about-strip { padding: 50px 0; }
  .section-head h2 { font-size: 1.75rem; line-height: 1.2; }
  .section-head p { font-size: 0.95rem; }
  .hero-slider { height: 60vh; min-height: 420px; }
  .slide-title { font-size: 1.7rem !important; line-height: 1.15; }
  .slide-eyebrow { font-size: 0.7rem; letter-spacing: 2px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px !important; }
  .trust-item::after { display: none !important; }
  .trust-num { font-size: 2.2rem; }
  .why-icon-wrap { width: 50px; height: 50px; }
  .why-item { padding: 30px 22px !important; }
  .why-item h3 { font-size: 1.05rem; }
  .hizmet-grid { grid-template-columns: 1fr; gap: 16px; }
  .hizmet-card { padding: 26px 22px; }
  .hizmet-card h3 { font-size: 1.1rem; }
  .duyuru-img { flex: 0 0 180px; }
  .duyuru-body { padding: 18px 18px; }
  .cta-band h2 { font-size: 1.8rem; }
  .cta-band p { font-size: 0.95rem; }
  .footer-grid { gap: 32px; }
  .footer-col h4 { font-size: 0.95rem; }
  .footer-col a, .footer-adres { font-size: 0.88rem; }
  .iletisim-grid { gap: 32px; }
  .iletisim-info h3 { font-size: 1.4rem; }
  .iletisim-bilgi { font-size: 0.9rem; }
  .form-group input, .form-group textarea { padding: 12px 14px; font-size: 0.95rem; }
  .sss-q { font-size: 0.95rem; padding: 18px 0; }
  .sss-a { font-size: 0.9rem; }
  .hakkimizda-strip h2 { font-size: 1.8rem; }
  .hakkimizda-strip p { font-size: 0.95rem; }
  .about-monogram { font-size: 5rem !important; }
  /* WhatsApp sticky butonu mobilde daha küçük */
  .whatsapp-sticky { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-sticky svg { width: 28px; height: 28px; }
  /* Top bar mobilde zaten kapalı ama emin olalım */
  .top-bar { display: none !important; }
}

/* === HİZMETLER === */
.hizmet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.hizmet-card {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 32px 28px;
  text-decoration: none;
  color: var(--text);
  position: relative;
  transition: all .35s ease;
  overflow: hidden;
}
.hizmet-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245, 197, 24, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.hizmet-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}
.hizmet-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.hizmet-card:hover::before { opacity: 1; }
.hizmet-card:hover::after { transform: scaleY(1); }

.hizmet-ic {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  margin-bottom: 20px;
}
.hizmet-ic svg { width: 26px; height: 26px; color: var(--gold-light); }

.hizmet-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.3;
}
.hizmet-card:hover h3 { color: var(--gold-light); }
.hizmet-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.hizmet-devam {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .3s ease;
}
.hizmet-card:hover .hizmet-devam {
  color: var(--gold-light);
  padding-left: 4px;
}

/* === HİZMET DETAY === */
.hizmet-detay {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}
.hizmet-detay-ic {
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.15) 0%, rgba(245, 197, 24, 0.04) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
}
.hizmet-detay-ic svg { width: 44px; height: 44px; color: var(--gold-light); }
.hizmet-detay-ozet {
  font-size: 1.2rem;
  color: var(--gold-light);
  font-family: var(--serif);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.5;
}
.prose { color: var(--text-dim); line-height: 1.8; font-size: 1rem; }
.prose p { margin-bottom: 16px; }
.prose h2 { color: var(--gold-light) !important; font-size: 1.5rem; margin: 28px 0 14px; font-family: var(--serif); }
.prose h3 { color: var(--gold-light) !important; font-size: 1.25rem; margin: 22px 0 12px; font-family: var(--serif); }
.prose ul, .prose ol { margin: 14px 0 20px 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--gold) !important; text-decoration: underline; }
.prose strong, .prose b { color: var(--gold-light) !important; font-weight: 600; }
/* Word'den yapıştırılan inline renkleri ez */
.prose, .prose p, .prose span, .prose div, .prose em, .prose i, .prose u {
  color: var(--text-dim) !important;
  background: transparent !important;
}
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6,
.prose strong, .prose b {
  color: var(--gold-light) !important;
}
.prose a { color: var(--gold) !important; }
/* Madde işaretlerini altın alt başlık gibi yap — tüm hizmetlerde tutarlı */
.prose ul {
  list-style: none !important;
  padding-left: 0;
  margin: 14px 0 20px 0;
}
.prose ul > li {
  position: relative;
  padding-left: 24px;
  color: var(--gold-light) !important;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
  list-style: none;
}
.prose ul > li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.prose ul > li::marker {
  display: none;
}
.prose ol {
  padding-left: 24px;
  margin: 14px 0 20px 0;
}
.prose ol > li {
  color: var(--gold-light) !important;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.prose ol > li::marker {
  color: var(--gold) !important;
  font-weight: 700;
}
/* Madde içindeki paragraf, span, div tekrar dim olsun */
.prose ul > li p,
.prose ol > li p,
.prose ul > li span,
.prose ol > li span,
.prose ul > li div,
.prose ol > li div {
  color: var(--text-dim) !important;
  font-weight: normal;
  font-size: 1rem;
}
/* Quill hizalama sınıfları — kayıtlı HTML'lerde her yerde çalışsın */
.ql-align-center { text-align: center; }
.ql-align-right { text-align: right; }
.ql-align-justify { text-align: justify; }
.ql-indent-1 { padding-left: 3em; }
.ql-indent-2 { padding-left: 6em; }
.ql-indent-3 { padding-left: 9em; }
.ql-indent-4 { padding-left: 12em; }
.ql-indent-5 { padding-left: 15em; }

@media (max-width: 720px) {
  .hizmet-detay { grid-template-columns: 1fr; gap: 24px; }
  .hizmet-detay-ic { width: 72px; height: 72px; }
}

/* === REFERANSLAR === */
.referanslar-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(245, 197, 24, 0.015) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.referans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.referans-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 26px 22px;
  min-height: 150px;
  text-decoration: none;
  color: var(--text-dim);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.referans-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}
.referans-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.referans-item:hover::before { opacity: 1; }
.referans-logo {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.referans-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: all .35s ease;
}
.referans-item:hover .referans-logo img {
  opacity: 1;
  transform: scale(1.04);
}
.referans-isim {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
  transition: color .25s ease;
}
.referans-item:hover .referans-isim {
  color: var(--gold-light);
}
@media (max-width: 720px) {
  .referans-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
  .referans-item { padding: 22px 16px; min-height: 130px; }
  .referans-logo { height: 56px; }
  .referans-isim { font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .referans-grid { grid-template-columns: 1fr 1fr; }
}
