/* ===================================================================
   YAKUP BOZDEMİR NAKLİYAT — Ana Stil Dosyası
   =================================================================== */

:root {
  /* Marka Renkleri (logodan) */
  --navy: #0B1F3F;
  --navy-dark: #071630;
  --navy-light: #142b52;
  --orange: #FF6A1A;
  --orange-dark: #E25A0E;
  --orange-light: #FF8A4D;

  --bg: #F5F6F8;
  --bg-alt: #FFFFFF;
  --text: #1B2230;
  --text-light: #5A6478;
  --border: #E4E7ED;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(11, 31, 63, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 31, 63, 0.10);
  --shadow-lg: 0 20px 50px rgba(11, 31, 63, 0.16);

  --container: 1200px;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 14px;
}
.section-head p { color: var(--text-light); font-size: 16.5px; }

.section-pad { padding: 84px 0; }
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 10px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 106, 26, 0.30);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 106, 26, 0.38);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-block { width: 100%; }

/* ===================================================================
   HEADER
   =================================================================== */
.top-strip {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.top-strip a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.top-strip a:hover { color: var(--orange-light); }
.top-strip-left { display: flex; gap: 22px; }
.top-strip-left span, .top-strip-left a { display: inline-flex; align-items: center; gap: 6px; }
.top-strip-social { display: flex; gap: 14px; }

header.site-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 500;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo img { height: 56px; width: auto; }

nav.main-nav { display: flex; }
nav.main-nav ul { display: flex; gap: 6px; }
nav.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--orange);
  background: rgba(255, 106, 26, 0.08);
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  min-width: 240px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 50;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.dropdown a:hover { background: var(--bg); color: var(--orange); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.2s;
}
.header-call-btn:hover { background: var(--orange); transform: translateY(-2px); }
.header-call-btn small { display: block; font-weight: 400; font-size: 11px; opacity: 0.8; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 600;
}
.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================================================================
   HERO / BANNER
   =================================================================== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7,22,48,0.94) 0%, rgba(7,22,48,0.80) 45%, rgba(7,22,48,0.35) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}
.hero .eyebrow { color: var(--orange-light); }
.hero .eyebrow::before { background: var(--orange-light); }
.hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 span { color: var(--orange-light); }
.hero p {
  font-size: 17.5px;
  color: rgba(255,255,255,0.86);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--orange-light);
}
.hero-stat span { font-size: 13.5px; color: rgba(255,255,255,0.75); }

/* Page hero (alt sayfalar için daha kısa) */
.page-hero {
  min-height: 280px;
  display: flex;
  align-items: center;
}
.page-hero .hero-inner { padding: 50px 0; max-width: 100%; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: var(--orange-light); }

/* ===================================================================
   HİZMET KARTLARI
   =================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card .num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--border);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.service-icon svg { width: 28px; height: 28px; stroke: #fff; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 15px; margin-bottom: 18px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--orange);
}
.service-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ===================================================================
   NEDEN BİZ / ÖZELLİKLER
   =================================================================== */
.why-section { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.why-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,106,26,0.18), transparent 70%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { text-align: left; }
.why-item .why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 26px; height: 26px; stroke: var(--orange-light); }
.why-item h3 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.why-item p { color: rgba(255,255,255,0.65); font-size: 14.5px; }
.why-section .section-head h2 { color: #fff; }
.why-section .section-head p { color: rgba(255,255,255,0.65); }

/* ===================================================================
   GALERİ
   =================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,22,48,0.75) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom-icon {
  position: absolute;
  bottom: 14px; left: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.gallery-item:hover .zoom-icon { opacity: 1; transform: translateY(0); }
.zoom-icon svg { width: 16px; height: 16px; stroke: #fff; }

.gallery-more { text-align: center; margin-top: 40px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(7,11,22,0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 26px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
}
.lightbox-close:hover { background: var(--orange); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.lightbox-nav:hover { background: var(--orange); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===================================================================
   PROCESS / NASIL ÇALIŞIYORUZ
   =================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { text-align: left; position: relative; }
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border);
  margin-bottom: 6px;
  display: block;
}
.process-step h3 { font-size: 17.5px; margin-bottom: 10px; }
.process-step p { font-size: 14.5px; color: var(--text-light); }

/* ===================================================================
   TESTIMONIAL / YORUMLAR
   =================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.stars { color: var(--orange); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14.5px; color: var(--text); margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12.5px; color: var(--text-light); }

/* ===================================================================
   CTA BANT
   =================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-dark));
  position: relative;
  overflow: hidden;
  padding: 56px 0;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,106,26,0.22), transparent 70%);
  right: -100px; top: -100px;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-band h2 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.7); font-size: 15px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================================================================
   FOOTER
   =================================================================== */
footer.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo img { height: 46px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-about p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; stroke: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 15.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 28px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--orange-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-contact svg { width: 18px; height: 18px; stroke: var(--orange-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  font-size: 13.5px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--orange-light); }

/* ===================================================================
   MOBİL ALT AKSİYON ÇUBUĞU (Ara + WhatsApp)
   =================================================================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  height: 64px;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.15);
}
.mobile-action-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.mobile-action-bar a svg { width: 20px; height: 20px; }
.action-call { background: var(--navy); }
.action-whatsapp { background: #25D366; }

/* Masaüstü yüzen WhatsApp butonu */
.float-whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  z-index: 850;
  transition: transform 0.25s;
  animation: pulse-wa 2.4s infinite;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse-wa {
  0% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 860px) {
  .top-strip .top-strip-left a { display: none; }
  .top-strip .container { justify-content: center; }
  .top-strip-social { display: none; }
}
@media (max-width: 860px) {
  nav.main-nav { display: none; }
  .header-cta .header-call-btn span.cta-text { display: none; }
  .menu-toggle { display: flex; }
  .mobile-action-bar { display: flex; }
  body { padding-bottom: 64px; }
  .float-whatsapp { bottom: 78px; }
}

/* Mobil yan menü */
.mobile-nav {
  position: fixed;
  top: 0; right: -300px;
  width: 290px; height: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 24px;
}
.mobile-nav.active { right: 0; }
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(7,11,22,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-close { text-align: right; margin-bottom: 20px; font-size: 26px; color: var(--navy); }
.mobile-nav ul li { border-bottom: 1px solid var(--border); }
.mobile-nav ul a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}
.mobile-nav .sub-list { padding-left: 14px; display: none; }
.mobile-nav .sub-list.open { display: block; }
.mobile-nav .sub-list a { font-weight: 500; font-size: 14px; padding: 12px 4px; color: var(--text-light); }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

/* ===================================================================
   İÇ SAYFA İÇERİK BLOKLARI (Hakkımızda, Hizmet detay vb.)
   =================================================================== */
.content-block { padding: 80px 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }
.two-col.reverse > *:first-child { order: 2; }
@media (max-width: 860px) { .two-col.reverse > *:first-child { order: 0; } }

.img-feature { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.img-feature img { width: 100%; }
.badge-float {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--orange);
  color: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(255,106,26,0.35);
  text-align: center;
}
.badge-float strong { display: block; font-family: var(--font-display); font-size: 26px; }
.badge-float span { font-size: 12px; opacity: 0.9; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}
.check-list .check-ico {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,106,26,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-list .check-ico svg { width: 12px; height: 12px; stroke: var(--orange); stroke-width: 3; }

.keyword-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.keyword-tags span {
  font-size: 13px;
  padding: 7px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-light);
}

/* Hizmet detay sayfası içi liste */
.detail-list { margin: 24px 0; }
.detail-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: var(--text);
}
.detail-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
}

.info-box {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin: 28px 0;
  font-size: 15px;
}
.info-box strong { color: var(--navy); }

/* Diğer hizmetler sidebar */
.sidebar-services { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.sidebar-services h4 { font-size: 16px; margin-bottom: 16px; }
.sidebar-services ul li { margin-bottom: 4px; }
.sidebar-services ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.sidebar-services ul a:hover, .sidebar-services ul a.active {
  background: var(--bg);
  color: var(--orange);
  padding-left: 18px;
}
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-top: 22px;
  text-align: center;
  color: #fff;
}
.sidebar-cta h4 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.sidebar-cta p { font-size: 13.5px; color: rgba(255,255,255,0.65); margin-bottom: 18px; }

/* Sayılarla biz */
.stats-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 40px 0; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
.stat-item { text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
@media (max-width: 760px) { .stat-item:nth-child(odd) { border-right: 1px solid var(--border); } .stat-item:nth-child(even) { border-right: none; } }
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--navy);
}
.stat-item strong span { color: var(--orange); }
.stat-item p { font-size: 13.5px; color: var(--text-light); margin-top: 4px; }

/* Galeri filtre */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.gallery-filters button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-light);
  transition: all 0.2s;
}
.gallery-filters button.active, .gallery-filters button:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* Hakkımızda - değerler */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { text-align: center; padding: 30px 20px; }
.value-card .service-icon { margin: 0 auto 18px; }
.value-card h3 { font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-light); }

/* Map */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* İletişim kartları */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 50px; }
@media (max-width: 860px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card .service-icon { margin: 0 auto 18px; }
.contact-card h3 { font-size: 17px; margin-bottom: 8px; }
.contact-card p { font-size: 14.5px; color: var(--text-light); margin-bottom: 4px; }
.contact-card a.contact-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}

/* Animasyon: scroll reveal */
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
.js-ready .reveal.in-view { opacity: 1; transform: translateY(0); }

/* 404 / boş durum */
.empty-state { text-align: center; padding: 100px 0; }
.empty-state h1 { font-size: 90px; color: var(--orange); }
