/* ===================================================
   AKBULUT OTO ÇEKİCİ — PAYLAŞILAN STILLER
   =================================================== */

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

:root {
  --yellow: #FFC300;
  --yellow-dark: #E5A800;
  --yellow-light: #FFF8D6;
  --navy: #0A1628;
  --navy-2: #132240;
  --red: #E02020;
  --red-dark: #C01818;
  --white: #FFFFFF;
  --bg: #F4F6FA;
  --gray-100: #E8ECF4;
  --gray-300: #B0B8CC;
  --gray-500: #6B7590;
  --gray-700: #3A4260;
  --text: #0A1628;
  --radius: 12px;
  --max-w: 1180px;
  --shadow: 0 4px 24px rgba(10,22,40,0.1);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

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

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ===== TOP BAR ===== */
#topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 3px solid var(--yellow);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar-left { display: flex; align-items: center; gap: 1.5rem; }
.topbar-right { display: flex; align-items: center; gap: 1rem; }

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.topbar-item:hover { color: var(--yellow); }
.topbar-item svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.topbar-item.phone { color: var(--yellow); font-weight: 700; font-size: 0.875rem; }

/* ===== HEADER ===== */
#header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,22,40,0.09);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.logo:hover .logo-icon { transform: scale(1.05); }
.logo-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--navy); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.logo-text { line-height: 1.15; }
.logo-name { font-size: 1.05rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; display: block; }
.logo-name span { color: var(--red); }
.logo-sub { font-size: 0.65rem; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; display: block; }

nav { display: flex; align-items: center; gap: 0.1rem; }

nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
}
nav a:hover { color: var(--navy); background: var(--bg); }
nav a.active { color: var(--navy); background: var(--yellow-light); }
nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0.875rem; right: 0.875rem;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  white-space: nowrap;
  font-family: inherit;
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,195,0,0.4); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,32,32,0.35); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--navy); background: var(--bg); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-lg { padding: 0.9rem 1.875rem; font-size: 1rem; }
.btn-lg svg { width: 18px; height: 18px; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 0.75rem 1.25rem 1rem;
  box-shadow: 0 8px 24px rgba(10,22,40,0.12);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--gray-700); font-size: 0.95rem; font-weight: 600; padding: 0.7rem 0.5rem; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.active { color: var(--navy); }
.mobile-nav .mn-phone { color: var(--red); font-weight: 800; font-size: 1rem; }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--navy);
  color: #fff;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: var(--navy-2);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.page-banner-inner { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--yellow); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }

.page-banner-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-bottom: 0.75rem;
  display: block;
}
.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.page-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  line-height: 1.7;
}

/* ===== SECTION STYLES ===== */
section { padding: 5rem 0; }

.section-head { margin-bottom: 3.5rem; }
.section-head.centered { text-align: center; }
.section-head.centered .section-desc { margin-inline: auto; }

.section-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 0.6rem;
  display: block;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.section-desc { font-size: 1rem; color: var(--gray-500); max-width: 560px; line-height: 1.7; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.cta-band-accent {
  position: absolute;
  top: 0; right: 0;
  width: 35%;
  height: 100%;
  background: var(--navy-2);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-text p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.cta-band-text h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1.1; }
.cta-band-text h2 span { color: var(--yellow); }
.cta-band-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ===== SERVICE CARDS ===== */
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.svc-card:hover { border-color: var(--yellow); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 54px; height: 54px;
  background: var(--yellow-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.25s;
}
.svc-card:hover .svc-icon { background: var(--yellow); }
.svc-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.svc-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 1.25rem; }
.svc-card .card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s, color 0.2s;
}
.svc-card .card-link:hover { color: var(--red); gap: 0.5rem; }

/* ===== FEATURES ===== */
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-num {
  width: 42px; height: 42px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}
.feature-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ===== STAT CARDS ===== */
.stat-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.stat-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.stat-card.dark { background: var(--navy); border-color: var(--navy); }
.stat-card.dark .sc-num { color: var(--yellow); }
.stat-card.dark .sc-lbl { color: rgba(255,255,255,0.5); }
.sc-num { font-size: 2.5rem; font-weight: 900; color: var(--navy); letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.4rem; }
.sc-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.25s;
}
.testi-card:hover { border-color: var(--yellow); box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testi-stars svg { width: 16px; height: 16px; fill: var(--yellow); stroke: none; }
.testi-quote { font-size: 0.925rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--navy);
  flex-shrink: 0;
}
.testi-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.testi-label { font-size: 0.75rem; color: var(--gray-500); }

/* ===== DISTRICTS ===== */
.districts { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.dpill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1.5px solid var(--gray-100);
  background: var(--white);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.18s;
}
.dpill:hover { border-color: var(--yellow); background: var(--yellow-light); color: var(--navy); }
.dpill svg { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.badge-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--navy);
  color: var(--yellow);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
}
.badge-more {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: var(--navy);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ===== FORM ===== */
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.fg input, .fg textarea, .fg select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  font-size: 0.875rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,195,0,0.15);
}
.fg textarea { min-height: 110px; }
.success-msg {
  display: none;
  text-align: center;
  padding: 1.25rem;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 10px;
  color: #065F46;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 95;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: all 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }
.wa-float svg { width: 28px; height: 28px; }

/* ===== MOBILE STICKY ===== */
#mob-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.75rem 1rem;
  background: var(--navy);
  border-top: 2px solid var(--yellow);
  gap: 0.5rem;
}
#mob-cta a { flex: 1; justify-content: center; }

/* ===== FOOTER ===== */
#footer { border-top: 3px solid var(--yellow); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
.footer-brand { margin-bottom: 0.75rem; }
.footer-brand .logo-name { color: #fff; font-size: 1.1rem; }
.footer-about { font-size: 0.875rem; line-height: 1.75; max-width: 280px; margin: 0.75rem 0 1.25rem; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 1.25rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--yellow); display: inline-block; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.2s, padding 0.2s; display: flex; align-items: center; gap: 0.4rem; }
.footer-links a::before { content: '›'; color: var(--yellow); font-size: 1rem; }
.footer-links a:hover { color: var(--yellow); padding-left: 0.2rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.875rem; }
.fci { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; }
.fci svg { width: 14px; height: 14px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; }
.fci a, .fci span { color: rgba(255,255,255,0.55); }
.fci a:hover { color: var(--yellow); }
.social-row { display: flex; gap: 0.5rem; margin-top: 0.25rem; }
.soc-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: all 0.2s; }
.soc-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy); transform: translateY(-2px); }
.soc-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.3); padding: 1.25rem 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2.5rem; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  #topbar .topbar-left { display: none; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  #mob-cta { display: flex; }
  #footer { padding-bottom: 5rem; }
  section { padding: 3.5rem 0; }
  .wa-float { bottom: 5.5rem; right: 1rem; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
