/* ===================================================
   vtrinia.com - Main Stylesheet
   Mobile-first responsive update — July 2026
   =================================================== */

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ol, ul { list-style: none; padding: 0; margin: 0; }

:root {
  --orange:     #FF6B00;
  --orange-dk:  #e05a00;
  --dark:       #0F172A;
  --dark2:      #1E293B;
  --slate:      #334155;
  --muted:      #64748B;
  --border:     #E2E8F0;
  --bg:         #F8FAFC;
  --white:      #FFFFFF;
  --radius:     10px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --font:       'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: .2s ease;
}

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

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

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 { color: var(--dark); font-weight: 700; line-height: 1.25; }

/* ----- LAYOUT ----- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 64px 0; }

/* ----- HEADER ----- */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Mobil header: logo | boşluk | arama+hamburger */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

/* LOGO */
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  white-space: nowrap;
  text-decoration: none;
}
.logo span { color: var(--orange); }
.logo:hover { text-decoration: none; }
/* Logo image */
.logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
/* Footer logoda span da beyaz, hover'da turuncu */
.footer-brand .logo { color: var(--white); }
.footer-brand .logo span { color: rgba(255,255,255,.6); }
.footer-brand .logo:hover span { color: var(--orange); }

/* NAV */
nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav ul li a {
  display: block;
  padding: 6px 14px;
  border-radius: 6px;
  color: var(--slate);
  font-size: .9rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

nav ul li a:hover { background: var(--bg); color: var(--orange); text-decoration: none; }
nav ul li:last-child a { background: var(--orange); color: var(--white); font-weight: 600; border-radius: 8px; }
nav ul li:last-child a:hover { background: var(--orange-dk); color: var(--white); }

/* HAMBURGER — masaüstünde gizli */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  border: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* ARAMA BUTONU — masaüstünde de görünür */
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  color: var(--slate);
  font-size: 1.15rem;
  transition: background var(--transition), color var(--transition);
  -webkit-tap-highlight-color: transparent;
  padding: 0;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--bg); color: var(--orange); }
.search-btn svg { pointer-events: none; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 8px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,107,0,.35);
  text-decoration: none !important;
}

.btn-outline {
  background: transparent;
  color: var(--orange) !important;
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(255,107,0,.25);
}

.btn-white {
  background: var(--white);
  color: var(--orange) !important;
  border-color: var(--white);
}
.btn-white:hover { background: #f0f0f0; border-color: #f0f0f0; }

.btn-sm { padding: 7px 16px; font-size: .84rem; border-radius: 6px; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* ----- BREADCRUMB ----- */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  font-size: .84rem;
  color: var(--muted);
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb ol li {
  display: flex;
  align-items: center;
}
.breadcrumb ol li a {
  color: var(--orange);
  text-decoration: none;
}
.breadcrumb ol li a:hover { text-decoration: underline; }
.breadcrumb ol li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #CBD5E1;
  font-weight: 300;
}

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
  /* background-image set inline per page */
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.5);
  color: #FF9A4D;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

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

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----- STATS BAR ----- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
}
.stat-item span { font-size: .85rem; color: var(--muted); margin-top: 4px; display: block; }

/* ----- CARDS ----- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

/* ----- PROVINCE LIST ----- */
.province-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.province-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.province-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.province-item h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.province-item p { font-size: .88rem; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.province-item a { font-size: .87rem; font-weight: 600; color: var(--orange); }
.province-item a:hover { text-decoration: underline; }

/* ----- GRID SYSTEM ----- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ----- LISTING CARDS ----- */
.listing-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.listing-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.listing-card img { width: 100%; height: 190px; object-fit: cover; }
.listing-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.listing-card-body h2 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.listing-card-body .address { font-size: .83rem; color: var(--muted); margin-bottom: 10px; display: flex; align-items: center; gap: 4px; }
.listing-card-body p { font-size: .87rem; color: var(--muted); line-height: 1.55; flex: 1; margin-bottom: 14px; }
.listing-card-body .actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }

/* ----- SECTION TITLES ----- */
.section-title { font-size: 1.75rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.section-sub { color: var(--muted); margin-bottom: 36px; font-size: 1rem; max-width: 640px; }

/* ----- BENEFIT ITEMS ----- */
.benefit-item { text-align: center; padding: 24px 16px; }
.benefit-icon { font-size: 2.5rem; margin-bottom: 14px; }
.benefit-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.benefit-item p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ----- SERVICE CARD ----- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); }
.service-card .icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ----- BUSINESS DETAIL ----- */
.business-detail {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}
.business-detail img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}
.business-detail h1 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.rating { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--muted); margin-bottom: 18px; }
.rating .stars { color: #F59E0B; font-size: 1rem; letter-spacing: 1px; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.info-item { display: flex; gap: 12px; align-items: flex-start; }
.info-item .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.info-item span { font-size: .93rem; color: var(--dark); font-weight: 500; }
.info-item a { color: var(--orange); font-weight: 500; }

.contact-box {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  margin-top: 24px;
  color: var(--white);
}
.contact-box h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.contact-box p { font-size: .92rem; opacity: .9; margin-bottom: 18px; }

/* ----- PRICE TABLE ----- */
.price-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.price-table thead tr { background: var(--dark); color: var(--white); }
.price-table th { padding: 14px 16px; text-align: left; font-weight: 600; font-size: .85rem; }
.price-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.price-table tbody tr:nth-child(even) td { background: var(--bg); }
.price-table tbody tr:hover td { background: #FFF7ED; }

/* ----- FAQ ----- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  gap: 12px;
}
.faq-question span {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  border: 1px solid var(--border);
  font-weight: 700;
}
.faq-answer { padding: 0 0 18px 0; font-size: .93rem; color: var(--muted); line-height: 1.7; display: none; }

/* ----- BLOG ----- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body .meta { font-size: .78rem; color: var(--muted); margin-bottom: 8px; }
.blog-card-body h2 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body h2 a { color: var(--dark); }
.blog-card-body h2 a:hover { color: var(--orange); text-decoration: none; }
.blog-card-body p { font-size: .87rem; color: var(--muted); flex: 1; line-height: 1.55; }

/* ----- BLOG CONTENT ----- */
.blog-content {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 48px;
  max-width: 840px;
  margin: 0 auto;
  /* Içerik asla kapsayıcısından taşmasın */
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}
.blog-content h1 { font-size: 2rem; margin-bottom: 20px; line-height: 1.2; }
.blog-content h2 { font-size: 1.35rem; margin: 32px 0 12px; padding-top: 8px; border-top: 2px solid var(--bg); }
.blog-content h3 { font-size: 1.1rem; margin: 22px 0 10px; color: var(--dark2); }
.blog-content p { margin-bottom: 16px; line-height: 1.8; color: var(--slate); }
.blog-content ul, .blog-content ol { margin: 12px 0 18px 22px; }
.blog-content li { margin-bottom: 8px; color: var(--slate); line-height: 1.65; }
.blog-content img { border-radius: 8px; margin: 24px 0; }

/* ----- LEGAL ----- */
.legal-content {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 48px;
  max-width: 880px;
  margin: 40px auto;
}
.legal-content h1 { font-size: 1.9rem; margin-bottom: 24px; }
.legal-content h2 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--dark); }
.legal-content h3 { font-size: 1rem; margin: 18px 0 8px; color: var(--dark2); }
.legal-content h4 { font-size: .95rem; color: var(--muted); margin-bottom: 8px; }
.legal-content p, .legal-content li { font-size: .93rem; line-height: 1.75; color: var(--slate); margin-bottom: 12px; }
.legal-content ul { margin-left: 18px; list-style: disc; }

/* ----- CONTACT FORM ----- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .88rem; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ----- CTA SECTION ----- */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  padding: 72px 20px;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 14px; color: var(--white); }
.cta-section p { font-size: 1.05rem; opacity: .9; max-width: 540px; margin: 0 auto 28px; }

/* ----- COOKIE BANNER ----- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark2);
  color: rgba(255,255,255,.9);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 999;
  font-size: .88rem;
  flex-wrap: wrap;
  border-top: 2px solid var(--orange);
}
#cookie-banner a { color: #FF9A4D; }
.cookie-btns { display: flex; gap: 10px; }

/* ----- FOOTER ----- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); font-size: 1.35rem; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: .88rem; opacity: .65; line-height: 1.7; max-width: 280px; }
footer h4 { color: var(--white); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
footer ul li { margin-bottom: 9px; }
footer ul li a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color var(--transition); }
footer ul li a:hover { color: var(--orange); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  opacity: .55;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--orange); text-decoration: none; opacity: 1; }

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .province-list { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .hero-inner { padding: 48px 20px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 1.45rem; }
  .blog-content, .legal-content { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-section h2 { font-size: 1.6rem; }
  .price-table { font-size: .82rem; }
  .price-table th, .price-table td { padding: 10px 12px; }
  /* Hamburger goster */
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .grid-3, .grid-4, .province-list, .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: 1.55rem; line-height: 1.3; }
  .hero p { font-size: .95rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .hero-inner { padding: 40px 16px; }
  .hero-badge { font-size: .72rem; }
  .section { padding: 40px 0; }
  .section-title { font-size: 1.3rem; }
  .container { padding: 0 16px; }
  .stats-bar { padding: 20px 0; }
  .stat-item strong { font-size: 1.7rem; }
  .stat-item span { font-size: .78rem; }
  .blog-content, .legal-content { padding: 20px 16px; }
  .contact-form { padding: 20px 16px; }
  .business-detail { padding: 18px 16px; }
  .business-detail h1 { font-size: 1.4rem; }
  .business-detail img { max-height: 220px; }
  .info-grid { grid-template-columns: 1fr; gap: 12px; }
  .contact-box { padding: 20px 16px; }
  .contact-box h3 { font-size: 1rem; }
  .faq-question { font-size: .92rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .header-inner { height: 60px; padding: 0 16px; }
  nav ul { top: 60px; }
  .logo { font-size: 1.3rem; }
  .cta-section { padding: 48px 16px; }
  .cta-section h2 { font-size: 1.4rem; }
  .cta-section p { font-size: .93rem; }
  .province-item { padding: 16px; }
  .service-card { padding: 20px 16px; }
  .blog-card img { height: 160px; }
  .listing-card img { height: 170px; }
  .breadcrumb ol { font-size: .78rem; }
  /* Overflow-x table */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-table th, .price-table td { padding: 9px 10px; font-size: .8rem; }
  /* Grid 2 col tam genislik */
  .grid-2[style*="gap:48px"] { gap: 24px !important; }
}

/* ----- UTILITIES ----- */
.text-center  { text-align: center; }
.text-muted   { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.bg-white { background: var(--white); }
.bg-light  { background: var(--bg); }

/* ----- TAGS ----- */
.tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255,107,0,.1);
  color: var(--orange);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
}

/* ----- DIVIDER ----- */
.divider { height: 1px; background: var(--border); margin: 32px 0; }

/* ----- ALERT ----- */
.alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: .9rem;
  margin-bottom: 16px;
}
.alert-info { background: #EFF6FF; border-left: 4px solid #3B82F6; color: #1E40AF; }
.alert-warn { background: #FFF7ED; border-left: 4px solid var(--orange); color: #9A3412; }

/* ===== MISSING / EXTRA CLASSES ===== */

/* Stat item (homepage stats bar) */
.stat-item { text-align: center; padding: 8px 16px; }
.stat-item strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-item span { font-size: .85rem; color: var(--muted); display: block; margin-top: 4px; }

/* Footer brand column */
.footer-brand { }
.footer-brand .logo { display: block; margin-bottom: 14px; font-size: 1.35rem; color: var(--white); }
.footer-brand p { font-size: .87rem; opacity: .65; line-height: 1.7; max-width: 260px; }

/* Services grid (alias for grid-3) */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* Blog card footer-brand nav list */
nav ul { list-style: none; padding: 0; margin: 0; }

/* Province item link fix */
.province-item a { text-decoration: none; }
.province-item a:hover { text-decoration: underline; }

/* Listing card address icon */
.listing-card-body .address { display: flex; align-items: flex-start; gap: 4px; }

/* Business rating stars */
.rating .stars { color: #F59E0B; letter-spacing: 2px; }

/* Blog card h2 link */
.blog-card-body h2 a { color: var(--dark); text-decoration: none; }
.blog-card-body h2 a:hover { color: var(--orange); }

/* Section bg helpers */
section.bg-white { background: var(--white); }
section.bg-light  { background: var(--bg); }

/* Hero inner text */
.hero-inner h1 { color: var(--white); }
.hero-inner p  { color: rgba(255,255,255,.82); }

/* Cookie banner flex */
#cookie-banner { display: flex; }

/* Mobilden sonra hamburger en saga */
@media (max-width: 768px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-inner nav     { display: contents; }
  .logo-img { height: 32px; max-width: 140px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .stat-item strong { font-size: 1.7rem; }
}

/* ===== MOBILE / TOUCH OPTIMIZASYONLARI ===== */

/* Tap hedeflerini buyut */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 44px; }
  nav ul li a { min-height: 44px; display: flex; align-items: center; }
  .hamburger { min-width: 44px; min-height: 44px; justify-content: center; }
  .faq-question { min-height: 44px; }
  .province-item a { padding: 4px 0; display: inline-block; }
}

/* Smooth scrolling on iOS */
html { -webkit-overflow-scrolling: touch; }

/* Kart hover disabled on touch */
@media (hover: none) {
  .card:hover,
  .listing-card:hover,
  .province-item:hover,
  .blog-card:hover,
  .service-card:hover { transform: none; box-shadow: var(--shadow-sm); }
}

/* Nav overlay animasyon */
#nav-overlay { transition: opacity .2s ease; }

/* Hamburger buton gorunumu duzenle */
.hamburger {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

/* Mobil table scroll wrapper */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }

/* Resimler mobilde tam genislik */
@media (max-width: 600px) {
  .grid-2 > div > img,
  .grid-2 > div > a > img { border-radius: 8px !important; }
  
  /* Kucuk ekranlarda hero badge font kucult */
  .hero-badge { padding: 5px 12px; }
  
  /* Footer copyright satiri */
  .footer-bottom span { font-size: .78rem; }
  
  /* Breadcrumb elipsis */
  .breadcrumb ol li:not(:first-child):not(:last-child) {
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
}

/* Kucuk telefon (375px altı) */
@media (max-width: 375px) {
  .hero h1 { font-size: 1.35rem; }
  .section-title { font-size: 1.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-item strong { font-size: 1.5rem; }
  .container { padding: 0 12px; }
}

/* ===================================================
   MOBİL TAŞMA DÜZELTMELERİ — Temmuz 2026
   Tüm sayfalardaki içerik taşma sorunlarını giderir
   =================================================== */

/* 1. En temel kural: hiçbir element sayfadan taşmasın */
html {
  overflow-x: hidden;
  width: 100%;
}
body {
  overflow-x: hidden;
  width: 100%;
}

/* Grid ve flex child'lar minimum 0 genişliğe düşebilmeli — taşmayı önler */
* {
  min-width: 0;
  box-sizing: border-box;
}

/* Görseller ve medya her zaman esnek */
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* 2. Tablolar — yatay kaydırma ile göster, sayfayı asla genişletme */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  display: block;
}

/* Tüm inline overflow-x:auto div'lere iOS touch kaydırma ekle */
@media (max-width: 768px) {
  div[style*="overflow-x"] {
    -webkit-overflow-scrolling: touch !important;
  }
  /* Inline tablolar da sarmala */
  div[style*="overflow-x:auto"],
  div[style*="overflow-x: auto"] {
    max-width: 100% !important;
    width: 100% !important;
  }
  /* Tablolar kendi sarmalayıcısından taşmasın */
  div[style*="overflow-x:auto"] table,
  div[style*="overflow-x: auto"] table,
  .table-scroll table {
    min-width: 400px; /* sadece scroll wrapper içindeki tablolara */
  }
}

/* 3. Mobil breakpoint'lerde tüm grid'ler tek sütun */
@media (max-width: 768px) {

  /* ── Makale hero grid'leri (inline style ile yazılmış) ──
     JS fixInlineGrids() bunları da düzeltiyor ama CSS de
     ek güvence sağlar. Inline style'ı CSS geçemez normalde
     ancak JS important ile eziyor. Buradaki kurallar JS'siz
     tarayıcılar / render flash için:
  */

  /* Hero div'lerindeki resim daima alt alta gitsin */
  div[style*="grid-template-columns:1fr 300px"],
  div[style*="grid-template-columns:1fr 290px"],
  div[style*="grid-template-columns:1fr 320px"],
  div[style*="grid-template-columns:1fr 280px"],
  div[style*="grid-template-columns:1fr 200px"],
  div[style*="grid-template-columns:1fr 220px"],
  div[style*="grid-template-columns:1fr 240px"],
  div[style*="grid-template-columns:1fr 260px"],
  div[style*="grid-template-columns:1fr 310px"],
  div[style*="grid-template-columns:1fr 340px"],
  div[style*="grid-template-columns:1fr 360px"],
  div[style*="grid-template-columns:3fr 2fr"],
  div[style*="grid-template-columns:5fr 4fr"],
  div[style*="grid-template-columns:2fr 1fr"],
  div[style*="grid-template-columns:1fr 2fr"],
  div[style*="grid-template-columns:180px 1fr"],
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns:1fr 1fr 1fr"],
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns:repeat(2,1fr)"],
  div[style*="grid-template-columns:auto 1fr"],
  div[style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* max-width'li wrapper container'lar tam genişlik alsın */
  div[style*="max-width:900px"],
  div[style*="max-width:860px"],
  div[style*="max-width:820px"],
  div[style*="max-width:780px"],
  div[style*="max-width:760px"],
  div[style*="max-width:720px"],
  div[style*="max-width:700px"],
  div[style*="max-width:680px"],
  div[style*="max-width:640px"] {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* CTA kartı (koyu arka plan + flex, alt alta gitsin) */
  div[style*="background:#0c1a3a"][style*="display:flex"],
  div[style*="background:#1a3a6a"][style*="display:flex"],
  div[style*="background:#0f172a"][style*="display:flex"],
  div[style*="background:#1E293B"][style*="display:flex"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  div[style*="background:#0c1a3a"][style*="display:flex"] .btn,
  div[style*="background:#0f172a"][style*="display:flex"] .btn {
    align-self: stretch !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Makale içi bilgi kutuları (flex:column zaten, kontrol) */
  div[style*="display:flex;flex-direction:column"] {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* 4. Küçük ekran breakpoint'i (≤600px) */
@media (max-width: 600px) {
  /* Grid'ler */
  .grid-2,
  .grid-3,
  .grid-4,
  .province-list,
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Container padding */
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* Butonlar taşmasın */
  .btn {
    white-space: normal !important;
    word-break: break-word;
  }

  /* Hero arama formu — dikey yığılma */
  .hero-inner form {
    flex-direction: column !important;
  }
  .hero-inner form input[type="text"] {
    border-radius: 8px 8px 0 0 !important;
    width: 100% !important;
    font-size: 16px !important;
  }
  .hero-inner form button[type="submit"] {
    border-radius: 0 0 8px 8px !important;
    width: 100% !important;
    padding: 13px !important;
  }

  /* Tüm input/textarea en az 16px font (iOS zoom önleme) */
  input, textarea, select {
    font-size: 16px !important;
  }

  /* Section'lar içindeki div'ler taşmasın */
  section > div,
  section > .container > div {
    max-width: 100% !important;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Inline max-width'li container'lar */
  .container[style*="max-width"],
  div[style*="max-width:860px"],
  div[style*="max-width:720px"],
  div[style*="max-width:700px"],
  div[style*="max-width: 860px"],
  div[style*="max-width: 720px"],
  div[style*="max-width: 700px"] {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Blockquote taşmasın */
  blockquote {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
  }

  /* Pre / code blokları */
  pre, code {
    white-space: pre-wrap !important;
    word-break: break-all !important;
    max-width: 100% !important;
  }

  /* Uzun linkler kırılsın */
  a {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Inline flex container'lar wrap etsin */
  [style*="display:flex"]:not(nav ul):not(.hamburger):not(.hero-ctas) {
    flex-wrap: wrap !important;
  }

  /* Koyu hero section'lar (şehir/işletme sayfaları) */
  section[style*="background:linear-gradient"],
  section[style*="background: linear-gradient"] {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* Stats grid - 2 sütun kalabilir */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* FAQ */
  .faq-question {
    font-size: .9rem;
  }

  /* Blog ve makale içerikleri */
  .blog-content,
  .legal-content {
    padding: 20px 14px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Contact form */
  .contact-form {
    padding: 20px 14px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Listing card */
  .listing-card-body .actions {
    flex-direction: column;
  }
  .listing-card-body .actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Google Maps iframe */
  iframe {
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* 4. Tablet breakpoint iyileştirmeleri */
@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Tablo başlıkları daha küçük */
  .price-table th, .price-table td {
    padding: 8px 10px;
    font-size: .82rem;
  }
}

/* 5. iOS güvenli alan (çentikli ekranlar) */
@supports (padding: env(safe-area-inset-bottom)) {
  #cookie-banner {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
  footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }
}

/* 6. Ekran döndürme: hamburger menü kapansın (JS'de de var) */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 340px;
  }
  .hero-inner {
    padding: 32px 16px;
  }
}



/* ===================================================
   MAKALE LAYOUT — Hero grid + Sidebar
   =================================================== */

/* Hero: masaüstü 2 sütun */
.article-hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.article-hero-grid > * { min-width: 0; }

/* İçerik + sidebar: masaüstü 2 sütun */
.article-body-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.article-body-grid > * { min-width: 0; }

/* Sidebar sticky sadece masaüstünde */
.article-sidebar {
  position: sticky;
  top: 24px;
}

/* Tablet */
@media (max-width: 900px) {
  .article-hero-grid {
    grid-template-columns: 1fr 240px;
    gap: 28px;
  }
  .article-body-grid {
    grid-template-columns: 1fr 220px;
    gap: 28px;
  }
}

/* Mobil: tek sütun */
@media (max-width: 768px) {
  .article-hero-grid,
  .article-body-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .article-sidebar {
    position: static !important;
    top: auto !important;
    order: 2;
  }
  .article-body-grid > .blog-content {
    order: 1;
  }
  /* blog-content masaüstündeki max-width kısıtlaması mobilde kalksın */
  .blog-content {
    max-width: 100% !important;
    padding: 20px 16px !important;
  }
  /* Tablo her zaman scroll edilebilir */
  .blog-content table,
  article table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
}

/* ===================================================
   MOBİL MENÜ + ARAMA PANELİ
   =================================================== */

/* ── Mobilde hamburger göster ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .header-inner { height: 60px; padding: 0 16px; }
  .logo-img     { height: 32px; max-width: 140px; }

  /* Nav — mobilde gizli, .open class'ı ile açılır */
  header nav ul {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 40px;
    gap: 4px;
    z-index: 399;   /* overlay(298) üstünde, arama paneli(400) altında */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 2px solid var(--border);
  }
  header nav ul.open { display: flex; }

  header nav ul li a {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 8px;
    border-bottom: 1px solid var(--bg);
    min-height: 48px;
    color: var(--dark);
  }
  header nav ul li a:hover { background: var(--bg); color: var(--orange); text-decoration: none; }
  header nav ul li:last-child a {
    margin-top: 10px;
    background: var(--orange);
    color: var(--white) !important;
    text-align: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 10px;
    border-bottom: none;
  }
  header nav ul li:last-child a:hover { background: var(--orange-dk); }

  /* Masaüstü nav'ı gizle — sadece mobil overlay ile aç */
  header nav { display: contents; }

  /* Header menü açıkken fixed kalır — scroll ile kaymasın */
  header.menu-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 398;
  }
}

/* ── Arama Paneli ── */
#search-panel {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--white);
  padding: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  border-bottom: 2px solid var(--border);
}
#search-panel.open { display: block; }

#search-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}

#sp-input {
  flex: 1;
  padding: 12px 16px;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  outline: none;
  font-family: var(--font);
  color: var(--dark);
  min-width: 0;
  -webkit-appearance: none;
}
#sp-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,0,.12); }

#sp-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
#sp-close:hover { background: #fee2e2; color: #dc2626; }

#sp-results {
  max-width: 700px;
  margin: 12px auto 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 60vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.sp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 8px;
  text-decoration: none !important;
  color: var(--dark);
  border: 1px solid var(--border);
  transition: background var(--transition);
}
.sp-item:hover { background: #fff7ed; border-color: var(--orange); }

.sp-badge {
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.sp-b-neg { background: #EFF6FF; color: #1D4ED8; }
.sp-b-ciu { background: #F0FDF4; color: #15803D; }
.sp-b-pro { background: #FFF7ED; color: #C2410C; }
.sp-b-blo { background: #FDF4FF; color: #7E22CE; }

.sp-title {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sp-empty {
  text-align: center;
  color: var(--muted);
  padding: 20px;
  font-size: .9rem;
}

/* Nav overlay — menü ve arama için yarı saydam arka plan */
/* display JS tarafından yönetilir */
#nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 298;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Masaüstünde arama paneli biraz farklı */
@media (min-width: 769px) {
  #search-panel { padding: 20px 24px; }
  #sp-input { font-size: 1.05rem; padding: 14px 20px; }
}

/* ===================================================
   TAŞMA ENGELLEYİCİ — Kesin Çözüm
   Tüm sayfalarda yatay scroll / içerik taşmasını önler.
   =================================================== */

/* Her element box-sizing:border-box ve min-width:0 */
*, *::before, *::after {
  box-sizing: border-box;
  min-width: 0;
}

/* HTML/body asla yatayda taşmasın */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Tüm görseller esnek */
img, video, svg, canvas, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tablolar scroll edilebilir sarmalayıcı içinde */
.blog-content table,
article table,
.legal-content table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* Mobil — tüm padding ve max-width düzeltmeleri */
@media (max-width: 768px) {

  /* blog-content padding küçült */
  .blog-content {
    padding: 20px 14px !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    overflow-x: hidden;
  }

  /* legal-content aynı */
  .legal-content {
    padding: 20px 14px !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }

  /* article-body-grid tek sütun */
  .article-body-grid,
  .article-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Container padding */
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
    max-width: 100% !important;
  }

  /* Inline max-width container'lar */
  div[style*="max-width"] {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Blockquote taşmasın */
  blockquote {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    max-width: 100% !important;
  }

  /* Tüm child elementler genişliği aşmasın */
  main * {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Inline tablolar */
  div[style*="overflow-x:auto"],
  div[style*="overflow-x: auto"] {
    max-width: 100% !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Uzun kelimeler kırılsın */
  p, li, td, th, span, a, h1, h2, h3, h4 {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

@media (max-width: 600px) {
  /* Daha küçük padding */
  .blog-content {
    padding: 16px 12px !important;
  }
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  /* Hero section padding */
  .hero-inner {
    padding: 36px 14px !important;
  }
}

/* ===================================================
   SECTION ve ARTICLE MOBİL PADDING DÜZELTMELERİ
   =================================================== */
@media (max-width: 768px) {

  /* Inline padding'li section'lar mobilde küçülsün */
  section[style*="padding:48px"],
  section[style*="padding: 48px"],
  section[style*="padding:56px"],
  section[style*="padding:64px"],
  article[style*="padding:48px"],
  article[style*="padding:56px"],
  article[style*="padding:64px"] {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Article padding */
  article {
    padding-top: 28px !important;
    padding-bottom: 32px !important;
  }

  /* Section padding genel */
  section { overflow-x: hidden; }
  article { overflow-x: hidden; }
  main    { overflow-x: hidden; }

  /* Tüm flex container'lar wrap etsin */
  div[style*="display:flex"]:not(.header-actions):not(.cookie-btns):not(.hero-ctas) {
    flex-wrap: wrap !important;
  }

  /* CTA kutusu (koyu arka plan + flex) mobilde dikey */
  div[style*="background:linear-gradient"][style*="border-radius:14px"] {
    padding: 24px 16px !important;
  }
  div[style*="background:linear-gradient"][style*="border-radius:14px"] a.btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Sidebar mobilde görünmez yap veya alta taşı */
  .article-sidebar {
    position: static !important;
    top: auto !important;
    margin-top: 24px;
  }

  /* Nav butonlar altalta */
  div[style*="display:flex"][style*="flex-wrap:wrap"] a.btn {
    width: 100%;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* ===================================================
   EK MOBİL DÜZELTMELER — Eksik padding selector'ları
   =================================================== */
@media (max-width: 768px) {

  /* Tüm section'lardaki yüksek padding değerleri */
  section[style*="padding:40px"],
  section[style*="padding:44px"],
  section[style*="padding:46px"],
  section[style*="padding:48px"],
  section[style*="padding:50px"],
  section[style*="padding:52px"],
  section[style*="padding:54px"],
  section[style*="padding:56px"],
  section[style*="padding:60px"],
  section[style*="padding:64px"],
  section[style*="padding:72px"],
  section[style*="padding:80px"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Article tag'i padding */
  article[style] {
    padding-top: 28px !important;
    padding-bottom: 32px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Business detail hero — koyu gradient bölümler */
  section[style*="background:linear-gradient"],
  div[style*="background:linear-gradient"] {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  section[style*="background:linear-gradient"] h1,
  div[style*="background:linear-gradient"] h1 {
    font-size: clamp(1.2rem, 4.5vw, 1.7rem) !important;
    line-height: 1.3 !important;
  }

  /* contact info flex row'ları — flex-wrap olmayan */
  div[style*="display:flex"][style*="border-bottom"] {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  /* Business detail location/contact box */
  div[style*="background:#f8fafc"][style*="border:1px solid"] {
    padding: 4px 12px !important;
  }

  /* Google Maps iframe tam genişlik */
  iframe[src*="maps.google"] {
    width: 100% !important;
    height: 180px !important;
    max-width: 100% !important;
  }

  /* FAQ accordion kutuları */
  div[style*="border:1px solid #E2E8F0"][style*="border-radius:10px"] {
    margin: 0 !important;
  }
  div[style*="border:1px solid #e2e8f0"][style*="border-radius:10px"] {
    margin: 0 !important;
  }

  /* Büyük info kutuları padding düzelt */
  div[style*="padding:20px 22px"],
  div[style*="padding:22px"],
  div[style*="padding:28px 24px"],
  div[style*="padding:32px"] {
    padding: 16px 14px !important;
  }

  /* Stats/data bar içindeki flex item'lar */
  div[style*="display:flex"][style*="justify-content:center"] > div {
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  /* Çok küçük ekranlarda hero başlıkları */
  h1[style*="font-size:2rem"],
  h1[style*="font-size: 2rem"] {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
  }

  /* Stats bar öğeleri alt alta gitsin */
  div[style*="display:flex"][style*="gap:32px"][style*="justify-content:center"] {
    gap: 16px !important;
  }
}
