/* ===========================================
   POOLTR - Asıl Film - Ana Stil Dosyası
   Renkler: Laci #0d1b3d | Kırmızı #a3282f | Gold #c9a227 | Beyaz #ffffff
   =========================================== */

:root {
  --navy: #0d1b3d;
  --navy-soft: #3a4560;
  --red: #a3282f;
  --gold: #c9a227;
  --gold-dark: #3c2f05;
  --bg-soft: #f7f5ef;
  --border-soft: #e6e2d4;
  --white: #ffffff;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--navy-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.site-header {
  background: rgba(255,255,255,0.96);
  border-bottom: 2px solid var(--gold);
  position: relative;
  z-index: 100;
}
.site-header.on-hero {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.9);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}
.header-right { display: flex; align-items: center; gap: 20px; }
.search-box input {
  background: var(--bg-soft);
  border: none;
  border-radius: 18px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--navy-soft);
  width: 160px;
}
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.lang-switch a { color: var(--navy-soft); font-weight: 500; }
.lang-switch a.active { color: var(--red); font-weight: 700; }
.lang-switch .sep { color: #ccc; }

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  padding: 0 24px 14px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  flex-wrap: wrap;
}
.main-nav a { color: var(--navy-soft); padding-bottom: 3px; white-space: nowrap; }
.main-nav a.active { color: var(--navy); font-weight: 700; border-bottom: 2px solid var(--gold); }
.main-nav a.nav-contact { color: var(--red); font-weight: 600; }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-menu-toggle span { width: 22px; height: 2px; background: var(--navy); }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--navy);
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 160%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: heroSlide 10s ease-in-out infinite;
}
.hero-slide.slide-a { background-image: linear-gradient(100deg,#c9a227,#8a7550 40%,#3a2f1a); z-index: 2; }
@keyframes heroSlide {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-32%); }
  100% { transform: translateX(0); }
}
.hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.85) 28%,
    rgba(255,255,255,0.35) 55%,
    rgba(255,255,255,0) 75%);
  z-index: 3;
}
.hero-content {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 55%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 130px 60px 24px;
  /* padding-top, header'ın (yaklaşık) yüksekliği kadar boşluk bırakır,
     böylece içerik hiçbir zaman header'ın arkasına/altına kaymaz */
}
.hero-goldline { width: 56px; height: 4px; background: var(--gold); margin-bottom: 22px; }
.hero-h1 { color: var(--navy); font-size: 38px; font-weight: 700; line-height: 1.25; max-width: 560px; }
.hero-sub { color: var(--navy-soft); font-size: 16px; margin-top: 18px; }
.hero-alt { color: #a3822a; font-size: 15px; margin-top: 10px; font-weight: 600; }
.hero-cta {
  margin-top: 28px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
  transition: background 0.2s;
}
.hero-cta:hover { background: #8c2129; }
.hero-credit {
  position: absolute; bottom: 14px; right: 20px; z-index: 4;
  color: rgba(255,255,255,0.85); font-size: 11px;
}

/* ============ SECTOR SECTION (Ana Sayfa) ============ */
.sector-section { padding: 60px 24px; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 36px; }
.section-title h2 { color: var(--navy); font-size: 28px; font-weight: 700; }
.section-title h2 .red { color: var(--red); }
.section-title .underline { width: 48px; height: 3px; background: var(--gold); margin: 12px auto 0; }

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sector-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 190px;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}
.sector-card:hover { transform: translateY(-3px); }
.sector-card .overlay { position: absolute; inset: 0; background: rgba(13,27,61,0.45); }
.sector-card .sector-name { position: absolute; top: 16px; left: 18px; color: #fff; font-size: 18px; font-weight: 700; }
.sector-card .sector-cta {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--gold); color: var(--gold-dark);
  font-size: 12px; font-weight: 700;
  padding: 8px 14px; border-radius: 5px;
}
.sector-card .sector-cta:hover { background: #b8901f; }

.more-btn-wrap { text-align: center; margin-top: 34px; }
.more-btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 6px;
  transition: background 0.2s;
}
.more-btn:hover { background: #1a2c56; }

/* ============ PAGE BANNER (iç sayfalar) ============ */
.page-banner {
  position: relative;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-banner::before { content: ""; position: absolute; inset: 0; background: rgba(13,27,61,0.45); }
.page-banner h1 { position: relative; color: #fff; font-size: 34px; font-weight: 700; }
.page-banner .underline { position: relative; width: 50px; height: 3px; background: var(--gold); margin-top: 14px; }

/* ============ FOOTER ============ */
.site-footer { background: #fff; border-top: 2px solid var(--gold); padding: 18px 24px; }
.footer-nav {
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
  max-width: 1200px; margin: 0 auto; font-size: 13px;
}
.footer-nav a { color: var(--navy-soft); }
.footer-nav a.footer-contact { color: var(--red); font-weight: 600; }
.footer-lang { margin-left: 0; }

.footer-redstrip { background: var(--red); padding: 16px; text-align: center; overflow: hidden; }
.redstrip-inner { display: inline-flex; align-items: center; gap: 10px; animation: popCenter 4s ease-in-out infinite; transform-origin: center; }
@keyframes popCenter {
  0%   { transform: scale(0.4); opacity: 0; }
  25%  { transform: scale(1); opacity: 1; }
  75%  { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.4); opacity: 0; }
}
.pooltr-mark {
  width: 26px; height: 26px; border: 2px solid var(--gold); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.redstrip-text { color: #fff; font-size: 13px; font-weight: 500; letter-spacing: 0.4px; white-space: nowrap; }
.redstrip-text .gold { color: var(--gold); }

.footer-copyright { text-align: center; font-size: 12px; color: #999; padding: 12px 0; background: #fff; }

/* ===========================================
   RESPONSIVE - Tablet (<= 1024px)
   =========================================== */
@media (max-width: 1024px) {
  .hero { height: 480px; }
  .hero-content { width: 62%; padding: 120px 40px 24px; }
  .hero-h1 { font-size: 30px; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================================
   RESPONSIVE - Tablet dikey / büyük telefon (<= 768px)
   =========================================== */
@media (max-width: 768px) {
  .header-top { padding: 12px 16px; }
  .search-box input { width: 110px; }
  .mobile-menu-toggle { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px 18px;
  }
  .main-nav.open { display: flex; }

  .hero { height: 620px; }
  .hero-content { width: 100%; padding: 110px 24px 24px; text-align: left; }
  /* Not: 768px altında ana nav gizli (hamburger menü), bu yüzden header
     kısa oluyor — padding-top da buna göre azaltıldı */
  .hero-fade {
    background: linear-gradient(180deg,
      rgba(255,255,255,0.97) 0%,
      rgba(255,255,255,0.9) 45%,
      rgba(255,255,255,0.4) 75%,
      rgba(255,255,255,0) 100%);
  }
  .hero-h1 { font-size: 26px; }

  .sector-grid { grid-template-columns: 1fr; }
  .section-title h2 { font-size: 22px; }

  .footer-nav { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-lang { margin-top: 4px; }
}

/* ===========================================
   RESPONSIVE - Telefon (<= 480px)
   =========================================== */
@media (max-width: 480px) {
  .logo { font-size: 18px; }
  .search-box input { width: 90px; font-size: 12px; }
  .hero-h1 { font-size: 21px; }
  .hero-sub, .hero-alt { font-size: 12.5px; }
  .hero-cta { padding: 11px 22px; font-size: 13px; }
  .sector-card { height: 150px; }
  .page-banner h1 { font-size: 24px; }
  .redstrip-text { font-size: 10px; white-space: normal; text-align: center; }
}

/* ===========================================
   RESPONSIVE - Yatay telefon (kısa yükseklik)
   =========================================== */
@media (max-height: 420px) and (orientation: landscape) {
  .hero { height: 380px; }
  .hero-content { padding: 95px 40px 16px; }
  .hero-goldline { margin-bottom: 10px; }
  .hero-h1 { font-size: 19px; }
  .hero-sub { font-size: 12px; margin-top: 8px; }
  .hero-alt { font-size: 11px; margin-top: 6px; }
  .hero-cta { margin-top: 14px; padding: 9px 20px; font-size: 12px; }
  .page-banner { height: 120px; }
}

/* ============ SEKTÖRLER SAYFASI ============ */
.sektorler-intro { text-align: center; padding: 44px 24px 10px; }
.sektorler-intro h1 { color: var(--navy); font-size: 28px; font-weight: 700; }
.sektorler-intro .underline { width: 48px; height: 3px; background: var(--gold); margin: 12px auto 0; }

.sector-list-wrap { max-width: 900px; margin: 0 auto; padding: 20px 24px 10px; }
.sector-group { display: none; }
.sector-group.active { display: block; }

.srow {
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 14px;
}
.srow .thumb { width: 96px; height: 96px; border-radius: 8px; flex-shrink: 0; background-size: cover; background-position: center; }
.srow .srow-body { flex: 1; min-width: 0; }
.srow .srow-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.srow .name { font-size: 16px; font-weight: 700; color: var(--navy); }
.srow .export-badge { font-size: 11px; font-weight: 600; color: var(--red); background: #fdf3f2; border-radius: 10px; padding: 2px 9px; white-space: nowrap; }
.srow .desc { font-size: 13px; color: var(--navy-soft); margin-top: 6px; line-height: 1.6; }
.srow .cta {
  margin-top: 10px;
  background: var(--red); color: #fff; font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 5px; display: inline-block;
}
.srow .cta:hover { background: #8c2129; }

.sector-pagination { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; }
.sp-arrow {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--gold); padding: 4px 8px;
  font-family: inherit;
}
.sp-arrow:disabled { color: var(--border-soft); cursor: default; }
.sp-dots { display: flex; gap: 6px; }
.sp-dot { width: 18px; height: 3px; background: var(--border-soft); border: none; padding: 0; cursor: pointer; }
.sp-dot.active { background: var(--gold); }
.sp-ileri { color: var(--red); font-weight: 700; font-size: 13px; background: none; border: none; cursor: pointer; font-family: inherit; }
.sp-ileri:disabled { color: var(--border-soft); cursor: default; }
.sp-status { text-align: center; margin-top: 6px; font-size: 12px; color: #999; }

.tradebox { max-width: 900px; margin: 34px auto 60px; background: var(--bg-soft); border-radius: 8px; padding: 24px 28px; }
.tradebox h3 { color: var(--navy); font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.tradebox p { color: var(--navy-soft); font-size: 13.5px; line-height: 1.75; }

@media (max-width: 600px) {
  .srow { flex-direction: column; align-items: flex-start; }
  .srow .thumb { width: 100%; height: 140px; }
}

/* ============ TÜRKİYE DIŞ TİCARETİ SAYFASI ============ */
.trade-section { max-width: 900px; margin: 0 auto; padding: 44px 24px 60px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
.stat-card { background: var(--bg-soft); border-radius: 8px; padding: 22px; text-align: center; }
.stat-card .stat-num { color: var(--red); font-size: 28px; font-weight: 700; }
.stat-card .stat-lbl { color: var(--navy-soft); font-size: 13px; margin-top: 6px; }

.chipbox { background: var(--bg-soft); border-radius: 8px; padding: 20px 24px; margin-bottom: 30px; }
.chipbox h3 { color: var(--navy); font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.chip { background: #fff; border: 1px solid var(--border-soft); border-radius: 16px; padding: 8px 15px; font-size: 12.5px; color: var(--navy-soft); }
.chip-cta { background: var(--red); color: #fff; border: none; font-weight: 700; }
.chip-cta:hover { background: #8c2129; }

.edrow { display: flex; gap: 26px; align-items: center; margin-top: 30px; }
.edrow.rev { flex-direction: row-reverse; }
.edimg { width: 220px; height: 160px; border-radius: 8px; flex-shrink: 0; }
.edtext h4 { color: var(--navy); font-size: 18px; font-weight: 700; }
.edtext p { color: var(--navy-soft); font-size: 14px; margin-top: 10px; line-height: 1.75; }

@media (max-width: 700px) {
  .stat-grid { grid-template-columns: 1fr; }
  .edrow, .edrow.rev { flex-direction: column; align-items: flex-start; }
  .edimg { width: 100%; height: 160px; }
}

/* ============ VİZYONUMUZ SAYFASI ============ */
.vision-section { max-width: 800px; margin: 0 auto; padding: 44px 24px 60px; }
.vblock, .mblock { padding-left: 22px; margin-bottom: 28px; }
.vblock { border-left: 4px solid var(--gold); }
.mblock { border-left: 4px solid var(--red); }
.vblock h3, .mblock h3 { color: var(--navy); font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.vblock p, .mblock p { color: var(--navy-soft); font-size: 14.5px; line-height: 1.8; }

.brandbox { background: var(--navy); border-radius: 8px; padding: 26px 30px; margin-top: 10px; }
.brandbox .brand-tag { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: 1px; margin-bottom: 12px; }
.brandbox p { color: #dfe3ee; font-size: 14px; line-height: 1.8; }

@media (max-width: 600px) {
  .vision-section { padding: 34px 20px 44px; }
  .brandbox { padding: 20px; }
}

/* ============ HAKKIMIZDA SAYFASI ============ */
.about-section { max-width: 800px; margin: 0 auto; padding: 44px 24px 60px; }
.story-block h3 { color: var(--navy); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.story-block p { color: var(--navy-soft); font-size: 14px; line-height: 1.75; }

.team-row { display: flex; gap: 16px; align-items: center; margin-top: 28px; }
.team-row .avatar {
  width: 60px; height: 60px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 22px; font-weight: 700; flex-shrink: 0;
}
.team-row h4 { color: var(--navy); font-size: 15px; font-weight: 700; }
.team-row p { color: var(--navy-soft); font-size: 13px; margin-top: 4px; }

.why-box { background: var(--bg-soft); border-radius: 8px; padding: 22px 26px; margin-top: 28px; }
.why-box h3 { color: var(--navy); font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.why-item { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; font-size: 14px; color: var(--navy-soft); }
.why-item .ck { color: var(--red); font-weight: 700; }

.about-stat-row { margin-top: 34px; }
.lead-title { color: var(--navy); font-size: 16px; font-weight: 700; text-align: center; margin-bottom: 18px; }
.lead-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lead-card { background: var(--navy); border-radius: 8px; padding: 20px 12px; text-align: center; }
.lead-card .lead-badge { font-size: 22px; margin-bottom: 6px; }
.lead-card .lead-name { color: #fff; font-size: 14px; font-weight: 700; }
.lead-card .lead-rank { color: var(--gold); font-size: 12px; font-weight: 600; margin-top: 4px; }

@media (max-width: 600px) {
  .lead-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .lead-card { padding: 14px 6px; }
  .lead-card .lead-name { font-size: 11.5px; }
  .lead-card .lead-rank { font-size: 10px; }
}

/* ============ İLETİŞİM SAYFASI ============ */
.contact-section { max-width: 900px; margin: 0 auto; padding: 44px 24px 60px; }
.contact-form-box { background: var(--bg-soft); border-radius: 8px; padding: 26px 28px; max-width: 460px; margin: 0 auto; }
.contact-form-box h3 { color: var(--navy); font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea {
  background: #fff; border: 1px solid var(--border-soft); border-radius: 5px;
  padding: 11px 13px; font-size: 14px; font-family: inherit; color: var(--navy-soft);
  width: 100%;
}
.contact-form textarea { resize: vertical; }
.contact-form button {
  background: var(--red); color: #fff; font-size: 14px; font-weight: 700;
  border: none; border-radius: 5px; padding: 12px; cursor: pointer; font-family: inherit;
}
.contact-form button:hover { background: #8c2129; }

.form-alert { border-radius: 5px; padding: 10px 14px; font-size: 13px; margin-bottom: 14px; }
.form-alert.success { background: #e6f4ea; color: #1e6b3a; }
.form-alert.error { background: #fdf3f2; color: var(--red); }

.contact-info-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 34px; }
.info-row { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--navy-soft); }
.info-row .ic { color: var(--red); font-weight: 700; }

.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-badge {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 12px; font-weight: 700;
}
.social-badge svg { display: block; }
.social-badge:hover { background: #1a2c56; }

/* ============ TEKLİF VER FORMU (RFQ) ============ */
.rfq-section { max-width: 760px; margin: 0 auto; padding: 40px 24px 60px; }
.rfq-alert { max-width: 100%; margin-bottom: 20px; }
.rfq-form { display: flex; flex-direction: column; gap: 26px; }
.rfq-group { background: var(--bg-soft); border-radius: 8px; padding: 20px 22px; display: flex; flex-direction: column; gap: 12px; }
.rfq-group h3 { color: var(--navy); font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.rfq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rfq-form input, .rfq-form select, .rfq-form textarea {
  background: #fff; border: 1px solid var(--border-soft); border-radius: 5px;
  padding: 10px 12px; font-size: 13.5px; font-family: inherit; color: var(--navy-soft);
  width: 100%;
}
.rfq-form textarea { resize: vertical; grid-column: 1 / -1; }
.rfq-file-label { font-size: 13px; color: var(--navy-soft); display: flex; flex-direction: column; gap: 6px; }
.rfq-file-label input[type="file"] { font-size: 12.5px; }
.rfq-required-note { font-size: 12px; color: #999; text-align: center; }
.rfq-submit {
  background: var(--red); color: #fff; font-size: 14px; font-weight: 700;
  border: none; border-radius: 6px; padding: 13px; cursor: pointer; font-family: inherit;
}
.rfq-submit:hover { background: #8c2129; }

@media (max-width: 640px) {
  .rfq-grid { grid-template-columns: 1fr; }
}
.legal-content h3 { color: var(--navy); font-size: 15.5px; font-weight: 700; margin: 26px 0 8px; }
.legal-content h3:first-of-type { margin-top: 6px; }
.legal-content p { color: var(--navy-soft); font-size: 14px; line-height: 1.75; margin-bottom: 4px; }
.legal-content .legal-updated { color: #999; font-size: 12.5px; margin-bottom: 20px; font-style: italic; }
.footer-legal-sep { margin: 0 6px; opacity: 0.5; }
.footer-legal-link { text-decoration: underline; }
.contact-mail-link { color: inherit; text-decoration: underline; }
.contact-mail-link:hover { color: var(--red); }
.country-flag { font-weight: 600; margin-left: 4px; }
/* Teklif Ver - başarılı gönderim sonrası süreç kartı (ayrıcalıklı/motifli tasarım) */
.rfq-success-card {
  position: relative;
  max-width: 580px; margin: 0 auto; background: #fffdf9;
  border-radius: 4px; padding: 44px 38px 34px; text-align: center;
  box-shadow: 0 4px 28px rgba(0,0,0,0.1);
  border: 1px solid var(--gold);
  outline: 1px solid var(--gold);
  outline-offset: -7px;
}
.rfq-success-logo { margin-bottom: 20px; }
.rfq-success-logo img { height: 69px; margin: 0 auto; }


.rfq-success-corner { position: absolute; width: 34px; height: 34px; opacity: 0.85; }
.rfq-success-corner svg { width: 100%; height: 100%; }
.rfq-success-corner.tl { top: 8px; left: 8px; }
.rfq-success-corner.tr { top: 8px; right: 8px; transform: scaleX(-1); }
.rfq-success-corner.bl { bottom: 8px; left: 8px; transform: scaleY(-1); }
.rfq-success-corner.br { bottom: 8px; right: 8px; transform: scale(-1,-1); }

.rfq-success-seal { width: 62px; height: 62px; margin: 0 auto 20px; }
.rfq-success-eyebrow { color: var(--gold); font-size: 11.5px; letter-spacing: 2.5px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }
.rfq-success-card h2 { color: var(--navy); font-size: 22px; margin: 0 0 12px; font-weight: 700; }
.rfq-success-lead { color: var(--navy-soft); font-size: 14.5px; margin: 0 auto 8px; line-height: 1.6; max-width: 440px; }

.rfq-success-divider { display:flex; align-items:center; justify-content:center; gap:10px; margin: 22px auto; width: 220px; }
.rfq-success-divider .line { flex:1; height:1px; background: var(--gold); opacity:0.5; }
.rfq-success-divider svg { width: 16px; height: 16px; }

.rfq-success-steps { display: flex; flex-direction: column; gap: 38px; text-align: left; margin: 0 auto 30px; max-width: 440px; }
.rfq-success-step { display: flex; align-items: flex-start; gap: 22px; font-size: 14px; color: var(--navy-soft); line-height: 1.7; }
.rfq-success-num {
  flex-shrink: 0; width: 27px; height: 27px; border-radius: 50%; background: var(--navy);
  color: var(--gold); font-size: 12.5px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.rfq-success-footer { font-size: 12.5px; color: #a3852f; font-style: italic; margin: 0; }

/* Dış Ticaret - Güncel Haberler kutusu */
.trade-news-box { margin-top: 40px; background: var(--bg-soft); border-radius: 10px; padding: 28px 26px; }
.trade-news-box h3 { color: var(--navy); font-size: 17px; margin-bottom: 18px; }
.trade-news-list { display: flex; flex-direction: column; gap: 4px; }
.trade-news-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 12px 4px; border-bottom: 1px solid var(--border-soft); text-decoration: none;
}
.trade-news-item:last-child { border-bottom: none; }
.trade-news-item-title { color: var(--navy-soft); font-size: 14px; line-height: 1.45; }
.trade-news-item:hover .trade-news-item-title { color: var(--red); }
.trade-news-item-source { flex-shrink: 0; color: #999; font-size: 11.5px; white-space: nowrap; }
.trade-news-disclaimer { margin: 16px 4px 0; font-size: 11.5px; color: #999; font-style: italic; }

@media (max-width: 600px) {
  .trade-news-item { flex-direction: column; gap: 3px; }
}




