/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #e30613;
  --primary-dark: #b8050f;
  --dark: #1a1a1a;
  --gray: #6b7280;
  --light-gray: #f5f5f7;
  --border: #e5e7eb;
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Roboto, Arial, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--primary); }
.top-info span { margin-right: 18px; }
.top-info i { color: var(--primary); margin-right: 6px; }

/* ===== HEADER ===== */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav > ul { display: flex; list-style: none; gap: 2px; }
.nav > ul > li { position: relative; }
.nav > ul > li > a {
  color: var(--dark);
  font-weight: 600;
  padding: 10px 14px;
  display: block;
  font-size: 15px;
  border-radius: 6px;
  transition: all .2s;
}
.nav > ul > li > a:hover,
.nav > ul > li > a.active {
  background: var(--primary);
  color: #fff;
}
.dropdown { position: relative; }
.dropdown > a::after {
  content: " ▾";
  font-size: 11px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  list-style: none;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .2s;
  border-top: 3px solid var(--primary);
  max-height: 480px;
  overflow-y: auto;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  color: var(--dark);
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 500;
}
.dropdown-menu li a:hover {
  background: var(--light-gray);
  color: var(--primary);
}
.cta-phone {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 30px;
  font-weight: 700 !important;
  margin-left: 10px;
}
.cta-phone:hover { background: var(--primary-dark) !important; }

/* MOBİL MENÜ TOGGLE */
.mobile-toggle {
  display: none;
  background: var(--primary);
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--dark);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}
.slide-content h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}
.slide-content h1 span { color: var(--primary); }
.slide-content p {
  font-size: 18px;
  margin-bottom: 28px;
  opacity: 0.95;
}
.btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 700;
  border-radius: 30px;
  transition: all .2s;
  border: none;
  cursor: pointer;
  font-size: 15px;
}
.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227,6,19,0.4);
}
.btn-white {
  background: #fff;
  color: var(--primary) !important;
  margin-left: 10px;
}
.btn-white:hover { background: #f5f5f5; color: var(--primary-dark) !important; }
.btn-wp { background: var(--whatsapp); }
.btn-wp:hover { background: #1faa54; }

.slider-nav {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.slider-dot.active {
  background: var(--primary);
  width: 36px;
  border-radius: 6px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
  transition: all .2s;
}
.slider-arrow:hover { background: var(--primary); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ===== SECTIONS ===== */
section { padding: 70px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}
.section-title h2 span { color: var(--primary); }
.section-title p {
  color: var(--gray);
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--primary);
  margin: 18px auto 0;
  border-radius: 2px;
}

/* ===== HİZMETLER ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 25px;
  transition: all .3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.service-icon svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  font-weight: 700;
}
.service-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 16px;
}
.service-card .read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}
.service-card .read-more:hover { text-decoration: underline; }

/* ===== HAKKIMIZDA ===== */
.about-section { background: var(--light-gray); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.about-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
}
.about-content h2 span { color: var(--primary); }
.about-content p { margin-bottom: 15px; color: var(--gray); font-size: 16px; }
.about-features { list-style: none; margin: 20px 0; }
.about-features li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-weight: 500;
}
.about-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  line-height: 22px;
  font-weight: 700;
}

/* ===== SÜREÇ ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-num {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 3px solid var(--primary);
  color: var(--primary);
  font-size: 26px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
}
.process-step h4 { font-size: 18px; margin-bottom: 10px; }
.process-step p { color: var(--gray); font-size: 14px; }

/* ===== TAB / GALERİ ===== */
.gallery-section { background: #fff; }
.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.tab-btn {
  background: var(--light-gray);
  border: 2px solid transparent;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  transition: all .2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: #fff;
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn .4s; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "🔍";
  position: absolute;
  inset: 0;
  background: rgba(227,6,19,0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ===== İLÇELER ===== */
.ilceler-section { background: var(--light-gray); }
.ilceler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.ilce-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 15px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .25s;
  color: var(--dark);
  font-weight: 600;
  display: block;
}
.ilce-card:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.ilce-card .ilce-icon {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

/* ===== NEDEN BİZ ===== */
.why-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: #fff;
  position: relative;
}
.why-section .section-title h2 { color: #fff; }
.why-section .section-title p { color: #ccc; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.why-item {
  text-align: center;
  padding: 25px 15px;
}
.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.why-item h4 { font-size: 18px; margin-bottom: 8px; }
.why-item p { color: #bbb; font-size: 14px; }

/* ===== HARİTA & YORUMLAR ===== */
.map-section { background: #fff; }
.map-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 450px; border: 0; display: block; }
.reviews-box {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 25px;
  max-height: 450px;
  overflow-y: auto;
}
.review-item {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  border-left: 3px solid var(--primary);
}
.review-author {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.review-stars { color: #f59e0b; margin-bottom: 6px; font-size: 13px; }
.review-text { font-size: 13px; color: #555; }
.review-date { font-size: 11px; color: #999; margin-top: 6px; }

/* ===== SSS ===== */
.faq-section { background: var(--light-gray); }
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-question {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
  font-size: 16px;
}
.faq-question:hover { background: #fafafa; }
.faq-question::after {
  content: "+";
  color: var(--primary);
  font-size: 24px;
  font-weight: 300;
  transition: transform .3s;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 22px;
  color: var(--gray);
  font-size: 15px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 25px;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-body h3 a { color: var(--dark); }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p { color: var(--gray); font-size: 14px; flex: 1; margin-bottom: 14px; }
.blog-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.cta-band h2 { font-size: 32px; margin-bottom: 12px; }
.cta-band p { font-size: 17px; margin-bottom: 24px; opacity: .95; }
.cta-band .btn { background: #fff; color: var(--primary) !important; }
.cta-band .btn:hover { background: var(--dark); color: #fff !important; }

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}
.footer p, .footer li { font-size: 14px; line-height: 1.8; }
.footer ul { list-style: none; }
.footer ul li a { color: #ccc; }
.footer ul li a:hover { color: var(--primary); }
.footer-logo img { height: 50px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.footer-contact li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}
.footer-contact li i {
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #888;
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.social-icons a {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .2s;
}
.social-icons a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.social-icons a:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ===== STICKY CALL/WP BUTTONS ===== */
.sticky-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sticky-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all .25s;
  animation: pulse 2s infinite;
}
.sticky-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.sticky-btn.call { background: var(--primary); }
.sticky-btn.wp { background: var(--primary); animation-delay: 1s; }
.sticky-btn:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(227,6,19,0.5); }
  50% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 14px rgba(227,6,19,0); }
}
.sticky-btn.wp { animation-name: pulse-wp; }
@keyframes pulse-wp {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(227,6,19,0.5); }
  50% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 14px rgba(227,6,19,0); }
}

/* ===== MOBİL BOTTOM BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 98;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 10px 5px;
  color: var(--dark);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mobile-bar a .mb-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-bar a .mb-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* ===== İÇ SAYFA STİLLERİ ===== */
.page-banner {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('../images/cozum-kamyon.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}
.page-banner h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}
.breadcrumb {
  font-size: 14px;
  opacity: .9;
}
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 8px; }

.page-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 35px;
  padding: 50px 0;
}
.page-content {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.page-content h1, .page-content h2, .page-content h3 {
  color: var(--dark);
  margin-bottom: 16px;
  margin-top: 24px;
}
.page-content h1 { font-size: 32px; }
.page-content h2 { font-size: 26px; border-left: 4px solid var(--primary); padding-left: 14px; }
.page-content h3 { font-size: 21px; color: var(--primary); }
.page-content p { margin-bottom: 14px; line-height: 1.8; color: #444; }
.page-content ul, .page-content ol { margin: 14px 0 14px 22px; }
.page-content li { margin-bottom: 8px; line-height: 1.7; }
.page-content img { border-radius: 10px; margin: 15px 0; box-shadow: var(--shadow); }

.sidebar > div {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: all .3s;
}
.sidebar > div:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.sidebar h3 {
  font-size: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  color: var(--dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.sidebar h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.sidebar ul { list-style: none; }
.sidebar ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #f5f5f7;
  transition: all .2s;
}
.sidebar ul li:last-child { border-bottom: 0; }
.sidebar ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: #ffeded;
  border-radius: 4px;
  transition: all .2s;
}
.sidebar ul li::after {
  content: "›";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-52%);
  color: var(--primary);
  font-weight: 800;
  font-size: 16px;
  transition: all .2s;
}
.sidebar ul li:hover::before {
  background: var(--primary);
}
.sidebar ul li:hover::after {
  color: #fff;
  left: 8px;
}
.sidebar ul li a { 
  color: #444; 
  font-size: 14px; 
  font-weight: 500;
  display: block;
}
.sidebar ul li a:hover { color: var(--primary); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: #fff !important;
  text-align: center;
  border: 0 !important;
  position: relative;
  overflow: hidden;
}
.sidebar-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.sidebar-cta::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -30%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.sidebar-cta > * { position: relative; z-index: 1; }
.sidebar-cta h3 {
  color: #fff !important;
}
.sidebar-cta h3::after {
  background: #fff;
}
.sidebar-cta p { color: rgba(255,255,255,0.95); margin-bottom: 14px; font-size: 14px; line-height: 1.5; }
.sidebar-cta .btn { background: #fff !important; color: var(--primary) !important; width: 100%; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.sidebar-cta .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
.sidebar-cta .phone-big {
  font-size: 24px;
  font-weight: 900;
  display: block;
  margin: 12px 0;
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* ===== FORM ===== */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 40px;
}
.contact-info-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.contact-info-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item .text strong { display: block; margin-bottom: 3px; font-size: 15px; }
.contact-info-item .text { font-size: 14px; color: var(--gray); }
.contact-info-item .text a { color: var(--dark); font-weight: 600; }
.contact-info-item .text a:hover { color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .nav > ul { gap: 0; }
  .nav > ul > li > a { padding: 9px 9px; font-size: 14px; }
  .cta-phone { padding: 9px 12px !important; margin-left: 4px; }
}
@media (max-width: 1024px) {
  .nav > ul > li > a { padding: 8px 8px; font-size: 13px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .map-grid { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { font-size: 12px; padding: 6px 0; }
  .top-info span { margin-right: 10px; display: inline-block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; box-shadow: var(--shadow-lg); padding: 12px; }
  .nav.open { display: flex; }
  .nav > ul { flex-direction: column; width: 100%; gap: 4px; }
  .nav > ul > li > a { padding: 12px 14px; width: 100%; }
  .dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; max-height: 0; overflow: hidden; transition: max-height .3s; padding: 0; border: 0; }
  .dropdown.open .dropdown-menu { max-height: 600px; padding: 8px; }
  .cta-phone { margin: 8px 0 0; text-align: center; }
  .mobile-toggle { display: block; }
  .hero-slider { height: 320px; }
  .slide-bg { background-position: center center !important; background-size: cover !important; }
  .slide-content h1 { font-size: 22px; line-height: 1.25; margin-bottom: 10px; }
  .slide-content p { font-size: 13px; margin-bottom: 16px; line-height: 1.5; }
  .slide-content { max-width: 100%; }
  .btn { padding: 10px 18px; font-size: 13px; }
  .btn-white { margin-left: 0; margin-top: 8px; }
  .slider-arrow { width: 34px; height: 34px; font-size: 16px; }
  .slider-nav { bottom: 12px; }
  section { padding: 50px 0; }
  .section-title h2 { font-size: 24px; }
  .section-title p { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-banner { padding: 50px 0 40px; }
  .page-banner h1 { font-size: 26px; }
  .page-content { padding: 22px; }
  .page-content h1 { font-size: 24px; }
  .page-content h2 { font-size: 20px; }
  .about-content h2 { font-size: 26px; }
  .cta-band h2 { font-size: 24px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 60px; }
  .process-grid { grid-template-columns: 1fr; }
  /* Karşılama mobil */
  .welcome-section { padding: 40px 0 25px; }
  .welcome-section h1 { font-size: 24px; }
  .welcome-lead { font-size: 14px; line-height: 1.7; }
  .welcome-sub { font-size: 13px; }
  .welcome-cta { gap: 10px; }
  .welcome-cta .btn { padding: 10px 18px; font-size: 13px; }
  /* Article content mobil */
  .article-content { padding: 25px 20px; }
  .article-content-inner h3 { font-size: 20px; }
  .article-content-inner h4 { font-size: 16px; }
  .article-content-inner p { font-size: 14px; line-height: 1.7; }
}

@media (max-width: 480px) {
  .hero-slider { height: 280px; }
  .slide-content h1 { font-size: 19px; }
  .slide-content p { font-size: 12px; margin-bottom: 12px; }
  .slide-content { padding: 0 8px; }
  .btn { padding: 9px 14px; font-size: 12px; }
  .ilceler-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-info span { font-size: 11px; }
  .top-bar { padding: 5px 0; }
  .welcome-section h1 { font-size: 22px; }
  .article-content { padding: 22px 16px; }
}

/* ===== KARŞILAMA SECTION (Slider altı) ===== */
.welcome-section {
  padding: 60px 0 30px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}
.welcome-section h1 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 800;
  line-height: 1.2;
}
.welcome-divider {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.welcome-lead {
  font-size: 17px;
  color: #444;
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.8;
}
.welcome-sub {
  font-size: 15px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 26px;
  line-height: 1.7;
}
.welcome-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.welcome-cta .btn {
  display: inline-flex;
  align-items: center;
}
.btn-outline {
  background: #fff !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
}
.btn-outline:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

/* ===== TAB İÇERİĞİ (Detay tab içinde) ===== */
.article-content {
  display: none;
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}
.article-content.active { display: block; }
.article-content-inner h3 {
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f5f5f7;
}
.article-content-inner h4 {
  color: var(--dark);
  font-size: 18px;
  margin: 24px 0 10px;
}
.article-content-inner p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 15px;
}
.article-content-inner ul, .article-content-inner ol {
  margin: 12px 0 18px 20px;
  color: #555;
}
.article-content-inner ul li, .article-content-inner ol li {
  line-height: 1.8;
  margin-bottom: 6px;
}
.article-content-inner strong { color: var(--dark); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.highlight-box {
  background: linear-gradient(135deg, #fff5f5, #ffe0e0);
  border-left: 4px solid var(--primary);
  padding: 18px 20px;
  border-radius: 8px;
  margin: 20px 0;
}
.highlight-box strong { color: var(--primary); }

/* ===== YORUM CAROUSEL ===== */
.reviews-section {
  background: linear-gradient(135deg, #fff5f5 0%, #ffeaea 100%);
  padding: 70px 0;
}
.review-carousel {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
  overflow: hidden;
}
.review-track {
  display: flex;
  transition: transform 0.5s ease;
}
.review-slide {
  min-width: 33.333%;
  padding: 0 12px;
  box-sizing: border-box;
}
.review-card-new {
  background: #fff;
  padding: 28px 24px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  height: 100%;
  position: relative;
}
.review-card-new::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 70px;
  color: var(--primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card-new .stars-row {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-card-new .review-text-new {
  color: #444;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 15px;
}
.review-card-new .author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}
.review-card-new .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
}
.review-card-new .author-info { line-height: 1.3; }
.review-card-new .author-info .name { font-weight: 700; color: var(--dark); }
.review-card-new .author-info .date { font-size: 12px; color: #999; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.carousel-arrow svg { width: 18px; height: 18px; fill: var(--primary); }
.carousel-arrow:hover { background: var(--primary); }
.carousel-arrow:hover svg { fill: #fff; }
.carousel-arrow.prev { left: -10px; }
.carousel-arrow.next { right: -10px; }
.carousel-dots {
  text-align: center;
  margin-top: 26px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: all .25s;
}
.carousel-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* ===== MAKALE TAB (galeri yerine) ===== */
.articles-tabs {
  padding: 70px 0;
  background: #fff;
}
.tab-buttons-new {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 40px;
}
.tab-btn-new {
  padding: 10px 22px;
  background: #f5f5f7;
  border: 2px solid transparent;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  transition: all .25s;
}
.tab-btn-new:hover { background: #fff; border-color: var(--primary); color: var(--primary); }
.tab-btn-new.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.articles-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.articles-grid.active { display: grid; }
.article-card-mini {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all .3s;
}
.article-card-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border-color: var(--primary);
}
.article-card-mini .article-top {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 26px 22px;
  position: relative;
}
.article-card-mini .article-top svg {
  width: 36px;
  height: 36px;
  fill: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.article-card-mini .article-top .cat-label {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}
.article-card-mini .article-top h3 {
  font-size: 17px;
  margin: 0;
  line-height: 1.4;
}
.article-card-mini .article-body {
  padding: 18px 22px 22px;
}
.article-card-mini .article-body p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.article-card-mini .read-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ===== MOBİL DÜZELTMELER (taşma yok) ===== */
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .container { padding: 0 16px; }
  .reviews-section { padding: 50px 0; }
  .review-slide { min-width: 100%; padding: 0 6px; }
  .carousel-arrow.prev { left: 4px; }
  .carousel-arrow.next { right: 4px; }
  .articles-tabs { padding: 50px 0; }
  .articles-grid { grid-template-columns: 1fr; }
  .tab-buttons-new { gap: 6px; }
  .tab-btn-new { padding: 8px 16px; font-size: 13px; }
  .page-layout { grid-template-columns: 1fr; gap: 28px; }
  .sidebar { order: 2; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .review-card-new { padding: 22px 18px; }
}

/* ===== Fiyat Tablosu 2026 ===== */
.price-section-2026 { background: var(--light-gray); }
.price-table-wrap { overflow-x: auto; margin-top: 10px; }
.price-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,.06); border-radius: 12px; overflow: hidden; }
.price-table thead th { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 16px 14px; text-align: left; font-size: 15px; }
.price-table tbody td { padding: 14px; border-bottom: 1px solid var(--border); font-size: 15px; }
.price-table tbody tr:nth-child(even) { background: #fafafa; }
.price-table tbody tr:hover { background: #fff5f5; }
.price-table td:first-child { font-weight: 600; color: var(--dark); }
.price-table td:last-child { color: var(--primary); font-weight: 700; white-space: nowrap; }
.price-note { margin-top: 14px; font-size: 13px; color: var(--gray); }

/* ===== Fiyat Formu ===== */
.price-form-box { max-width: 560px; margin: 34px auto 0; background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--primary); border-radius: 12px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.price-form-box h3 { text-align: center; font-size: 21px; color: var(--dark); margin-bottom: 6px; }
.price-form-box p.lead { text-align: center; color: var(--gray); margin-bottom: 18px; font-size: 15px; }
.price-form-box form { display: grid; gap: 12px; }
.price-form-box input, .price-form-box select { padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 15px; font-family: inherit; width: 100%; }
.price-form-box input:focus, .price-form-box select:focus { outline: none; border-color: var(--primary); }
.price-form-box button { background: var(--primary); color: #fff; border: 0; padding: 14px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background .2s; }
.price-form-box button:hover { background: var(--primary-dark); }

/* ===== Semtler / Bölgeler Grid ===== */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; margin-top: 10px; }
.region-card { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; color: var(--dark); font-weight: 500; font-size: 14px; transition: .2s; }
.region-card:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 4px 14px rgba(227,6,19,.12); transform: translateY(-2px); }
.region-card .r-icon { color: var(--primary); font-style: normal; }

/* ===== Harita Embed ===== */
.map-embed { margin-top: 24px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); line-height: 0; }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ===== Footer Çözüm link ===== */
.footer-cozum-link { display: inline-block; margin-top: 10px; color: #fff !important; font-weight: 600; }
.footer-cozum-link:hover { color: var(--primary) !important; }

/* ===== Footer Anahtar Kelime Şeridi (iç linkleme) ===== */
.footer-keywords {
  margin-top: 26px;
  padding: 20px 0 4px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.footer-keywords .fk-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-right: 4px;
}
.footer-keywords a {
  font-size: 12.5px;
  line-height: 1;
  padding: 7px 11px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.footer-keywords a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
@media (max-width: 600px) {
  .footer-keywords { gap: 6px 7px; }
  .footer-keywords a { font-size: 11.5px; padding: 6px 9px; }
}

/* ===== FAQ listesi (yeni sayfalar) ===== */
.page-content .faq-list { margin: 18px 0 26px; }
.page-content .faq-item { border: 1px solid var(--border); }
.page-content .faq-answer p { margin: 0; }

/* ===== İçerik tabloları ===== */
.page-content .price-table-wrap { margin: 18px 0 26px; }
.page-content .price-table thead th { font-size: 14px; }
.page-content .price-table tbody td { font-size: 14.5px; }
.page-content .price-table td:last-child { color: inherit; font-weight: 500; white-space: normal; }
