/* ================================================
   TEMA: DEFAULT — Kurumsal Mavi, Temiz & Güvenilir
   v2 — Türkçe font, dropdown dil, yan butonlar,
        tüm blog grid, favicon yorum, gerçek görseller
   ================================================ */

/* Latin-ext subset ile Türkçe karakter desteği */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&subset=latin,latin-ext&display=swap');

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

:root {
  --blue:   #1d4ed8;
  --blue-l: #3b82f6;
  --blue-d: #1e3a8a;
  --sky:    #0ea5e9;
  --dark:   #0f172a;
  --dark2:  #1e293b;
  --text:   #334155;
  --muted:  #94a3b8;
  --light:  #f1f5f9;
  --border: #e2e8f0;
  --white:  #ffffff;
  --wa:     #25d366;
  --loc:    #ea4335;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
h1,h2,h3,h4 {
  font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── FLOATING YAN BUTONLAR ── */
.floating-buttons {
  position: fixed;
  left: 16px;
  bottom: 40px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.float-wa   { background: var(--wa); }
.float-loc  { background: var(--loc); }
.float-call { background: var(--blue); }

/* ── BUTTONS ── */
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  border-radius: 8px;
}
.cta-btn.primary  { background: var(--blue); color: var(--white); box-shadow: 0 4px 16px rgba(29,78,216,.25); }
.cta-btn.primary:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(29,78,216,.35); }
.cta-btn.ghost    { background: transparent; border-color: rgba(255,255,255,.4); color: var(--white); }
.cta-btn.ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.cta-btn.outline  { background: transparent; border-color: var(--blue); color: var(--blue); }
.cta-btn.outline:hover { background: var(--blue); color: var(--white); }
.cta-btn.dark     { background: var(--dark); color: var(--white); border-color: var(--dark); }
.cta-btn.dark:hover { background: var(--blue); border-color: var(--blue); }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; }
.section-label.center  { display: flex; justify-content: center; }
.section-label.center::before { display: none; }
.section-label.light   { color: rgba(255,255,255,.7); }
.section-label.light::before { background: rgba(255,255,255,.5); }
.section-title { font-size: clamp(28px, 4vw, 48px); text-align: center; margin-bottom: 16px; color: var(--dark); }
.section-sub   { color: var(--muted); text-align: center; margin-bottom: 56px; font-size: 16px; }

/* ── NAV ── */
nav.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
nav.site-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 70px;
  position: relative;
}
.nav-logo { display: flex; align-items: center; padding: 14px 32px 14px 0; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; flex: 1; gap: 4px; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: all .2s; }
.nav-links a:hover { color: var(--blue); background: var(--light); }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Dil Dropdown */
.lang-dropdown { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.lang-current:hover,
.lang-dropdown.open .lang-current { background: var(--white); border-color: var(--blue); color: var(--blue); }
.lang-current svg { transition: transform .2s; }
.lang-dropdown.open .lang-current svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 100px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all .2s;
  z-index: 300;
}
.lang-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-option {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all .15s;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.lang-option:hover { background: var(--light); color: var(--blue); }
.lang-option.active { background: var(--blue); color: var(--white); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--blue);
  transition: all .2s;
  white-space: nowrap;
}
.nav-phone:hover { background: var(--blue-d); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }

/* Mobile nav open state */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 24px 16px;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-top: 1px solid var(--border);
  z-index: 199;
}
.nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--border); border-radius: 0; }
.nav-links.open a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-d) 50%, var(--dark2) 100%);
  color: var(--white);
  min-height: 92vh;
  position: relative;
  overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,.2) 0%, transparent 70%); pointer-events: none; }
.hero::after  { content: ''; position: absolute; bottom: -30%; left: -5%;  width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(14,165,233,.15) 0%, transparent 70%); pointer-events: none; }
.hero .container { display: grid; grid-template-columns: 1fr 460px; min-height: 92vh; position: relative; z-index: 1; align-items: center; gap: 60px; }
.hero-left { padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; background: rgba(255,255,255,.1); color: var(--white); padding: 8px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,.2); margin-bottom: 28px; backdrop-filter: blur(10px); }
.hero h1 { font-size: clamp(36px, 5.5vw, 72px); font-weight: 800; line-height: .95; margin-bottom: 24px; color: var(--white); }
.hero h1 span { color: var(--sky); display: block; }
.hero-left > p { font-size: 17px; color: rgba(255,255,255,.65); max-width: 460px; margin-bottom: 36px; font-weight: 300; line-height: 1.8; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.stat-item { background: rgba(255,255,255,.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; padding: 16px 20px; }
.stat-num  { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: var(--sky); display: block; line-height: 1; }
.stat-label{ font-size: 11px; color: rgba(255,255,255,.5); margin-top: 4px; display: block; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-visual-inner {
  width: 420px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.hero-visual-inner img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-float {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.hcf-icon { font-size: 22px; }
.hero-card-float strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); }
.hero-card-float small { color: var(--muted); font-size: 12px; }

/* ── HAKKIMIZDA ── */
.about-section { padding: 100px 0; background: var(--light); }
.about-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder { height: 460px; border-radius: 16px; overflow: hidden; position: relative; }
.about-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.about-social-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(29,78,216,.4);
}
.about-social-card strong { display: block; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 12px; }
.social-icons { display: flex; gap: 8px; }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: rgba(255,255,255,.15); color: var(--white); text-decoration: none; font-size: 11px; font-weight: 700; border-radius: 8px; transition: background .2s; }
.social-icons a:hover { background: rgba(255,255,255,.3); }
.about-right h2 { font-size: clamp(28px, 3.5vw, 44px); color: var(--dark); line-height: 1.1; margin-bottom: 20px; }
.about-right h2 span { color: var(--blue); }
.about-right > p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }

/* ── HİZMETLER ── */
.services { padding: 100px 0; }
.services .container { display: flex; flex-direction: column; gap: 48px; }
.services-left h2 { font-size: clamp(26px, 3.5vw, 40px); color: var(--dark); margin-bottom: 14px; }
.services-left > p { color: var(--muted); max-width: 440px; font-size: 16px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all .3s; }
.service-card:hover { border-color: var(--blue-l); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(29,78,216,.12); }
.service-img { height: 180px; overflow: hidden; background: var(--light); }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-card-body { padding: 20px 22px; }
.service-icon-badge { display: inline-block; font-size: 22px; margin-bottom: 10px; }
.service-card h3 { font-size: 17px; color: var(--dark); margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.services-cta { text-align: center; }

/* ── REFERANSLAR ── */
.testimonials { padding: 96px 0; background: var(--light); }
.testimonials-wrap { position: relative; margin-top: 40px; }
.testi-slide { display: none; }
.testi-slide.active { display: flex; gap: 36px; align-items: center; padding: 40px; background: var(--white); border-radius: 20px; border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(0,0,0,.06); }
.testi-avatar { flex-shrink: 0; }
.testi-avatar img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;        /* kare — madde 6 */
  border: 3px solid var(--blue-l);
}
.testi-content { flex: 1; }
.testi-content > p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 18px; }
.testi-content strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); }
.testi-content span { color: var(--muted); font-size: 13px; }
.testi-stars { color: #f59e0b; font-size: 16px; margin-top: 6px; letter-spacing: 2px; }
.testi-quote { font-size: 80px; color: var(--blue); opacity: .07; align-self: flex-end; line-height: 1; user-select: none; }
.testi-nav { position: absolute; right: 0; top: -52px; display: flex; gap: 8px; }
.testi-prev, .testi-next { width: 44px; height: 44px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: 20px; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.testi-prev:hover, .testi-next:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ── PAKETLERİMİZ ── */
.packages { padding: 100px 0; }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.package-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; display: flex; flex-direction: column; overflow: hidden; transition: border-color .25s; }
.package-card:hover { border-color: var(--blue-l); box-shadow: 0 8px 32px rgba(29,78,216,.08); }
.package-card.featured { background: linear-gradient(135deg, var(--dark) 0%, var(--blue-d) 100%); border-color: transparent; }
.package-head { padding: 28px 28px 20px; border-bottom: 1px solid var(--border); }
.package-card.featured .package-head { border-bottom-color: rgba(255,255,255,.1); }
.package-head h3 { font-size: 22px; margin-bottom: 6px; color: var(--dark); }
.package-card.featured .package-head h3 { color: var(--white); }
.package-head span { font-size: 12px; color: var(--blue); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.package-card.featured .package-head span { color: var(--sky); }
.package-card ul { padding: 20px 28px; flex: 1; list-style: none; }
.package-card ul li { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--muted); }
.package-card.featured ul li { border-bottom-color: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }
.package-card ul li::before { content: '✓ '; color: var(--blue); font-weight: 700; }
.package-card.featured ul li::before { color: var(--sky); }
.package-card .cta-btn { margin: 0 20px 20px; display: block; text-align: center; border-radius: 10px; }
.package-card.featured .cta-btn.outline { border-color: rgba(255,255,255,.3); color: var(--white); }
.package-card.featured .cta-btn.outline:hover { background: var(--white); color: var(--blue); border-color: var(--white); }

/* ── SÜREÇLERİMİZ ── */
.process { padding: 100px 0; background: var(--light); }
.process .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.process-left h2 { font-size: clamp(26px, 3.5vw, 40px); color: var(--dark); margin: 12px 0 28px; }
.process-visual { height: 320px; border-radius: 16px; overflow: hidden; }
.process-visual img { width: 100%; height: 100%; object-fit: cover; }
.process-right { display: flex; flex-direction: column; gap: 12px; }
.process-card { padding: 20px 22px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; display: flex; gap: 18px; transition: all .25s; align-items: flex-start; }
.process-card:hover { border-color: var(--blue-l); box-shadow: 0 4px 24px rgba(29,78,216,.08); }
.process-icon { font-size: 26px; flex-shrink: 0; width: 50px; height: 50px; background: var(--light); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.process-card h3 { font-size: 15px; color: var(--dark); margin-bottom: 5px; }
.process-card p { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ── STATS BAR ── */
.stats-bar { background: linear-gradient(135deg, var(--dark) 0%, var(--blue-d) 100%); padding: 40px 0; }
.stats-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 28px; }
.stats-bar-item { display: flex; align-items: center; gap: 16px; color: var(--white); }
.sbi-num { font-family: 'Poppins', sans-serif; font-size: 48px; font-weight: 800; color: var(--sky); line-height: 1; }
.stats-bar-item strong { display: block; font-size: 14px; font-weight: 600; }
.stats-bar-item small { font-size: 12px; opacity: .6; }

/* ── BLOG — TÜM POSTLAR GRID ── */
.blog-section { padding: 100px 0; }
.blog-header { text-align: center; margin-bottom: 0; }
/* Tüm bloglar 3 sütun grid */
.blog-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.blog-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--blue-l); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(29,78,216,.1); }
.blog-card-link { display: block; overflow: hidden; }
.blog-card-img { height: 200px; overflow: hidden; background: var(--light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-card-cat { font-size: 11px; color: var(--blue); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.blog-card h3 { font-size: 16px; color: var(--dark); line-height: 1.4; flex: 1; }
.blog-card h3 a { text-decoration: none; color: inherit; transition: color .2s; }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.blog-read-more { color: var(--blue); font-size: 12px; font-weight: 600; text-decoration: none; margin-top: auto; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.blog-read-more:hover { gap: 8px; }

/* ── İLETİŞİM ── */
.contact-section { background: linear-gradient(135deg, var(--dark) 0%, var(--blue-d) 100%); color: var(--white); padding: 100px 0; }
.contact-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-left h2 { font-size: clamp(28px, 4vw, 48px); line-height: 1.05; margin-bottom: 16px; color: var(--white); }
.contact-left h2 span { color: var(--sky); }
.contact-left > p { color: rgba(255,255,255,.6); font-size: 16px; margin-bottom: 32px; line-height: 1.8; }
.contact-right { background: rgba(255,255,255,.07); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 32px; }
.contact-items { display: flex; flex-direction: column; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-item:last-child { border-bottom: none; }
.ci-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--sky); margin-bottom: 4px; }
.contact-item a, .contact-item span { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; transition: color .2s; }
.contact-item a:hover { color: var(--white); }

/* ── FOOTER ── */
footer { background: var(--dark); color: var(--muted); }
.footer-logo-banner {
  background: linear-gradient(90deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-banner img { height: 60px; width: auto; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 48px;
  padding: 52px 32px;
}
.footer-col h4 { font-size: 14px; color: var(--white); margin-bottom: 22px; }
.footer-col nav { display: flex; flex-direction: column; gap: 10px; }
.footer-col nav a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col nav a:hover { color: var(--sky); }
.footer-langs { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.footer-langs a { padding: 4px 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 6px; font-size: 11px; color: var(--muted); text-decoration: none; font-weight: 600; transition: all .2s; }
.footer-langs a.active, .footer-langs a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact p { font-size: 13px; display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.footer-contact a { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-contact a:hover { color: var(--sky); }
.footer-posts { display: flex; flex-direction: column; gap: 12px; }
.footer-posts a { color: var(--muted); text-decoration: none; font-size: 13px; line-height: 1.4; transition: color .2s; display: flex; align-items: flex-start; gap: 8px; }
.footer-posts a::before { content: '›'; color: var(--sky); flex-shrink: 0; }
.footer-posts a:hover { color: var(--white); }
.footer-no-posts { color: var(--muted); font-size: 13px; font-style: italic; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 0; flex-wrap: wrap; }
.footer-bottom a { color: var(--muted); text-decoration: none; margin-left: 20px; font-size: 11px; letter-spacing: .06em; transition: color .2s; }
.footer-bottom a:hover { color: var(--sky); }

/* ── BLOG LİSTE & MAKALE sayfaları ── */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--blue-d) 100%); color: var(--white); padding: 100px 0; }
.page-hero h1 { font-size: clamp(32px, 5vw, 60px); color: var(--white); }
.page-hero h1 span { color: var(--sky); }
.page-hero p { color: rgba(255,255,255,.6); margin-top: 12px; font-size: 16px; }
.blog-list { padding: 72px 0; }
.posts-list { display: flex; flex-direction: column; gap: 12px; }
.post-list-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: all .25s; }
.post-list-item:hover { border-color: var(--blue-l); box-shadow: 0 4px 20px rgba(29,78,216,.08); }
.post-list-inner { flex: 1; }
.post-list-item h2 { font-size: 19px; color: var(--dark); margin-bottom: 8px; }
.post-list-item h2 a { color: inherit; text-decoration: none; }
.post-list-item h2 a:hover { color: var(--blue); }
.post-list-item p { color: var(--muted); font-size: 14px; }
.post-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; }
.post-date { color: var(--muted); font-size: 12px; }
.post-ai-badge { background: var(--blue); color: var(--white); font-size: 10px; font-weight: 600; padding: 2px 10px; border-radius: 100px; letter-spacing: .06em; text-transform: uppercase; }
.read-more { color: var(--blue); font-weight: 600; font-size: 13px; text-decoration: none; white-space: nowrap; }
.read-more::after { content: ' →'; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.page-btn { display: inline-block; padding: 10px 18px; background: var(--white); color: var(--text); border: 1px solid var(--border); text-decoration: none; font-size: 14px; font-weight: 600; border-radius: 8px; transition: all .2s; }
.page-btn:hover, .page-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.article-wrap { max-width: 760px; margin: 0 auto; padding: 64px 24px 112px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 36px; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.article-header h1 { font-size: clamp(28px, 5vw, 52px); color: var(--dark); margin-bottom: 20px; }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 13px; padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.article-content { font-size: 17px; line-height: 1.9; color: var(--text); }
.article-content h2 { font-size: 28px; color: var(--dark); margin: 48px 0 16px; }
.article-content h3 { font-size: 18px; color: var(--blue); margin: 32px 0 12px; }
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; }
.article-content li { margin-bottom: 8px; }
.article-tags { margin-top: 36px; }
.tag { display: inline-block; background: var(--light); color: var(--blue); padding: 5px 14px; border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin: 0 6px 6px 0; transition: all .2s; }
.tag:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero .container      { grid-template-columns: 1fr; }
  .hero-visual          { display: none; }
  .services-grid        { grid-template-columns: repeat(2,1fr); }
  .blog-all-grid        { grid-template-columns: repeat(2,1fr); }
  .packages-grid        { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }

  /* Floating butonlar — mobilde biraz küçüt */
  .floating-buttons { left: 10px; bottom: 24px; gap: 8px; }
  .float-btn { width: 42px; height: 42px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-phone-text { display: none; }
  .nav-inner { padding: 0 16px; }
  .nav-logo { padding: 12px 20px 12px 0; }

  /* Hero */
  .hero { min-height: auto; }
  .hero .container { min-height: auto; }
  .hero-left { padding: 60px 0 40px; }
  .hero-stats { gap: 10px; }
  .stat-item { padding: 12px 14px; }
  .stat-num { font-size: 22px; }

  /* Hakkımızda */
  .about-section .container { grid-template-columns: 1fr; gap: 60px; }
  .about-social-card { right: 0; bottom: -16px; }

  /* Hizmetler */
  .services-grid { grid-template-columns: 1fr; }

  /* Paketler */
  .packages-grid { grid-template-columns: 1fr; }

  /* Süreç */
  .process .container { grid-template-columns: 1fr; gap: 40px; }

  /* Stats */
  .stats-bar .container { gap: 20px; }
  .sbi-num { font-size: 36px; }

  /* Blog */
  .blog-all-grid { grid-template-columns: 1fr; }

  /* İletişim */
  .contact-section .container { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr; gap: 32px; padding: 40px 16px; }
  .footer-bottom { padding: 16px; flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { display: flex; flex-wrap: wrap; gap: 4px; }
  .footer-bottom-links a { margin-left: 0; margin-right: 12px; }

  /* Testimonial */
  .testi-slide.active { flex-direction: column; padding: 24px; }
  .testi-quote { display: none; }
  .testi-nav { top: -48px; }

  /* Section titles */
  .section-title { font-size: 26px; }

  /* Packages */
  .package-card.featured { order: -1; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-btns { flex-direction: column; }
  .cta-btn { text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-all-grid { grid-template-columns: 1fr; }
  .stat-item { flex: 1 1 calc(50% - 8px); }
  .testi-avatar img { width: 64px; height: 64px; }
}


/* ══════════════════════════════════════════════════════
   BLOG LİSTE — Ek stiller
══════════════════════════════════════════════════════ */

/* Page Hero (blog sayfası) */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-d) 100%);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 60px);
  color: var(--white);
  margin: 12px 0 10px;
  line-height: 1.05;
}
.page-hero h1 span { color: var(--sky); }
.page-hero > .container > p {
  color: rgba(255,255,255,.6);
  font-size: 16px;
  margin-bottom: 20px;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 16px;
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.page-hero-breadcrumb a:hover { color: var(--white); }

/* Blog boş durum */
.blog-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--muted);
}
.blog-empty span { font-size: 48px; display: block; margin-bottom: 16px; }
.blog-empty p { font-size: 18px; margin-bottom: 28px; }

/* Post list düzenlemesi */
.post-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.post-list-item .read-more {
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: gap .2s;
}
.post-list-item .read-more:hover { gap: 8px; }
.post-list-item h2 { font-size: 20px; color: var(--dark); margin: 8px 0; }
.post-list-item h2 a { color: inherit; text-decoration: none; transition: color .2s; }
.post-list-item h2 a:hover { color: var(--blue); }
.post-list-item > .post-list-inner > p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   MAKALE (show.php) — Ek stiller
══════════════════════════════════════════════════════ */

.article-page { background: var(--white); }

.article-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-d) 100%);
  padding: 28px 0;
}
.article-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 0;
}
.article-hero .breadcrumb a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.article-hero .breadcrumb a:hover { color: var(--white); }
.article-hero .breadcrumb span:last-child { color: rgba(255,255,255,.8); }

.article-wrap { max-width: 800px; margin: 0 auto; padding: 56px 24px 80px; }

.article-header { margin-bottom: 32px; }
.article-header h1 {
  font-size: clamp(26px, 4vw, 48px);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 18px;
}
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}
.article-views { color: var(--muted); }

/* Makale içeriği tipografi */
.article-content {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
}
.article-content h2 {
  font-size: 28px;
  color: var(--dark);
  margin: 52px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.article-content h3 {
  font-size: 20px;
  color: var(--blue);
  margin: 36px 0 12px;
}
.article-content h4 { font-size: 17px; color: var(--dark); margin: 28px 0 10px; }
.article-content p { margin-bottom: 22px; }
.article-content ul, .article-content ol { margin: 0 0 22px 28px; }
.article-content li { margin-bottom: 10px; }
.article-content strong { color: var(--dark); }
.article-content a { color: var(--blue); text-decoration: underline; }
.article-content a:hover { color: var(--blue-d); }
.article-content blockquote {
  border-left: 4px solid var(--blue);
  margin: 32px 0;
  padding: 16px 24px;
  background: var(--light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}
.article-content img {
  width: 100%;
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.article-content code {
  background: var(--light);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Courier New', monospace;
  color: var(--blue-d);
}
.article-content pre {
  background: var(--dark);
  color: #e2e8f0;
  padding: 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 28px 0;
  font-size: 14px;
  line-height: 1.7;
}
.article-content pre code { background: none; color: inherit; padding: 0; }
.article-content table { width: 100%; border-collapse: collapse; margin: 28px 0; }
.article-content th { background: var(--dark); color: var(--white); padding: 12px 16px; text-align: left; font-size: 14px; }
.article-content td { padding: 11px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.article-content tr:hover td { background: var(--light); }

/* Etiketler */
.article-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.article-tags strong { color: var(--dark); font-size: 13px; margin-right: 4px; }

/* CTA kutusu */
.article-cta-box {
  margin-top: 52px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-d) 100%);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
}
.article-cta-content h3 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.article-cta-content p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; }
.article-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cta-btn.ghost-dark {
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
}
.cta-btn.ghost-dark:hover { background: rgba(255,255,255,.2); border-color: var(--white); }

/* İlgili yazılar */
.related-posts { margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--border); }
.related-title { font-size: 22px; color: var(--dark); margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: all .2s;
}
.related-card:hover { border-color: var(--blue-l); background: var(--white); box-shadow: 0 4px 16px rgba(29,78,216,.08); }
.related-card-title { font-size: 14px; color: var(--dark); font-weight: 600; line-height: 1.4; }
.related-card-date { font-size: 12px; color: var(--muted); }

/* Nav active link */
.nav-links a.active { color: var(--blue); background: var(--light); }

/* ── Responsive ek ── */
@media (max-width: 768px) {
  .page-hero { padding: 56px 0 48px; }
  .article-cta-box { flex-direction: column; padding: 28px 24px; }
  .article-cta-actions { width: 100%; }
  .article-cta-actions .cta-btn { flex: 1; text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
  .post-list-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .post-list-item .read-more { align-self: flex-start; }
  .article-hero .breadcrumb { flex-wrap: wrap; }
}
