/* =============================================
   BOZOK MAKİNE — Main Stylesheet
   ============================================= */

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

:root {
  --gold: #FFB800;
  --gold-dark: #e0a200;
  --black: #0d0d0d;
  --dark: #111111;
  --card: #1a1a1a;
  --border: #2a2a2a;
  --text: #ffffff;
  --muted: #aaaaaa;
  --wa: #25D366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #000; font-weight: 700;
  padding: 12px 24px; border-radius: 6px; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--gold); color: var(--gold); font-weight: 700;
  padding: 12px 24px; border-radius: 6px; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold); color: #000; }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: #000; color: var(--gold); font-weight: 700;
  padding: 12px 24px; border-radius: 6px; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  border: 2px solid #000;
  transition: all 0.2s;
}
.btn-dark:hover { background: #111; border-color: var(--gold); }

.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; font-size: 15px; padding: 16px; }

/* ---- FLOATING BUTTONS ---- */
.float-call, .float-wa {
  position: fixed; bottom: 90px; right: 20px;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.float-wa { background: var(--wa); color: #fff; bottom: 90px; }
.float-call { background: var(--gold); color: #000; bottom: 152px; }
.float-call svg, .float-wa svg { width: 26px; height: 26px; }
.float-call:hover, .float-wa:hover { transform: scale(1.1); }

/* ---- HEADER ---- */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.97); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; gap: 12px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-img {
  display: block; height: 68px; width: auto;
  border-radius: 6px;
}
.logo-text { display: flex; flex-direction: column; justify-content: center; }
.logo-brand { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; color: #fff; line-height: 1.15; letter-spacing: 1px; }
.logo-sub { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; letter-spacing: 0.5px; }

.nav-desktop { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-desktop > a, .nav-desktop > .nav-dropdown > a {
  color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 600;
  padding: 8px 11px; border-radius: 4px; transition: color 0.2s;
  font-family: 'Montserrat', sans-serif; white-space: nowrap;
}
.nav-desktop > a:hover, .nav-desktop > .nav-dropdown > a:hover { color: var(--gold); }

.header-phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--gold); text-decoration: none; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 14px; white-space: nowrap;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

.nav-mobile {
  display: none; flex-direction: column; padding: 16px 20px;
  border-top: 1px solid var(--border); gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--muted); text-decoration: none; padding: 10px 12px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px;
  border-radius: 4px; transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn-primary { text-align: center; justify-content: center; margin-top: 8px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  padding: 100px 0 60px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,184,0,0.08) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; }
.hero-text { max-width: 680px; }
.hero-label {
  color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-family: 'Montserrat', sans-serif; margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(36px, 6vw, 64px); line-height: 1.05;
  margin-bottom: 20px; color: #fff;
}
.hero h1 .accent { color: var(--gold); }
.hero-desc { font-size: 17px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; max-width: 560px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: center; }
.stat-n { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; color: var(--gold); }
.stat-l { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-div { width: 1px; height: 40px; background: var(--border); }
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: var(--muted); animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ---- KEYWORD BAND ---- */
.kw-band {
  background: var(--gold); padding: 12px 0; overflow: hidden;
}
.kw-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: scroll-kw 30s linear infinite;
}
.kw-track span {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; color: #000; text-transform: uppercase;
  letter-spacing: 1px; padding: 0 16px;
}
.kw-track .sep { padding: 0 4px; }
@keyframes scroll-kw { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-dark { background: var(--dark); }
.section-accent { background: var(--gold); color: #000; }
.section-accent .section-tag { background: rgba(0,0,0,0.15); color: #000; }
.section-accent h2 { color: #000; }
.section-accent p { color: rgba(0,0,0,0.75); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; background: rgba(255,184,0,0.15); color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}
.section-header h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(26px, 4vw, 40px); color: #fff; margin-bottom: 12px;
}
.section-dark .section-header h2, .section .section-header h2 { color: #fff; }
.section-header p { color: var(--muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.service-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 28px 24px; transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.service-icon { font-size: 32px; margin-bottom: 14px; }
.service-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  color: #fff; margin-bottom: 10px;
}
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.service-link {
  color: var(--gold); text-decoration: none; font-weight: 700; font-size: 13px;
  font-family: 'Montserrat', sans-serif; transition: opacity 0.2s;
}
.service-link:hover { opacity: 0.8; }

/* ---- WHY GRID ---- */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.why-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 28px 24px; position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--gold);
}
.why-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 36px;
  color: rgba(255,184,0,0.1); line-height: 1; margin-bottom: 12px;
}
.why-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  color: #fff; margin-bottom: 10px;
}
.why-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ---- TEKLİF FORM ---- */
.teklif-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.teklif-text .section-tag { background: rgba(0,0,0,0.15); color: #000; }
.teklif-text h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(26px, 4vw, 38px); color: #000; margin-bottom: 16px; margin-top: 10px;
}
.teklif-text p { color: rgba(0,0,0,0.75); margin-bottom: 28px; font-size: 16px; }

.teklif-form {
  background: #000; border-radius: 12px; padding: 32px; border: 1px solid rgba(255,255,255,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--card); border: 1px solid var(--border); border-radius: 6px;
  color: #fff; font-size: 14px; padding: 12px 14px; outline: none;
  font-family: 'Open Sans', sans-serif; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; }

/* ---- BÖLGE GRID ---- */
.bolge-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
  margin-bottom: 60px;
}
.bolge-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 28px 24px;
}
.bolge-main { border-color: var(--gold); }
.bolge-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px;
  margin-bottom: 6px; color: #fff;
}
.bolge-desc { color: var(--gold); font-size: 12px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; }
.mahalle-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.mahalle-list span {
  background: rgba(255,184,0,0.08); border: 1px solid rgba(255,184,0,0.2);
  color: var(--muted); font-size: 11px; padding: 3px 8px; border-radius: 4px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
}
.bolge-link {
  color: var(--gold); text-decoration: none; font-weight: 700; font-size: 13px;
  font-family: 'Montserrat', sans-serif; transition: opacity 0.2s;
}
.bolge-link:hover { opacity: 0.8; }

/* ---- SEO CONTENT ---- */
.seo-content {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 36px; border-left: 4px solid var(--gold);
}
.seo-content h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px;
  color: var(--gold); margin-bottom: 16px;
}
.seo-content p { color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 12px; }
.seo-content p:last-child { margin-bottom: 0; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: #fff; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 16px; font-weight: 600; font-family: 'Montserrat', sans-serif;
  text-align: left; gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 22px; color: var(--gold); flex-shrink: 0; font-weight: 400; transition: transform 0.2s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; }
.faq-a.open { display: block; }
.faq-a p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px;
}
.contact-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; margin-bottom: 4px; }
.contact-item a, .contact-item span { color: #fff; text-decoration: none; font-size: 15px; }
.contact-item a:hover { color: var(--gold); }
.contact-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.contact-map { border-radius: 12px; overflow: hidden; height: 350px; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ---- FOOTER ---- */
.footer { background: #080808; border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; margin-top: 16px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-phone { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px; color: var(--gold); text-decoration: none; margin-bottom: 14px; }
.btn-wa-footer {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa); color: #fff; padding: 10px 18px; border-radius: 6px;
  text-decoration: none; font-size: 13px; font-weight: 700;
  font-family: 'Montserrat', sans-serif; margin-bottom: 14px;
}
.footer-hours { color: var(--muted); font-size: 12px; }
.footer-bottom {
  padding: 20px 0; text-align: center;
}
.footer-bottom p { color: #444; font-size: 12px; margin-bottom: 4px; }

/* ---- DROPDOWN NAV ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a; border: 1px solid var(--border);
  border-radius: 10px; padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6); z-index: 200;
  min-width: 200px;
}
.nav-dropdown-menu.nav-dropdown-wide {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 16px;
  min-width: 480px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; flex-direction: column; }
.nav-dropdown:hover .nav-dropdown-wide { display: grid; }
.nav-dropdown-menu a {
  color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 600;
  padding: 5px 8px; border-radius: 4px;
  font-family: 'Montserrat', sans-serif; transition: all 0.15s; white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(255,184,0,0.08); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 80px 0 0;
  background: var(--black);
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px; font-size: 12px; color: var(--muted);
  font-family: 'Montserrat', sans-serif;
}
.breadcrumb-inner a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner span { color: var(--gold); font-weight: 600; }
.breadcrumb-sep { color: #444; }

/* ---- HERO SM (alt sayfalar) ---- */
.hero-sm {
  min-height: 50vh; padding: 60px 0 50px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-sm::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,184,0,0.07) 0%, transparent 60%);
}
.hero-sm .hero-content { position: relative; z-index: 1; }
.hero-sm h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(28px, 5vw, 52px); line-height: 1.1;
  color: #fff; margin-bottom: 16px;
}
.hero-sm h1 .accent { color: var(--gold); }
.hero-sm .hero-desc { font-size: 16px; color: var(--muted); max-width: 600px; margin-bottom: 28px; }
.hero-sm .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- İLÇE SAYFASI BÖLÜMLER ---- */
.ilce-intro { padding: 60px 0 0; }
.ilce-intro-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.ilce-intro-text h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 26px; color: #fff; margin-bottom: 16px; }
.ilce-intro-text p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.ilce-intro-text strong { color: #fff; }
.ilce-cta-box { background: var(--card); border: 1px solid var(--gold); border-radius: 10px; padding: 28px; text-align: center; }
.ilce-cta-box h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--gold); margin-bottom: 8px; }
.ilce-cta-box p { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.ilce-cta-box .cta-phone { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px; color: #fff; text-decoration: none; margin-bottom: 12px; }
.ilce-cta-box .cta-phone:hover { color: var(--gold); }

/* ---- MAHALLELERİMİZ ---- */
.mahalleler { padding: 60px 0; background: var(--dark); }
.mahalleler h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: #fff; margin-bottom: 8px; }
.mahalleler .sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.mahalle-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.mahalle-tag {
  background: rgba(255,184,0,0.08); border: 1px solid rgba(255,184,0,0.2);
  color: #ccc; font-size: 13px; padding: 6px 12px; border-radius: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
}
.mahalle-tag.highlight { background: rgba(255,184,0,0.15); border-color: var(--gold); color: var(--gold); }

/* ---- İÇ SAYFA HİZMETLER ---- */
.ilce-services { padding: 60px 0; }
.mini-service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.mini-service { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 20px 18px; display: flex; align-items: flex-start; gap: 12px; transition: border-color 0.2s; }
.mini-service:hover { border-color: var(--gold); }
.mini-service-icon { font-size: 24px; flex-shrink: 0; }
.mini-service h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: #fff; margin-bottom: 4px; }
.mini-service p { color: var(--muted); font-size: 12px; line-height: 1.5; }

/* ---- İLÇE SAYFASI SEO METİN ---- */
.ilce-seo { padding: 0 0 60px; }
.ilce-seo-box { background: var(--card); border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0; padding: 32px; }
.ilce-seo-box h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--gold); margin-bottom: 14px; }
.ilce-seo-box p { color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 12px; }

/* ---- DİĞER BÖLGELER ---- */
.other-regions { padding: 60px 0; background: var(--dark); }
.other-regions h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: #fff; margin-bottom: 24px; }
.region-links { display: flex; flex-wrap: wrap; gap: 10px; }
.region-link {
  display: inline-block; background: var(--card); border: 1px solid var(--border);
  color: var(--muted); text-decoration: none; padding: 10px 18px; border-radius: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px;
  transition: all 0.2s;
}
.region-link:hover { border-color: var(--gold); color: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 90px 0 50px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 16px; }

  .teklif-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .bolge-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .hero h1 { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .stat-div { display: none; }
}
