/* ===========================================
   BERDUŞ TEKEL — Gece Nöbetçisi Tema
   Palet: Antrasit gece + sokak lambası ambere
   =========================================== */

:root {
  --bg-base: #0d1117;
  --bg-surface: #161b22;
  --bg-surface-raised: #1c2229;
  --border-card: rgba(232, 148, 12, 0.14);
  --border-card-hover: rgba(232, 148, 12, 0.35);

  --amber-primary: #e8940c;
  --amber-soft: #f2ab35;
  --copper: #c9772a;

  --text-main: #f4ede1;
  --text-muted: #8b93a1;
  --text-faint: #5b6472;

  --wa-green: #22c55e;
  --danger: #ef4444;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-lamp: 0 0 40px rgba(232, 148, 12, 0.15);
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--amber-primary);
  outline-offset: 3px;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }

.text-amber { color: var(--amber-primary); }

/* ============ Announcement Bar ============ */
.announcement-bar {
  background: #08090c;
  border-bottom: 1px solid var(--border-card);
  padding: 9px 0;
  overflow: hidden;
}
.announcement-content {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.announcement-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.announcement-item i { color: var(--amber-primary); font-size: 0.8rem; }
.announcement-item strong { color: var(--text-main); font-weight: 600; }

@media (max-width: 640px) {
  .announcement-bar { display: none; }
}

/* ============ Header ============ */
.site-header {
  background: rgba(13, 17, 23, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-card);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 9px 0;
  transition: box-shadow 0.25s, background 0.25s;
}
.site-header.scrolled {
  background: rgba(13, 17, 23, 0.97);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 42px; height: 58px;
  border-radius: var(--radius-sm);
  background: linear-gradient(155deg, var(--amber-primary), var(--copper));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #100b03;
  box-shadow: 0 4px 16px rgba(232, 148, 12, 0.3);
  flex-shrink: 0;
}
.brand-info h1 { font-size: 1.02rem; line-height: 1.1; }
.brand-info span { font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.02em; }

.header-actions { display: flex; align-items: center; gap: 8px; }

.badge-live {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  padding: 5px 11px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 600;
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50% { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
}

.btn-header-call {
  display: none;
  align-items: center; gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  font-size: 0.76rem; font-weight: 600;
  color: var(--text-main);
  transition: border-color 0.2s;
}
.btn-header-call:hover { border-color: var(--border-card-hover); }

.btn-header-wa {
  display: flex;
  align-items: center; gap: 6px;
  padding: 7px 13px;
  background: var(--wa-green);
  border-radius: var(--radius-sm);
  font-size: 0.76rem; font-weight: 700;
  color: #08290f;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.25);
}
.btn-header-wa:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35); }

@media (min-width: 640px) { .badge-live { display: flex; } }
@media (min-width: 860px) { .btn-header-call { display: flex; } }

/* ============ Hero Section ============ */
.hero-section {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 17, 23, 0.55) 0%,
    rgba(13, 17, 23, 0.65) 35%,
    rgba(13, 17, 23, 0.88) 72%,
    rgba(13, 17, 23, 1) 100%
  );
}


@media (max-width: 700px) {
  .hero-bg-layer {
    height: 480px;
  }
  .hero-bg-layer::before {
    background: linear-gradient(
      180deg,
      rgba(13, 17, 23, 0.5) 0%,
      rgba(13, 17, 23, 0.75) 40%,
      rgba(13, 17, 23, 0.97) 70%,
      rgba(13, 17, 23, 1) 100%
    );
  }
}



.lamp-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(232, 148, 12, 0.16) 0%, rgba(232, 148, 12, 0.04) 45%, transparent 70%);
  pointer-events: none;
  animation: flicker 5s ease-in-out infinite;
  z-index: 1;
}
@keyframes flicker {
  0%, 100% { opacity: 1; }
  48% { opacity: 1; }
  50% { opacity: 0.85; }
  52% { opacity: 1; }
  76% { opacity: 1; }
  78% { opacity: 0.92; }
  80% { opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-grid-single {
  grid-template-columns: 1fr;
  max-width: 700px;
}

.badge-notice {
  display: inline-flex;
  align-items: center; gap: 9px;
  background: rgba(232, 148, 12, 0.08);
  border: 1px solid var(--border-card);
  color: var(--amber-soft);
  padding: 8px 15px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 18px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--amber-soft);
  margin-bottom: 32px;
}
.hero-tagline strong { font-style: normal; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-primary-wa, .btn-secondary-call {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}
.btn-primary-wa {
  background: var(--wa-green);
  color: #08290f;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
}
.btn-primary-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35); }

.btn-secondary-call {
  border: 1px solid var(--border-card);
  color: var(--text-main);
  background: rgba(13, 17, 23, 0.4);
}
.btn-secondary-call:hover { border-color: var(--border-card-hover); background: rgba(232, 148, 12, 0.08); }

.cash-notice-box {
  display: flex; gap: 16px;
  background: rgba(13, 17, 23, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 28px;
  max-width: 480px;
}
.cash-notice-box > i { font-size: 1.4rem; color: var(--amber-primary); margin-top: 2px; }
.cash-notice-text h4 { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--amber-soft); margin-bottom: 6px; font-family: var(--font-body); }
.cash-notice-text p { font-size: 0.86rem; color: var(--text-muted); }

.hero-stats-standalone {
  margin-top: 48px;
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 2;
}
@media (min-width: 700px) {
  .hero-stats-standalone { grid-template-columns: repeat(4, 1fr); }
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-item {
  background: var(--bg-surface-raised);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
}
.stat-item i { color: var(--amber-primary); font-size: 1.2rem; margin-bottom: 10px; }
.stat-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.stat-item p { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-body); }

/* ============ Section Shared ============ */
.section-padding { padding: 76px 0; }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber-primary);
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; font-weight: 600; }
.section-desc { color: var(--text-muted); font-size: 0.98rem; }

/* ============ Trust Pillars ============ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.trust-card:hover { border-color: var(--border-card-hover); transform: translateY(-3px); }
.trust-card i {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232, 148, 12, 0.1);
  border-radius: var(--radius-sm);
  color: var(--amber-primary);
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.trust-card h3 { font-size: 1.08rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 700; }
.trust-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ============ Product Tiles (statik, görsel tabanlı) ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 620px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-tile {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.product-tile:hover { border-color: var(--border-card-hover); transform: translateY(-2px); }

.product-tile-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-surface-raised);
  overflow: hidden;
}
.product-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-tile-label {
  padding: 12px 10px;
  min-height: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-main);
}

.products-more-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 32px;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.products-more-note i { color: var(--wa-green); font-size: 1rem; }

/* ============ Footer ============ */
.site-footer {
  background: #08090c;
  border-top: 1px solid var(--border-card);
  padding: 64px 0 28px;
  margin-bottom: 60px;
}
@media (min-width: 860px) { .site-footer { margin-bottom: 0; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-about h3 { font-size: 1.3rem; margin-bottom: 14px; }
.footer-about p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }

.footer-links h4 { font-size: 0.95rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links li { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--amber-soft); }

.footer-bottom {
  border-top: 1px solid var(--border-card);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-faint); }
.footer-slogan {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber-soft) !important;
  font-size: 0.92rem !important;
  margin-top: 8px;
}

/* ============ Mobile Sticky Bar ============ */
.mobile-sticky-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-surface-raised);
  border-top: 1px solid var(--border-card);
  padding: 8px 12px;
  gap: 8px;
  z-index: 80;
}
@media (min-width: 860px) { .mobile-sticky-bar { display: none; } }

.btn-sticky-call, .btn-sticky-wa {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.78rem;
}
.btn-sticky-call { border: 1px solid var(--border-card); color: var(--text-main); }
.btn-sticky-wa { background: var(--wa-green); color: #08290f; }
