/* ========================================================
   ANASAYFA — özel stiller
   ======================================================== */

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--midnight);
  color: var(--cream);
  padding: 120px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(212, 175, 122, 0.15), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(15, 30, 54, 0.6), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 122, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 122, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-content { opacity: 0; animation: fadeUp 1s 0.2s forwards; }
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 24px 0;
  letter-spacing: -0.02em;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.8;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-outline {
  border-color: rgba(245, 239, 230, 0.3);
  color: var(--cream);
}
.hero-actions .btn-outline:hover {
  background: var(--cream);
  color: var(--midnight);
  border-color: var(--cream);
}
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(212, 175, 122, 0.2);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.hero-stat .label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}

/* Hero görseli - dünya haritası SVG */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
  display: flex;
  justify-content: center;
}
.hero-globe {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  position: relative;
}
.hero-globe svg {
  width: 100%;
  height: 100%;
  color: var(--gold);
  opacity: 0.9;
}
.hero-globe::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(212, 175, 122, 0.15), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-globe { max-width: 280px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}

/* ── HİZMETLER ───────────────────────────────────────── */
.services {
  background: var(--paper);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 32px;
  border-radius: var(--radius);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--midnight);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t);
}
.service-link:hover { gap: 12px; color: var(--gold-dark); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── ÜLKELER ─────────────────────────────────────────── */
.countries {
  background: var(--midnight);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.countries::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 122, 0.08), transparent 70%);
  pointer-events: none;
}
.countries .section-head h2 { color: var(--cream); }
.countries .section-head p { color: rgba(245, 239, 230, 0.7); }
.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.country-card {
  background: rgba(245, 239, 230, 0.04);
  border: 1px solid rgba(212, 175, 122, 0.15);
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: all var(--t);
  text-align: center;
  cursor: pointer;
}
.country-card:hover {
  background: rgba(212, 175, 122, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.country-flag {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--midnight-2);
  border: 1px solid rgba(212, 175, 122, 0.2);
}
.country-card h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.country-card .type {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SÜREÇ ───────────────────────────────────────────── */
.process {
  background: var(--cream);
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
  opacity: 0.5;
}
.process-step {
  text-align: center;
  position: relative;
  background: var(--cream);
  padding: 0 16px;
  z-index: 2;
}
.process-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-dark);
  position: relative;
}
.process-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.25;
}
.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.process-step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}

/* ── CTA Bandı ────────────────────────────────────── */
.cta-band {
  background: var(--midnight);
  color: var(--cream);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.1;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.07;
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.cta-band h2 { color: var(--cream); max-width: 600px; }
.cta-band p { opacity: 0.8; margin-top: 12px; max-width: 540px; }

@media (max-width: 900px) {
  .cta-band-inner { flex-direction: column; text-align: center; }
}

/* ── Yorumlar ────────────────────────────────────────── */
.testimonials { background: var(--paper); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: var(--radius);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.testi-rating {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.testi-text {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--midnight), var(--midnight-3));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.testi-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--midnight);
}
.testi-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ── SSS ─────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--midnight);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color var(--t);
}
.faq-q:hover { color: var(--gold-dark); }
.faq-q .plus {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t);
  color: var(--gold-dark);
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--gold); color: var(--midnight); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}
