/* ===========================================================
   Eymen Trade — Kurumsal stil
   Palet: derin lacivert + sıcak altın vurgu
   =========================================================== */

:root {
  --navy-900: #0a1428;
  --navy-800: #0f1d3a;
  --navy-700: #17284d;
  --navy-600: #1f3a6b;
  --ink: #10192e;
  --slate: #5b6b7f;
  --mist: #8a97ac;
  --paper: #f6f8fc;
  --paper-2: #eef2f9;
  --white: #ffffff;
  --line: #e2e8f2;

  --gold: #c8992e;
  --gold-2: #e0b64a;
  --gold-soft: #f4e6c2;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(16, 25, 46, .06), 0 4px 14px rgba(16, 25, 46, .05);
  --shadow-md: 0 10px 40px rgba(16, 25, 46, .10);
  --shadow-lg: 0 24px 70px rgba(10, 20, 40, .22);

  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --ff: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ff-display: "Sora", "Inter", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display);
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}
.kicker::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }

.section { padding: 108px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin: 16px 0 14px; color: var(--ink); }
.section-head p { color: var(--slate); font-size: 1.08rem; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 600; font-size: .96rem;
  padding: 15px 28px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #241a02; box-shadow: 0 10px 26px rgba(200,153,46,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(200,153,46,.42); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--white); border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 20px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(16,25,46,.06);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 700; font-size: 1.28rem; color: #fff; letter-spacing: -.02em; }
.scrolled .brand { color: var(--ink); }
.brand .mark { width: 38px; height: 38px; flex: 0 0 auto; }
.brand b { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > a {
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.86);
  padding: 9px 14px; border-radius: 10px; transition: all .2s var(--ease);
}
.scrolled .nav-links > a { color: var(--slate); }
.nav-links > a:hover { color: #fff; background: rgba(255,255,255,.1); }
.scrolled .nav-links > a:hover { color: var(--gold); background: var(--paper); }

.nav-right { display: flex; align-items: center; gap: 14px; }

/* Dil seçici */
.lang { display: flex; align-items: center; gap: 2px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 3px; }
.scrolled .lang { background: var(--paper); border-color: var(--line); }
.lang button {
  font-family: var(--ff-display); font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.7);
  background: none; border: none; cursor: pointer; padding: 6px 12px; border-radius: 999px; transition: all .2s var(--ease);
}
.scrolled .lang button { color: var(--mist); }
.lang button.is-active { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #241a02; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 168px 0 120px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 0%, #1b3160 0%, transparent 55%),
    radial-gradient(90% 80% at 0% 100%, #12244a 0%, transparent 50%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800) 60%, var(--ink));
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 40%, transparent 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); margin: 22px 0 22px; }
.hero h1 span { background: linear-gradient(120deg, var(--gold-2), var(--gold-soft)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.16rem; color: rgba(255,255,255,.8); max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 52px; flex-wrap: wrap; }
.hero-stats .st b { font-family: var(--ff-display); font-size: 2.1rem; color: var(--gold-2); display: block; line-height: 1; }
.hero-stats .st span { font-size: .9rem; color: rgba(255,255,255,.62); margin-top: 6px; display: block; }

/* Hero görsel (SVG globe/rota) */
.hero-visual { position: relative; }
.hero-visual .glow { position: absolute; inset: -10% ; background: radial-gradient(circle, rgba(200,153,46,.28), transparent 60%); filter: blur(30px); z-index: 0; }
.hero-visual svg { position: relative; z-index: 1; width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.4)); }

/* Güven bandı */
.trust { border-top: 1px solid rgba(255,255,255,.08); margin-top: 64px; padding-top: 30px; position: relative; z-index: 2; display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.trust span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.trust .logos { display: flex; gap: 30px; flex-wrap: wrap; opacity: .7; }
.trust .logos b { font-family: var(--ff-display); color: rgba(255,255,255,.75); font-size: 1rem; }

/* ---------- Hizmetler ---------- */
.services { background: var(--paper); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.svc-card::before { content: ""; position: absolute; top: 0; inset-inline-start: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transform: scaleX(0); transform-origin: inline-start; transition: transform .35s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ic { width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); margin-bottom: 22px; }
.svc-ic svg { width: 28px; height: 28px; stroke: var(--gold-2); }
.svc-card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.svc-card p { color: var(--slate); font-size: .98rem; }

/* ---------- Süreç ---------- */
.process { background: linear-gradient(180deg, #fff, var(--paper-2)); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 34px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step .no {
  counter-increment: step; font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem;
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-800); color: var(--gold-2); margin-bottom: 20px;
}
.step .no::before { content: "0" counter(step); }
.step h3 { font-size: 1.14rem; margin-bottom: 10px; }
.step p { color: var(--slate); font-size: .95rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 57px; inset-inline-end: -14px; width: 22px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 10px);
}
[dir="rtl"] .step:not(:last-child)::after { transform: scaleX(-1); }

/* ---------- Hakkımızda ---------- */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.about-visual { position: relative; border-radius: 22px; overflow: hidden; background: linear-gradient(160deg, var(--navy-800), var(--ink)); padding: 48px; box-shadow: var(--shadow-lg); }
.about-visual svg { width: 100%; height: auto; }
.about-text h2 { font-size: clamp(1.9rem, 3.3vw, 2.7rem); margin: 16px 0 20px; }
.about-text p { color: var(--slate); font-size: 1.05rem; margin-bottom: 18px; }
.about-points { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.about-points li { display: flex; align-items: flex-start; gap: 13px; font-weight: 500; color: var(--ink); }
.about-points li svg { width: 24px; height: 24px; flex: 0 0 auto; margin-top: 1px; color: var(--gold); }

/* ---------- Sektörler ---------- */
.sectors { background: var(--ink); color: #fff; }
.sectors .section-head h2 { color: #fff; }
.sectors .section-head p { color: rgba(255,255,255,.62); }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sector-card {
  display: flex; align-items: center; gap: 16px; padding: 26px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm);
  transition: all .25s var(--ease);
}
.sector-card:hover { background: rgba(200,153,46,.1); border-color: rgba(200,153,46,.4); transform: translateY(-3px); }
.sector-card .si { width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.06); flex: 0 0 auto; }
.sector-card .si svg { width: 24px; height: 24px; stroke: var(--gold-2); }
.sector-card h4 { font-size: 1.02rem; font-weight: 600; }

/* ---------- İletişim ---------- */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: 16px 0 16px; }
.contact-info p { color: var(--slate); font-size: 1.05rem; margin-bottom: 30px; }
.contact-cards { display: grid; gap: 14px; }
.cc {
  display: flex; align-items: center; gap: 16px; padding: 20px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: all .25s var(--ease);
}
.cc:hover { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.cc .ci { width: 48px; height: 48px; border-radius: 12px; background: var(--navy-800); display: grid; place-items: center; flex: 0 0 auto; }
.cc .ci svg { width: 22px; height: 22px; stroke: var(--gold-2); }
.cc small { display: block; color: var(--mist); font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
.cc b { font-family: var(--ff-display); font-size: 1.08rem; color: var(--ink); direction: ltr; unicode-bidi: plaintext; }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field input, .field textarea {
  width: 100%; font-family: var(--ff); font-size: 1rem; color: var(--ink);
  padding: 15px 18px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper);
  transition: border-color .2s, background .2s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.field textarea { min-height: 130px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* ---------- CTA şeridi ---------- */
.cta-band { position: relative; padding: 84px 0; overflow: hidden; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: #fff; text-align: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 80% 0%, rgba(200,153,46,.25), transparent 60%); }
.cta-band .inner { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.6); padding: 60px 0 30px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { max-width: 340px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: .96rem; line-height: 1.7; }
.footer-contact { display: grid; gap: 10px; font-size: .96rem; }
.footer-contact a { display: flex; align-items: center; gap: 10px; transition: color .2s; }
.footer-contact a:hover { color: var(--gold-2); }
.footer-contact svg { width: 18px; height: 18px; stroke: var(--gold); flex: 0 0 auto; }
.footer-contact a span { direction: ltr; unicode-bidi: plaintext; }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; }

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- RTL ince ayarlar ---------- */
[dir="rtl"] body { font-family: "Cairo", "Tajawal", var(--ff); }
[dir="rtl"] .kicker::before { }

/* ---------- Duyarlı ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 76px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 90px 24px 30px; gap: 4px; box-shadow: var(--shadow-lg);
    transform: translateY(-110%); transition: transform .35s var(--ease); z-index: -1;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > a { color: var(--ink); padding: 14px; border-bottom: 1px solid var(--line); }
  .sector-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-top { flex-direction: column; }
}
