/* ===================================================
   gylzowc.com - Main Stylesheet
   =================================================== */

/* ----- 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;
}

/* 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; }
/* 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 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ----- 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;
}
.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: 28px 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; }
  /* Nav gizle masaüstü stilini kapat */
  nav ul {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 32px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    gap: 4px;
    z-index: 199;
    overflow-y: auto;
  }
  nav ul.open { display: flex; }
  nav ul li a {
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--bg);
  }
  nav ul li a:hover { background: var(--bg); }
  nav ul li:last-child a {
    margin-top: 8px;
    text-align: center;
    background: var(--orange);
    color: var(--white) !important;
    border-radius: 8px;
  }
}

@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; }
  table { min-width: 480px; }
  .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: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .header-inner .logo   { grid-column: 1; }
  .header-inner nav     { grid-column: 2; display: none; } /* nav grid'de gizli, fixed olarak acilir */
  .header-inner .hamburger { grid-column: 3; margin-left: auto; }
}
@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; }
}
