/* =========================================================
   ESENYURT TRANSFER — Ultra Premium Dark Luxury
   ========================================================= */

:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --bg-3: #111110;
  --ink: #f5efe1;
  --ink-soft: #b9b09a;
  --ink-mute: #7a7363;
  --gold: #D4AF37;
  --gold-foil: #FFD700;
  --gold-deep: #8a6a16;
  --gold-shadow: rgba(212, 175, 55, .18);
  --gold-border: rgba(212, 175, 55, .25);
  --gold-border-strong: rgba(212, 175, 55, .55);
  --line: rgba(212, 175, 55, .12);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --display: "Bebas Neue", "Cormorant Garamond", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Background field — deep black with subtle vignette + gold haze */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(212,175,55,.08), transparent 55%),
    radial-gradient(1400px 900px at 50% 50%, rgba(20,15,5,.6), transparent 70%),
    var(--bg);
  z-index: -2;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.55) 100%);
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Gold particle canvas */
#gold-dust {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Content layers above particles */
.site-header, main, .site-footer, .floating-call {
  position: relative;
  z-index: 2;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: -.01em; }

.kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 14px;
}
.kicker::before {
  content: "";
  width: 38px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

/* Gold foil shimmer text */
.foil {
  background: linear-gradient(
    100deg,
    #6b521a 0%,
    #b8901f 18%,
    #FFD700 34%,
    #fff4b3 44%,
    #FFD700 54%,
    #D4AF37 70%,
    #8a6a16 100%
  );
  background-size: 280% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: foilShine 7s ease-in-out infinite;
  text-shadow: 0 0 80px rgba(212,175,55,.18);
}
@keyframes foilShine {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gold { color: var(--gold-foil); }

/* =========================================================
   LAYOUT
   ========================================================= */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { padding: 120px 0; position: relative; }
.section-head { display: flex; flex-direction: column; gap: 18px; max-width: 760px; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(40px, 5vw, 72px); }
.section-head p { color: var(--ink-soft); font-size: 18px; max-width: 620px; }
.center { text-align: center; align-items: center; margin-inline: auto; }
.center .kicker { justify-content: center; }
.center .kicker::after {
  content: "";
  width: 38px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: all .4s ease;
  background: linear-gradient(180deg, rgba(5,5,5,.85), rgba(5,5,5,.0));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(5,5,5,.92);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 25%, #ffe89a 0%, #D4AF37 35%, #6b4f0d 90%);
  box-shadow: 0 0 0 1px rgba(212,175,55,.5), 0 8px 30px rgba(212,175,55,.25), inset 0 -6px 12px rgba(0,0,0,.45);
  color: #1a1305;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  font-style: italic;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .22em;
  color: var(--ink);
}
.brand-tag {
  font-size: 10px;
  letter-spacing: .35em;
  color: var(--gold);
  margin-top: 6px;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold-foil), transparent);
  transition: width .35s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-foil); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-call {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--gold-border-strong);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--gold-foil);
  background: linear-gradient(180deg, rgba(212,175,55,.08), rgba(212,175,55,.02));
  transition: all .3s;
}
.nav-call:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: #050505;
  box-shadow: 0 12px 40px rgba(212,175,55,.4);
}
.nav-call .phone-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-foil);
  box-shadow: 0 0 12px var(--gold-foil);
  animation: pulse 2s infinite;
}

.menu-toggle { display: none; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 36px;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  color: #050505;
  background: linear-gradient(135deg, #fff1b5 0%, #FFD700 30%, #D4AF37 60%, #8a6a16 100%);
  box-shadow: 0 10px 40px rgba(212,175,55,.35), inset 0 1px 0 rgba(255,255,255,.55), inset 0 -2px 6px rgba(0,0,0,.25);
}
.btn-primary::before {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-20deg);
  transition: left .9s ease;
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(212,175,55,.5); }

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--gold-border-strong);
  background: rgba(212,175,55,.04);
}
.btn-ghost:hover {
  background: rgba(212,175,55,.12);
  color: var(--gold-foil);
}
.btn .arr {
  width: 14px; height: 14px;
  display: inline-block;
  position: relative;
  transition: transform .35s;
}
.btn .arr::before, .btn .arr::after {
  content: ""; position: absolute; background: currentColor;
}
.btn .arr::before { left: 0; top: 50%; width: 100%; height: 1px; transform: translateY(-50%); }
.btn .arr::after { right: 0; top: 50%; width: 8px; height: 8px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: translateY(-50%) rotate(45deg); background: transparent; }
.btn:hover .arr { transform: translateX(6px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  padding: 180px 0 100px;
  display: flex; align-items: center;
  position: relative;
}
.hero > .wrap { width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 18px;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  width: max-content;
  background: rgba(212,175,55,.04);
  margin-bottom: 28px;
}
.hero-eyebrow .star {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-foil);
  box-shadow: 0 0 10px var(--gold-foil);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(64px, 13vw, 220px);
  line-height: .85;
  letter-spacing: .01em;
  margin-bottom: 28px;
}
@media (min-width: 1100px) {
  .hero h1 { font-size: clamp(64px, 11vw, 180px); }
  .hero-grid > div:first-child { padding-right: 380px; }
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line span {
  display: block;
  transform: translateY(110%);
  animation: rise 1.2s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero h1 .line:nth-child(2) span { animation-delay: .15s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-weight: 400;
}
.hero-sub .gold-thin { color: var(--gold-foil); font-weight: 500; font-style: normal; letter-spacing: .04em; }
.hero-lede {
  font-size: 17px;
  color: var(--ink-mute);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 80px; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.hero-meta > div {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}
.hero-meta > div:last-child { border-right: 0; }
.hero-meta .v {
  font-family: var(--display);
  font-size: 44px;
  color: var(--gold-foil);
  line-height: 1;
  letter-spacing: .04em;
}
.hero-meta .l {
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 12px;
}

/* Hero decorative side card — luxury chauffeur badge */
.hero-aside {
  position: absolute;
  right: 32px; bottom: 220px;
  width: 320px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(20,16,8,.85), rgba(8,6,3,.85));
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  display: none;
}
.hero-aside .badge-line {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px; margin-bottom: 16px;
}
.hero-aside .badge-line span:first-child { font-size: 10px; letter-spacing: .3em; color: var(--ink-mute); text-transform: uppercase; }
.hero-aside .badge-line span:last-child { color: var(--gold-foil); font-family: var(--serif); font-style: italic; }
@media (min-width: 1100px) { .hero-aside { display: block; } }

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
}
.service-card {
  background: linear-gradient(180deg, rgba(15,12,6,.6), rgba(8,6,3,.6));
  padding: 44px 36px;
  min-height: 320px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all .5s;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 50% 0%, rgba(212,175,55,.18), transparent 60%);
  opacity: 0;
  transition: opacity .5s;
}
.service-card:hover { background: linear-gradient(180deg, rgba(25,20,10,.9), rgba(12,9,5,.9)); }
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 32px;
  position: relative; z-index: 2;
}
.service-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold-border-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 28px;
  color: var(--gold-foil);
  position: relative; z-index: 2;
  background: rgba(212,175,55,.05);
  transition: all .5s;
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: #050505;
  box-shadow: 0 0 30px rgba(212,175,55,.5);
}
.service-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
  position: relative; z-index: 2;
}
.service-card p {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.6;
  position: relative; z-index: 2;
  flex: 1;
}
.service-card .more {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; z-index: 2;
  transition: gap .3s;
}
.service-card:hover .more { gap: 14px; color: var(--gold-foil); }

/* =========================================================
   WHY US
   ========================================================= */
.why {
  background: linear-gradient(180deg, rgba(10,8,4,.4), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 100px;
  align-items: start;
}
.why-list { display: flex; flex-direction: column; gap: 8px; }
.why-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.why-item:last-child { border-bottom: 0; }
.why-item .num {
  font-family: var(--display);
  font-size: 38px;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
}
.why-item h4 { font-size: 24px; margin-bottom: 10px; color: var(--ink); }
.why-item p { color: var(--ink-mute); font-size: 15px; }

.why-visual {
  position: relative;
  padding: 40px;
  border: 1px solid var(--gold-border);
  background: linear-gradient(180deg, rgba(15,12,6,.5), rgba(8,6,3,.5));
}
.why-visual .corner {
  position: absolute; width: 18px; height: 18px;
  border: 1px solid var(--gold-foil);
}
.why-visual .corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.why-visual .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.why-visual .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.why-visual .corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.why-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 28px;
}
.why-quote::before {
  content: "“";
  display: block;
  font-size: 72px;
  color: var(--gold);
  line-height: .5;
  margin-bottom: 24px;
}
.why-sig { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--line); }
.why-sig .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border: 1px solid var(--gold-foil);
}
.why-sig .who { font-family: var(--serif); font-size: 18px; }
.why-sig .role { font-size: 11px; letter-spacing: .25em; color: var(--gold); text-transform: uppercase; margin-top: 4px; }

/* =========================================================
   DISTRICTS / COVERAGE
   ========================================================= */
.districts-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 56px; gap: 40px; flex-wrap: wrap; }
.districts-count {
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 280px);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-border-strong);
  letter-spacing: -.02em;
}
.districts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.district {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  transition: all .3s;
  cursor: pointer;
}
.district:hover {
  background: linear-gradient(135deg, rgba(212,175,55,.12), transparent);
  color: var(--gold-foil);
}
.district .name { font-size: 14px; letter-spacing: .04em; }
.district .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.district:hover .dot { opacity: 1; box-shadow: 0 0 10px var(--gold-foil); transform: scale(1.4); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.6));
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-grid h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { color: var(--ink-soft); font-size: 14px; transition: color .25s; }
.footer-grid a:hover { color: var(--gold-foil); }
.footer-brand p { color: var(--ink-mute); font-size: 14px; margin-top: 20px; max-width: 320px; line-height: 1.7; }
.footer-phone {
  font-family: var(--display);
  font-size: 32px;
  color: var(--gold-foil);
  letter-spacing: .06em;
  margin-bottom: 10px;
  display: block;
}
.footer-mini {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: .08em;
  flex-wrap: wrap;
  gap: 16px;
}

/* Floating call button */
.floating-call {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 40;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff1b5 0%, #FFD700 30%, #D4AF37 60%, #8a6a16 100%);
  display: grid; place-items: center;
  color: #050505;
  box-shadow: 0 12px 40px rgba(212,175,55,.45), inset 0 -3px 8px rgba(0,0,0,.25);
  animation: pulse-ring 2.2s infinite;
}
.floating-call::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold-foil);
  border-radius: 50%;
  animation: ring-out 2.2s infinite;
}
@keyframes pulse-ring { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes ring-out { 0% { opacity: 1; transform: scale(.9); } 100% { opacity: 0; transform: scale(1.6); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* =========================================================
   PAGE HEADERS (interior pages)
   ========================================================= */
.page-hero {
  padding: 200px 0 80px;
  position: relative;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(60px, 10vw, 160px);
  line-height: .9;
  letter-spacing: .02em;
  margin: 22px 0 16px;
}
.page-hero p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span.sep { opacity: .4; }

/* =========================================================
   HIZMETLER — Service cards (expanded)
   ========================================================= */
.svc-list { display: flex; flex-direction: column; gap: 1px; background: var(--gold-border); border: 1px solid var(--gold-border); }
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 200px;
  gap: 40px;
  padding: 48px 40px;
  background: linear-gradient(180deg, rgba(12,9,5,.6), rgba(6,5,3,.6));
  align-items: center;
  transition: all .4s;
}
.svc-row:hover {
  background: linear-gradient(180deg, rgba(22,17,9,.9), rgba(12,9,5,.9));
}
.svc-row .num {
  font-family: var(--display);
  font-size: 64px;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
}
.svc-row h3 { font-size: 34px; margin-bottom: 8px; }
.svc-row .label { font-size: 11px; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; }
.svc-row p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.svc-row ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.svc-row ul li { font-size: 13px; color: var(--ink-mute); padding-left: 18px; position: relative; }
.svc-row ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 2px; }
.svc-row .price {
  text-align: right;
}
.svc-row .price .from { font-size: 10px; letter-spacing: .25em; color: var(--ink-mute); text-transform: uppercase; }
.svc-row .price .v {
  font-family: var(--display);
  font-size: 44px;
  color: var(--gold-foil);
  line-height: 1;
  margin: 8px 0;
  letter-spacing: .04em;
}
.svc-row .price .u { font-size: 12px; color: var(--ink-mute); letter-spacing: .15em; text-transform: uppercase; }

/* =========================================================
   HAKKIMIZDA — About
   ========================================================= */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro .lede {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.4;
  color: var(--ink);
}
.about-intro p { color: var(--ink-soft); margin-bottom: 18px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-top: 60px;
}
.stat {
  padding: 48px 32px;
  background: linear-gradient(180deg, rgba(12,9,5,.6), rgba(6,5,3,.6));
  text-align: center;
}
.stat .v {
  font-family: var(--display);
  font-size: 72px;
  letter-spacing: .04em;
  line-height: 1;
}
.stat .l {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.timeline {
  position: relative;
  padding: 40px 0 0 40px;
  border-left: 1px solid var(--gold-border);
  display: flex; flex-direction: column;
  gap: 60px;
}
.tl-item { position: relative; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -49px; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-foil), var(--gold-deep));
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--gold-border-strong), 0 0 24px rgba(212,175,55,.6);
}
.tl-year {
  font-family: var(--display);
  font-size: 48px;
  color: var(--gold-foil);
  letter-spacing: .06em;
  line-height: 1;
}
.tl-item h4 { font-size: 26px; margin: 14px 0 10px; }
.tl-item p { color: var(--ink-soft); max-width: 580px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-top: 60px;
}
.value-card {
  padding: 48px 36px;
  background: linear-gradient(180deg, rgba(12,9,5,.6), rgba(6,5,3,.6));
}
.value-card .vnum {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 24px;
}
.value-card h4 { font-size: 26px; margin-bottom: 14px; }
.value-card p { color: var(--ink-mute); font-size: 15px; }

/* =========================================================
   BLOG
   ========================================================= */
.blog-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  border: 1px solid var(--gold-border);
  background: linear-gradient(180deg, rgba(15,12,6,.5), rgba(8,6,3,.5));
  padding: 50px;
  margin-bottom: 80px;
  align-items: center;
}
.blog-feature .img-slot {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(45deg, rgba(212,175,55,.04) 0 16px, rgba(212,175,55,.01) 16px 32px),
    linear-gradient(135deg, #1a1408, #050505);
  border: 1px solid var(--gold-border);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.blog-feature .img-slot::after {
  content: "✦";
  font-size: 72px;
  color: var(--gold-border-strong);
}
.blog-feature .tag { font-size: 11px; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; }
.blog-feature h3 { font-size: 44px; line-height: 1.1; margin: 18px 0; }
.blog-feature p { color: var(--ink-soft); margin-bottom: 24px; }
.blog-meta { display: flex; gap: 24px; font-size: 12px; color: var(--ink-mute); letter-spacing: .12em; text-transform: uppercase; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
}
.blog-card {
  background: linear-gradient(180deg, rgba(12,9,5,.7), rgba(6,5,3,.7));
  padding: 36px;
  display: flex; flex-direction: column;
  transition: all .4s;
  min-height: 380px;
}
.blog-card:hover { background: linear-gradient(180deg, rgba(22,17,9,.95), rgba(12,9,5,.95)); }
.blog-card .num {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 30px;
}
.blog-card .tag { font-size: 11px; letter-spacing: .25em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.blog-card h4 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 14px;
  flex: 1;
  transition: color .3s;
}
.blog-card:hover h4 { color: var(--gold-foil); }
.blog-card p { color: var(--ink-mute); font-size: 14px; margin-bottom: 24px; }
.blog-card .date { font-size: 11px; color: var(--ink-mute); letter-spacing: .2em; text-transform: uppercase; padding-top: 18px; border-top: 1px solid var(--line); }

/* =========================================================
   ILETISIM — Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  padding: 32px;
  border: 1px solid var(--gold-border);
  background: linear-gradient(180deg, rgba(15,12,6,.5), rgba(8,6,3,.5));
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  transition: all .3s;
}
.contact-card:hover { border-color: var(--gold-border-strong); transform: translateY(-2px); }
.contact-card .ico {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe89a, #D4AF37 50%, #6b4f0d);
  display: grid; place-items: center;
  color: #1a1305;
  box-shadow: 0 0 0 1px var(--gold-foil), 0 10px 30px rgba(212,175,55,.3);
}
.contact-card h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-card .val {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
.contact-card .sub { color: var(--ink-mute); font-size: 13px; margin-top: 4px; }

.form-card {
  padding: 48px;
  border: 1px solid var(--gold-border);
  background: linear-gradient(180deg, rgba(15,12,6,.7), rgba(8,6,3,.7));
  position: relative;
}
.form-card .corner { position: absolute; width: 22px; height: 22px; border: 1px solid var(--gold-foil); }
.form-card .corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.form-card .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.form-card .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.form-card .corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.form-card h3 { font-size: 32px; margin-bottom: 8px; }
.form-card .sub { color: var(--ink-mute); margin-bottom: 36px; font-size: 14px; }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  border-radius: 2px;
  transition: all .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold-border-strong);
  background: rgba(212,175,55,.04);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; width: 44px; height: 44px; border: 1px solid var(--gold-border); border-radius: 50%; align-items: center; justify-content: center; color: var(--gold); }
  .hero-meta { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .hero-meta > div { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 50px; }
  .districts-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .svc-row { grid-template-columns: 1fr; gap: 16px; padding: 32px 24px; }
  .svc-row .price { text-align: left; }
  .about-intro { grid-template-columns: 1fr; gap: 30px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .blog-feature { grid-template-columns: 1fr; padding: 30px; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 30px; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .hero { padding-top: 140px; }
  .nav-call span:not(.phone-dot) { display: none; }
  .floating-call { width: 60px; height: 60px; }
  .districts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1.1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
