/* ============================================================
   ANKARA BRANDA BASKI AJANS — style.css
   Font: Montserrat | Accent: #ff6f00
   ============================================================ */




/* ── LOCAL FONTS ─────────────────────────────────────── */
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/montserrat-v31-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/montserrat-v31-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/montserrat-v31-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 800; font-display: swap; src: url('fonts/montserrat-v31-latin-800.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 900; font-display: swap; src: url('fonts/montserrat-v31-latin-900.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/montserrat-v31-latin-italic.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: italic; font-weight: 700; font-display: swap; src: url('fonts/montserrat-v31-latin-700italic.woff2') format('woff2'); }



/* ── TOP BAR ─────────────────────────────────────────────────── */
.top-bar {
  background: var(--dark);
  padding: 8px 0;
  font-size: .78rem;
  font-weight: 600;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar-blogs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.top-bar-blogs a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.top-bar-blogs a:hover { color: var(--orange); }
.tb-sep { color: rgba(255,255,255,.25); }

.top-bar-instagram {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .75rem;
  transition: opacity var(--transition), transform var(--transition);
}
.top-bar-instagram:hover { opacity: .88; transform: translateY(-1px); }

/* ── POPULAR BADGE ───────────────────────────────────────────── */
.hizmet-card.popular {
  border-color: var(--orange);
  background: linear-gradient(160deg, #fff9f5 0%, #ffffff 100%);
  box-shadow: 0 6px 28px rgba(255,111,0,.16);
}
.popular-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ── MONTAJ KARTI ─────────────────────────────────────────────── */
.hizmet-card.montaj-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  border-color: #bae6fd;
}
.hizmet-card.montaj-card::before { background: #0ea5e9; }
.hizmet-card.montaj-card .card-link { color: #0ea5e9; }

/* ── TEKLİF CTA KARTI ─────────────────────────────────────────── */
.hizmet-card.teklif-cta-card {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  border: none;
  color: var(--white);
}
.hizmet-card.teklif-cta-card::before { background: rgba(255,255,255,.4); }
.hizmet-card.teklif-cta-card h3 { color: var(--white); }
.hizmet-card.teklif-cta-card p  { color: rgba(255,255,255,.85); }
.hizmet-card.teklif-cta-card .hizmet-icon { background: rgba(255,255,255,.18); color: var(--white); }
.card-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: background var(--transition), border-color var(--transition);
}
.card-link-cta:hover { background: rgba(255,255,255,.32); border-color: rgba(255,255,255,.7); }

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

:root {
  --orange:    #ff6f00;
  --orange-d:  #e65c00;
  --orange-l:  #fff3e0;
  --dark:      #111827;
  --mid:       #374151;
  --muted:     #6B7280;
  --border:    #E5E7EB;
  --white:     #ffffff;
  --bg:        #f9fafb;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --nav-h:     72px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: .4px;
}
.btn-primary:hover { background: var(--orange-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,111,0,.35); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); }

.btn-full { width: 100%; justify-content: center; }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--orange-l);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-head p { color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ── TOP BAR sticky ─ */
.top-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 37px; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  border-bottom-color: var(--border);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  height: 80px;
  width: auto;
  transition: transform var(--transition);
}
.brand:hover img { transform: scale(1.04); }

/* Desktop nav */
.nav-links { margin-left: auto; }
.nav-links > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--mid);
  transition: color var(--transition), background var(--transition);
}
.nav-item:hover { color: var(--orange); background: var(--orange-l); }

.chevron { transition: transform var(--transition); }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.has-dropdown { position: relative; }

/* Görünmez köprü — nav item ile dropdown arasındaki 10px boşluğu kapatır */
.has-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 10px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--transition), background var(--transition);
  border-radius: 6px;
}
.dropdown li a:hover { color: var(--orange); background: var(--orange-l); }

/* Blog dropdown daha geniş */
.nav-links > ul > li:nth-child(3) .dropdown {
  min-width: 450px;
}

.btn-teklif {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  margin-left: 8px;
}
.btn-teklif:hover { background: var(--orange-d); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  margin-left: 8px;
  flex-shrink: 0;
  position: relative;
}
.hamburger:hover { background: var(--orange-l); border-color: rgba(255,111,0,.3); }
.hamburger.open { background: var(--orange); border-color: var(--orange); box-shadow: 0 4px 14px rgba(255,111,0,.35); }

.hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  transform-origin: center;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 3px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s ease, background .2s ease;
  margin-left: -10px;
}
.hamburger span:nth-child(1) { top: calc(50% - 6px); }
.hamburger span:nth-child(2) { top: calc(50% - 1px); }
.hamburger span:nth-child(3) { top: calc(50% + 4px); }

/* açık halde X */
.hamburger.open span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateX(-10px) translateY(6px) rotate(45deg); top: calc(50% - 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateX(-10px) translateY(-6px) rotate(-45deg); top: calc(50% + 4px); }

/* ── HERO SLIDER ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 520px;
  max-height: 780px;
  margin-top: calc(var(--nav-h) + 37px);
  overflow: hidden;
}

.slider { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(17,24,39,.78) 40%, rgba(17,24,39,.25) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 max(40px, 8vw);
  max-width: 780px;
}

.slide-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  width: fit-content;
}

.slide-content h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 16px;
}
.slide-content h1 strong { color: var(--orange); font-weight: 900; }

.slide-content p {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
  max-width: 480px;
}

.slide-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  z-index: 10;
}
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); }
.prev { left: 20px; }
.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--orange); transform: scale(1.3); }

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 36px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 150px;
  padding: 16px 24px;
}
.stat strong {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat span { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.65); letter-spacing: .5px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 56px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* ── HİZMETLER ──────────────────────────────────────────────── */
.hizmetler {
  padding: 96px 0;
  background: var(--bg);
}

.hizmet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.hizmet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.hizmet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.hizmet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(255,111,0,.15); }
.hizmet-card:hover::before { transform: scaleX(1); }

.hizmet-card.featured {
  border-color: rgba(255,111,0,.3);
  box-shadow: 0 4px 20px rgba(255,111,0,.12);
}
.hizmet-card.featured::before { transform: scaleX(1); }

.hizmet-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-l);
  color: var(--orange);
  border-radius: 14px;
  padding: 12px;
  flex-shrink: 0;
}
.hizmet-icon svg { width: 100%; height: 100%; }
.hizmet-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.hizmet-card p  { font-size: .875rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }

.card-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--transition), letter-spacing var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { letter-spacing: .4px; }

/* ── NEDEN BİZ ──────────────────────────────────────────────── */
.neden-biz {
  padding: 96px 0;
  background: var(--white);
}
.neden-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.neden-text .section-tag { margin-bottom: 14px; }
.neden-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}

.neden-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.neden-list li { display: flex; gap: 16px; align-items: flex-start; }

.check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  margin-top: 2px;
}
.neden-list strong { display: block; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.neden-list p { font-size: .875rem; color: var(--muted); }

.neden-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.neden-bg-shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-l) 0%, #fff8f0 100%);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  animation: morphShape 8s ease-in-out infinite alternate;
}
@keyframes morphShape {
  from { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  to   { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
}
.neden-badge {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px 40px;
  text-align: center;
}
.neden-badge strong { display: block; font-size: 2rem; color: #f59e0b; letter-spacing: 3px; margin-bottom: 8px; }
.neden-badge span { font-size: .85rem; font-weight: 700; color: var(--mid); }

/* ── BLOG ───────────────────────────────────────────────────── */
.blog {
  padding: 96px 0;
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.blog-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 4px 10px;
  border-radius: 100px;
}

.blog-body { padding: 24px; }
.blog-body time { font-size: .78rem; color: var(--muted); font-weight: 500; }
.blog-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 8px 0 10px; line-height: 1.4; }
.blog-body p  { font-size: .85rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }

/* ── İLETİŞİM ───────────────────────────────────────────────── */
.iletisim {
  padding: 96px 0;
  background: var(--white);
}
.iletisim-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.iletisim-info .section-tag { margin-bottom: 14px; }
.iletisim-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 36px;
  line-height: 1.2;
}

.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-size: .9rem; }
.contact-icon { font-size: 1.2rem; width: 20px; text-align: center; flex-shrink: 0; }
.contact-list a { color: var(--orange); font-weight: 600; transition: letter-spacing var(--transition); }
.contact-list a:hover { letter-spacing: .3px; }

.iletisim-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.iletisim-form h3 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--mid); margin-bottom: 8px; letter-spacing: .3px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: .875rem;
  color: var(--dark);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,111,0,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-success { margin-top: 14px; font-size: .875rem; color: #059669; font-weight: 600; text-align: center; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 72px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 280px; }

.footer-links h4,
.footer-contact h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-contact { display: flex; flex-direction: column; }
.footer-contact a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  font-weight: 500;
}

/* ── FLOATING BUTTONS ─────────────────────────────────────────── */
.float-google {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 900;
  animation: fadeInUp .6s .5s both;
}
.float-google a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-google a:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.google-stars { display: flex; flex-direction: column; line-height: 1.3; }
.google-stars span { font-size: .85rem; color: #f59e0b; letter-spacing: 1px; }
.google-stars small { font-size: .65rem; font-weight: 600; color: var(--muted); }

.float-contact {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeInUp .6s .7s both;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.float-btn.whatsapp { background: #25D366; color: var(--white); }
.float-btn.phone    { background: var(--orange); color: var(--white); }

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

/* ── RESPONSIVE ─────────────────────────────────────────────── */

/* 1024px */
@media (max-width: 1024px) {
  .neden-inner { grid-template-columns: 1fr; gap: 40px; }
  .neden-visual { min-height: 240px; }
  .iletisim-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* 768px – tablet/hamburger */
@media (max-width: 768px) {
  .top-bar-blogs { display: none; }
  .navbar { top: 33px; }
  .hero { margin-top: calc(var(--nav-h) + 33px); }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--white);
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    display: block;
    border-top: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }

  .nav-links > ul { flex-direction: column; gap: 4px; }
  .nav-item { padding: 14px 16px; font-size: 1rem; border-radius: 10px; }

  /* Mobile dropdown always visible inside accordion */
  .has-dropdown { position: static; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--orange);
    border-radius: 0;
    margin-left: 16px;
    display: none;
    padding: 4px 0;
  }
  /* Mobilde dropdown alt başlıkları gizle - sadece ana link görünsün */
  .has-dropdown .dropdown { display: none !important; }
  .chevron { display: none; }
  .has-dropdown.open .chevron { transform: rotate(180deg); }

  .btn-teklif { display: none; }
  .hamburger  { display: flex; }

  .hero { max-height: 600px; min-height: 460px; }
  .slide-content { padding: 0 24px; }

  .stats-inner { gap: 0; flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { flex: 1 0 44%; padding: 20px 16px; border-right: none; }

  .hizmet-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid   { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .float-google { bottom: 16px; left: 12px; }
  .float-contact { bottom: 16px; right: 12px; }
  .float-btn { width: 46px; height: 46px; }
}

/* 480px */
@media (max-width: 480px) {
  .hizmet-grid { grid-template-columns: 1fr; }
  .stat { flex: 1 0 100%; }
  .stat-divider { display: block; width: 60%; height: 1px; margin: 0 auto; }
  .slide-content h1 { font-size: 1.7rem; }
  .slide-ctas { flex-direction: column; gap: 10px; }
  .iletisim-form { padding: 28px 20px; }
}


/* ══════════════════════════════════════════════════════════════
   COMPLETE NEW STYLES — all sessions
   ══════════════════════════════════════════════════════════════ */

/* ── TOP BAR yeni düzen ──────────────────────────────────────── */
.top-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; background: #0f172a; padding: 0; }
.top-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 38px;
}

/* Sol: Instagram */
.top-bar-instagram {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  padding: 0 16px;
  font-weight: 700;
  font-size: .73rem;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.top-bar-instagram:hover { opacity: .88; }

/* Orta: 24 saatte teslim */
.tb-delivery {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(251,191,36,.08);
  border-left: 1px solid rgba(255,255,255,.07);
  border-right: 1px solid rgba(255,255,255,.07);
  gap: 6px;
  animation: tbPulse 2.5s ease-in-out infinite;
}
@keyframes tbPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .7; }
}

/* Sağ: Blog yazıları */
.top-bar-blogs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}
.top-bar-blogs a {
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 600;
  transition: color var(--transition);
  white-space: nowrap;
}
.top-bar-blogs a:hover { color: var(--orange); }
.tb-sep { color: rgba(255,255,255,.2); }

/* ── NAVBAR offset ───────────────────────────────────────────── */
.navbar { position: fixed; top: 38px; left: 0; right: 0; height: var(--nav-h); background: var(--white); z-index: 1000; transition: box-shadow var(--transition), background var(--transition); border-bottom: 1px solid transparent; }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); border-bottom-color: var(--border); }
.hero { margin-top: calc(var(--nav-h) + 38px) !important; }

/* ── BRAND TEXT ──────────────────────────────────────────────── */
.brand { display: flex; align-items: center; gap: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-city { font-size: 21px; font-weight: 900; letter-spacing: 0px; text-transform: uppercase; color: var(--orange); }
.brand-name { font-size:20px; font-weight: 800; color: var(--dark); }

/* ── NAVBAR Matbaa özel ──────────────────────────────────────── */
.nav-matbaa { color: #0369a1 !important; background: #e0f2fe !important; border: 1px solid #bae6fd; }
.nav-matbaa:hover { background: #bae6fd !important; color: #0284c7 !important; }

/* ── POPULAR BADGE ───────────────────────────────────────────── */
.hizmet-card.popular { border-color: var(--orange); background: linear-gradient(160deg,#fff9f5,#fff); box-shadow: 0 6px 28px rgba(255,111,0,.16); }
.popular-badge { display: inline-block; background: var(--orange); color: var(--white); font-size: .68rem; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }

/* ── MONTAJ KARTI ────────────────────────────────────────────── */
.hizmet-card.montaj-card { background: linear-gradient(135deg,#f0f9ff,#fff); border-color: #bae6fd; }
.hizmet-card.montaj-card::before { background: #0ea5e9; }

/* ── TEKLİF CTA KARTI ────────────────────────────────────────── */
.hizmet-card.teklif-cta-card { background: linear-gradient(135deg,#7c3aed,#4f46e5); border: none; color: var(--white); }
.hizmet-card.teklif-cta-card::before { background: rgba(255,255,255,.4); }
.hizmet-card.teklif-cta-card h3 { color: var(--white); }
.hizmet-card.teklif-cta-card p  { color: rgba(255,255,255,.85); }
.card-link-cta { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.2); color: var(--white); font-size: .85rem; font-weight: 700; padding: 9px 18px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,.4); transition: background var(--transition), border-color var(--transition); width: 100%; justify-content: center; margin-top: 4px; }
.card-link-cta:hover { background: rgba(255,255,255,.32); border-color: rgba(255,255,255,.7); }

/* ── 1: KART AKSIYONLARI ─────────────────────────────────────── */
.hizmet-card p { margin-bottom: 16px; }
.card-actions { display: flex; align-items: center; gap: 8px; margin-top: auto; }

.card-btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: .8rem;
  font-weight: 700;
  color: var(--mid);
  background: var(--bg);
  border: 1.5px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.card-btn-detail:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

.card-btn-teklif {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: .8rem;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--orange);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.card-btn-teklif:hover { background: var(--orange-d); transform: translateY(-1px); }
.hizmet-card.montaj-card .card-btn-teklif { background: #0ea5e9; border-color: #0ea5e9; }
.hizmet-card.montaj-card .card-btn-teklif:hover { background: #0284c7; }

/* ── 2: NEDEN-BİZ YORUMLAR (3 kart, sırayla geçiş) ──────────── */
.neden-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.neden-reviews-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
  overflow: hidden;
}
.neden-reviews-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.nrh-text { flex: 1; }
.nrh-title { font-size: .82rem; font-weight: 800; color: var(--dark); }
.nrh-stars { font-size: .75rem; color: #f59e0b; font-weight: 700; letter-spacing: .5px; }
.nrh-stars span { color: var(--muted); font-size: .7rem; margin-left: 3px; }
.nrh-link { font-size: .72rem; font-weight: 700; color: var(--orange); white-space: nowrap; }
.nrh-link:hover { text-decoration: underline; }

.nr-stack { padding: 0; }
.nr-card {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
  will-change: transform, opacity;
}
.nr-card:last-child { border-bottom: none; }
.nr-top { display: flex; align-items: center; gap: 9px; margin-bottom: 6px; }
.nr-av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg,var(--orange),#e65c00); color: var(--white); font-size: .6rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nr-top strong { font-size: .78rem; font-weight: 700; color: var(--dark); display: block; line-height: 1.2; }
.nr-star { font-size: .66rem; color: #f59e0b; display: block; }
.nr-card p { font-size: .76rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* ── YENİ: Yorum Kart Animasyonu ── */
.nr-slide-out {
  animation: nrOut .38s cubic-bezier(.4,0,.2,1) forwards;
}
.nr-slide-in {
  animation: nrIn .44s cubic-bezier(.22,1,.36,1) forwards,
             nrFlash 1.4s ease forwards;
}
@keyframes nrOut {
  0%   { opacity: 1; transform: translateY(0)    scale(1);    filter: blur(0px);  }
  100% { opacity: 0; transform: translateY(-22px) scale(.96); filter: blur(2px);  }
}
@keyframes nrIn {
  0%   { opacity: 0; transform: translateY(24px) scale(.96); filter: blur(3px);  }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0)    scale(1);   filter: blur(0px);  }
}
@keyframes nrFlash {
  0%   { border-left-color: var(--orange); background: rgba(255,111,0,.04); }
  65%  { border-left-color: var(--orange); background: rgba(255,111,0,.04); }
  100% { border-left-color: transparent;  background: transparent;          }
}

/* ── MATBAA PARALLAX ─────────────────────────────────────────── */
.matbaa-parallax {
  position: relative;
  background: linear-gradient(135deg,#1e3a5f,#1a2e4a,#0f2035);
  background-attachment: fixed;
  padding: 72px 0 60px;
}
.matbaa-parallax::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 75% 40%,rgba(255,111,0,.15),transparent 65%); pointer-events:none; }
.matbaa-inner { position:relative; z-index:1; }
.section-tag-matbaa { background:rgba(255,255,255,.13) !important; color:#fff !important; border:1px solid rgba(255,255,255,.22) !important; }
.matbaa-title { color:#fff !important; text-shadow:0 2px 12px rgba(0,0,0,.3); font-size:clamp(1.6rem,3.5vw,2.4rem); }
.matbaa-title strong { color:var(--orange) !important; }
.matbaa-subtitle { color:rgba(255,255,255,.75) !important; }
.matbaa-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(148px,1fr)); gap:10px; margin-bottom:36px; }
.matbaa-item { display:flex; flex-direction:column; align-items:center; gap:7px; padding:16px 10px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius:var(--radius); color:rgba(255,255,255,.88); font-size:.78rem; font-weight:600; text-align:center; transition:background var(--transition),border-color var(--transition),transform var(--transition); }
.matbaa-item:hover { background:rgba(255,111,0,.22); border-color:rgba(255,111,0,.5); transform:translateY(-3px); color:#fff; }
.matbaa-icon { font-size:1.5rem; line-height:1; }
.matbaa-cta { text-align:center; }

/* ── FOOTER BOTTOM ───────────────────────────────────────────── */
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:0; }
.footer-bottom-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; padding:14px 0; }
.footer-sites { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.footer-sites a { font-size:.73rem; color:rgba(255,255,255,.9); font-weight:500; transition:color var(--transition); }
.footer-sites a:hover { color:var(--orange); }
.fs-sep { color:rgba(255,255,255,.15); }
.footer-copyright { font-size:.73rem; color:rgba(255,255,255,.9); }
.footer-webdev { display:flex; align-items:center; gap:5px; font-size:.71rem; color:rgba(255,255,255,.9); }
.footer-webdev svg { opacity:.4; }
.footer-webdev a { color:rgba(255,255,255,.9); font-weight:600; transition:color var(--transition); }
.footer-webdev a:hover { color:var(--orange); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .top-bar-blogs { display:none; }
  .tb-delivery { border-right:none; }
  .navbar { top:38px; }
  .hero { margin-top:calc(var(--nav-h) + 38px) !important; }
  .brand-name { font-size:.88rem; }
  .matbaa-grid { grid-template-columns:repeat(3,1fr); }
  .footer-bottom-inner { flex-direction:column; text-align:center; gap:8px; }
  .footer-webdev { justify-content:center; }
  .neden-reviews-box { max-width:100%; }
}
@media (max-width: 480px) {
  .top-bar-instagram span { display:none; }
  .brand-text { display:none; }
  .matbaa-grid { grid-template-columns:repeat(2,1fr); }
  .card-actions { flex-direction:column; gap:6px; }
  .card-btn-detail, .card-btn-teklif { width:100%; }
}


/* ── TOP BAR: unified brand + instagram ─────────────────────── */

/* Eski instagram stilini sıfırla */

/* Yeni bütünleşik blok */
.top-bar-brand-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 16px 0 0;
  text-decoration: none;
  transition: opacity var(--transition);
}
.top-bar-brand-insta:hover { opacity: .8; }

.tbi-name {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .4px;
  color: rgba(255,255,255,.92);
}

.tbi-divider {
  color: rgba(255,255,255,.2);
  font-size: .8rem;
}

/* Instagram ikonu — gradient renkte */
.tbi-icon {
  flex-shrink: 0;
  background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  border-radius: 4px;
  padding: 3px;
  color: #fff;
  display: block;
  width: 20px;
  height: 20px;
}

.tbi-follow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ── GOOGLE FLOAT: 33 yorum ──────────────────────────────────── */
.google-stars { display: flex; flex-direction: column; line-height: 1.2; gap: 2px; }
.google-stars > span { font-size: .82rem; color: #f59e0b; letter-spacing: 1.5px; }
.gs-meta { display: flex; flex-direction: column; gap: 1px; }
.gs-meta small { font-size: .62rem; font-weight: 600; color: var(--muted); }
.gs-count { color: var(--orange) !important; font-weight: 700 !important; }

@media (max-width: 768px) {
  .tbi-follow { display: none; }
  .tbi-name { font-size: .72rem; }
}
@media (max-width: 480px) {
  .tbi-name { display: none; }
  .tbi-divider { display: none; }
}


/* ════════════════════════════════════════════════════════════════
   DÜZELTMELER & YENİ STILLER
   ════════════════════════════════════════════════════════════════ */

/* ── 1: TOP BAR Instagram — yeni bütünleşik blok ─────────────── */
/* eski class artık kullanılmıyor, gizle */
.top-bar-instagram { display: none !important; }

/* yeni element */
.tb-insta-block {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 100%;
  padding: 0 14px;
  text-decoration: none;
  transition: background var(--transition);
  border-right: 1px solid rgba(255,255,255,.08);
}
.tb-insta-block:hover { background: rgba(255,255,255,.05); }

.tib-icon-wrap {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg,#833ab4 0%,#fd1d1d 50%,#fcb045 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.tib-texts {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}
.tib-brand {
  font-size: .76rem;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  letter-spacing: .3px;
  white-space: nowrap;
}
.tib-sub {
  font-size: .62rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}

/* ── 2: MOBİLDE LOGO YANINA BRAND TEXT ───────────────────────── */
/* 480px'de brand-text gizleniyordu, açıyoruz */
@media (max-width: 480px) {
  .brand-text { display: flex !important; }
  .brand-city { font-size: 21px; letter-spacing: 0px; }
  .brand-name { font-size: 20px; }
}

/* ── 3: FOOTER İLETİŞİM BİLGİLERİ ───────────────────────────── */
.footer-info {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.48);
  line-height: 1.55;
}
.footer-info li a { color: rgba(255,255,255,.48); transition: color var(--transition); }
.footer-info li a:hover { color: var(--orange); }
.fi-icon { flex-shrink: 0; font-size: .85rem; margin-top: 2px; }
.fi-map a { color: var(--orange) !important; font-weight: 700; font-size: .73rem; }
.fi-map a:hover { text-decoration: underline; }
.fi-hours span strong { display: block; color: rgba(255,255,255,.68); font-size: .75rem; margin-bottom: 2px; }

/* ── FOOTER BLOG SÜTUNU ──────────────────────────────────────── */
.footer-blog-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 18px;
}
.footer-blog-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-blog-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
}
.footer-blog-list li strong {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  line-height: 1.4;
  display: block;
  transition: color var(--transition);
}
.footer-blog-list li:hover strong { color: var(--white); }
.fb-desc {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  line-height: 1.45;
  display: block;
}
.fb-btn {
  display: inline-block;
  margin-top: 5px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--orange);
  transition: letter-spacing var(--transition);
  width: fit-content;
}
.fb-btn:hover { letter-spacing: .4px; }
.fb-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: 0;
}

/* ── FOOTER GRID: 4 sütun ────────────────────────────────────── */
.footer-inner { grid-template-columns: 1.7fr 1fr 0.65fr 1.4fr !important; }

/* ── FOOTER MOBİL DÜZELTME ───────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-info { display: none; } /* Mobilde adres bilgisi çok uzun — sadece Şirket sütununda göster */
  .tib-sub { display: none; }
  .tib-brand { font-size: .7rem; }
  .footer-blog-list li strong { font-size: .82rem; }
}
@media (max-width: 480px) {
  .tb-insta-block { padding: 0 10px; }
  .tib-texts { display: none; }  /* sadece ikon kalır */
  .tib-icon-wrap { width: 26px; height: 26px; border-radius: 7px; }
}


/* ── MOBİL SLAYT POZİSYONU ──────────────────────────────────── */
@media (max-width: 768px) {
  .slide img { object-position: -700px 0px; }
  .slide-content { padding: 0 20px; max-width: 100%; }
}

/* ── HAMBURGER nav-links top offset düzelt ───────────────────── */
@media (max-width: 768px) {
  .nav-links { inset: calc(var(--nav-h) + 38px) 0 0 0 !important; }
}

/* ── MOBİL: hamburger en sağa ── */
@media (max-width: 768px) {
  .hamburger { margin-left: auto; }
}

/* ── FOOTER: sabit butonların altını kapatmaması için boşluk ── */
body { padding-bottom: 140px; }

/* Masaüstünde daha az boşluk yeterli (butonlar yan yana değil, daha küçük alan) */
@media (min-width: 769px) {
  body { padding-bottom: 90px; }
}





.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo-city {
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-logo-name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-brand img {
  margin-bottom: 0;
}






/* Blog Kart – H3 Link */
.blog-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card h3 a:hover,
.blog-card h3 a:focus {
  color: var(--color-primary, #e63946); /* primary rengin yoksa fallback */
  text-decoration: underline;
}

/* Görsel link – hafif karartma efekti */
.blog-img a {
  display: block;
  overflow: hidden;
}

.blog-img a img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.blog-img a:hover img,
.blog-img a:focus img {
  transform: scale(1.04);
  opacity: 0.9;
}





/* ── BLOG CTA ────────────────────────────────────────────────── */
.blog-cta {
  text-align: center;
  margin-top: 48px;
}












/* ============================================================
   İLETİŞİM SAYFASI — iletisim.css
   zd.css'e ek olarak yüklenir. zd.css değiştirilmez.
   ============================================================ */

/* ── AKTİF NAV ────────────────────────────────────────────────── */
.nav-active {
  color: var(--orange) !important;
  background: var(--orange-l) !important;
  border-radius: 8px;
}

/* ── PAGE HERO ────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
  margin-top: calc(var(--nav-h) + 38px);
  padding: 72px 0 60px;
  overflow: hidden;
}

/* dekoratif arka plan deseni */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,111,0,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255,111,0,.08) 0%, transparent 45%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.page-hero-overlay { display: none; }

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  margin-bottom: 20px;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumb li {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.breadcrumb li a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.breadcrumb li a:hover { color: var(--orange); }
.bc-sep {
  color: rgba(255,255,255,.3);
  font-size: .85rem;
}

.page-hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.page-hero-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  max-width: 480px;
}

/* ── HIZLI BİLGİ BARRI ────────────────────────────────────────── */
.contact-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  position: sticky;
  top: calc(var(--nav-h) + 38px);
  z-index: 10;
}

.contact-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.cbar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  text-decoration: none;
  color: var(--dark);
  transition: background var(--transition), color var(--transition);
}
a.cbar-item:hover {
  background: var(--orange-l);
  color: var(--orange);
}

.cbar-icon { font-size: 1.2rem; flex-shrink: 0; }

.cbar-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}
.cbar-text strong { font-size: .82rem; font-weight: 700; color: var(--dark); }
a.cbar-item:hover .cbar-text strong { color: var(--orange); }
.cbar-text small  { font-size: .7rem; color: var(--muted); }

.cbar-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 8px 0;
}

/* ── ANA İLETİŞİM ─────────────────────────────────────────────── */
.iletisim-section {
  padding: 80px 0 96px;
  background: var(--bg);
}

.iletisim-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* ── FORM WRAP ──────────────────────────────────────────────────  */
.iletisim-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: var(--shadow);
}

.form-header {
  margin-bottom: 36px;
}
.form-header .section-tag { margin-bottom: 12px; }
.form-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.form-header p { color: var(--muted); font-size: .9rem; }

.iletisim-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: .2px;
}
.form-group label span { color: var(--orange); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .875rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,111,0,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b8c1; }

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* Select */
.select-wrap {
  position: relative;
}
.select-wrap select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .875rem;
  color: var(--dark);
  background: var(--white);
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.select-wrap select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,111,0,.12);
}
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}

/* Submit */
.iletisim-form .btn-primary {
  margin-top: 4px;
  font-size: .92rem;
  padding: 15px 28px;
  gap: 10px;
}

.form-note {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
  margin-top: -4px;
}

/* Başarı mesajı */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 4px;
}
.form-success span { font-size: 1.4rem; flex-shrink: 0; }
.form-success strong { display: block; font-size: .92rem; color: #166534; margin-bottom: 4px; }
.form-success p { font-size: .82rem; color: #15803d; margin: 0; }

/* ── BİLGİ KARTI ────────────────────────────────────────────── */
.iletisim-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 38px + 60px);
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-l);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-card-header h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}
.info-card-header small { font-size: .72rem; color: var(--muted); }

.info-card address { font-size: .86rem; color: var(--mid); margin-bottom: 14px; }

.info-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange);
  transition: letter-spacing var(--transition);
}
.info-map-link:hover { letter-spacing: .3px; }

.info-phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.info-phone:hover { color: var(--orange); }

.info-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
}
.info-whatsapp:hover { background: #1da851; transform: translateY(-1px); }

.info-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.info-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .83rem;
}
.info-hours li:last-child { border-bottom: none; }
.info-hours span { color: var(--muted); font-weight: 500; }
.info-hours strong { font-weight: 700; color: var(--dark); }
.hours-closed strong { color: var(--muted); }

/* Turuncu kart */
.info-card-orange {
  background: linear-gradient(135deg, #fff3e0 0%, #fff8f0 100%);
  border-color: rgba(255,111,0,.2);
}
.info-card-orange .info-card-icon {
  background: var(--orange);
}

.info-urgent-text {
  font-size: .84rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.info-urgent-text strong { color: var(--orange); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 10px;
  width: 100%;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ── HARİTA ──────────────────────────────────────────────────── */
.harita-section {
  background: var(--white);
  padding: 0 0 0;
}

.harita-header {
  text-align: center;
  padding: 64px 0 40px;
}
.harita-header .section-tag { margin-bottom: 12px; }
.harita-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.harita-header p { color: var(--muted); }

.harita-wrap {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--orange);
}
.harita-wrap iframe { display: block; }

/* ── RESPONSİVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .iletisim-inner {
    grid-template-columns: 1fr;
  }
  .iletisim-info {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .contact-bar-inner {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .cbar-item { padding: 12px 18px; }
  .cbar-divider { display: none; }

  .iletisim-form-wrap {
    padding: 28px 20px;
  }

  .iletisim-info {
    grid-template-columns: 1fr;
  }

  .page-hero { padding: 52px 0 44px; }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }

  .iletisim-section { padding: 52px 0 64px; }
}




















/* ============================================================
   BLOG DETAY 
   ============================================================ */


/* ── NAV AKTİF DURUM ──────────────────────────────────────── */
.nav-item--active {
  color: var(--orange) !important;
  background: var(--orange-l);
  border-radius: 8px;
}


/* ── BLOG HERO ─────────────────────────────────────────────── */
.blog-hero {
  position: relative;
  margin-top: calc(38px + var(--nav-h));
  height: 500px;
  overflow: hidden;
}

.blog-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,15,25,.25)  0%,
    rgba(10,15,25,.60) 55%,
    rgba(10,15,25,.88) 100%
  );
  z-index: 1;
}

.blog-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 0 44px;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0;
}

/* ol>li yapısı (manuel fallback) */
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumb li {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.breadcrumb li a {
  color: var(--white);
  transition: color var(--transition);
}
.breadcrumb li a:hover { color: var(--orange); }

/* Yoast çıktısı (span>a yapısı) */
.breadcrumb span,
.breadcrumb span a {
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.breadcrumb span a:hover { color: var(--orange); }
.breadcrumb span.breadcrumb_last { color: rgba(255,255,255,.7); }

.bc-sep {
  color: rgba(255,255,255,.35);
  font-size: .85rem;
}

/* ── Hero: Kategori, Başlık, Meta ─────────────────────────── */
.blog-hero-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
  text-decoration: none;
}

.blog-hero-title {
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -.4px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  margin-bottom: 20px;
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.bhm-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
}

.bhm-sep { color: rgba(255,255,255,.3); font-size: .9rem; }


/* ── BLOG LAYOUT (2 sütun) ────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding-top: 52px;
  padding-bottom: 80px;
  align-items: start;
}


/* ── Blockquote Özet ────────────────────────────────────── */
.blog-summary {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e0 100%);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 0 0 40px;
}

.bq-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }

.blog-summary p {
  font-size: .95rem;
  font-weight: 600;
  color: var(--mid);
  line-height: 1.72;
  font-style: italic;
  margin: 0;
}


/* ── Makale İçeriği ─────────────────────────────────────── */
.blog-content {
  color: var(--mid);
  line-height: 1.85;
  font-size: .95rem;
}

.blog-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.blog-content h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}

.blog-content p      { margin-bottom: 18px; }
.blog-content strong { color: var(--dark); font-weight: 700; }

.blog-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 24px;
}

.blog-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg);
  border-radius: 8px;
  font-size: .9rem;
}

.bl-bullet { color: var(--orange); font-weight: 800; flex-shrink: 0; }

.blog-tip-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 32px 0;
}

.btb-icon { font-size: 1.6rem; flex-shrink: 0; }
.blog-tip-box strong { display: block; font-size: .9rem; font-weight: 800; color: #1e40af; margin-bottom: 6px; }
.blog-tip-box p      { font-size: .875rem; color: #1d4ed8; line-height: 1.65; margin: 0; }


/* ── Etiketler ──────────────────────────────────────────── */
.blog-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.blog-tags-label { font-size: .75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .6px; }

.blog-tag {
  display: inline-block;
  background: var(--bg);
  color: var(--mid);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.blog-tag:hover { background: var(--orange-l); color: var(--orange); border-color: rgba(255,111,0,.3); }


/* ── Paylaş ─────────────────────────────────────────────── */
.blog-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.blog-share-label { font-size: .75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .6px; }

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: transform var(--transition), opacity var(--transition);
}
.share-btn:hover { transform: translateY(-2px); opacity: .88; }
.share-wa   { background: #25d366; color: #fff; }
.share-fb   { background: #1877f2; color: #fff; }
.share-copy { background: var(--bg); color: var(--mid); border: 1.5px solid var(--border); }


/* ── Yazı Navigasyonu ───────────────────────────────────── */
.blog-post-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  padding: 28px 0 0;
  border-top: 2px solid var(--border);
}

.bpn-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  min-width: 0;
}
.bpn-btn:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(255,111,0,.12); transform: translateY(-2px); }

.bpn-prev { flex-direction: row; }
.bpn-next { flex-direction: row-reverse; }
.bpn-next .bpn-texts { text-align: right; }

.bpn-arrow { font-size: 1.4rem; color: var(--orange); flex-shrink: 0; line-height: 1; }
.bpn-texts { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.bpn-label { font-size: .7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .7px; }
.bpn-title { font-size: .82rem; font-weight: 700; color: var(--dark); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.bpn-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .7px;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.bpn-all:hover { background: var(--orange-l); border-color: rgba(255,111,0,.3); color: var(--orange); }


/* ── Sidebar ─────────────────────────────────────────────── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(38px + var(--nav-h) + 32px);
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.sidebar-card-title {
  font-size: .88rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.sidebar-cta-card {
  background: linear-gradient(145deg, #fff8f0 0%, #fff3e0 100%);
  border-color: rgba(255,111,0,.25);
  text-align: center;
}
.scc-icon { font-size: 2.2rem; margin-bottom: 10px; }
.sidebar-cta-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.sidebar-cta-card > p { font-size: .82rem; color: var(--muted); margin-bottom: 16px; line-height: 1.55; }
.scc-note { font-size: .72rem !important; color: var(--muted) !important; margin-top: 10px !important; margin-bottom: 0 !important; }

.related-posts-list { display: flex; flex-direction: column; }

.rp-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity var(--transition);
}
.related-posts-list li:last-child .rp-item { border-bottom: none; }
.rp-item:hover { opacity: .75; }
.rp-item img { width: 72px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: var(--bg); }
.rp-text { display: flex; flex-direction: column; gap: 4px; }
.rp-text strong { font-size: .8rem; font-weight: 700; color: var(--dark); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rp-text time    { font-size: .72rem; color: var(--muted); font-weight: 500; }

.sidebar-hizmet-list { display: flex; flex-direction: column; gap: 2px; }
.sidebar-hizmet-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--mid);
  transition: background var(--transition), color var(--transition);
}
.sidebar-hizmet-list li a:hover { background: var(--orange-l); color: var(--orange); }


/* ── CTA Bandı ───────────────────────────────────────────── */
.blog-cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, #1f2937 100%);
  padding: 64px 0;
}

.blog-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.blog-cta-tag {
  display: inline-block;
  background: rgba(255,111,0,.18);
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.blog-cta-text h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--white); margin-bottom: 10px; line-height: 1.25; }
.blog-cta-text p  { color: rgba(255,255,255,.62); font-size: .9rem; max-width: 460px; line-height: 1.65; }
.blog-cta-btns    { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.blog-cta-wa      { padding: 14px 28px; font-size: .9rem; }


/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; gap: 0; }
  .blog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
  .sidebar-cta-card { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .blog-hero { height: 360px; }
  .blog-layout { padding-top: 36px; padding-bottom: 56px; }
  .blog-post-nav { grid-template-columns: 1fr; gap: 10px; }
  .bpn-next { flex-direction: row; }
  .bpn-next .bpn-texts { text-align: left; }
  .bpn-all { flex-direction: row; justify-content: center; order: -1; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .blog-cta-inner { flex-direction: column; text-align: center; }
  .blog-cta-text p { max-width: 100%; }
  .blog-cta-btns { width: 100%; align-items: center; }
}

@media (max-width: 480px) {
  .blog-hero { height: 280px; }
  .blog-hero-title { font-size: 1.45rem; }
  .blog-summary { padding: 16px 18px; gap: 12px; }
  .bq-icon { font-size: 1.2rem; }
  .blog-hero-meta { gap: 6px; }
  .d-none-sm { display: none; }
}




/* ── Blog listesi aktif item ─────────────────────────────── */
.related-posts-list li.rp-active .rp-item {
  background: var(--orange-l);
  border-radius: 10px;
  border-bottom-color: transparent;
  padding: 8px;
  margin: 0 -8px;
  pointer-events: none; /* aktif sayfaya tekrar tıklanamaz */
}

.related-posts-list li.rp-active .rp-item img {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.related-posts-list li.rp-active .rp-text strong {
  color: var(--orange);
}

.related-posts-list li.rp-active .rp-text time {
  color: var(--orange-d);
}




/* ── SSS Accordion ───────────────────────────────────────── */
.sss-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 8px 0 24px;
}

.sss-item {
  border-bottom: 1px solid var(--border);
}
.sss-item:last-child { border-bottom: none; }

.sss-soru {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  transition: background var(--transition), color var(--transition);
}
.sss-soru:hover { background: var(--bg); color: var(--orange); }

.sss-open .sss-soru {
  background: var(--orange-l);
  color: var(--orange);
}

.sss-icon {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}
.sss-open .sss-icon { transform: rotate(45deg); }

.sss-cevap {
  display: none;
  padding: 0 22px 18px;
  background: var(--white);
}
.sss-open .sss-cevap { display: block; }

.sss-cevap p {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.75;
  margin: 0;
  padding-top: 4px;
}




/* ============================================================
   BLOG ARŞİV (blog-arsiv.css)
   ============================================================ */


/* ═══════════════════════════════════════════════════════════
   SAYFA HERO
   ═══════════════════════════════════════════════════════════ */
.ba-hero {
  position: relative;
  margin-top: calc(38px + var(--nav-h));
  background: linear-gradient(135deg, var(--dark) 0%, #1a2332 100%);
  padding: 52px 0 48px;
  overflow: hidden;
}

/* Dekoratif arka plan deseni */
.ba-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,111,0,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,111,0,.05) 0%, transparent 60%);
  pointer-events: none;
}

.ba-hero-overlay {
  display: none; /* sadece img varsa kullanılır */
}

.ba-hero-inner {
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.ba-hero .breadcrumb {
  margin-bottom: 28px;
}

/* Metin */
.ba-hero-text {
  max-width: 640px;
  margin-bottom: 40px;
}

.ba-hero-text .section-tag {
  background: rgba(255,111,0,.18);
  color: var(--orange);
  margin-bottom: 16px;
}

.ba-hero-text h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}

.ba-hero-text h1 strong {
  color: var(--orange);
  font-weight: 900;
}

.ba-hero-text p {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* İstatistik şeridi */
.ba-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px 32px;
  width: fit-content;
}

.ba-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 28px;
}

.ba-stat strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.ba-stat span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
}

.ba-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   BÖLÜM
   ═══════════════════════════════════════════════════════════ */
.ba-section {
  padding: 64px 0 80px;
  background: var(--bg);
}

.ba-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.ba-section-head h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.ba-count {
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}


/* ═══════════════════════════════════════════════════════════
   KART GRİD
   İlk kart geniş (featured), geri kalanlar 3'lü grid
   ═══════════════════════════════════════════════════════════ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Featured kart tam genişlik kaplar — resim sol, yazı sağ */
.ba-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "resim yazi";
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ba-card--featured .ba-card-img-wrap {
  grid-area: resim;
  height: 100%;
  min-height: 360px;
  border-radius: 0;
}

.ba-card--featured .ba-card-img-wrap img {
  height: 100%;
}

.ba-card--featured .ba-card-body {
  grid-area: yazi;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.ba-card--featured .ba-card-title {
  font-size: 1.5rem;
}

.ba-card--featured .ba-card-excerpt {
  -webkit-line-clamp: 4;
  font-size: .92rem;
}


/* ── Standart Kart ──────────────────────────────────────── */
.ba-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Resim alanı */
.ba-card-img-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  height: 210px;
  background: var(--bg);
}

.ba-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

.ba-card:hover .ba-card-img-wrap img {
  transform: scale(1.04);
}

/* Featured rozeti */
.ba-card-featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 1;
}

/* Kart gövdesi */
.ba-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Meta: kategori · tarih · görüntülenme */
.ba-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.ba-card-cat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--orange-l);
  color: var(--orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.ba-card-dot {
  color: var(--border);
  font-size: .9rem;
}

.ba-card-meta time {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
}

.ba-card-views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
}

/* Başlık */
.ba-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.ba-card-title a {
  color: inherit;
  transition: color var(--transition);
}
.ba-card-title a:hover { color: var(--orange); }

/* Özet */
.ba-card-excerpt {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
  flex: 1;
}

/* Oku linki */
.ba-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  transition: gap var(--transition);
}
.ba-card-link:hover { gap: 10px; }


/* ═══════════════════════════════════════════════════════════
   SAYFALAMA
   ═══════════════════════════════════════════════════════════ */
.ba-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.ba-page-num,
.ba-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--mid);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.ba-page-num:hover,
.ba-page-btn:hover {
  background: var(--orange-l);
  border-color: rgba(255,111,0,.3);
  color: var(--orange);
}

.ba-page-current {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  pointer-events: none;
}

.ba-page-disabled {
  opacity: .35;
  pointer-events: none;
  cursor: default;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSİVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ba-card--featured {
    grid-template-columns: 1fr;
    grid-template-areas:
      "resim"
      "yazi";
  }
  .ba-card--featured .ba-card-img-wrap {
    height: 260px;
    min-height: unset;
  }
  .ba-card--featured .ba-card-body {
    padding: 28px 24px;
  }
  .ba-card--featured .ba-card-title { font-size: 1.25rem; }
}

@media (max-width: 768px) {
  .ba-hero { padding: 40px 0 36px; }
  .ba-hero-text h1 { font-size: 1.7rem; }
  .ba-hero-stats { padding: 16px 20px; width: 100%; justify-content: space-around; }
  .ba-stat { padding: 0 16px; }
  .ba-stat strong { font-size: 1.2rem; }

  .ba-section { padding: 48px 0 64px; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-card--featured { grid-column: 1; }
}

@media (max-width: 480px) {
  .ba-hero-stats { flex-wrap: wrap; gap: 16px; }
  .ba-stat-sep { display: none; }
  .ba-stat { padding: 0 12px; }
  .ba-pagination { flex-wrap: wrap; }
}







@media (max-width: 768px) {
  .breadcrumb .breadcrumb_last {
    display: none;
  }
}




















/* ============================================================
   BLOG ARŞİV — EK STİLLER
   Bu kodu zd.css'in sonuna ekleyin.
   ============================================================ */


/* ── Boş durum ───────────────────────────────────────────── */
.ba-empty {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ba-empty-icon {
  font-size: 3rem;
  line-height: 1;
}

.ba-empty h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.ba-empty p {
  font-size: .9rem;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.65;
}

.ba-empty .btn-primary {
  margin-top: 8px;
}


/* ── Sayfalama: disabled ─────────────────────────────────── */
.ba-page-disabled {
  opacity: .35;
  pointer-events: none;
  cursor: default;
  border-color: var(--border) !important;
  background: var(--white) !important;
  color: var(--muted) !important;
}


/* ── Mobil: Hero stats ───────────────────────────────────── */
@media (max-width: 600px) {
  .ba-hero-stats {
    width: 100%;
    justify-content: space-around;
    padding: 16px 12px;
  }

  .ba-stat {
    padding: 0 10px;
  }

  .ba-stat strong {
    font-size: 1.2rem;
  }
}














/* ============================================================
   HİZMET DETAY — GALERİ STİLLERİ
   zd.css'in sonuna ekleyin.
   ============================================================ */

/* ── Galeri başlık ───────────────────────────────────────── */
.hizmet-galeri {
  margin: 40px 0 32px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
}

.hizmet-galeri-baslik {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

/* ── Grid ────────────────────────────────────────────────── */
.hizmet-galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* ── Kart ────────────────────────────────────────────────── */
.hg-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}

.hg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, opacity .35s ease;
}

.hg-item:hover img {
  transform: scale(1.06);
  opacity: .88;
}

/* ── Zoom ikonu ──────────────────────────────────────────── */
.hg-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17,24,39,.0);
  color: transparent;
  transition: background .3s ease, color .3s ease;
  border-radius: inherit;
}

.hg-item:hover .hg-zoom {
  background: rgba(17,24,39,.35);
  color: #fff;
}

/* ── Sidebar: emoji placeholder ─────────────────────────── */
.rp-emoji {
  width: 72px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--orange-l);
  border-radius: 8px;
  flex-shrink: 0;
}

/* ── Sidebar: hizmet özet satırı ─────────────────────────── */
.rp-hizmet-ozet {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Fancybox tema rengi override ───────────────────────── */
:root {
  --f-accent-color: #ff6f00;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .hizmet-galeri-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .hizmet-galeri-grid {
    grid-template-columns: 1fr;
  }
}








/* ============================================================
   HİZMETLER ARŞİV — EK STİLLER
   zd.css'in sonuna ekleyin.
   ============================================================ */

/* ── Page hero alt başlık ────────────────────────────────── */
.page-hero-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 8px;
}

/* ── Hizmet ikon: görsel modunda ─────────────────────────── */
.hizmet-icon--img {
  background: transparent;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}

.hizmet-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* ── Hizmet ikon: emoji modunda ──────────────────────────── */
.hizmet-icon--emoji {
  font-size: 1.6rem;
}

/* ── Kart başlık linki ───────────────────────────────────── */
.hizmet-card h3 a {
  color: inherit;
  transition: color var(--transition);
}
.hizmet-card h3 a:hover { color: var(--orange); }

/* ── Kart flex layout (butonlar her zaman altta) ─────────── */
.hizmet-card {
  display: flex;
  flex-direction: column;
}
.hizmet-card h3   { margin-top: 4px; }
.hizmet-card > p  { flex: 1; }

/* ── Mobil ───────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hizmet-grid {
    grid-template-columns: 1fr;
  }
}








/* ============================================================
   TEKLİF AL SAYFASI — EK STİLLER
   zd.css'in sonuna ekleyin.
   ============================================================ */


/* ── Güven Şeridi ────────────────────────────────────────── */
.teklif-trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.teklif-trust-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ttb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--mid);
}

.ttb-icon { font-size: 1.1rem; }

.ttb-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 10px 0;
}

@media (max-width: 640px) {
  .teklif-trust-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .ttb-item { white-space: nowrap; padding: 14px 20px; }
}


/* ── Contact Form 7 — site temasıyla eşleşen stiller ─────── */

/* Genel form wrapper */
.wpcf7 { margin: 0; }
.wpcf7-form { display: flex; flex-direction: column; gap: 20px; }

/* Yan yana alanlar için p etiketlerini row gibi davrandır */
.wpcf7-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Label */
.wpcf7-form label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: .2px;
}

/* Input, tel, email */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .875rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,111,0,.12);
  background: var(--white);
}

/* Select ok ikonu */
.wpcf7-form select {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

/* Textarea */
.wpcf7-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit butonu */
.wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 15px 28px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: .4px;
  margin-top: 4px;
}
.wpcf7-form input[type="submit"]:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,111,0,.35);
}

/* Hata ve başarı mesajları */
.wpcf7-not-valid-tip {
  font-size: .75rem;
  color: #dc2626;
  font-weight: 600;
  margin-top: 4px;
}

.wpcf7-not-valid input,
.wpcf7-not-valid select,
.wpcf7-not-valid textarea {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1) !important;
}

.wpcf7-response-output {
  margin: 8px 0 0;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  border: none !important;
}

.wpcf7-mail-sent-ok {
  background: #f0fdf4;
  color: #166534;
  border-left: 4px solid #22c55e !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked,
.wpcf7-validation-errors {
  background: #fef2f2;
  color: #991b1b;
  border-left: 4px solid #dc2626 !important;
}

/* Spinner */
.wpcf7-spinner {
  margin: 0 0 0 12px;
  vertical-align: middle;
}






/* ── Blog İletişim Butonları ─────────────────────────────── */
.blog-contact-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.bcb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.bcb-btn:hover { transform: translateY(-2px); }

.bcb-wa {
  background: #25d366;
  color: #fff;
}
.bcb-wa:hover { box-shadow: 0 6px 20px rgba(37,211,102,.35); }

.bcb-tel {
  background: var(--orange);
  color: #fff;
}
.bcb-tel:hover { box-shadow: 0 6px 20px rgba(255,111,0,.35); }

@media (max-width: 480px) {
  .bcb-btn { flex: 1; justify-content: center; }
}




.bcb-teklif {
  background: var(--dark);
  color: #fff;
}
.bcb-teklif:hover { box-shadow: 0 6px 20px rgba(17,24,39,.25); }











/* ── Form boşluk düzeltmeleri ──────────────────────────── */
.iletisim-form-wrap {
  padding: 32px 28px;        /* 48px 44px → sıkıştır */
}

.form-header {
  margin-bottom: 20px;       /* 36px → azalt */
}

.iletisim-form {
  gap: 12px;                 /* 20px → azalt */
}

.form-row {
  gap: 12px;                 /* 20px → azalt */
}

.iletisim-form .btn-primary {
  margin-top: 2px;           /* 4px → hafif kıs */
  padding: 13px 28px;        /* 15px → biraz daha kompakt */
}

.form-note {
  margin-top: -2px;
}