/* ============================================================
   SAMSUN LOJİSTİK — SITE CSS
   Anthracite + Gold premium theme
   ============================================================ */

:root {
  --bg:        #18181c;
  --bg2:       #202026;
  --bg3:       #28282f;
  --bg4:       #32323c;
  --gold:      #c9a84c;
  --gold-lt:   #e8c96e;
  --gold-dk:   #9a7a2a;
  --gold-line: rgba(201,168,76,.35);
  --gold-glow: rgba(201,168,76,.18);
  --text:      #ede9e2;
  --text-md:   #b0aba2;
  --text-sm:   #787470;
  --white:     #ffffff;
  --nav-h:     76px;
  --radius:    12px;
  --trans:     .28s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar            { width: 6px; }
::-webkit-scrollbar-track      { background: var(--bg2); }
::-webkit-scrollbar-thumb      { background: var(--gold-dk); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover{ background: var(--gold); }

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(18,18,20,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-line);
  display: flex; align-items: center;
  padding: 0 clamp(20px,5vw,72px);
  gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-logo span {
  font-size: 15px; font-weight: 800;
  color: var(--gold); letter-spacing: .4px;
  line-height: 1.2;
}
.nav-logo small { display: block; font-size: 10px; font-weight: 400; color: var(--text-sm); letter-spacing: .6px; }

.nav-links {
  display: flex; gap: 6px; align-items: center; margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--text-md);
  border-radius: 8px;
  transition: color var(--trans), background var(--trans);
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
}
.nav-links a:hover          { color: var(--gold-lt); }
.nav-links a:hover::after   { transform: scaleX(1); }
.nav-links a.active         { color: var(--gold); }
.nav-links a.active::after  { transform: scaleX(1); }

.nav-cta {
  margin-left: 8px;
  padding: 9px 20px !important;
  background: var(--gold) !important;
  color: var(--bg) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background var(--trans), transform var(--trans) !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; margin-left: auto; padding: 6px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: var(--trans);
}

/* ── MOBILE NAV ── */
@media (max-width: 860px) {
  .nav-links { display: none; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(18,18,20,.97);
    border-bottom: 1px solid var(--gold-line);
    padding: 12px 0 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 28px; border-radius: 0; }
  .nav-links a::after { left: 28px; right: 28px; }
  .nav-cta { margin: 8px 20px 0 !important; text-align: center; }
  .nav-burger { display: flex; }
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) clamp(20px,6vw,80px) 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  transition: opacity 1s;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,18,20,.88) 0%,
    rgba(18,18,20,.72) 50%,
    rgba(18,18,20,.84) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 780px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-line);
  padding: 6px 18px; border-radius: 30px;
  font-size: 12px; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900; line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-md); max-width: 560px; margin: 0 auto 36px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── HERO PAGE (sub pages) ── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) clamp(20px,6vw,80px) 80px;
  overflow: hidden;
  min-height: 420px;
  display: flex; align-items: center;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(18,18,20,.92) 40%, rgba(18,18,20,.55) 100%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 640px; }
.page-hero h1 {
  font-size: clamp(30px,5vw,52px); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { color: var(--text-md); font-size: 16px; max-width: 480px; }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 700; letter-spacing: .3px;
  cursor: pointer; border: none; transition: var(--trans);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--bg);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,.45); filter: brightness(1.06); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-line);
}
.btn-outline:hover { background: var(--gold-glow); border-color: var(--gold); }

/* ══════════════════════════════════════════════════
   GOLD DIVIDER
══════════════════════════════════════════════════ */
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px; margin: 16px auto 0;
}
.gold-line.left { margin-left: 0; }

/* ══════════════════════════════════════════════════
   SECTION
══════════════════════════════════════════════════ */
.section {
  padding: clamp(60px,8vw,110px) clamp(20px,6vw,80px);
}
.section-alt { background: var(--bg2); }
.section-dark { background: var(--bg3); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header.left { text-align: left; }
.section-eyebrow {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold); margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(26px,4vw,42px); font-weight: 900;
  color: var(--white); line-height: 1.15;
}
.section-header h2 em { font-style: normal; color: var(--gold); }
.section-header p {
  color: var(--text-md); font-size: 16px; max-width: 560px;
  margin: 14px auto 0;
}
.section-header.left p { margin-left: 0; }

/* ══════════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.svc-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  display: flex; flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.4), 0 0 0 1px var(--gold-line);
  border-color: var(--gold-line);
}
.svc-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  filter: brightness(.85) saturate(.7);
  transition: filter var(--trans);
}
.svc-card:hover .svc-card-img { filter: brightness(.95) saturate(.9); }
.svc-card-img-placeholder {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
}
.svc-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-glow); border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.svc-card h3 { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.svc-card p  { font-size: 14px; color: var(--text-md); flex: 1; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 13px; font-weight: 700;
  color: var(--gold); transition: gap var(--trans);
}
.svc-card:hover .svc-card-link { gap: 10px; }

/* ══════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
  border-radius: 16px; overflow: hidden;
}
.stat-item {
  background: var(--bg2);
  padding: 36px 24px; text-align: center;
}
.stat-num {
  font-size: clamp(36px,5vw,52px); font-weight: 900;
  color: var(--gold); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 13px; color: var(--text-md); margin-top: 6px; font-weight: 600; }

/* ══════════════════════════════════════════════════
   FEATURE LIST
══════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.feat-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 14px;
  transition: border-color var(--trans), background var(--trans);
}
.feat-item:hover { border-color: var(--gold-line); background: var(--bg4); }
.feat-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 11px;
  background: var(--gold-glow); border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.feat-item h4 { font-size: 14px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.feat-item p  { font-size: 13px; color: var(--text-md); }

/* ══════════════════════════════════════════════════
   IMAGE GALLERY
══════════════════════════════════════════════════ */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px; border-radius: 16px; overflow: hidden;
}
.img-gallery img {
  width: 100%; height: 220px; object-fit: cover;
  filter: brightness(.8) saturate(.6);
  transition: filter var(--trans), transform var(--trans);
  cursor: pointer;
}
.img-gallery img:hover { filter: brightness(1) saturate(.9); transform: scale(1.02); }

/* ══════════════════════════════════════════════════
   CONTENT SPLIT
══════════════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,72px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 768px) { .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; } }

.split-img {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gold-line);
  position: relative;
}
.split-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.08), transparent);
  pointer-events: none;
}
.split-img img { width: 100%; height: 360px; object-fit: cover; filter: saturate(.7); }

.split-text h2 {
  font-size: clamp(24px,3.5vw,38px); font-weight: 900;
  color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.split-text h2 em { font-style: normal; color: var(--gold); }
.split-text p { color: var(--text-md); margin-bottom: 12px; font-size: 15px; }

/* ══════════════════════════════════════════════════
   QUOTE / CTA BANNER
══════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border: 1px solid var(--gold-line);
  border-radius: 20px;
  padding: clamp(36px,5vw,64px) clamp(24px,5vw,64px);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(24px,4vw,40px); font-weight: 900;
  color: var(--white); margin-bottom: 14px;
}
.cta-banner h2 em { font-style: normal; color: var(--gold); }
.cta-banner p { color: var(--text-md); font-size: 16px; max-width: 520px; margin: 0 auto 32px; }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; background: var(--bg2);
  border: 1px solid rgba(255,255,255,.06); border-radius: 14px;
  transition: border-color var(--trans);
}
.contact-card:hover { border-color: var(--gold-line); }
.contact-card .ci-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--gold-glow); border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-card h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gold); margin-bottom: 4px; }
.contact-card p  { font-size: 14px; color: var(--text-md); }

.contact-form {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: 32px;
}
.contact-form h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 24px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .cf-row { grid-template-columns: 1fr; } }
.cf-group { margin-bottom: 14px; }
.cf-group label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--text-sm); margin-bottom: 6px;
}
.cf-group input, .cf-group textarea, .cf-group select {
  width: 100%; background: var(--bg3);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 10px; color: var(--text);
  font-size: 14px; padding: 11px 14px; outline: none;
  transition: border-color var(--trans);
  font-family: inherit;
}
.cf-group input:focus, .cf-group textarea:focus, .cf-group select:focus {
  border-color: var(--gold-line);
}
.cf-group textarea { min-height: 120px; resize: vertical; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--gold-line);
  padding: 60px clamp(20px,6vw,80px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-sm); max-width: 260px; line-height: 1.8; }

.footer-col h4 {
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--gold); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--text-sm);
  margin-bottom: 9px; transition: color var(--trans);
}
.footer-col a:hover { color: var(--gold-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--text-sm);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom span { color: var(--gold-dk); }

/* ══════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════ */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dk) 100%);
}
.tl-item { position: relative; margin-bottom: 36px; }
.tl-dot {
  position: absolute; left: -24px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px var(--gold-glow);
}
.tl-item h4 { font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.tl-item p  { font-size: 14px; color: var(--text-md); }
.tl-year { font-size: 12px; font-weight: 700; color: var(--gold-dk); margin-bottom: 4px; }

.value-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px;
}
.value-card {
  background: var(--bg2); border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 28px 22px;
  transition: border-color var(--trans);
  text-align: center;
}
.value-card:hover { border-color: var(--gold-line); }
.value-card .vc-icon { font-size: 36px; margin-bottom: 14px; }
.value-card h4 { font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.value-card p  { font-size: 13px; color: var(--text-md); }

/* ══════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════ */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-sm); margin-bottom: 12px;
}
.breadcrumb a { color: var(--gold-dk); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-sm); }

/* ══════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════ */
.container { max-width: 1160px; margin: 0 auto; }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--text-md); }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mt-8 { margin-top: 32px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-glow); border: 1px solid var(--gold-line);
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════
   DETAIL GRID (hizmet detay sayfaları)
══════════════════════════════════════════════════ */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .detail-grid { grid-template-columns: 1fr; } }

.detail-card {
  background: var(--bg2);
  border: 1px solid var(--bg4);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--trans), transform var(--trans);
}
.detail-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
}
.detail-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.detail-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.detail-card p {
  font-size: 13px;
  color: var(--text-md);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   CHECK LIST
══════════════════════════════════════════════════ */
.check-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  font-size: 14px;
  color: var(--text-md);
  padding-left: 4px;
}
.check-list li::first-line { color: var(--gold); }

/* ══════════════════════════════════════════════════
   MINI STATS
══════════════════════════════════════════════════ */
.mini-stat {
  text-align: center;
  padding: 16px 20px;
  background: var(--bg3);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  min-width: 90px;
}
.mini-stat-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.mini-stat-label {
  font-size: 11px;
  color: var(--text-md);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ══════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 900; }
.contact-info h2 em { color: var(--gold); font-style: normal; }

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--bg4);
}
.contact-card:last-child { border-bottom: none; }
.contact-card-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: var(--bg3);
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.contact-card p { font-size: 14px; color: var(--text-md); margin-bottom: 0; }
.contact-card a { color: var(--text); transition: color var(--trans); }
.contact-card a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--bg4);
  border-radius: 16px;
  padding: 36px 32px;
}
.contact-form-wrap h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 4px;
}
.contact-form-wrap h3 em { color: var(--gold); font-style: normal; }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) { .contact-form .form-row { grid-template-columns: 1fr; } }

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.contact-form label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-md);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg3);
  border: 1px solid var(--bg4);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  width: 100%;
  transition: border-color var(--trans);
  outline: none;
  font-family: inherit;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-form select option { background: var(--bg3); }

/* ══════════════════════════════════════════════════
   MAP PLACEHOLDER
══════════════════════════════════════════════════ */
.map-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #0d1117, #1a2030);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.map-overlay {
  text-align: center;
  z-index: 1;
}
.map-pin { font-size: 48px; margin-bottom: 12px; }
.map-overlay h3 { font-size: 22px; font-weight: 800; color: var(--gold); margin-bottom: 6px; }
.map-overlay p  { font-size: 14px; color: var(--text-md); }
