/* ═══════════════════════════════════════════
   MEDYUM YUSUF HOCA — style.css
   ═══════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --obsidian:    #0A0A0F;
  --midnight:    #0D0D1A;
  --void-purple: #1A0A2E;
  --amethyst:    #3D1A6E;
  --gold:        #C9A84C;
  --pale-gold:   #E8D5A3;
  --silver:      #C8C8D4;
  --ghost:       #F0EEF8;
  --gold-glow:   rgba(201,168,76,.35);
  --purple-glow: rgba(61,26,110,.6);

  --ff-display:  'Cinzel Decorative', serif;
  --ff-italic:   'Cormorant Garamond', serif;
  --ff-body:     'Inter', sans-serif;

  --nav-h: 72px;
  --radius: 16px;
  --transition: .4s cubic-bezier(.25,.8,.25,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--obsidian);
  color: var(--silver);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section spacing ── */
.section { padding: 120px 0; position: relative; overflow: hidden; }
.dark-section { background: var(--midnight); }

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--gold);
  letter-spacing: .15em;
  font-size: .85rem;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ghost);
  line-height: 1.2;
  font-weight: 700;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--pale-gold), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.body-text {
  color: var(--silver);
  font-size: 1.05rem;
  margin-bottom: 16px;
  max-width: 560px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--ff-display);
  font-size: .8rem;
  letter-spacing: .12em;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #A07830, var(--gold));
  background-size: 200% 200%;
  color: var(--obsidian);
  box-shadow: 0 4px 24px var(--gold-glow);
  animation: shimmer-btn 4s ease infinite;
}
.btn-gold:hover {
  box-shadow: 0 6px 40px rgba(201,168,76,.6);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid rgba(201,168,76,.4);
  color: var(--pale-gold);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

@keyframes shimmer-btn {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(10,10,15,.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: .85rem;
  color: var(--pale-gold);
  letter-spacing: .1em;
}
.logo-symbol { color: var(--gold); font-size: .7rem; }
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-family: var(--ff-italic);
  font-size: 1rem;
  color: var(--silver);
  letter-spacing: .05em;
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}
.nav-links a:hover { color: var(--pale-gold); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  border: 1px solid rgba(201,168,76,.5) !important;
  padding: 6px 20px;
  border-radius: 50px;
  color: var(--gold) !important;
  transition: background .3s, box-shadow .3s !important;
}
.nav-cta:hover {
  background: rgba(201,168,76,.1);
  box-shadow: 0 0 16px var(--gold-glow);
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--pale-gold);
  border-radius: 2px;
  transition: .3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px 40px;
  background: rgba(10,10,15,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,76,.1);
}
.mobile-menu a {
  padding: 12px 0;
  font-family: var(--ff-italic);
  font-size: 1.1rem;
  color: var(--silver);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#starCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* Aurora orbs */
.aurora { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #3D1A6E 0%, transparent 70%);
  top: -20%; left: -10%;
  animation-duration: 14s;
}
.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #1A0A2E 0%, transparent 70%);
  bottom: -20%; right: -10%;
  animation-duration: 18s;
  animation-delay: -6s;
}
.orb3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  top: 30%; left: 50%;
  transform: translateX(-50%);
  animation-duration: 10s;
  animation-delay: -3s;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--gold);
  letter-spacing: .2em;
  font-size: .9rem;
  margin-bottom: 24px;
  display: block;
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.title-line {
  display: block;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--ghost);
  letter-spacing: .06em;
  line-height: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: hero-line-in .9s cubic-bezier(.25,.8,.25,1) forwards;
}
.title-line:nth-child(1) { animation-delay: .3s; }
.title-line.gold {
  background: linear-gradient(135deg, #8B6914, var(--gold), var(--pale-gold), var(--gold), #8B6914);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-line-in .9s cubic-bezier(.25,.8,.25,1) .6s forwards,
             gold-sweep 5s ease 1.5s infinite;
}
@keyframes hero-line-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gold-sweep {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hero-sub {
  color: var(--silver);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-family: var(--ff-italic);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.reveal-line {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-up .8s cubic-bezier(.25,.8,.25,1) forwards;
}
.hero-eyebrow { animation-delay: .1s; }
.hero-sub { animation-delay: 1.2s; }
.hero-buttons { animation-delay: 1.5s; }
@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(201,168,76,.6);
  font-size: .7rem;
  letter-spacing: .15em;
  font-family: var(--ff-display);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: .6; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(.7); }
}

/* ═══════════════════════════════════════════
   HAKKINDA
   ═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { display: flex; justify-content: center; }
.about-image-frame {
  position: relative;
  width: 360px;
  height: 460px;
  border-radius: var(--radius);
  overflow: visible;
}
.about-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--void-purple), var(--midnight));
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(201,168,76,.08), transparent 60%);
}

/* Nazar / Eye placeholder */
.placeholder-eye {
  position: relative;
  width: 120px;
  height: 120px;
}
.eye-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.5);
  background: radial-gradient(circle, #0D1B4B, #060D2A);
  box-shadow: 0 0 40px rgba(201,168,76,.2), inset 0 0 30px rgba(61,26,110,.5);
  animation: eye-pulse 4s ease-in-out infinite;
}
.eye-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, #1A4FC7, #0A1E6E);
  border: 2px solid rgba(201,168,76,.3);
}
.eye-pupil {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #020510;
  box-shadow: 0 0 12px rgba(201,168,76,.4);
}
.eye-pupil::after {
  content: '';
  position: absolute;
  top: 6px; right: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
}
@keyframes eye-pulse {
  0%,100% { box-shadow: 0 0 40px rgba(201,168,76,.2), inset 0 0 30px rgba(61,26,110,.5); }
  50%      { box-shadow: 0 0 70px rgba(201,168,76,.4), inset 0 0 50px rgba(61,26,110,.7); }
}

.image-border-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--gold), transparent, var(--amethyst), transparent, var(--gold));
  background-size: 300% 300%;
  z-index: -1;
  animation: border-rotate 6s linear infinite;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
@keyframes border-rotate {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.about-text { max-width: 520px; }
.about-text .section-label { margin-bottom: 16px; }
.about-text .section-title { margin-bottom: 24px; }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,.15);
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .8rem;
  color: var(--silver);
  letter-spacing: .08em;
  opacity: .7;
}

/* ═══════════════════════════════════════════
   HİZMETLER
   ═══════════════════════════════════════════ */
.nebula-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(61,26,110,.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(26,10,46,.6) 0%, transparent 70%);
}
.nebula-right {
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(61,26,110,.3) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(26,10,46,.5) 0%, transparent 70%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  background: rgba(13,13,26,.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color .4s, box-shadow .4s;
  transform-style: preserve-3d;
  cursor: default;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.04) 0%, transparent 60%);
  border-radius: var(--radius);
}
.service-card:hover {
  border-color: rgba(201,168,76,.45);
  box-shadow: 0 8px 60px rgba(201,168,76,.12), 0 0 0 1px rgba(201,168,76,.1);
}
.card-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.service-card:hover .card-glow { opacity: 1; }
.card-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(201,168,76,.4));
}
.card-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--pale-gold);
  margin-bottom: 12px;
  letter-spacing: .06em;
}
.card-text {
  color: var(--silver);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 24px;
  opacity: .85;
}
.card-link {
  color: var(--gold);
  font-family: var(--ff-italic);
  font-size: .9rem;
  letter-spacing: .08em;
  transition: letter-spacing .3s, opacity .3s;
  opacity: .7;
}
.card-link:hover { letter-spacing: .14em; opacity: 1; }

/* ═══════════════════════════════════════════
   NASIL ÇALIŞIR
   ═══════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,.2), var(--gold));
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  font-family: var(--ff-display);
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .2em;
  margin-bottom: 16px;
  opacity: .6;
}
.step-icon {
  font-size: 3rem;
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 16px rgba(201,168,76,.35));
}
.step-title {
  font-family: var(--ff-display);
  font-size: .95rem;
  color: var(--pale-gold);
  margin-bottom: 12px;
  letter-spacing: .06em;
}
.step-text {
  color: var(--silver);
  font-size: .95rem;
  opacity: .8;
  max-width: 260px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   REFERANSLAR
   ═══════════════════════════════════════════ */
.testimonials-wrapper { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform .6s cubic-bezier(.25,.8,.25,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  background: rgba(13,13,26,.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 28px;
  font-family: var(--ff-italic);
  font-size: 5rem;
  color: var(--gold);
  opacity: .1;
  line-height: 1;
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.testimonial-text {
  color: var(--silver);
  font-family: var(--ff-italic);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: .9;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amethyst), var(--void-purple));
  border: 1px solid rgba(201,168,76,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--pale-gold);
  font-family: var(--ff-display);
  letter-spacing: .05em;
  flex-shrink: 0;
}
.testimonial-author strong { color: var(--pale-gold); display: block; font-size: .9rem; }
.testimonial-author span { color: var(--silver); font-size: .8rem; opacity: .6; }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.t-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, box-shadow .3s;
}
.t-btn:hover {
  background: rgba(201,168,76,.1);
  box-shadow: 0 0 20px var(--gold-glow);
}
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,.25);
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.t-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════
   İLETİŞİM
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 20px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(13,13,26,.6);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 12px;
  transition: border-color .3s, box-shadow .3s;
}
.contact-method:hover {
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 4px 24px rgba(201,168,76,.08);
}
.contact-method.whatsapp:hover { border-color: rgba(37,211,102,.4); }
.method-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-method strong { color: var(--pale-gold); display: block; font-size: .9rem; }
.contact-method span { color: var(--silver); font-size: .85rem; opacity: .7; }

/* Contact Form */
.contact-form-wrap {
  background: rgba(13,13,26,.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  padding: 48px 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .1em;
  font-family: var(--ff-display);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10,10,15,.6);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--ghost);
  font-family: var(--ff-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,.5);
  box-shadow: 0 0 20px rgba(201,168,76,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(200,200,212,.3); }
.form-group select option { background: var(--midnight); color: var(--ghost); }
.form-group textarea { resize: vertical; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
#footer {
  background: var(--obsidian);
  border-top: 1px solid rgba(201,168,76,.12);
  padding: 60px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-aurora {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(61,26,110,.2) 0%, transparent 70%);
  pointer-events: none;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 6px;
}
.footer-tagline {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--silver);
  font-size: .85rem;
  opacity: .6;
}
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-size: .85rem;
  color: var(--silver);
  opacity: .6;
  transition: opacity .3s, color .3s;
}
.footer-nav a:hover { opacity: 1; color: var(--pale-gold); }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-family: var(--ff-display);
  color: var(--gold);
  letter-spacing: .05em;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.social-link:hover {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .78rem;
  color: var(--silver);
  opacity: .4;
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════════════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  transition: transform .3s, box-shadow .3s;
  animation: fab-pulse 3s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 40px rgba(37,211,102,.55);
}
@keyframes fab-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.35); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,.6); }
}

/* ═══════════════════════════════════════════
   FORM BAŞARI MESAJI
   ═══════════════════════════════════════════ */
.form-honeypot { display: none; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 52px 40px;
  animation: success-in .7s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes success-in {
  from { opacity: 0; transform: scale(.9) translateY(16px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
.form-success[hidden] { display: none; }

.form-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--void-purple), var(--amethyst));
  border: 1px solid rgba(201,168,76,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 24px;
  box-shadow:
    0 0 32px rgba(201,168,76,.25),
    0 0 80px rgba(61,26,110,.4);
  animation: success-icon-pulse 2.5s ease-in-out infinite;
}
@keyframes success-icon-pulse {
  0%,100% { box-shadow: 0 0 32px rgba(201,168,76,.25), 0 0 80px rgba(61,26,110,.4); }
  50%      { box-shadow: 0 0 56px rgba(201,168,76,.5),  0 0 120px rgba(61,26,110,.6); }
}

.form-success-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .08em;
  background: linear-gradient(135deg, var(--gold), var(--pale-gold), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.form-success-text {
  font-family: var(--ff-italic);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 340px;
}

.form-success-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 20px;
}

.form-success-note {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: .82rem;
  color: rgba(201,168,76,.6);
  letter-spacing: .08em;
}

/* Submit loading durumu */
#submitBtn:disabled {
  opacity: .65;
  cursor: not-allowed;
}
#submitBtn.loading::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(10,10,15,.4);
  border-top-color: var(--obsidian);
  border-radius: 50%;
  animation: btn-spin .7s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════
   HİZMET MODAL
   ═══════════════════════════════════════════ */

/* card-link buton sıfırlama */
.card-modal-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--gold);
  font-family: var(--ff-italic);
  font-size: .9rem;
  letter-spacing: .08em;
  cursor: pointer;
  transition: letter-spacing .3s, opacity .3s;
  opacity: .7;
  text-align: left;
}
.card-modal-btn:hover { letter-spacing: .14em; opacity: 1; }

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 15, .82);
  backdrop-filter: blur(10px);
  cursor: pointer;
  animation: backdrop-in .35s ease forwards;
}
@keyframes backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Modal kutusu */
.modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(155deg, #12091F 0%, #0D0D1A 60%, #0A0A0F 100%);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 24px;
  padding: 52px 48px 44px;
  text-align: center;
  box-shadow:
    0 0 80px rgba(61,26,110,.5),
    0 0 160px rgba(61,26,110,.2),
    inset 0 1px 0 rgba(201,168,76,.1);
  animation: modal-in .45s cubic-bezier(.34,1.56,.64,1) forwards;
  overflow: hidden;
}
.modal-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,.05) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

/* Köşe dekorları */
.modal-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: rgba(201,168,76,.45);
  border-style: solid;
}
.modal-corner.tl { top: 16px; left: 16px;   border-width: 1px 0 0 1px; }
.modal-corner.tr { top: 16px; right: 16px;  border-width: 1px 1px 0 0; }
.modal-corner.bl { bottom: 16px; left: 16px;  border-width: 0 0 1px 1px; }
.modal-corner.br { bottom: 16px; right: 16px; border-width: 0 1px 1px 0; }

/* Kapat butonu */
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.25);
  color: rgba(201,168,76,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
  z-index: 1;
}
.modal-close:hover {
  background: rgba(201,168,76,.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

/* Modal içeriği */
.modal-icon {
  font-size: 3.2rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 18px rgba(201,168,76,.5));
  animation: icon-float 3s ease-in-out infinite;
}
@keyframes icon-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.modal-eyebrow {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--gold);
  letter-spacing: .18em;
  font-size: .78rem;
  margin-bottom: 10px;
  opacity: .8;
}
.modal-title {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--pale-gold);
  letter-spacing: .06em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.modal-desc {
  color: var(--silver);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 32px;
  opacity: .85;
}

/* Altın süre kutusu — neon halo efekti */
.modal-duration-box {
  position: relative;
  border-radius: 14px;
  padding: 2px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #C9A84C, #6B4E11, #E8D5A3, #6B4E11, #C9A84C);
  background-size: 300% 300%;
  animation: gold-border-spin 4s linear infinite;
  box-shadow:
    0 0 24px rgba(201,168,76,.35),
    0 0 60px rgba(201,168,76,.15),
    0 0 100px rgba(201,168,76,.08);
}
@keyframes gold-border-spin {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.modal-duration-inner {
  background: linear-gradient(135deg, #0D0915, #110D20);
  border-radius: 12px;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.modal-duration-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}
.modal-duration-label {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: .82rem;
  color: rgba(201,168,76,.7);
  letter-spacing: .1em;
}
.modal-duration-value {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: .08em;
  background: linear-gradient(90deg, #8B6914, #C9A84C, #E8D5A3, #C9A84C, #8B6914);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-text-sweep 3s linear infinite;
  text-shadow: none;
}
@keyframes gold-text-sweep {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.modal-cta { display: inline-flex; margin-top: 0; }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.25,.8,.25,1), transform .8s cubic-bezier(.25,.8,.25,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: .1s; }
.delay-200 { transition-delay: .2s; }
.delay-300 { transition-delay: .3s; }
.delay-400 { transition-delay: .4s; }
.delay-500 { transition-delay: .5s; }
.delay-600 { transition-delay: .6s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-frame { width: 300px; height: 380px; }
  .about-text { max-width: 100%; }

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

  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }

  .testimonial-card { flex: 0 0 calc(80vw); }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .nav-inner { padding: 0 20px; }
  .mobile-menu { padding: 16px 20px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .modal-box { padding: 44px 24px 36px; }
  .modal-duration-inner { padding: 18px 20px; }
}
