/* ============================================================
   PROXADS THEME — MAIN STYLES
   Tüm renk ve yazı tipi değişkenleri burada
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* ANA RENKLER — Buradan tek yerden değiştirebilirsin */
  --color-brand:       #7c3aed;
  --color-brand-dark:  #5b21b6;
  --color-brand-light: #ede9fe;
  --color-bg-hero:     #1e1033;
  --color-btn:         #7c3aed;
  --color-btn-text:    #ffffff;
  --color-title:       #0f172a;
  --color-sub:         #c4b5fd;
  --color-card-bg:     #ffffff;
  --color-blue:        #3b82f6;
  --color-green:       #7c3aed;
  --color-yellow:      #f59e0b;
  --color-red:         #ef4444;
  --color-muted:       #94a3b8;
  --color-border:      #e2e8f0;
  --color-text-dark:   #0f172a;
  --color-text-mid:    #64748b;

  /* YAZI TİPİ */
  --font-main: 'Plus Jakarta Sans', sans-serif;

  /* BOYUTLAR */
  --border-radius-card: 18px;
  --border-radius-btn:  50px;
  --shadow-card: 0 2px 14px rgba(0,0,0,0.07);
}

/* ============================================================
   GENEL RESET
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--color-title);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ============================================================
   SITE WRAPPER
============================================================ */
.site-wrapper {
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================================
   HEADER / NAV — Hero ile birleşik, tam genişlik koyu mor
============================================================ */
.site-header {
  width: 100%;
  padding: 0 56px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1e1033 !important;
  border-bottom: none !important;
  position: relative;
  z-index: 100;
}

.site-logo {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.site-logo span { color: #a78bfa; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #c4b5fd;
  transition: color 0.2s;
}

.site-nav a:hover { color: #ffffff; }

.nav-cta {
  background: #7c3aed !important;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 14px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--color-brand-dark); }

/* ============================================================
   HERO SECTION — Header ile seamless birleşim
============================================================ */
.hero-section {
  background: #1e1033 !important;
  padding: 48px 56px 72px;
  border-radius: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 28px;
  align-items: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

/* Arkaplan dekoratif daireler */
.hero-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  bottom: -150px;
  left: -50px;
  pointer-events: none;
}

/* KART TEMEL */
.card {
  background: var(--color-card-bg);
  border-radius: var(--border-radius-card);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
}

/* ---- SOL KOLON ---- */
.hero-left  { display: flex; flex-direction: column; gap: 18px; position: relative; z-index: 1; }
.hero-right { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }

/* BİDDİNG KARTI */
.bidding-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 14px;
}

.bid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 8px;
}

.bid-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.bid-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.bid-icon.blue   { background: #dbeafe; }
.bid-icon.green  { background: #ede9fe; }
.bid-icon.yellow { background: #fef9c3; }
.bid-icon.teal   { background: #e0e7ff; }
.bid-icon.purple { background: #ede9fe; }

/* YÖNETİCİ KARTI */
.manager-card { padding: 0; overflow: hidden; }

.manager-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.bell-wrap {
  position: relative;
  width: 38px;
  height: 38px;
  background: #ede9fe;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.bell-dot {
  width: 9px;
  height: 9px;
  background: var(--color-red);
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  top: 4px;
  right: 4px;
}

.manager-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-blue);
}

.manager-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.manager-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manager-avatar svg { width: 40px; height: 40px; }

.bars-icon {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}

.bar-item {
  width: 5px;
  background: var(--color-brand);
  border-radius: 2px;
}

.person-badge {
  width: 34px;
  height: 34px;
  background: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.manager-info {
  border-top: 1px solid #f1f5f9;
  padding: 14px 16px;
}

.manager-label {
  font-size: 11px;
  color: var(--color-brand);
  font-weight: 700;
  margin-bottom: 3px;
}

.manager-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.manager-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--color-text-mid);
  margin-bottom: 3px;
}

/* ---- ORTA KOLON ---- */
.hero-center { text-align: center; position: relative; z-index: 1; }

.hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 15px;
  color: #c4b5fd;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  display: inline-block;
  background: #7c3aed !important;
  color: var(--color-btn-text);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  padding: 17px 40px;
  border-radius: var(--border-radius-btn);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.hero-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ---- SAĞ KOLON ---- */
.chart-card { padding: 14px 16px; }

.chart-heading {
  font-size: 11px;
  color: var(--color-text-mid);
  font-weight: 500;
  margin-bottom: 10px;
}

.chart-wrap {
  position: relative;
  height: 84px;
}

.bln-badge {
  position: absolute;
  top: 2px;
  right: 6px;
  background: var(--color-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 1;
}

.chart-x-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--color-muted);
  margin-top: 5px;
  padding: 0 2px;
}

.chart-x-labels .active {
  color: var(--color-blue);
  font-weight: 700;
}

.metrics-row { display: flex; gap: 14px; }
.metric-item  { flex: 1; }

.metric-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.metric-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.metric-icon.blue   { background: #dbeafe; }
.metric-icon.green  { background: #ede9fe; }
.metric-icon.yellow { background: #fef9c3; }

.metric-label-text { font-size: 11px; color: var(--color-text-mid); font-weight: 500; }

.metric-value { font-size: 17px; font-weight: 800; }
.metric-value.blue   { color: var(--color-blue); }
.metric-value.green  { color: var(--color-green); }
.metric-value.yellow { color: var(--color-yellow); }

.awards-row { display: flex; gap: 8px; }

.award-badge {
  flex: 1;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 8px 6px;
  font-size: 8.5px;
  text-align: center;
  color: #334155;
  line-height: 1.4;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.award-badge strong {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 2px;
}

.award-badge .award-year { color: var(--color-muted); font-size: 8px; }
.award-badge .award-red  { color: var(--color-red); font-weight: 700; font-size: 9px; }

/* ============================================================
   FOOTER PLACEHOLDER — Sonraki build için hazır
============================================================ */
.site-footer {
  margin-top: 80px;
  padding: 40px 48px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 13px;
  color: var(--color-text-mid);
}

/* ============================================================
   AWARDS CAROUSEL SECTION — 2. Section
============================================================ */

.awards-section {
  padding: 48px 0 32px;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

/* Carousel wrapper — slides yan yana, overflow gizli */
.awards-carousel {
  position: relative;
  width: 100%;
  min-height: 120px;
}

/* Her slide */
.awards-slide {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  animation: awardsFadeIn 0.35s ease;
}

.awards-slide.is-active {
  display: flex;
}

@keyframes awardsFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tek ödül kutusu */
.award-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 40px;
}

/* Dikey ayırıcı çizgi */
.awards-divider {
  width: 1px;
  height: 70px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Logo alanı */
.award-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  color: #7c3aed;
}

.award-logo-text {
  font-size: 12px;
  font-weight: 700;
  color: #7c3aed;
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
}

/* Ödül adı */
.award-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.3;
  max-width: 180px;
}

/* NOKTA SAYFALAMA */
.awards-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.awards-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.2s;
  outline: none;
}

.awards-dot.is-active {
  background: #6b7280;
  transform: scale(1.15);
}

.awards-dot:hover:not(.is-active) {
  background: #9ca3af;
}

/* ============================================================
   MOBİL RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-section { 
    grid-template-columns: 220px 1fr 220px;
    padding: 40px 28px;
    margin: 16px 16px 0;
  }
  .hero-title { font-size: 34px; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .site-nav { display: none; }

  .hero-section { 
    grid-template-columns: 1fr;
    margin: 12px 12px 0;
    padding: 32px 20px;
    min-height: auto;
  }

  .hero-left,
  .hero-right { display: none; }

  .hero-title { font-size: 30px; }
}

/* ══════════════════════════════════════════
   LEGAL PAGES — Terms of Service & Privacy
══════════════════════════════════════════ */
.legal-page {
  background: #fff;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.legal-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 48px 80px;
}

/* Header */
.legal-header { margin-bottom: 40px; }
.legal-badge {
  display: inline-block;
  background: #ede9fe;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.legal-title {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.15;
}
.legal-meta { font-size: 14px; color: #64748b; }

/* Table of Contents */
.legal-toc {
  background: #f8f7ff;
  border: 1px solid #ede9fe;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.legal-toc-title {
  font-size: 13px;
  font-weight: 700;
  color: #4c1d95;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.legal-toc ol {
  padding-left: 18px;
  margin: 0;
  columns: 2;
  gap: 8px;
}
.legal-toc li { margin-bottom: 6px; }
.legal-toc a {
  font-size: 13px;
  color: #7c3aed;
  text-decoration: none;
  font-weight: 500;
}
.legal-toc a:hover { text-decoration: underline; }

/* Body */
.legal-body section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid #f1f5f9;
}
.legal-body section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.legal-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  scroll-margin-top: 32px;
}
.legal-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 18px 0 8px;
}
.legal-body p {
  font-size: 14px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-body ul, .legal-body ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-body li {
  font-size: 14px;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-body a { color: #7c3aed; text-decoration: underline; }
.legal-body a:hover { color: #5b21b6; }
.legal-body strong { color: #0f172a; font-weight: 700; }

/* Contact block */
.legal-contact {
  background: #f8f7ff;
  border-left: 3px solid #7c3aed;
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin-top: 16px;
}
.legal-contact p { margin-bottom: 8px; }
.legal-contact p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .legal-inner { padding: 40px 20px; }
  .legal-title { font-size: 28px; }
  .legal-toc ol { columns: 1; }
}
