/* ============================================================
   İMG Mühendislik — Precision Engineering Design System
   Font: Poppins
   Aesthetic: Clean authority, warm orange energy, spacious craft
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --ink:          #0F1117;
  --ink-2:        #1A1D25;
  --ink-3:        #252830;
  --fire:         #E87722;
  --fire-dim:     #D06A1A;
  --fire-glow:    rgba(232,119,34,0.08);
  --fire-border:  rgba(232,119,34,0.22);
  --ash:          #F8F9FA;
  --white:        #FFFFFF;
  --text-1:       #F1F2F4;
  --text-2:       #94969C;
  --text-3:       #6B7280;
  --body-text:    #374151;
  --border-dark:  rgba(255,255,255,0.08);
  --border-light: #E5E7EB;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.12);
  --glow-fire:    0 0 40px rgba(232,119,34,0.20);
  --r-xs:  6px;
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-pill:50px;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --container: 1280px;
  --topbar-h: 36px;
  --header-h: 84px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
.syne { font-family: 'Poppins', sans-serif; }

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.25rem, 5vw, 3.25rem);   font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem);  font-weight: 600; }
h4 { font-size: 1.0625rem; font-weight: 600; }

/* ── Container ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  background: var(--ink);
  height: var(--topbar-h);
  display: flex; align-items: center;
  font-size: 0.8125rem;
}
.topbar-inner {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-left a {
  color: rgba(255,255,255,0.6); font-size: 0.75rem;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.topbar-left a:hover { color: var(--fire); }
.topbar-sep { color: rgba(255,255,255,0.15); font-size: 0.75rem; }
.topbar-right { display: flex; align-items: center; gap: 6px; }
.topbar-right a {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); border-radius: 50%;
  font-size: 0.75rem; transition: all 0.2s;
}
.topbar-right a:hover { color: var(--fire); background: rgba(232,119,34,0.15); }

/* Panel butonu — normal ikon boyutu geçersiz kılınır */
.topbar-panel-btn {
  width: auto !important;
  height: auto !important;
  border-radius: 4px !important;
  padding: 3px 10px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  background: var(--fire-glow) !important;
  border: 1px solid var(--fire-border) !important;
  color: var(--fire) !important;
  white-space: nowrap;
  gap: 5px;
}
.topbar-panel-btn:hover {
  background: var(--fire) !important;
  color: #fff !important;
}

/* Ana menü Şantiye Paneli linki */
.nav-panel-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: var(--fire-glow);
  border: 1px solid var(--fire-border);
  color: var(--fire) !important;
  padding: 6px 12px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: all 0.2s;
}
.nav-panel-link:hover {
  background: var(--fire);
  color: #fff !important;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  height: var(--header-h);
  position: sticky; top: 0; z-index: 900;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%; gap: 24px;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 60px; width: auto; object-fit: contain; }

/* Header phone (desktop only) */
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--ink); font-size: 0.875rem; font-weight: 600;
  white-space: nowrap; transition: color 0.2s;
}
.header-phone:hover { color: var(--fire); }
.header-phone i { color: var(--fire); font-size: 0.8125rem; }
.header-actions {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}

/* ── Nav ─────────────────────────────────────────────────────── */
.site-nav > ul { display: flex; align-items: center; gap: 2px; }
.site-nav > ul > li { position: relative; }

.site-nav > ul > li > a,
.nav-dropdown-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; font-size: 0.9rem; font-weight: 500;
  color: var(--ink-2); border-radius: var(--r-xs);
  transition: all 0.2s;
  background: none; border: none; cursor: pointer;
  font-family: inherit; white-space: nowrap;
}
.site-nav > ul > li > a:hover,
.site-nav > ul > li > a.active,
.nav-dropdown-btn:hover,
.has-dropdown.open > .nav-dropdown-btn {
  color: var(--fire); background: var(--fire-glow);
}
.nav-chevron {
  font-size: 0.6rem; opacity: 0.5;
  transition: transform 0.25s var(--ease);
}
.has-dropdown.open .nav-chevron { transform: rotate(180deg); }

/* Mega dropdown — 2 kolon */
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: -12px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  min-width: 520px; padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top left;
  transition: all 0.22s var(--ease);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.has-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}
.dropdown-group-label {
  grid-column: 1 / -1;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--text-3);
  padding: 10px 12px 4px; margin-top: 4px;
}
.dropdown-group-label:first-child { margin-top: 0; }
.dropdown-menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; font-size: 0.875rem; color: var(--body-text);
  border-radius: var(--r-xs); transition: all 0.15s;
}
.dropdown-menu a .di {
  width: 6px; height: 6px; background: var(--border-light);
  border-radius: 50%; flex-shrink: 0; transition: background 0.15s;
}
.dropdown-menu a:hover { color: var(--fire); background: var(--fire-glow); }
.dropdown-menu a:hover .di { background: var(--fire); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--ink-2);
  border-radius: 2px; transition: all 0.25s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 16px; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  padding: 80px 0 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -40%; right: -20%; width: 70%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(232,119,34,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-accent { display: none; }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fire-glow);
  border: 1px solid var(--fire-border);
  color: var(--fire); padding: 6px 16px;
  border-radius: var(--r-pill); font-size: 0.8125rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--fire); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-content h1 {
  color: var(--ink); margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.1;
}
.hero-content h1 em {
  font-style: normal; color: var(--fire);
  position: relative;
}

.hero-content > p {
  color: var(--text-3); font-size: 1.125rem;
  max-width: 520px; margin-bottom: 36px; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Hero image */
.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%; height: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 480px;
}
.hero-visual::after {
  content: '';
  position: absolute; bottom: -12px; left: 24px; right: 24px;
  height: 40px;
  background: rgba(232,119,34,0.12);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  filter: blur(20px);
  z-index: -1;
}

/* Hero stats row */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
}
.hero-stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border-light);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 2rem; font-weight: 700; color: var(--fire);
  line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.8125rem; color: var(--text-3); font-weight: 500;
}

/* ── Stats Band ─────────────────────────────────────────────── */
.stats-band {
  background: var(--ink);
  padding: 0;
  position: relative; overflow: hidden;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; z-index: 1;
}
.stat-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem; font-weight: 700; color: var(--fire);
  line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em;
}
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); font-weight: 400; }

/* ── Section Base ───────────────────────────────────────────── */
.section     { padding: 96px 0; }
.section-sm  { padding: 56px 0; }
.section-alt { background: var(--ash); }
.section-dark { background: var(--ink); }
.section-ink2 { background: var(--ink-2); }

.section-header { text-align: center; margin-bottom: 60px; }
.eyebrow {
  display: inline-block; color: var(--fire); font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-dark .section-header h2,
.section-ink2 .section-header h2 { color: var(--white); }
.section-dark .section-header p,
.section-ink2 .section-header p  { color: var(--text-2); }
.section-header p { max-width: 560px; margin: 14px auto 0; font-size: 1.0625rem; color: var(--text-3); line-height: 1.7; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-sm);
  font-size: 0.9375rem; font-weight: 600;
  transition: all 0.2s var(--ease);
  white-space: nowrap; letter-spacing: 0.01em;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--fire); color: var(--white);
  border-color: var(--fire);
}
.btn-primary:hover {
  background: var(--fire-dim); border-color: var(--fire-dim);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,119,34,0.3);
}
.btn-secondary {
  background: var(--ink); color: var(--white);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-dark {
  background: var(--ink); color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--ink-2); transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent; color: var(--fire);
  border-color: var(--border-light);
}
.btn-outline:hover { background: var(--fire-glow); border-color: var(--fire); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--r-sm); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ── Service Cards ──────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md); padding: 32px 28px;
  transition: all 0.25s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--fire-border);
}

.service-icon {
  width: 44px; height: 44px;
  background: var(--fire-glow); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 20px; color: var(--fire);
  transition: all 0.25s;
}
.service-card:hover .service-icon { background: var(--fire); color: var(--white); }

.service-card h3 {
  font-size: 1rem; margin-bottom: 8px;
  color: var(--ink); letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.875rem; color: var(--text-3); line-height: 1.65;
  flex: 1; margin-bottom: 20px;
}
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 600; color: var(--fire);
  transition: gap 0.2s;
}
.service-card:hover .card-link { gap: 10px; }

/* ── Why Us ─────────────────────────────────────────────────── */
.why-us-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.why-us-content h2 { margin-bottom: 16px; }
.why-us-content > p { margin-bottom: 40px; color: var(--text-3); font-size: 1.0625rem; line-height: 1.75; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-box {
  background: var(--white); border-radius: var(--r-sm);
  padding: 22px; border: 1px solid var(--border-light);
  transition: all 0.2s;
}
.feature-box:hover { border-color: var(--fire-border); box-shadow: var(--shadow-sm); }
.feature-box-icon {
  width: 36px; height: 36px; background: var(--fire-glow);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--fire); font-size: 0.9375rem; margin-bottom: 12px;
}
.feature-box h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.feature-box p  { font-size: 0.8125rem; color: var(--text-3); margin: 0; line-height: 1.6; }

.why-us-visual {
  position: relative;
}
.why-us-img-wrap {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--ash);
}
.why-us-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.why-us-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--fire); border-radius: var(--r-md);
  padding: 20px 24px; box-shadow: 0 8px 24px rgba(232,119,34,0.35);
  color: var(--white); min-width: 140px;
}
.why-us-badge strong {
  font-family: 'Poppins', sans-serif; font-size: 2rem;
  font-weight: 700; display: block; line-height: 1;
}
.why-us-badge span { font-size: 0.8125rem; opacity: 0.9; }

/* ── Dryvatec Section ───────────────────────────────────────── */
.dryvatec-section { background: var(--ash); padding: 80px 0; }
.dryvatec-card {
  display: grid; grid-template-columns: auto 1fr;
  gap: 48px; align-items: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl); padding: 48px 52px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.dryvatec-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: var(--fire);
  border-radius: 4px 0 0 4px;
}
.dryvatec-logo { width: 180px; height: auto; }

.dryvatec-text h3 { color: var(--ink); margin-bottom: 10px; }
.dryvatec-text p  { color: var(--text-3); margin-bottom: 24px; line-height: 1.7; }

.product-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.product-tag {
  background: var(--fire-glow); border: 1px solid var(--fire-border);
  color: var(--fire); padding: 6px 16px;
  border-radius: var(--r-pill); font-size: 0.8125rem; font-weight: 600;
}

/* ── Video ───────────────────────────────────────────────────── */
.video-wrap {
  max-width: 800px; margin: 0 auto;
  position: relative;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.video-container {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: var(--ink-3); cursor: pointer;
}
.video-thumbnail {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.video-container:hover .video-thumbnail { transform: scale(1.02); }

.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.25s;
}
.video-container:hover .play-overlay { background: rgba(0,0,0,0.2); }

.play-btn {
  width: 76px; height: 76px;
  background: var(--fire); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem;
  box-shadow: 0 0 0 16px rgba(232,119,34,0.15);
  transition: all 0.3s var(--ease-spring);
  padding-left: 4px;
}
.video-container:hover .play-btn {
  transform: scale(1.12);
  box-shadow: 0 0 0 24px rgba(232,119,34,0.1), var(--glow-fire);
}
.video-container iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* ── Cities ─────────────────────────────────────────────────── */
.cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.city-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all 0.25s;
}
.city-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.city-card-img,
.city-card-map {
  height: 200px; background: var(--ash);
  overflow: hidden; position: relative;
}
.city-card-map iframe {
  width: 100%; height: 100%; border: none; display: block;
}
.city-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.city-card:hover .city-card-img img { transform: scale(1.04); }
.city-card-img::after,
.city-card-map::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 48px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
}
.city-card-img-label {
  position: absolute; bottom: 14px; left: 18px; z-index: 1;
  color: white; font-family: 'Poppins', sans-serif;
  font-size: 1.125rem; font-weight: 700;
}
.city-card-body { padding: 28px; }
.city-services {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.city-tag {
  background: var(--ash); border-radius: var(--r-pill);
  padding: 5px 14px; font-size: 0.8125rem; color: var(--body-text);
  border: 1px solid var(--border-light);
}
.city-address {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.8125rem; color: var(--text-3);
  padding-top: 16px; margin-top: 4px; border-top: 1px solid var(--border-light);
  line-height: 1.5;
}
.city-address i { color: var(--fire); margin-top: 3px; flex-shrink: 0; }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: var(--ink);
  padding: 96px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(232,119,34,0.08), transparent);
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: var(--text-2); font-size: 1.0625rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 1.25rem; font-weight: 700;
  margin-top: 28px; justify-content: center;
  font-family: 'Poppins', sans-serif;
}
.cta-phone i { color: var(--fire); }

/* ── Google Maps ────────────────────────────────────────────── */
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.map-card { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-label {
  background: var(--ink); color: var(--white);
  padding: 12px 16px; font-size: 0.875rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.map-label i { color: var(--fire); }
.map-card iframe { width: 100%; height: 260px; border: none; display: block; }

/* ── Breadcrumb & Page Hero ─────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 80% at 80% 50%, rgba(232,119,34,0.06), transparent);
}

/* Breadcrumb — navigasyon butonları */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 6px; margin-bottom: 20px; position: relative; z-index: 1;
}
.breadcrumb a,
.bc-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 11px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem; font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.breadcrumb a:hover,
.bc-btn:hover {
  background: rgba(232,119,34,0.18);
  border-color: var(--fire-border);
  color: var(--fire);
}
.breadcrumb .sep { color: rgba(255,255,255,0.2); font-size: 0.7rem; }
.breadcrumb .current,
.bc-current {
  display: inline-flex; align-items: center;
  padding: 4px 11px;
  background: rgba(232,119,34,0.15);
  border: 1px solid var(--fire-border);
  border-radius: var(--r-pill);
  color: var(--fire);
  font-size: 0.8rem; font-weight: 600;
  white-space: nowrap;
}

.page-hero h1 { color: var(--white); position: relative; z-index: 1; max-width: 720px; }
.page-hero p {
  color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 580px;
  font-size: 1.0625rem; line-height: 1.75; position: relative; z-index: 1;
}
.page-hero-cta { margin-top: 32px; display: flex; gap: 14px; position: relative; z-index: 1; }

/* ── FAQ ────────────────────────────────────────────────────── */
@keyframes faq-slide-down {
  from { height: 0; opacity: 0; }
  to   { height: var(--radix-accordion-content-height); opacity: 1; }
}
@keyframes faq-slide-up {
  from { height: var(--radix-accordion-content-height); opacity: 1; }
  to   { height: 0; opacity: 0; }
}

.faq-list {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 740px; margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm); overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[data-state="open"] {
  border-color: var(--fire-border);
  box-shadow: 0 4px 16px rgba(232,119,34,0.08);
}
.faq-question {
  width: 100%; text-align: left; padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9375rem; font-weight: 600; color: var(--ink-2);
  cursor: pointer; background: none; border: none;
  transition: color 0.2s, background 0.2s; gap: 12px;
}
.faq-question:hover { color: var(--fire); background: var(--ash); }
.faq-question[data-state="open"] { color: var(--fire); }
.faq-chevron {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--fire);
  transition: transform 0.3s var(--ease);
}
.faq-question[data-state="open"] .faq-chevron { transform: rotate(180deg); }
.faq-content {
  overflow: hidden;
}
.faq-content[data-state="open"]   { animation: faq-slide-down 0.28s var(--ease) both; }
.faq-content[data-state="closed"] { animation: faq-slide-up   0.22s var(--ease) both; }
.faq-answer-inner {
  padding: 16px 20px 20px;
  color: var(--text-3); font-size: 0.9375rem; line-height: 1.7;
  border-top: 1px solid var(--border-light);
}

/* ── Steps ──────────────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex; gap: 20px; align-items: flex-start;
  position: relative; padding-bottom: 28px;
}
.step-item:last-child { padding-bottom: 0; }
.step-item:not(:last-child)::after {
  content: '';
  position: absolute; left: 19px; top: 40px; bottom: 0;
  width: 2px; background: var(--border-light);
}
.step-num {
  width: 40px; height: 40px; background: var(--fire); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.9375rem;
  flex-shrink: 0; position: relative; z-index: 1;
  box-shadow: 0 4px 12px rgba(232,119,34,0.3);
}
.step-content h4 { margin-bottom: 5px; }
.step-content p  { font-size: 0.9rem; color: var(--text-3); margin: 0; }

/* ── Three-Step Cards ───────────────────────────────────────── */
.three-steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step-card {
  background: var(--ash); border-radius: var(--r-md);
  padding: 28px; border: 1px solid var(--border-light);
  transition: all 0.25s;
}
.step-card:hover { background: var(--white); box-shadow: var(--shadow-md); border-color: var(--fire-border); }
.step-card-num {
  font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800;
  color: var(--fire); opacity: 0.25; line-height: 1; margin-bottom: 12px;
}
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p  { font-size: 0.875rem; color: var(--text-3); margin-bottom: 16px; line-height: 1.65; }

/* ── References ─────────────────────────────────────────────── */
.ref-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 14px;
}
.ref-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-sm); padding: 18px 16px;
  text-align: center; font-size: 0.8125rem; font-weight: 500;
  color: var(--body-text); transition: all 0.2s;
}
.ref-card:hover { border-color: var(--fire); color: var(--fire); transform: translateY(-2px); }

/* Logo Grid */
.ref-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.ref-logo-item {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-sm); padding: 20px 24px;
  display: flex; align-items: center; justify-content: center;
  width: 160px; height: 100px;
  flex-shrink: 0; transition: all 0.2s;
}
.ref-logo-item:hover { border-color: var(--fire-border); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.ref-logo-item img {
  width: auto; height: auto;
  max-width: 120px; max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s;
}
.ref-logo-item:hover img { filter: grayscale(0%) opacity(1); }

/* Testimonials */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-md); padding: 28px;
  display: flex; flex-direction: column;
  transition: all 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; color: #F59E0B; font-size: 0.875rem; }
.testimonial-text {
  font-size: 0.9375rem; color: var(--body-text);
  line-height: 1.75; flex: 1; margin-bottom: 20px;
  font-style: italic;
}
.testimonial-footer { display: flex; gap: 12px; align-items: center; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--fire); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testimonial-name { display: block; font-size: 0.9375rem; color: var(--ink); }
.testimonial-role { display: block; font-size: 0.8125rem; color: var(--text-3); }
.testimonial-service {
  display: inline-block; margin-top: 4px;
  font-size: 0.75rem; font-weight: 600; color: var(--fire);
  background: var(--fire-glow); padding: 2px 8px;
  border-radius: var(--r-pill);
}

@media (max-width: 1024px) {
  .ref-logo-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ref-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── Service Intro Grid ─────────────────────────────────────── */
.service-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: start;
}
@media (max-width: 768px) {
  .service-intro-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── GEO: Tanım Kutusu ────────────────────────────────────── */
.definition-card {
  background: var(--ash); border-left: 4px solid var(--fire);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 28px 32px; margin-bottom: 48px;
  max-width: 800px; margin-left: auto; margin-right: auto;
}
.definition-card h2 {
  font-size: 1.25rem; margin-bottom: 10px; color: var(--ink);
}
.definition-card p {
  font-size: 1rem; color: var(--body-text); line-height: 1.75; margin: 0;
}
.definition-card strong { color: var(--ink); }

/* ── GEO: Karşılaştırma Tablosu ───────────────────────────── */
.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9375rem; margin: 24px 0;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md); overflow: hidden;
}
.comparison-table caption {
  text-align: left; font-weight: 600; color: var(--ink);
  padding: 0 0 12px; font-size: 1rem;
}
.comparison-table thead th {
  background: var(--ink); color: var(--white);
  padding: 14px 18px; text-align: left; font-weight: 600;
  font-size: 0.875rem;
}
.comparison-table tbody td {
  padding: 12px 18px; border-bottom: 1px solid var(--border-light);
  color: var(--body-text); vertical-align: top;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: var(--ash); }
.comparison-table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }

/* ── Info Grid (neden biz style) ───────────────────────────── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 28px; border: 1px solid var(--border-light);
  display: flex; gap: 16px; align-items: flex-start;
  transition: all 0.2s;
}
.info-card:hover { box-shadow: var(--shadow-md); border-color: var(--fire-border); }
.info-card-icon {
  width: 44px; height: 44px; background: var(--fire-glow);
  border-radius: var(--r-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--fire); font-size: 1.2rem;
}
.info-card h4 { margin-bottom: 5px; font-size: 0.9375rem; }
.info-card p  { font-size: 0.875rem; color: var(--text-3); margin: 0; }

/* ── Contact Office Cards ───────────────────────────────────── */
.contact-offices-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.contact-office-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all 0.25s;
}
.contact-office-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-office-map { height: 200px; }
.contact-office-map iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-office-body { padding: 28px; }
.contact-office-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--fire); background: var(--fire-glow);
  padding: 3px 12px; border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.contact-office-body h3 {
  font-size: 1.25rem; margin-bottom: 20px; color: var(--ink);
}
.contact-office-items { display: flex; flex-direction: column; gap: 14px; }
.contact-office-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9375rem; color: var(--body-text); line-height: 1.5;
}
.contact-office-item i {
  color: var(--fire); margin-top: 3px; flex-shrink: 0; width: 16px; text-align: center;
}
.contact-office-item a { color: var(--body-text); transition: color 0.2s; }
.contact-office-item a:hover { color: var(--fire); }

/* Quick Contact Grid */
.contact-quick-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.contact-quick-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-md); padding: 28px 24px;
  text-align: center; text-decoration: none;
  transition: all 0.2s; display: flex;
  flex-direction: column; align-items: center; gap: 12px;
}
.contact-quick-card:hover { border-color: var(--fire-border); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-quick-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: var(--fire-glow); color: var(--fire);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
}
.contact-quick-card h4 { font-size: 0.9375rem; color: var(--ink); margin: 0; }
.contact-quick-card span { font-size: 0.8125rem; color: var(--text-3); }

@media (max-width: 768px) {
  .contact-offices-grid { grid-template-columns: 1fr; }
  .contact-quick-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .contact-quick-grid { grid-template-columns: 1fr; }
}

/* ── Contact & Form ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; align-items: start; }
.contact-aside h2 { margin-bottom: 14px; }
.contact-aside > p { color: var(--text-3); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 42px; height: 42px; background: var(--fire-glow);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; color: var(--fire); font-size: 1rem; flex-shrink: 0;
}
.ci-text h4 { font-size: 0.8125rem; color: var(--text-3); font-weight: 500; margin-bottom: 3px; }
.ci-text p  { font-size: 0.9375rem; color: var(--ink-2); font-weight: 500; margin: 0; }

.form-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.8125rem; font-weight: 600;
  color: var(--ink-2); margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xs); font-size: 0.9375rem;
  color: var(--ink-2); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.875rem; color: var(--text-3);
}
.form-check input[type="checkbox"] { accent-color: var(--fire); flex-shrink: 0; margin-top: 3px; }

/* ── Yapı Bilgi Formu (YBF) ─────────────────────────────────── */

/* Info section */
.ybf-info { background: var(--ash); }
.ybf-info-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.ybf-badge {
  display: inline-block; padding: 5px 14px;
  background: var(--fire-glow); border: 1px solid var(--fire-border);
  color: var(--fire); font-size: 0.8125rem; font-weight: 700;
  border-radius: var(--r-pill); margin-bottom: 16px;
}
.ybf-info-header h2 { font-size: 2rem; margin-bottom: 14px; }
.ybf-info-header p  { color: var(--text-3); font-size: 1.0625rem; line-height: 1.75; }

/* Images grid */
.ybf-images {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
  align-items: end;
}
.ybf-img-card {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ybf-img-card img {
  width: 100%; height: 240px; object-fit: cover; display: block;
  transition: transform 0.4s var(--ease);
}
.ybf-img-card--featured img { height: 300px; }
.ybf-img-card:hover img { transform: scale(1.04); }
.ybf-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: #fff; font-size: 0.8125rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}

/* Stats */
.ybf-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 40px;
}
.ybf-stat {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-md); padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.ybf-stat-num {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 2.25rem; font-weight: 800; color: var(--fire);
  line-height: 1; margin-bottom: 10px;
}
.ybf-stat-label { font-size: 0.875rem; color: var(--text-3); line-height: 1.5; }
.ybf-stat-label em { font-style: normal; font-size: 0.75rem; color: var(--text-3); opacity: .8; }

/* Benefits */
.ybf-benefits {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ybf-benefit {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-md); padding: 20px 18px;
}
.ybf-benefit-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--fire-glow); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--fire);
}
.ybf-benefit strong { display: block; font-size: 0.9375rem; color: var(--ink-2); margin-bottom: 4px; }
.ybf-benefit p { font-size: 0.875rem; color: var(--text-3); line-height: 1.6; margin: 0; }

/* Form section */
.ybf-form-section { background: var(--white); padding: 64px 0 80px; }

/* Step indicator */
.ybf-steps {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 12px;
}
.ybf-step {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.ybf-step-circle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--border-light); color: var(--text-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700;
  transition: all 0.25s; flex-shrink: 0;
}
.ybf-step.active .ybf-step-circle {
  background: var(--fire); color: var(--white);
  box-shadow: 0 0 0 4px var(--fire-glow);
}
.ybf-step.done .ybf-step-circle {
  background: var(--ink); color: var(--white);
}
.ybf-step-label {
  font-size: 0.8125rem; font-weight: 600; color: var(--text-3);
  white-space: nowrap;
  transition: color 0.2s;
}
.ybf-step.active .ybf-step-label { color: var(--fire); }
.ybf-step.done  .ybf-step-label { color: var(--ink-2); }
.ybf-step-connector {
  flex: 1; height: 2px; background: var(--border-light);
  margin: 0 8px; min-width: 24px;
}

/* Progress bar */
.ybf-progress-bar {
  height: 4px; background: var(--border-light);
  border-radius: 2px; margin-bottom: 32px;
  overflow: hidden;
}
.ybf-progress-fill {
  height: 100%; background: var(--fire);
  border-radius: 2px;
}

/* Card */
.ybf-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 40px 44px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Pane */
.ybf-pane-header { margin-bottom: 28px; }
.ybf-pane-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: var(--fire); background: var(--fire-glow);
  border-radius: var(--r-pill); padding: 3px 10px;
  margin-bottom: 10px;
}
.ybf-pane-header h3 { font-size: 1.4rem; color: var(--ink-2); margin-bottom: 6px; }
.ybf-pane-header p  { font-size: 0.9375rem; color: var(--text-3); }

/* Nav */
.ybf-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 28px; gap: 12px;
}
.ybf-submit-btn { flex: 1; justify-content: center; }

/* Dropzone */
.ybf-dropzone {
  border: 2px dashed var(--border-light);
  border-radius: var(--r-md); padding: 40px 24px;
  text-align: center; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 20px;
}
.ybf-dropzone:hover,
.ybf-dropzone.drag-active {
  border-color: var(--fire);
  background: var(--fire-glow);
}
.ybf-dz-icon { color: var(--fire); margin-bottom: 12px; }
.ybf-dz-title { font-size: 1rem; font-weight: 600; color: var(--ink-2); margin-bottom: 10px; }
.ybf-dz-formats {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 0.8125rem; color: var(--text-3); margin-bottom: 10px;
}
.ybf-dz-limit { font-size: 0.75rem; color: var(--text-3); }

/* File list */
.ybf-file-list { margin-bottom: 16px; }
.ybf-file-count {
  font-size: 0.8125rem; font-weight: 600; color: var(--ink-2);
  margin-bottom: 10px;
}
.ybf-file-count-err { color: #ef4444; }
.ybf-file-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ybf-file-item {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 12px;
  background: var(--ash); border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
}
.ybf-file-item.has-error { border-color: #fca5a5; background: #fff5f5; }
.ybf-file-thumb {
  width: 44px; height: 44px; object-fit: cover;
  border-radius: 4px; flex-shrink: 0;
}
.ybf-file-icon {
  width: 44px; height: 44px; background: var(--white);
  border-radius: 4px; display: flex; align-items: center;
  justify-content: center; color: var(--text-3); flex-shrink: 0;
}
.ybf-file-meta { flex: 1; min-width: 0; }
.ybf-file-name {
  display: block; font-size: 0.8125rem; font-weight: 500;
  color: var(--ink-2); white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
}
.ybf-file-size { display: block; font-size: 0.75rem; color: var(--text-3); }
.ybf-file-err {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.75rem; color: #ef4444; margin-top: 2px;
}
.ybf-file-del {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; color: var(--text-3);
  transition: all 0.15s;
}
.ybf-file-del:hover { background: #fee2e2; border-color: #fca5a5; color: #ef4444; }

/* Upload tip */
.ybf-upload-tip {
  display: flex; gap: 8px; align-items: flex-start;
  background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: var(--r-sm); padding: 10px 14px;
  font-size: 0.8125rem; color: #1d4ed8; line-height: 1.5;
}

/* Summary */
.ybf-summary { display: flex; flex-direction: column; gap: 16px; margin-bottom: 4px; }
.ybf-summary-group {
  border: 1px solid var(--border-light); border-radius: var(--r-sm);
  overflow: hidden;
}
.ybf-summary-group h4 {
  font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--fire);
  padding: 10px 16px; background: var(--fire-glow);
  border-bottom: 1px solid var(--fire-border);
}
.ybf-summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; padding: 9px 16px;
  font-size: 0.875rem; border-bottom: 1px solid var(--border-light);
}
.ybf-summary-row:last-child { border-bottom: none; }
.ybf-summary-row span { color: var(--text-3); white-space: nowrap; }
.ybf-summary-row strong { color: var(--ink-2); text-align: right; }
.ybf-summary-row--full { flex-direction: column; gap: 4px; }
.ybf-summary-row--full p { color: var(--text-3); font-size: 0.875rem; line-height: 1.6; margin: 0; }

/* Spinner */
.ybf-spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  animation: ybf-spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes ybf-spin { to { transform: rotate(360deg); } }

/* Success */
.ybf-success {
  text-align: center; padding: 64px 24px;
}
.ybf-success-icon {
  width: 88px; height: 88px; background: #d1fae5;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 24px; color: #10b981;
}
.ybf-success h2 { font-size: 1.75rem; margin-bottom: 12px; }
.ybf-success p  { color: var(--text-3); margin-bottom: 28px; }

/* Legacy multi-step form */
/* Multi-step form */
.form-progress {
  display: flex; gap: 0; margin-bottom: 36px;
  border-bottom: 2px solid var(--border-light);
}
.form-step-tab {
  flex: 1; padding: 12px 8px; text-align: center;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--text-3); cursor: default;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all 0.2s; display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.form-step-tab .sn {
  width: 24px; height: 24px; background: var(--border-light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem;
}
.form-step-tab.active { color: var(--fire); border-bottom-color: var(--fire); }
.form-step-tab.active .sn { background: var(--fire); color: white; }
.form-step-tab.done .sn { background: var(--ink); color: white; }

.form-pane { display: none; }
.form-pane.active { display: block; }
.form-nav { display: flex; gap: 12px; justify-content: space-between; margin-top: 24px; }

.radio-group, .checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-opt, .check-opt {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border: 1.5px solid var(--border-light);
  border-radius: var(--r-xs); cursor: pointer;
  font-size: 0.875rem; transition: all 0.15s;
}
.radio-opt:has(input:checked), .check-opt:has(input:checked) {
  border-color: var(--fire); background: var(--fire-glow); color: var(--fire);
}
.radio-opt input, .check-opt input { accent-color: var(--fire); width: auto; }

.upload-area {
  border: 2px dashed var(--border-light);
  border-radius: var(--r-md); padding: 40px 24px; text-align: center;
  cursor: pointer; transition: all 0.2s;
}
.upload-area:hover { border-color: var(--fire); background: var(--fire-glow); }
.upload-area i { font-size: 2.5rem; color: var(--fire); margin-bottom: 12px; display: block; }
.upload-area input { display: none; }
.upload-area p { font-size: 0.875rem; color: var(--text-3); }
.upload-area strong { color: var(--fire); }

/* ── Blog ────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Blog card */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--fire-border);
}

/* Thumbnail — fixed height, all same */
.blog-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--ash);
  flex-shrink: 0;
  text-decoration: none;
}
.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.blog-card:hover .blog-thumb img { transform: scale(1.05); }

/* Category badge over image */
.blog-cat-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--fire); color: #fff;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 3px 10px; border-radius: var(--r-pill);
  pointer-events: none;
}

/* Card body */
.blog-body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 0.75rem; color: var(--text-3);
  margin-bottom: 12px;
}
.blog-meta i { margin-right: 3px; }

/* Title */
.blog-title {
  font-size: 1.0625rem; font-weight: 700;
  line-height: 1.45; color: var(--ink-2);
  margin-bottom: 10px;
}
.blog-title a {
  color: inherit; text-decoration: none;
  transition: color 0.2s;
}
.blog-title a:hover { color: var(--fire); }

/* Excerpt — 3 line clamp */
.blog-excerpt {
  font-size: 0.875rem; color: var(--text-3);
  line-height: 1.7; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 18px;
}

/* Read more link */
.blog-read-more {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.8125rem; font-weight: 700;
  color: var(--fire); text-decoration: none;
  transition: gap 0.2s;
  margin-top: auto;
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* ── Çerez Banner ───────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
  background: var(--ink-2);
  border-top: 1px solid var(--border-dark);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.3);
  animation: cookie-slide-up 0.35s var(--ease) both;
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 16px 24px;
  display: flex; gap: 20px; align-items: center;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-text p {
  font-size: 0.875rem; line-height: 1.6;
  color: var(--text-2); margin: 0;
}
.cookie-banner-text strong { color: var(--white); }
.cookie-banner-text a { color: var(--fire); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-text a:hover { color: var(--fire-dim); }
.cookie-banner-actions {
  display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 20px; border-radius: var(--r-pill);
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; border: none; white-space: nowrap;
}
.cookie-btn-necessary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-2);
}
.cookie-btn-necessary:hover {
  background: rgba(255,255,255,0.14); color: var(--white);
}
.cookie-btn-accept {
  background: var(--fire); color: #fff;
  box-shadow: 0 0 0 0 rgba(232,119,34,0);
}
.cookie-btn-accept:hover {
  background: var(--fire-dim);
  box-shadow: 0 4px 16px rgba(232,119,34,0.35);
}

/* ── Yasal Sayfalar ─────────────────────────────────────────── */
.legal-page {
  max-width: 780px; margin: 0 auto;
  font-size: 0.9375rem; line-height: 1.85; color: var(--body-text);
}
.legal-page h2 {
  font-size: 1.25rem; font-weight: 700;
  color: var(--ink-2); margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-light);
}
.legal-page h2:first-child { margin-top: 0; }
.legal-page h3 {
  font-size: 1.0625rem; font-weight: 700;
  color: var(--ink-2); margin: 24px 0 8px;
}
.legal-page p { margin-bottom: 14px; }
.legal-page ul, .legal-page ol {
  margin: 0 0 16px 22px; line-height: 1.9;
}
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--ink-2); font-weight: 600; }
.legal-page a { color: var(--fire); text-decoration: underline; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--fire-dim); }
.legal-update {
  display: inline-block;
  font-size: 0.8125rem; color: var(--text-3);
  background: var(--ash); border: 1px solid var(--border-light);
  border-radius: var(--r-sm); padding: 6px 14px;
  margin-bottom: 28px;
}

/* Çerez tablosu */
.cookie-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.875rem; margin: 16px 0 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm); overflow: hidden;
}
.cookie-table th {
  background: var(--ash); padding: 10px 14px;
  text-align: left; font-weight: 700; color: var(--ink-2);
  border-bottom: 2px solid var(--border-light);
}
.cookie-table td {
  padding: 9px 14px; border-bottom: 1px solid var(--border-light);
  color: var(--body-text); vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:hover td { background: var(--ash); }

/* Footer legal links */
.footer-legal-links {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
}
.footer-legal-links a {
  color: var(--text-3); font-size: 0.8125rem;
  transition: color 0.2s; text-decoration: none;
}
.footer-legal-links a:hover { color: var(--fire); }
.footer-legal-links span { color: var(--text-3); font-size: 0.75rem; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.55); }
.footer-main { padding: 72px 0 56px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand img { height: 52px; margin-bottom: 18px; width: auto; object-fit: contain; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 16px; max-width: 260px; }
.footer-tagline { font-size: 0.8125rem; color: var(--fire); font-weight: 600; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.8125rem; transition: all 0.2s;
}
.footer-social a:hover { background: var(--fire); color: white; }

.footer-col h5 {
  color: var(--white); font-size: 0.75rem; font-weight: 600;
  margin-bottom: 20px; text-transform: uppercase;
  letter-spacing: 1.5px; font-family: 'Poppins', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--fire); }

.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 14px; font-size: 0.875rem;
}
.footer-contact-item i { color: var(--fire); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--fire); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8125rem; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--fire); }

/* ── Quick Contact Widget ─────────────────────────────────── */
.qc-widget {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9999; font-family: 'Poppins', sans-serif;
}
.qc-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--fire); color: white;
  padding: 13px 20px; border-radius: var(--r-pill);
  font-size: 0.875rem; font-weight: 600;
  box-shadow: 0 6px 24px rgba(232,119,34,0.45);
  transition: all 0.25s var(--ease-spring);
  border: none; cursor: pointer;
}
.qc-btn:hover {
  background: var(--fire-dim); transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(232,119,34,0.5);
}
.qc-btn-icon { font-size: 1rem; }
.qc-btn-arrow { font-size: 0.625rem; transition: transform 0.25s; opacity: 0.8; }
.qc-widget.open .qc-btn-arrow { transform: rotate(180deg); }

.qc-panel {
  position: absolute; bottom: 72px; right: 0;
  width: 340px; background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  overflow: hidden;
  transform: translateY(12px) scale(0.97);
  opacity: 0; pointer-events: none;
  transition: all 0.25s var(--ease);
}
.qc-widget.open .qc-panel {
  transform: translateY(0) scale(1); opacity: 1; pointer-events: all;
}

.qc-head {
  background: var(--ink); padding: 16px 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.qc-head span { color: white; font-size: 0.875rem; font-weight: 600; }
.qc-close-btn {
  width: 26px; height: 26px; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 0.875rem;
  transition: background 0.2s; cursor: pointer; border: none;
}
.qc-close-btn:hover { background: rgba(255,255,255,0.2); }

.qc-body { padding: 18px; }
.qc-body input,
.qc-body textarea {
  width: 100%; padding: 10px 12px; margin-bottom: 10px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xs); font-size: 0.875rem;
  transition: border-color 0.2s; outline: none;
}
.qc-body input:focus,
.qc-body textarea:focus { border-color: var(--fire); }
.qc-body textarea { height: 76px; resize: none; }
.qc-submit {
  width: 100%; padding: 12px;
  background: var(--fire); color: white;
  border: none; border-radius: var(--r-xs);
  font-size: 0.9375rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.qc-submit:hover { background: var(--fire-dim); }
.qc-foot {
  text-align: center; padding: 10px;
  font-size: 0.75rem; color: var(--text-3);
  border-top: 1px solid var(--border-light);
}
.qc-success {
  display: none; text-align: center; padding: 32px 20px;
}
.qc-success .success-icon {
  width: 56px; height: 56px; background: #D1FAE5;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px;
  color: #10B981; font-size: 1.5rem;
}
.qc-success h4 { margin-bottom: 6px; font-size: 1rem; }
.qc-success p { font-size: 0.875rem; color: var(--text-3); }

/* ── Fade-in animation (bkz. aşağıdaki Tasarım Geliştirmeleri bölümü) ── */

/* ── Utility ────────────────────────────────────────────────── */
.text-fire  { color: var(--fire); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-3); }
.text-center { text-align: center; }
.divider { width: 48px; height: 3px; background: var(--fire); border-radius: 3px; margin: 16px 0; }
.divider-center { margin: 16px auto; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-visual { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; --topbar-h: 34px; }

  .topbar-left .t-hide { display: none; }

  .site-nav {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0; right: 0;
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: all 0.25s var(--ease);
    z-index: 899; border-top: 1px solid var(--border-light);
    overflow-y: auto;
    max-height: calc(100vh - var(--topbar-h) - var(--header-h));
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }

  .site-nav > ul { flex-direction: column; gap: 0; }
  .site-nav > ul > li > a,
  .nav-dropdown-btn { padding: 13px 20px; border-radius: 0; border-bottom: 1px solid var(--border-light); width: 100%; justify-content: space-between; }
  .dropdown-menu { position: static; box-shadow: none; border: none; border-radius: 0; min-width: 0; opacity: 1; visibility: visible; transform: none; background: var(--ash); display: none; padding: 4px 0; grid-template-columns: 1fr; }
  .has-dropdown.open .dropdown-menu { display: grid; }
  .dropdown-group-label { grid-column: 1; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .why-us-grid,
  .cities-grid,
  .maps-grid,
  .contact-grid,
  .info-grid,
  .three-steps-grid { grid-template-columns: 1fr; }

  .dryvatec-card { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row      { grid-template-columns: 1fr; }

  .hero { padding: 48px 0 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual img { max-height: 320px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; margin-top: 40px; }
  .hero-stat { padding: 16px 8px; }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--border-light); }
  .hero-stat-num { font-size: 1.5rem; }
  .header-phone { display: none; }

  .cta-actions { flex-direction: column; align-items: center; }

  .qc-panel { width: calc(100vw - 32px); right: -8px; }

  .section { padding: 56px 0; }
  .form-progress { overflow-x: auto; }
  .form-step-tab { min-width: 72px; font-size: 0.75rem; }

  /* YBF responsive */
  .ybf-benefits  { grid-template-columns: 1fr; }
  .ybf-images    { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ybf-img-card--featured { grid-column: 1; grid-row: auto; }
  .ybf-stats     { grid-template-columns: 1fr; gap: 12px; }
  .ybf-steps     { gap: 0; overflow-x: auto; padding-bottom: 4px; }
  .ybf-step-label{ display: none; }
  .ybf-step-connector { flex: 1; min-width: 16px; }
  .ybf-card      { padding: 24px 20px; }
  .ybf-file-grid { grid-template-columns: 1fr; }
  .ybf-submit-btn{ width: 100%; justify-content: center; }
}

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

/* ── Bodrum Kat Sayfası — Özel Stiller ─────────────────────── */

/* Proje fotoğrafları grid */
.project-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-photo-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.project-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.project-photo-item:hover img { transform: scale(1.04); }
.photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
}

/* Pozitif / Negatif karşılaştırma */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.compare-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.compare-col h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-col--negative {
  border-color: var(--fire-border);
  background: var(--fire-glow);
}
.compare-col--negative h3 { color: var(--fire); }
.compare-col ul {
  padding-left: 20px;
  line-height: 2;
  color: var(--text-secondary);
  font-size: 0.93rem;
}
.compare-col p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 0.93rem;
}

@media (max-width: 768px) {
  .project-photos-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .project-photos-grid { grid-template-columns: 1fr; }
}

/* ── Uygulama Örnekleri — Küçük Resim Izgarası ─────────────── */

.projects-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-thumb-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.project-thumb-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.project-thumb-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.project-thumb-card:hover .project-thumb-img img {
  transform: scale(1.06);
}

.project-thumb-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--fire);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.project-thumb-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.project-thumb-type {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fire);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.project-thumb-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
}

.project-thumb-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-thumb-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fire);
  margin-top: 4px;
}
.project-thumb-cta i {
  font-size: 0.72rem;
  transition: transform 0.2s var(--ease);
}
.project-thumb-card:hover .project-thumb-cta i {
  transform: translateX(3px);
}

/* ── Proje Detay Sayfası ────────────────────────────────────── */

.proje-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--ash);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  margin-bottom: 32px;
}

.proje-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}
.proje-meta-item i {
  color: var(--fire);
  width: 18px;
  text-align: center;
}

.proje-desc p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 780px;
}

/* ── Proje Galeri Izgarası (LightboxGallery) ────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
}

.gallery-item-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--fire);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.gallery-item:hover .gallery-item-zoom {
  opacity: 1;
}

/* ── Lightbox ────────────────────────────────────────────────── */

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lb-fade-in 0.2s ease;
}
@keyframes lb-fade-in { from { opacity: 0 } to { opacity: 1 } }

.lightbox-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 1100px);
  width: 100%;
}

.lightbox-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.lightbox-img {
  max-height: 75vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px 0;
  gap: 16px;
}
.lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin: 0;
}
.lightbox-counter {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  white-space: nowrap;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .projects-thumb-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .projects-thumb-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev { left: -16px; }
  .lightbox-next { right: -16px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 0.9rem; }
  .proje-meta-bar { padding: 16px 20px; gap: 16px; }
}

@media (max-width: 480px) {
  .projects-thumb-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .lightbox-container { max-width: 100vw; }
  .lightbox-backdrop { padding: 12px; }
  .lightbox-img { max-height: 65vh; }
}

/* ═══════════════════════════════════════════════════════════════
   TASARIM GELİŞTİRMELERİ — Profesyonel Görünüm
   ═══════════════════════════════════════════════════════════════ */

/* ── Scroll Progress Bar ─────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), #FBBF24);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── Hero — Animasyonlu Gradient Arka Plan ───────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,119,34,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 50% 80% at 10% 80%, rgba(232,119,34,0.05) 0%, transparent 60%);
  animation: hero-glow 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes hero-glow {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

/* ── Bölüm Diyagonal Kesimi ──────────────────────────────────── */
.section-wave {
  position: relative;
}
.section-wave::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: inherit;
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
  pointer-events: none;
}

/* dark bölümler arası yumuşak geçiş */
.section.section-dark {
  position: relative;
}
.section.section-dark::before {
  content: '';
  position: absolute;
  top: -32px;
  left: 0; right: 0;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
}

/* ── Kart Hover — Parlak Kenarlık Efekti ────────────────────── */
.service-card,
.project-thumb-card,
.info-card,
.feature-box {
  position: relative;
}
.service-card::before,
.project-thumb-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--fire-border), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.service-card:hover::before,
.project-thumb-card:hover::before {
  opacity: 1;
}

/* ── Buton Hover — Scale Efekti ──────────────────────────────── */
.btn {
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

/* ── Hero Trust Sayıları — Vurgu ─────────────────────────────── */
.hero-trust-item strong {
  background: linear-gradient(135deg, var(--fire), #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── İkon Kutucukları — Hover Animasyon ──────────────────────── */
.info-card-icon,
.feature-box-icon {
  transition: transform 0.3s var(--ease-spring);
}
.info-card:hover .info-card-icon,
.feature-box:hover .feature-box-icon {
  transform: scale(1.15) rotate(-5deg);
}

/* ── Page Hero — Alt Çizgi ───────────────────────────────────── */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--fire-border), transparent);
}

/* ── CTA Section — Parlak Arka Plan ─────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(232,119,34,0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Reveal Animasyon — Daha Akıcı ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Site Header — Scroll Küçülme Efekti ────────────────────── */
.site-header {
  transition: box-shadow 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  height: 60px;
  background: rgba(255,255,255,0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
}
.site-header.scrolled .site-logo img {
  height: 48px;
  transition: height 0.3s var(--ease);
}

/* ── Steps — Bağlantı Çizgisi ───────────────────────────────── */
.steps-list {
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--fire), transparent);
  opacity: 0.25;
}

/* ── Dryvatec Bölümü — Parlaklık ────────────────────────────── */
.dryvatec-section {
  position: relative;
  overflow: hidden;
}
.dryvatec-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,119,34,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Page Hero — Logo İkili Düzen ───────────────────────────── */
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero-content .eyebrow { margin-bottom: 12px; }
.page-hero-content h1 { max-width: 100%; }
.page-hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-logo { display: none; }
}

/* ── Two Col Content ─────────────────────────────────────────── */
.two-col-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .two-col-content { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Why Us Item (genel liste stili) ─────────────────────────── */
.why-us-list { display: flex; flex-direction: column; gap: 20px; }
.why-us-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.why-us-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--fire-glow); border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--fire); font-size: 1rem;
}
.why-us-item strong { display: block; margin-bottom: 4px; font-size: 0.9375rem; }
.why-us-item p { margin: 0; font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

/* ── Yapı Bilgi Formu Promo ──────────────────────────────────── */
.ybf-promo-section { background: var(--ash); }
.ybf-promo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.ybf-promo-content h2 { margin-bottom: 16px; }
.ybf-promo-content > p {
  color: var(--text-3); font-size: 1.0625rem;
  line-height: 1.75; margin-bottom: 28px;
}
.ybf-promo-features {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 32px;
}
.ybf-promo-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9375rem; color: var(--body-text);
}
.ybf-promo-feature i {
  width: 32px; height: 32px;
  background: var(--fire-glow); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--fire); font-size: 0.8125rem; flex-shrink: 0;
}
.ybf-promo-feature strong { color: var(--ink); }
.ybf-promo-visual {
  position: relative;
}
.ybf-promo-visual img {
  width: 100%; height: auto; border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); object-fit: cover; max-height: 420px;
}
@media (max-width: 768px) {
  .ybf-promo { grid-template-columns: 1fr; gap: 32px; }
  .ybf-promo-visual { order: -1; }
}

/* ── Nem Kutusu Promo Section ────────────────────────────────── */
.nem-kutusu-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.nem-kutusu-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  background: var(--ash);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}
.nem-kutusu-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, #2563EB, #06B6D4);
  border-radius: 4px 0 0 4px;
}
.nem-kutusu-logo { width: 180px; height: auto; }
.nem-kutusu-text h3 { color: var(--ink); margin-bottom: 10px; }
.nem-kutusu-text p  { color: var(--text-3); margin-bottom: 24px; line-height: 1.7; }
.nem-kutusu-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.nem-kutusu-tag {
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.15);
  color: #2563EB;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .nem-kutusu-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }
  .nem-kutusu-logo { width: 130px; }
}

/* ── Blog Detail ─────────────────────────────────────────────── */
.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
}
.blog-article { min-width: 0; }

/* Content typography */
.blog-content { margin-top: 28px; }
.blog-content h2 {
  font-size: 1.4375rem; font-weight: 700;
  margin: 40px 0 14px; color: var(--ink-2);
  padding-left: 14px;
  border-left: 3px solid var(--fire);
  line-height: 1.35;
}
.blog-content h3 {
  font-size: 1.125rem; font-weight: 700;
  margin: 28px 0 10px; color: var(--ink-2);
}
.blog-content p {
  margin-bottom: 18px; line-height: 1.85;
  color: var(--body-text); font-size: 1rem;
}
.blog-content ul, .blog-content ol {
  margin: 0 0 20px 24px; line-height: 1.9;
  color: var(--body-text); font-size: 1rem;
}
.blog-content li { margin-bottom: 8px; }
.blog-content a { color: var(--fire); text-decoration: underline; text-underline-offset: 3px; }
.blog-content a:hover { color: var(--fire-dim); }
.blog-content strong { color: var(--ink-2); font-weight: 700; }
.blog-content ol li::marker { color: var(--fire); font-weight: 700; }

/* Blog içi görsel */
.blog-img {
  margin: 28px 0;
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border-light);
}
.blog-img img {
  width: 100%; height: auto; display: block;
  max-height: 460px; object-fit: cover;
}
.blog-img-caption {
  display: block; padding: 10px 14px;
  font-size: 0.8125rem; color: var(--text-3);
  background: var(--ash); line-height: 1.5;
  border-top: 1px solid var(--border-light);
}

/* Blog içi video */
.blog-video {
  position: relative; margin: 28px 0;
  border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow-md);
}
.blog-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}

/* Sidebar */
.blog-sidebar { position: sticky; top: calc(var(--header-h) + 28px); }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget + .sidebar-widget { margin-top: 20px; }
.sidebar-widget-title {
  font-size: 0.9375rem; font-weight: 700;
  margin-bottom: 14px; color: var(--ink-2);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}

/* Related posts in sidebar */
.sidebar-post {
  display: flex; gap: 12px; align-items: flex-start;
  text-decoration: none; padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  transition: opacity 0.2s;
}
.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post:hover { opacity: 0.75; }
.sidebar-post-thumb {
  width: 60px; height: 46px; object-fit: cover;
  border-radius: var(--r-xs); flex-shrink: 0;
}
.sidebar-post-title {
  font-size: 0.8125rem; font-weight: 500;
  color: var(--ink-2); line-height: 1.45;
}

@media (max-width: 900px) {
  .blog-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .blog-sidebar { position: static; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-thumb { height: 200px; }
}
