/* =====================================================
   RESET & TEMEL
===================================================== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 600px at 20% -10%, #ffffff 0%, #f2f5ff 45%, transparent 70%),
    radial-gradient(900px 500px at 90% 10%, #fff7db 0%, transparent 55%),
    #f6f7fb;
  color: #0f172a;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* =====================================================
   DEĞİŞKENLER
===================================================== */
:root {
  --brand: #fbbf24;
  --brand-soft: #fde68a;
  --border-soft: rgba(15,23,42,.08);
  --text-muted: #475569;
  --radius-md: 12px;
  --radius-lg: 18px;
}

/* =====================================================
   HEADER / NAVBAR
===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.brand {
  display: flex;
  align-items: center;
  min-width: 180px;
}

.brand-logo {
  height: 110px;
  width: auto;
}

/* NAV */
.nav-desktop {
  display: flex;
  gap: 26px;
}

.nav-desktop a {
  font-weight: 500;
  color: #334155;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: .25s;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 12px;
}

/* =====================================================
   BUTONLAR
===================================================== */
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  color: #000;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(251,191,36,.35);
}

.btn-ghost {
  border: 1px solid var(--border-soft);
  background: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

/* WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 800;
}

/* =====================================================
   MAIN / HERO
===================================================== */
main {
  padding-top: 130px;
}

.hero-agency {
  padding: 100px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Sol taraf */
.hero-badge {
  display: inline-block;
  background: rgba(251,191,36,.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--brand);
}

.hero-description {
  max-width: 520px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

/* Güven rozetleri */
.hero-consult-strong {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-consult-strong span {
  background: #ecfdf5;
  color: #065f46;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

/* =====================================================
   HERO GÖRSEL + PREMIUM OVERLAY
===================================================== */
.hero-visual {
  position: relative;
}

.hero-visual img {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: 0 30px 80px rgba(15,23,42,.18);
}

/* ================= HERO OVERLAY (ÜSTTE, ORTALI) ================= */

.hero-overlay-premium {
  position: absolute;
  top: -26px;                /* 🔥 RESMİN ÜSTÜNE ÇIKAR */
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 16px 34px;

  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.7);

  box-shadow:
    0 25px 70px rgba(15,23,42,.25),
    inset 0 1px 0 rgba(255,255,255,.8);

  font-size: 20px;
  font-weight: 500;
  color: #0f172a;

  white-space: nowrap;
}

.hero-overlay-premium strong {
  font-weight: 900;
  color: var(--brand);
  position: relative;
}

.hero-overlay-premium strong::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -6px;
  height: 6px;
  background: rgba(251,191,36,.45);
  border-radius: 4px;
  z-index: -1;
}

/* Mobil */
@media (max-width: 768px) {
  .hero-overlay-premium {
    top: -18px;
    font-size: 15px;
    padding: 10px 22px;
  }
}


/* =====================================================
   HERO ALT
===================================================== */
.hero-after {
  padding: 40px 0 80px;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(15,23,42,.08);
}

.hero-card span {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.hero-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 992px) {
  .nav-desktop { display: none; }

  .header-inner {
    height: auto;
    padding: 14px 0;
  }

  .brand-logo {
    height: 64px;
  }

  main {
    padding-top: 96px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .hero-overlay-premium {
    font-size: 16px;
    padding: 12px 22px;
  }
}
/* ================= SERVICES PAGE FIX ================= */

.section-services {
  padding: 100px 0;
}

.section-head {
  margin-bottom: 60px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 16px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.service-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: 0 20px 50px rgba(15,23,42,.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Öne çıkan (Google Ads) */
.service-highlight {
  border: 2px solid var(--brand);
  box-shadow: 0 25px 70px rgba(251,191,36,.25);
}

/* ICON */
.service-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

/* TITLE */
.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* DESC */
.service-desc {
  color: #334155;
  font-size: 15px;
  margin-bottom: 18px;
}

/* LIST */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.service-list li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #0f172a;
}

/* NOTE */
.service-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* BUTTON */
.service-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ALT CTA */
.services-cta {
  margin-top: 80px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(251,191,36,.12),
    rgba(255,255,255,.6)
  );
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  padding: 50px 30px;
}

.services-cta h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.services-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* MOBILE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 2.2rem;
  }

  .service-card {
    padding: 30px 26px;
  }
}
/* ============================
   NAVBAR LOGO FORCE FIX
============================ */

/* Header yüksekliği */
.site-header {
  height: 140px;
}

/* İç kapsayıcı */
.site-header .header-inner {
  height: 140px;
  align-items: center;
}

/* Logo alanı */
.site-header .brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* LOGO KENDİSİ */
.site-header .brand-logo {
  height: 120px !important;   /* 🔥 BURASI KRİTİK */
  width: auto !important;
  max-height: none !important;
  max-width: none !important;
}

/* Link içinde logo varsa */
.site-header .brand a {
  display: flex;
  align-items: center;
}

/* MOBİL */
@media (max-width: 992px) {
  .site-header {
    height: 96px;
  }

  .site-header .header-inner {
    height: 96px;
  }

  .site-header .brand-logo {
    height: 64px !important;
  }
}
/* ================= NAVBAR LOGO FIX (KESİN ÇÖZÜM) ================= */

.site-header .brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;           /* 🔥 EZİLMEYİ KAPAT */
}

.site-header .brand-logo {
  height: 140px !important; /* 🔥 GERÇEK BÜYÜKLÜK */
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
}

/* Header yüksekliği logoya uysun */
.site-header .header-inner {
  min-height: 150px;        /* 🔥 LOGOYA YER AÇ */
}

/* Bootstrap container kısıtını gevşet */
.site-header .container {
  max-width: 1400px;
}

/* MOBİL */
@media (max-width: 992px) {
  .site-header .brand-logo {
    height: 72px !important;
  }

  .site-header .header-inner {
    min-height: 96px;
  }
}
/* LOGO OPTİK HİZALAMA */
.site-header .brand {
  display: flex;
  align-items: center;
}

.site-header .brand-logo {
  height: 110px;          /* senin mevcut değer */
  width: auto;
  display: block;

  position: relative;
  top: -8px;              /* 🔥 ASIL DÜZELTME */
}
