:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E6C0;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --black-soft: #111111;
  --black-mid: #1A1A1A;
  --black-card: #141414;
  --white: #FDFBF5;
  --white-soft: #F5F0E8;
  --gray-muted: #6B6B6B;
  --gray-light: #2A2A2A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ========================
   CUSTOM CURSOR
======================== */
.cursor {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, background 0.3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
}

/* ========================
   GOLD SHIMMER TEXT
======================== */
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 60%, var(--gold) 80%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ========================
   NAVIGATION
======================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}
nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  height: 65px;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 6px;
  text-decoration: none;
  color: transparent;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 45px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(253,251,245,0.7);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.4s ease;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* ========================
   HERO
======================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.hero-lines { position: absolute; inset: 0; overflow: hidden; }
.hero-line {
  position: absolute;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15), transparent);
  width: 1px; height: 100%;
  animation: lineFloat 8s ease-in-out infinite;
}
.hero-line:nth-child(1) { left: 15%; animation-delay: 0s;   opacity: 0.5; }
.hero-line:nth-child(2) { left: 30%; animation-delay: 1.5s; opacity: 0.3; }
.hero-line:nth-child(3) { left: 70%; animation-delay: 0.8s; opacity: 0.4; }
.hero-line:nth-child(4) { left: 85%; animation-delay: 2s;   opacity: 0.3; }
@keyframes lineFloat {
  0%, 100% { transform: scaleY(0.6) translateY(20%); opacity: 0.2; }
  50%       { transform: scaleY(1)   translateY(0%);  opacity: 0.6; }
}
.hero-content {
  text-align: center;
  z-index: 2;
  animation: heroReveal 1.5s ease forwards;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--gold)); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(70px, 10vw, 140px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  display: block;
  margin-top: 10px;
}
.hero-subtitle {
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(253,251,245,0.5);
  margin-bottom: 60px;
  margin-top: 25px;
}
.hero-btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================
   BUTTONS
======================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  padding: 18px 50px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(201,168,76,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--white);
  padding: 18px 50px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  border: 1px solid rgba(253,251,245,0.2);
  transition: all 0.4s ease;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ========================
   RANDEVU MODAL
======================== */
.appt-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.appt-modal-overlay.open { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.appt-modal {
  background: var(--black-mid);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 60px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalSlide 0.4s ease;
}
@keyframes modalSlide {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 20px; right: 25px;
  background: none;
  border: none;
  color: var(--gray-muted);
  font-size: 20px;
  cursor: none;
  transition: color 0.3s;
}
.modal-close:hover { color: var(--gold); }
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 12px;
  color: var(--white);
}
.modal-sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gray-muted);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.modal-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
}
.modal-btns { display: flex; flex-direction: column; gap: 15px; }
.modal-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 15px;
  padding: 18px 30px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: none;
}
.modal-btn-wa:hover { background: #1ea952; transform: translateY(-2px); }
.modal-btn-ig {
  display: flex; align-items: center; justify-content: center; gap: 15px;
  padding: 18px 30px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: none;
}
.modal-btn-ig:hover { opacity: 0.9; transform: translateY(-2px); }
.modal-btn-icon { font-size: 20px; }

/* ========================
   SECTION COMMONS
======================== */
section { padding: 120px 60px; position: relative; }
.section-eyebrow {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.section-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; }
.section-desc {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.9;
  color: rgba(253,251,245,0.55);
  max-width: 480px;
}
.ornament-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
.ornament-line::before, .ornament-line::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}
.ornament-diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ========================
   SERVICES
======================== */
#hizmetler { background: var(--black-soft); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--black-card);
  padding: 55px 45px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: all 0.5s ease;
  border: 1px solid rgba(201,168,76,0.05);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: #161616;
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.15);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.service-num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 30px;
  opacity: 0.6;
}
.service-icon {
  font-size: 36px;
  margin-bottom: 25px;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon { transform: scale(1.2) rotate(-5deg); }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--white);
}
.service-desc {
  font-size: 13px;
  font-weight: 200;
  line-height: 1.8;
  color: rgba(253,251,245,0.4);
}
.service-arrow {
  position: absolute;
  bottom: 35px; right: 40px;
  color: var(--gold);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ========================
   ABOUT
======================== */
#hakkimizda { background: var(--black); overflow: hidden; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual { position: relative; height: 550px; }
.about-frame-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 85%;
  background: linear-gradient(135deg, #1a1510 0%, #0d0b08 100%);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-frame-main::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(201,168,76,0.1);
}
.about-ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px;
  font-weight: 300;
  font-style: italic;
  color: rgba(201,168,76,0.06);
  user-select: none;
  line-height: 1;
}
.about-frame-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 45%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 30px;
}
.about-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}
.about-stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(10,10,10,0.7);
  margin-top: 8px;
}
.about-text .section-desc { max-width: 100%; }
.about-features {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.about-feature {
  padding: 25px;
  border: 1px solid rgba(201,168,76,0.1);
  transition: border-color 0.3s;
}
.about-feature:hover { border-color: rgba(201,168,76,0.35); }
.about-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 8px;
}
.about-feature-desc {
  font-size: 12px;
  font-weight: 200;
  color: rgba(253,251,245,0.4);
  line-height: 1.7;
}

/* ========================
   BRANCHES
======================== */
#subemiz { background: var(--black-soft); }
.branches-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.branch-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.08);
  padding: 45px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: none;
}
.branch-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}
.branch-card:hover::after { opacity: 1; }
.branch-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-5px);
}
.branch-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 5px 15px;
  margin-bottom: 30px;
}
.branch-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 20px;
}
.branch-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.branch-info li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 200;
  color: rgba(253,251,245,0.5);
  line-height: 1.5;
}
.branch-info-icon { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.branch-vip {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(201,168,76,0.1);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ========================
   CONTACT
======================== */
#iletisim { background: var(--black); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-item {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
}
.contact-item-sub {
  font-size: 12px;
  font-weight: 200;
  color: rgba(253,251,245,0.4);
  margin-top: 5px;
}
.contact-form-wrapper {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 55px;
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 35px;
}
.form-group { margin-bottom: 25px; }
.form-group label {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 200;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.03);
}
.form-group textarea { resize: none; height: 120px; }
.form-group select option { background: var(--black-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  border: none;
  color: var(--black);
  padding: 18px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.4s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}
.form-submit:hover::before { left: 100%; }
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.25);
}

/* ========================
   FOOTER
======================== */
footer {
  background: #050505;
  padding: 60px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  letter-spacing: 6px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-copy {
  font-size: 11px;
  font-weight: 200;
  color: rgba(253,251,245,0.3);
  letter-spacing: 2px;
}
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  cursor: none;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ========================
   SCROLL REVEAL
======================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }
.reveal-delay-5 { transition-delay: 0.65s; }
.reveal-delay-6 { transition-delay: 0.8s; }

/* ========================
   RESPONSIVE / MOBILE
======================== */
@media (max-width: 900px) {
  nav { padding: 0 25px; }
  nav .nav-links { display: none; }
  section { padding: 80px 25px; }
  .hero-title { font-size: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { height: 320px; }
  .branches-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-layout { flex-direction: column; gap: 25px; text-align: center; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .branches-intro { flex-direction: column; align-items: flex-start; gap: 20px; }
  .appt-modal { padding: 40px 25px; }
  body { cursor: default; }
  .cursor, .cursor-ring { display: none; }
}

/* ========================
   SAYFA HERO (iç sayfalar)
======================== */
.page-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 60px 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

/* Aktif nav linki */
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  width: 100%;
}

/* Responsive iç sayfalar */
@media (max-width: 900px) {
  .page-hero { padding: 130px 25px 60px; min-height: 40vh; }
}

