/* =============================================
   ARKAT HAFRİYAT — Main Stylesheet
   ============================================= */

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

:root {
  --navy: #0f1f3d;
  --navy-dark: #0a1628;
  --navy-mid: #1e3a6e;
  --orange: #ff5500;
  --orange-dark: #e04a00;
  --orange-light: rgba(255,85,0,0.12);
  --card: #162444;
  --border: #1e3560;
  --text: #ffffff;
  --muted: #94a3b8;
  --wa: #25D366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--navy-dark);
  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(--orange); color: #fff; font-weight: 700;
  padding: 12px 24px; border-radius: 8px; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

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

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

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

/* ---- FLOATING BUTTONS ---- */
.float-call {
  position: fixed; left: 20px; bottom: 90px;
  width: 54px; height: 54px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; text-decoration: none;
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  transition: transform 0.2s;
}
.float-wa {
  position: fixed; left: 20px; bottom: 156px;
  width: 54px; height: 54px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; text-decoration: none;
  background: var(--wa); color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.float-call svg, .float-wa svg { width: 26px; height: 26px; }
.float-call:hover, .float-wa:hover { transform: scale(1.1) translateY(-2px); }

/* ---- HEADER ---- */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,40,0.97); border-bottom: 2px solid var(--orange);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; gap: 12px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-badge {
  width: 46px; height: 46px; border-radius: 8px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 16px;
  color: #fff; letter-spacing: 0px; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; justify-content: center; }
.logo-brand { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 17px; color: #fff; line-height: 1.2; letter-spacing: 0.5px; }
.logo-sub { display: block; font-size: 11px; color: var(--muted); margin-top: 1px; letter-spacing: 0.5px; }

/* Desktop Nav */
.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: 6px; transition: color 0.2s, background 0.2s;
  font-family: 'Montserrat', sans-serif; white-space: nowrap;
}
.nav-desktop > a:hover, .nav-desktop > .nav-dropdown > a:hover { color: var(--orange); }

.header-phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--orange); text-decoration: none; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 14px; white-space: nowrap;
  background: var(--orange-light); padding: 8px 12px; border-radius: 8px;
  border: 1px solid rgba(249,115,22,0.3);
}

.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;
  background: var(--navy-dark);
}
.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: 6px; transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile .btn-primary { text-align: center; justify-content: center; margin-top: 8px; }

/* ---- 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: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.7); z-index: 200;
  min-width: 200px; border-top: 3px solid var(--orange);
}
.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(--orange); background: var(--orange-light); }

/* ---- 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(160deg, #0a1628 0%, #0f2244 40%, #152d5e 70%, #0a1628 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(249,115,22,0.12) 0%, transparent 55%);
}
.hero-bg::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 98px,
    rgba(255,255,255,0.02) 99px,
    rgba(255,255,255,0.02) 100px
  );
}
.hero-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-text { }
.hero-label {
  color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-family: 'Montserrat', sans-serif; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.hero-label::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--orange);
}
.hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(34px, 5.5vw, 60px); line-height: 1.08;
  margin-bottom: 20px; color: #fff;
}
.hero h1 .accent { color: var(--orange); }
.hero-desc { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.75; max-width: 520px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; max-width: 420px;
}
.stat {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-n { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 26px; color: var(--orange); }
.stat-l { display: block; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Hero right panel */
.hero-panel {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; border-top: 4px solid var(--orange);
}
.hero-panel h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px;
  color: #fff; margin-bottom: 6px;
}
.hero-panel p { color: var(--muted); font-size: 13px; margin-bottom: 24px; }
.hero-panel .cta-phone {
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 24px; color: var(--orange); text-decoration: none; margin-bottom: 14px;
  text-align: center;
}
.hero-panel .service-list { list-style: none; margin-bottom: 24px; }
.hero-panel .service-list li {
  color: var(--muted); font-size: 13px; padding: 6px 0;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px;
}
.hero-panel .service-list li:last-child { border-bottom: none; }
.hero-panel .service-list li::before {
  content: '▶'; color: var(--orange); font-size: 9px;
}

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: var(--muted); animation: bounce 2s infinite; z-index: 1;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- KEYWORD BAND ---- */
.kw-band {
  background: var(--orange); 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: #fff; text-transform: uppercase;
  letter-spacing: 1px; padding: 0 16px;
}
.kw-track .sep { padding: 0 4px; opacity: 0.6; }
@keyframes scroll-kw { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-dark { background: var(--navy); }
.section-accent { background: var(--orange); color: #fff; }
.section-accent .section-tag { background: rgba(255,255,255,0.2); color: #fff; }
.section-accent h2 { color: #fff; }
.section-accent p { color: rgba(255,255,255,0.85); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; background: var(--orange-light); color: var(--orange);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px; margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif; border-left: 3px solid var(--orange);
}
.section-header h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(26px, 4vw, 40px); color: #fff; margin-bottom: 12px;
}
.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;
  border-left: 4px solid transparent; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
}
.service-card:hover { border-left-color: var(--orange); transform: translateX(3px); }
.service-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.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(--orange); 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;
  border-left: 4px solid var(--orange);
}
.why-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 40px;
  color: rgba(249,115,22,0.08); 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; }

/* ---- 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; border-left: 4px solid var(--border);
  transition: border-left-color 0.2s;
}
.bolge-card:hover { border-left-color: var(--orange); }
.bolge-main { border-left-color: var(--orange); }
.bolge-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px;
  margin-bottom: 6px; color: #fff;
}
.bolge-desc { color: var(--orange); 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(249,115,22,0.08); border: 1px solid rgba(249,115,22,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(--orange); 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(--orange);
}
.seo-content h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px;
  color: var(--orange); 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(--orange); }
.faq-icon { font-size: 22px; color: var(--orange); 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(--orange); }
.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; }

/* ---- TEKLIF FORM ---- */
.teklif-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.teklif-text h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(26px, 4vw, 38px); color: #fff; margin-bottom: 16px; margin-top: 10px;
}
.teklif-text p { color: var(--muted); margin-bottom: 28px; font-size: 16px; }
.teklif-text .section-tag { background: rgba(255,255,255,0.1); color: #fff; border-left-color: #fff; }

.teklif-form {
  background: var(--navy-dark); border-radius: 12px; padding: 32px;
  border: 1px solid var(--border); border-top: 3px solid var(--orange);
}
.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(--orange);
}
.form-group select option { background: var(--card); }
.form-group textarea { resize: vertical; }

/* ---- FOOTER ---- */
.footer { background: #060f1e; 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(--orange); 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(--orange); }
.footer-phone { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px; color: var(--orange); 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: #2a4070; font-size: 12px; margin-bottom: 4px; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 80px 0 0;
  background: var(--navy-dark);
}
.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(--orange); }
.breadcrumb-inner span { color: var(--orange); font-weight: 600; }
.breadcrumb-sep { color: var(--border); }

/* ---- HERO SM ---- */
.hero-sm {
  min-height: 52vh; padding: 60px 0 50px;
  background: linear-gradient(160deg, #0a1628 0%, #0f2244 50%, #152d5e 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-sm::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(249,115,22,0.10) 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(--orange); }
.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; }
.hero-sm .hero-label {
  color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-family: 'Montserrat', sans-serif; margin-bottom: 14px;
}

/* ---- İLÇE SAYFASI ---- */
.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(--border); border-radius: 10px;
  padding: 28px; text-align: center; border-top: 4px solid var(--orange);
}
.ilce-cta-box h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--orange); 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(--orange); }

/* ---- MAHALLELERİMİZ ---- */
.mahalleler { padding: 60px 0; background: var(--navy); }
.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(249,115,22,0.07); border: 1px solid rgba(249,115,22,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(249,115,22,0.15); border-color: var(--orange); color: var(--orange); }

/* ---- İÇ 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-left-color 0.2s; border-left: 3px solid transparent;
}
.mini-service:hover { border-left-color: var(--orange); }
.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 SEO ---- */
.ilce-seo { padding: 0 0 60px; }
.ilce-seo-box { background: var(--card); border-left: 4px solid var(--orange); 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(--orange); 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(--navy); }
.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; border-left: 3px solid transparent;
}
.region-link:hover { border-left-color: var(--orange); color: var(--orange); }

/* ---- GALERİ ---- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
}
.gallery-card {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  position: relative; cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-card:hover { transform: scale(1.02); box-shadow: 0 8px 40px rgba(249,115,22,0.2); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  font-family: 'Montserrat', sans-serif;
}
.gallery-placeholder .g-icon { font-size: 44px; }
.gallery-placeholder .g-label {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85);
  text-align: center; padding: 0 16px; line-height: 1.4;
}
.g1 { background: linear-gradient(135deg, #0f2244 0%, #1e4080 100%); }
.g2 { background: linear-gradient(135deg, #1a2a10 0%, #2d5020 100%); }
.g3 { background: linear-gradient(135deg, #2a1a0a 0%, #6b3010 100%); }
.g4 { background: linear-gradient(135deg, #0a2030 0%, #104060 100%); }
.g5 { background: linear-gradient(135deg, #200a2a 0%, #4a1060 100%); }
.g6 { background: linear-gradient(135deg, #1a0a0a 0%, #5a1010 100%); }
.g7 { background: linear-gradient(135deg, #0a1a2a 0%, #103050 100%); }
.g8 { background: linear-gradient(135deg, #1a2010 0%, #344020 100%); }
.g9 { background: linear-gradient(135deg, #2a1a00 0%, #704a00 100%); }
.g10 { background: linear-gradient(135deg, #001a2a 0%, #003560 100%); }
.g11 { background: linear-gradient(135deg, #1a1a00 0%, #505000 100%); }
.g12 { background: linear-gradient(135deg, #0f1f3d 0%, #f97316 100%); }

/* ---- HİZMETLER SAYFASI ---- */
.hizmet-detail {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 36px; border-left: 5px solid var(--orange); margin-bottom: 28px;
}
.hizmet-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.hizmet-icon-box {
  width: 72px; height: 72px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 32px;
}
.hizmet-header h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px;
  color: #fff; margin-bottom: 6px;
}
.hizmet-header p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.hizmet-detail ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hizmet-detail ul li {
  color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 8px;
}
.hizmet-detail ul li::before { content: '✓'; color: var(--orange); font-weight: 700; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { display: none; }
}

@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 { grid-template-columns: repeat(3,1fr); }

  .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; }

  .ilce-intro-grid { grid-template-columns: 1fr; }

  .hizmet-detail ul { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .hero h1 { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- GALERİ ---- */
.galeri-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.filter-btn { background: transparent; border: 2px solid var(--border); color: var(--muted); padding: 8px 20px; border-radius: 30px; cursor: pointer; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }

.galeri-item { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.galeri-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.galeri-item:hover img { transform: scale(1.06); }
.galeri-overlay { position: absolute; inset: 0; background: rgba(15,31,61,0.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.galeri-overlay span { color: #fff; font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 14px; border: 2px solid #fff; padding: 8px 20px; border-radius: 30px; }
.galeri-item:hover .galeri-overlay { opacity: 1; }
.galeri-item.hidden { display: none; }

/* ---- LİGHTBOX ---- */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; object-fit: contain; }
.lb-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }
.lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 24px; padding: 12px 18px; cursor: pointer; border-radius: 6px; transition: background .2s; }
.lb-arrow:hover { background: var(--orange); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
