/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1a56db;
  --primary-dark: #1241a8;
  --accent: #f97316;
  --accent-light: #fff7ed;
  --text: #111827;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg2: #f9fafb;
  --bg3: #f3f4f6;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow: 0 4px 24px rgba(0, 0, 0, .10);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 86, 219, .3);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: #ea6c00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, .35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.nav-logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

/* Dropdown Styles */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: transform 0.3s;
}

.nav-item-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem !important;
  color: var(--text) !important;
  transition: background 0.3s;
}

.dropdown-menu a:hover {
  background: var(--bg2);
  color: var(--primary) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-call:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.nav-call svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-cta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.mobile-cta .btn {
  flex: 1;
  justify-content: center;
  font-size: .9rem;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1a56db 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
  mix-blend-mode: luminosity;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 20, 60, .6) 0%, rgba(26, 86, 219, .4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-content-centered {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  min-height: calc(100vh - 68px);
}

.text-center {
  text-align: center;
}

.hero-text.text-center {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-action-box {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.btn-hero-call {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--accent);
  color: #fff;
  padding: 20px 40px;
  border-radius: 100px;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(249, 115, 22, .4);
  transition: var(--transition);
}

.btn-hero-call:hover {
  transform: scale(1.05) translateY(-4px);
  background: #ea6c00;
  box-shadow: 0 15px 40px rgba(249, 115, 22, .5);
}

.btn-hero-call .icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-wa {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  padding: 20px 40px;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-hero-wa:hover {
  transform: scale(1.05) translateY(-4px);
  background: #1da851;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .3);
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-card {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  padding: 32px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.hero-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form input,
.hero-form select {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.hero-form input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.hero-form input:focus,
.hero-form select:focus {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .2);
}

.hero-form select option {
  color: var(--text);
  background: #fff;
}

.hero-form .btn {
  width: 100%;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 15px;
}

.hero-form .btn:hover {
  background: #ea6c00;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.trust-sep {
  width: 4px;
  height: 4px;
  background: var(--border);
  border-radius: 50%;
}

/* ===== SERVICES ===== */
#hizmetler {
  background: var(--bg2);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon svg {
  fill: #fff;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== BOLGELER ===== */
#bolgeler {
  background: var(--bg);
}

.bolgeler-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.districts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.district-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: default;
}

.district-chip svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
  flex-shrink: 0;
}

.district-chip:hover {
  background: #eff6ff;
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.03);
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 86, 219, .7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.map-overlay-text {
  color: #fff;
}

.map-overlay-text strong {
  font-size: 1.3rem;
  font-weight: 800;
  display: block;
}

.map-overlay-text span {
  font-size: .9rem;
  opacity: .85;
}

/* ===== WHY US ===== */
#neden {
  background: var(--bg2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.why-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  opacity: .15;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.why-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-body p {
  font-size: .88rem;
  color: var(--text-muted);
}

/* ===== ABOUT / CTA ===== */
#hakkimda {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-text .tag {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .9);
}

.about-text .section-title {
  color: #fff;
}

.about-text .section-sub {
  color: rgba(255, 255, 255, .7);
}

.about-btns {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===== SÃœREÃ‡ ===== */
#surec {
  background: var(--bg);
}

.steps {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 56px;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 24px rgba(26, 86, 219, .35);
  transition: var(--transition);
}

.step:hover .step-circle {
  transform: scale(1.12) rotate(-5deg);
  background: var(--accent);
}

.step h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: .83rem;
  color: var(--text-muted);
}

/* ===== BLOG ===== */
#blog {
  background: var(--bg2);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, .15);
  border-color: transparent;
}

.blog-thumb {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: var(--bg3);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.1);
}

.blog-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  z-index: 2;
}

.blog-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.blog-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--text);
}

.blog-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.blog-read {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.blog-read svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.blog-card:hover .blog-read {
  color: var(--primary-dark);
  gap: 12px;
}

.blog-card:hover .blog-read svg {
  transform: translateX(5px);
}

/* ===== TESTIMONIALS ===== */
#yorumlar {
  background: var(--bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #f59e0b;
}

.review-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-name {
  font-size: .9rem;
  font-weight: 700;
}

.review-location {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
#sss {
  background: var(--bg2);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: var(--transition);
}

.faq-q:hover {
  color: var(--primary);
}

.faq-q svg {
  width: 20px;
  height: 20px;
  fill: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
  fill: var(--primary);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open {
  border-color: var(--primary);
}

/* ===== CONTACT ===== */
#iletisim {
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--primary);
  background: #eff6ff;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.contact-item-body label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.contact-item-body strong {
  font-size: 1rem;
  display: block;
  font-weight: 700;
}

.contact-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, .08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ===== FOOTER ===== */
footer {
  background: #0f172a;
  color: rgba(255, 255, 255, .7);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}

.footer-nav h4 {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer-nav ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.footer-nav.regions ul {
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.footer-nav a {
  font-size: .88rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .83rem;
  flex-wrap: gap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.footer-logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

/* ===== FLOATING BUTTONS ===== */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.fab:hover {
  transform: translateY(-3px) scale(1.04);
}

.fab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fab-wa {
  background: #25d366;
  color: #fff;
}

.fab-wa:hover {
  background: #1da851;
  box-shadow: 0 8px 32px rgba(37, 211, 102, .45);
}

.fab-call {
  background: var(--primary);
  color: #fff;
}

.fab-call:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 32px rgba(26, 86, 219, .45);
}

.fab-label {
  font-size: .82rem;
}

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}

#scrollTop:hover {
  background: var(--primary);
  border-color: var(--primary);
}

#scrollTop:hover svg {
  fill: #fff;
}

#scrollTop svg {
  width: 20px;
  height: 20px;
  fill: var(--text-muted);
  transition: fill var(--transition);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0 60px;
  }

  .hero-card {
    display: none;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .bolgeler-inner,
  .about-inner,
  .contact-inner,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-wrapper {
    order: -1;
  }

  .services-grid,
  .blog-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .step {
    display: flex;
    gap: 20px;
    text-align: left;
  }

  .step-circle {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    margin: 0;
    flex-shrink: 0;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .fab {
    padding: 12px 16px;
  }

  .fab-label {
    display: none;
  }

  .fab {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }

  .districts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .districts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Landing Page & Google Reviews Revizyon --- */
.lp-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.lp-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/oto/istanbul_tow_truck_realistic_1_1772466975914.png') center/cover no-repeat;
  opacity: 0.15;
  mix-blend-mode: overlay;
  z-index: 1;
}

.lp-hero .container {
  position: relative;
  z-index: 2;
}

.lp-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.lp-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.lp-trust-pills {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.lp-pill svg {
  width: 20px;
  height: 20px;
  color: #fbbf24;
}

.lp-cta-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
}

.lp-cta-block h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.lp-cta-block p {
  margin-bottom: 24px;
  color: var(--text-muted);
}

/* Google Reviews Grid Fix */
.g-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.g-review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.g-review-card:hover {
  transform: translateY(-5px);
}

.g-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.g-reviewer-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.g-reviewer-info h5 {
  font-weight: 700;
  margin-bottom: 2px;
}

.g-reviewer-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.g-local-guide {
  color: #f59e0b;
  font-weight: 600;
}

.g-stars {
  color: #f59e0b;
  margin-bottom: 12px;
  font-size: 1rem;
}

.g-text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.g-verified {
  font-size: 0.8rem;
  color: #10b981;
  font-weight: 600;
}

@media (max-width: 768px) {
  .lp-hero {
    padding: 120px 0 60px;
  }

  .lp-hero-content {
    padding: 0 16px;
  }

  .lp-actions {
    flex-direction: column;
    padding: 0 20px;
    gap: 12px;
  }

  .lp-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .lp-trust-pills {
    flex-direction: column;
    gap: 12px;
  }
}