/* =========================================================
   BALÇOVA KOMBİ SERVİSİ — Kurumsal Site Stili
   Tema: Lacivert + Turuncu | Mobile-first
   ========================================================= */

:root {
  --navy: #0b1f3a;
  --navy-dark: #071427;
  --navy-light: #123157;
  --orange: #f5711c;
  --orange-dark: #d85e0f;
  --orange-light: #ff8c3d;
  --white: #ffffff;
  --gray-50: #f6f7f9;
  --gray-100: #eceff3;
  --gray-300: #c7ceda;
  --gray-500: #7c8698;
  --text: #1c2636;
  --text-light: #5a6478;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.18);
  --container: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

.ikon { width: 22px; height: 22px; }

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

.section { padding: 64px 0; }
.section-alt { background: var(--gray-50); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 113, 28, 0.1);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-head p { color: var(--text-light); font-size: 15.5px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(245,113,28,.35); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); }
.btn-block { width: 100%; }
.btn .ikon { width: 18px; height: 18px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(8px);
}
.topbar {
  background: var(--navy-dark);
  font-size: 12.5px;
  color: rgba(255,255,255,.75);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 36px; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar-item { display: inline-flex; align-items: center; gap: 5px; margin-right: 16px; }
.topbar-item .ikon { width: 13px; height: 13px; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social .ikon { width: 14px; height: 14px; }

.navbar { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 18px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand-mark .ikon { width: 24px; height: 24px; color: #fff; }
.brand small { display: block; font-weight: 500; font-size: 11px; color: rgba(255,255,255,.6); }

.nav-links { display: none; gap: 30px; }
.nav-links a { color: rgba(255,255,255,.85); font-weight: 600; font-size: 14.5px; transition: color .2s; }
.nav-links a:hover { color: var(--orange-light); }

.nav-cta { display: none; align-items: center; gap: 14px; }
.nav-phone { color: #fff; font-weight: 700; display: flex; align-items: center; gap: 8px; font-size: 15px; }
.nav-phone .ikon { width: 18px; height: 18px; color: var(--orange-light); }

.menu-toggle { display: flex; color: #fff; }
.menu-toggle .ikon { width: 26px; height: 26px; }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy-dark);
  padding: 20px;
  flex-direction: column;
}
.mobile-menu.acik { display: flex; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-menu-top .ikon { width: 26px; height: 26px; color: #fff; }
.mobile-menu a {
  color: #fff; font-weight: 700; font-size: 20px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu .btn { margin-top: 24px; }

/* ---------- HERO SLIDER ---------- */
.hero { position: relative; height: 92vh; min-height: 560px; max-height: 780px; overflow: hidden; background: var(--navy); }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .9s ease;
  display: flex; align-items: center;
}
.hero-slide.aktif { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,20,39,.94) 10%, rgba(7,20,39,.72) 55%, rgba(7,20,39,.4) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 0 20px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange-light); font-weight: 700; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--orange); }
.hero-content h1 {
  color: #fff; font-size: clamp(30px, 6vw, 52px); font-weight: 800; line-height: 1.15; margin-bottom: 18px;
}
.hero-content p { color: rgba(255,255,255,.82); font-size: 17px; margin-bottom: 30px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-dots { position: absolute; z-index: 3; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dots button { width: 34px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.3); transition: all .3s; }
.hero-dots button.aktif { background: var(--orange); width: 46px; }

.hero-arrows { position: absolute; z-index: 3; bottom: 28px; right: 20px; display: none; gap: 10px; }
.hero-arrows button {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background .2s;
}
.hero-arrows button:hover { background: rgba(255,255,255,.22); }

.hero-strip {
  position: relative; z-index: 2;
  background: rgba(7,20,39,.92); border-top: 1px solid rgba(255,255,255,.08);
}
.hero-strip .container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 18px 20px; }
.hero-strip-item { display: flex; align-items: center; gap: 10px; color: #fff; }
.hero-strip-item .num { font-size: 22px; font-weight: 800; color: var(--orange-light); }
.hero-strip-item .lbl { font-size: 12px; color: rgba(255,255,255,.65); }

/* ---------- HİZMETLER (öne çıkan slider) ---------- */
.hizmet-slider { position: relative; }
.hizmet-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; scrollbar-width: none; }
.hizmet-track::-webkit-scrollbar { display: none; }
.hizmet-card {
  scroll-snap-align: start; flex: 0 0 84%;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100);
}
.hizmet-card-img { height: 190px; background-size: cover; background-position: center; position: relative; }
.hizmet-card-ikon {
  position: absolute; bottom: -22px; left: 22px;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(245,113,28,.4);
}
.hizmet-card-ikon .ikon { color: #fff; width: 26px; height: 26px; }
.hizmet-card-body { padding: 34px 22px 24px; }
.hizmet-card-body h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.hizmet-card-body p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.hizmet-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange-dark); font-weight: 700; font-size: 13.5px; }
.hizmet-card-link .ikon { width: 15px; height: 15px; }

.hizmet-liste-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
.hizmet-liste-item {
  display: flex; gap: 16px; padding: 22px; background: #fff;
  border-radius: var(--radius-sm); border: 1px solid var(--gray-100); box-shadow: var(--shadow);
}
.hizmet-liste-ikon {
  width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
}
.hizmet-liste-ikon .ikon { color: var(--orange-light); width: 24px; height: 24px; }
.hizmet-liste-item h4 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.hizmet-liste-item p { font-size: 13.5px; color: var(--text-light); }

/* ---------- HAKKIMIZDA / NEDEN BİZ ---------- */
.hakkimizda-wrap { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hakkimizda-img-wrap { position: relative; }
.hakkimizda-img-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hakkimizda-badge {
  position: absolute; bottom: -18px; right: 18px;
  background: var(--orange); color: #fff; padding: 16px 22px; border-radius: 12px;
  box-shadow: 0 12px 24px rgba(245,113,28,.4); text-align: center;
}
.hakkimizda-badge .num { font-size: 26px; font-weight: 800; display: block; }
.hakkimizda-badge .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }

.hakkimizda-text .section-tag { margin-bottom: 14px; }
.hakkimizda-text h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.hakkimizda-text p { color: var(--text-light); margin-bottom: 26px; }

.usp-slider { display: grid; grid-template-columns: 1fr; gap: 16px; }
.usp-card { display: flex; gap: 14px; padding: 18px; background: var(--gray-50); border-radius: var(--radius-sm); border: 1px solid var(--gray-100); }
.usp-ikon { width: 44px; height: 44px; border-radius: 10px; background: rgba(245,113,28,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.usp-ikon .ikon { color: var(--orange); width: 22px; height: 22px; }
.usp-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.usp-card p { font-size: 13px; color: var(--text-light); }

/* ---------- GALERİ SLIDER ---------- */
.galeri-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.galeri-track::-webkit-scrollbar { display: none; }
.galeri-item { scroll-snap-align: start; flex: 0 0 78%; border-radius: var(--radius); overflow: hidden; position: relative; height: 260px; box-shadow: var(--shadow); }
.galeri-item img { width: 100%; height: 100%; object-fit: cover; }
.galeri-cizgi { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,.75), transparent 55%); display: flex; align-items: flex-end; padding: 18px; }
.galeri-cizgi span { color: #fff; font-weight: 700; font-size: 14.5px; }

.galeri-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 10px; }
.galeri-grid .g-item { border-radius: var(--radius-sm); overflow: hidden; height: 150px; }
.galeri-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.galeri-grid .g-item:hover img { transform: scale(1.06); }

/* ---------- KAMPANYALAR / BLOG SLIDER ---------- */
.kampanya-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; }
.kampanya-track::-webkit-scrollbar { display: none; }
.kampanya-card { scroll-snap-align: start; flex: 0 0 84%; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.kampanya-img { height: 170px; background-size: cover; background-position: center; }
.kampanya-body { padding: 22px; }
.kampanya-tarih { font-size: 12px; color: var(--orange-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.kampanya-body h3 { font-size: 16.5px; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.kampanya-body p { font-size: 13.5px; color: var(--text-light); margin-bottom: 14px; }

/* ---------- RANDEVU FORM ---------- */
.randevu-section { background: var(--navy); position: relative; overflow: hidden; }
.randevu-section::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(245,113,28,.18), transparent 70%);
}
.randevu-wrap { display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; z-index: 1; }
.randevu-text .section-tag { background: rgba(255,140,61,.15); color: var(--orange-light); }
.randevu-text h2 { color: #fff; font-size: clamp(24px,4vw,32px); font-weight: 800; margin-bottom: 16px; }
.randevu-text p { color: rgba(255,255,255,.7); margin-bottom: 26px; }
.randevu-cta-list { display: flex; flex-direction: column; gap: 14px; }
.randevu-cta-item { display: flex; align-items: center; gap: 12px; color: #fff; }
.randevu-cta-item .ikon-wrap { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.randevu-cta-item .ikon-wrap .ikon { color: var(--orange-light); width: 20px; height: 20px; }
.randevu-cta-item strong { display: block; font-size: 14.5px; }
.randevu-cta-item small { color: rgba(255,255,255,.55); font-size: 12.5px; }

.randevu-form { background: #fff; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-lg); }
.form-grup { margin-bottom: 16px; }
.form-grup label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-grup input, .form-grup select, .form-grup textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-100); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14.5px; color: var(--text); background: var(--gray-50); transition: border-color .2s;
}
.form-grup input:focus, .form-grup select:focus, .form-grup textarea:focus { outline: none; border-color: var(--orange); background: #fff; }
.form-grup textarea { resize: vertical; min-height: 90px; }
.form-satir { display: grid; grid-template-columns: 1fr; gap: 16px; }
.form-mesaj { padding: 12px 14px; border-radius: var(--radius-sm); font-size: 13.5px; margin-bottom: 16px; }
.form-mesaj.basarili { background: #e7f7ee; color: #1a7f4e; }
.form-mesaj.hata { background: #fdeaea; color: #c0392b; }

/* ---------- İLETİŞİM ---------- */
.iletisim-wrap { display: grid; grid-template-columns: 1fr; gap: 32px; }
.iletisim-kart { background: var(--gray-50); border-radius: var(--radius); padding: 26px; border: 1px solid var(--gray-100); }
.iletisim-kart-ikon { width: 46px; height: 46px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.iletisim-kart-ikon .ikon { color: var(--orange-light); width: 22px; height: 22px; }
.iletisim-kart h4 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.iletisim-kart p, .iletisim-kart a { font-size: 14px; color: var(--text-light); }
.harita-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 340px; margin-top: 24px; }
.harita-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.7); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; }
.footer-social .ikon { width: 17px; height: 17px; }
.footer-col h5 { color: #fff; font-size: 14.5px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: var(--orange-light); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: 13.5px; }
.footer-contact .ikon { width: 16px; height: 16px; color: var(--orange-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; font-size: 12.5px; color: rgba(255,255,255,.4); }

/* ---------- WHATSAPP FLOAT (sadece masaüstü) ---------- */
.wa-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: none; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(37,211,102,.45);
  animation: wa-pulse 2.4s infinite;
}
.wa-float .ikon { width: 28px; height: 28px; color: #fff; }
@keyframes wa-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* ---------- MOBİL ALT MENÜ (WhatsApp / Ara / Yol Tarifi) ---------- */
.mobile-bottom-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: #fff; border-top: 1px solid var(--gray-100);
  box-shadow: 0 -8px 24px rgba(11,31,58,.12);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mbb-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 10px 4px 8px; color: var(--navy); position: relative;
}
.mbb-item + .mbb-item::before {
  content: ''; position: absolute; left: 0; top: 14px; bottom: 14px; width: 1px; background: var(--gray-100);
}
.mbb-ikon-wrap {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--gray-50); transition: all .2s;
}
.mbb-item .ikon { width: 18px; height: 18px; }
.mbb-item span { font-size: 11px; font-weight: 700; letter-spacing: .01em; }
.mbb-item.mbb-whatsapp .mbb-ikon-wrap { background: rgba(37,211,102,.12); color: #1fa855; }
.mbb-item.mbb-whatsapp span { color: #1fa855; }
.mbb-item.mbb-ara .mbb-ikon-wrap { background: var(--navy); color: #fff; box-shadow: 0 6px 16px rgba(11,31,58,.35); transform: translateY(-10px); width: 46px; height: 46px; }
.mbb-item.mbb-ara { padding-top: 2px; }
.mbb-item.mbb-ara span { margin-top: 2px; color: var(--navy); }
.mbb-item.mbb-yol .mbb-ikon-wrap { background: rgba(245,113,28,.12); color: var(--orange-dark); }
.mbb-item.mbb-yol span { color: var(--orange-dark); }
.mbb-item:active .mbb-ikon-wrap { transform: scale(.92); }
.mbb-item.mbb-ara:active .mbb-ikon-wrap { transform: translateY(-10px) scale(.92); }

body { padding-bottom: 74px; }

/* ---------- SAYFA BAŞLIĞI (iç sayfalar) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 90px 0 50px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(245,113,28,.15), transparent 60%); }
.page-hero h1 { position: relative; color: #fff; font-size: clamp(26px,5vw,40px); font-weight: 800; margin-bottom: 10px; }
.breadcrumb { position: relative; display: flex; justify-content: center; gap: 8px; color: rgba(255,255,255,.55); font-size: 13.5px; }
.breadcrumb a { color: rgba(255,255,255,.75); }

/* ---------- GENEL LİSTE SAYFALARI ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.blog-card { background:#fff; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); border:1px solid var(--gray-100); }

/* ---------- RESPONSIVE ---------- */
@media (min-width: 640px) {
  .hero-strip .container { grid-template-columns: repeat(4, 1fr); }
  .hizmet-card { flex: 0 0 46%; }
  .kampanya-card { flex: 0 0 46%; }
  .galeri-item { flex: 0 0 42%; }
  .hizmet-liste-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .form-satir { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .menu-toggle { display: none; }
  .hero-arrows { display: flex; }
  .hizmet-card { flex: 0 0 31%; }
  .kampanya-card { flex: 0 0 31%; }
  .galeri-item { flex: 0 0 30%; }
  .hakkimizda-wrap { grid-template-columns: 1fr 1.1fr; }
  .usp-slider { grid-template-columns: 1fr; }
  .randevu-wrap { grid-template-columns: 1fr 1fr; }
  .iletisim-wrap { grid-template-columns: 1.1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .hizmet-liste-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(3, 1fr); }

  .mobile-bottom-bar { display: none; }
  .wa-float { display: flex; }
  body { padding-bottom: 0; }
}

@media (min-width: 1100px) {
  .galeri-grid { grid-template-columns: repeat(4, 1fr); }
}
