/* =====================================================
   NAKLİYAT PRO — MAIN CSS (Mobile-First)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ────────────────────────────────── */
:root {
  --primary:        #1a56db;
  --primary-dark:   #1245b9;
  --primary-light:  #e8f0fe;
  --secondary:      #0ea5e9;
  --accent:         #f59e0b;
  --accent-dark:    #d97706;
  --success:        #10b981;
  --danger:         #ef4444;
  --warning:        #f59e0b;
  --dark:           #0f172a;
  --dark-2:         #1e293b;
  --gray-900:       #111827;
  --gray-800:       #1f2937;
  --gray-700:       #374151;
  --gray-600:       #4b5563;
  --gray-500:       #6b7280;
  --gray-400:       #9ca3af;
  --gray-300:       #d1d5db;
  --gray-200:       #e5e7eb;
  --gray-100:       #f3f4f6;
  --white:          #ffffff;

  --font-main:      'Inter', sans-serif;
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:         0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 10px 40px rgba(0,0,0,.14);
  --shadow-xl:      0 20px 60px rgba(0,0,0,.18);
  --transition:     all .25s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .15s ease;
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  background: var(--gray-100);
  color: var(--gray-800);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--primary-dark); }

/* ── Typography ───────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-900);
}
h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p  { margin-bottom: 1rem; }

/* ── Container ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
  font-family: var(--font-main);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,.35);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}
.btn-sm {
  padding: .5rem 1rem;
  font-size: .875rem;
}
.btn-block { width: 100%; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #20bd5c;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

/* ── Header / Navbar ──────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 8px 0;
  gap: 1rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.5px;
}
.navbar-brand span { color: var(--accent); }
.navbar-brand .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.navbar-nav {
  display: none;
  list-style: none;
  gap: .25rem;
}
.navbar-nav a {
  display: block;
  padding: .5rem .85rem;
  font-weight: 500;
  font-size: .92rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}
.navbar-phone {
  display: none;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: var(--primary);
  font-size: .92rem;
}
.navbar-phone i { color: var(--success); }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav li a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav .mobile-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }

@media (min-width: 768px) {
  .navbar-nav { display: flex; }
  .navbar-phone { display: flex; }
  .hamburger { display: none; }
}

/* ── Hero Section ─────────────────────────────────── */
.hero {
  color: var(--white);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  background: #0f172a; /* Fallback */
}
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.75) 55%, rgba(30, 58, 138, 0.6) 100%);
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: .35rem .85rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .75rem;
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 900;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}
.hero-stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
}
@media (min-width: 768px) {
  .hero { padding: 5rem 0 4rem; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
}

/* ── Section Styles ───────────────────────────────── */
.section { padding: 3.5rem 0; }
.section-sm { padding: 2rem 0; }
.section-lg { padding: 5rem 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-blue { background: var(--primary); color: var(--white); }
.section-blue h2, .section-blue h3 { color: var(--white); }
.section-gray { background: var(--gray-100); }
.section-white { background: var(--white); }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.section-header h2 { margin-bottom: .5rem; }
.section-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

/* ── Cards ────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-body { padding: 1.5rem; }
.card-img { width: 100%; height: 200px; object-fit: cover; }

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}
.service-card h3 { font-size: 1.1rem; }
.service-card p { color: var(--gray-600); font-size: .9rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .875rem;
  margin-top: auto;
}
.service-card-link:hover { gap: .7rem; }

/* ── Grid Layouts ─────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Offer Form ───────────────────────────────────── */
.offer-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.form-steps { display: flex; gap: .5rem; margin-bottom: 2rem; }
.form-step {
  flex: 1;
  text-align: center;
}
.form-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  margin: 0 auto .4rem;
  transition: var(--transition);
}
.form-step.active .form-step-circle {
  background: var(--primary);
  color: var(--white);
}
.form-step.done .form-step-circle {
  background: var(--success);
  color: var(--white);
}
.form-step-label { font-size: .72rem; color: var(--gray-500); font-weight: 500; }
.form-step.active .form-step-label { color: var(--primary); font-weight: 700; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  color: var(--gray-700);
  margin-bottom: .4rem;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  min-height: 44px;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.form-control::placeholder { color: var(--gray-400); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeInUp .3s ease; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── City Grid ────────────────────────────────────── */
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.city-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: .875rem;
  color: var(--gray-700);
  transition: var(--transition);
  border: 2px solid var(--gray-200);
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.city-item:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}
@media (min-width: 480px)  { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .city-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .city-grid { grid-template-columns: repeat(5, 1fr); } }

/* ── Blog Cards ───────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-light), var(--gray-200));
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: .2rem .65rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: .65rem;
  text-transform: uppercase;
}
.blog-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.blog-card p { font-size: .875rem; color: var(--gray-500); flex: 1; }
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-100);
}

/* ── Why Us / Features ────────────────────────────── */
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-text h4 { font-size: 1rem; margin-bottom: .25rem; }
.feature-text p { font-size: .875rem; color: var(--gray-600); margin: 0; }

/* ── Testimonials ─────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--accent); font-size: .9rem; margin-bottom: .75rem; }
.testimonial-text { font-size: .92rem; color: var(--gray-700); font-style: italic; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: .9rem;
}
.testimonial-name { font-weight: 700; font-size: .875rem; }
.testimonial-city { font-size: .78rem; color: var(--gray-500); }

/* ── Sticky Mobile CTA ────────────────────────────── */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: .65rem;
  gap: .5rem;
}
.mobile-sticky-cta .btn {
  flex: 1;
  font-size: .875rem;
  padding: .7rem .75rem;
}
@media (min-width: 768px) { .mobile-sticky-cta { display: none; } }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
  display: block;
}
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }

.footer-col h5 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .875rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .85rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.footer-contact-item i {
  color: var(--primary);
  width: 16px;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── Breadcrumb ───────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  font-size: .83rem;
  color: var(--gray-500);
  padding: .75rem 0;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--gray-300); }
.breadcrumb-current { color: var(--gray-700); font-weight: 500; }

/* ── Page Content ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
  padding: 3rem 0 2rem;
}
.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb-sep { color: rgba(255,255,255,.3); }
.page-hero .breadcrumb-current { color: rgba(255,255,255,.9); }

.prose {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}
.prose h2, .prose h3, .prose h4 { margin: 1.5rem 0 .75rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .4rem; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.prose table th { background: var(--gray-100); padding: .75rem 1rem; text-align: left; font-weight: 600; }
.prose table td { padding: .65rem 1rem; border-bottom: 1px solid var(--gray-200); }

/* ── Status Badge ─────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .65rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
}
.badge-success { background: #d1fae5; color: #059669; }
.badge-warning { background: #fef3c7; color: #d97706; }
.badge-danger  { background: #fee2e2; color: #dc2626; }
.badge-info    { background: #dbeafe; color: #2563eb; }
.badge-gray    { background: var(--gray-100); color: var(--gray-600); }

/* ── Alert ────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert-danger  { background: #fee2e2; color: #7f1d1d; border-left: 4px solid #ef4444; }
.alert-warning { background: #fef3c7; color: #78350f; border-left: 4px solid #f59e0b; }
.alert-info    { background: #dbeafe; color: #1e3a8a; border-left: 4px solid #3b82f6; }

/* ── Body padding for mobile sticky bar ──────────── */
body { padding-bottom: 80px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* ── Utility classes ──────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--gray-500); }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.fw-bold { font-weight: 700; }
.d-none { display: none; }
.d-flex { display: flex; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: 1rem; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-100 { width: 100%; }

/* ── Animations ───────────────────────────────────── */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
.pulse { animation: pulse 2s infinite; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-down { animation: slideDown .3s ease; }

/* ── SEO Score Ring ───────────────────────────────── */
.score-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  border: 6px solid;
}
.score-ring.good    { border-color: var(--success); color: var(--success); }
.score-ring.average { border-color: var(--warning); color: var(--warning); }
.score-ring.poor    { border-color: var(--danger);  color: var(--danger); }

/* ── Floating WhatsApp Button ─────────────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 5.5rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  animation: waPulse 2s infinite;
}
.floating-whatsapp:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
  color: #fff;
}
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Adjust scroll to top position slightly to stack them nicely */
#scrollTop {
  bottom: 13.5rem !important;
}

/* ── Floating Call Button ────────────────────────── */
.floating-call {
  position: fixed;
  bottom: 9.5rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background-color: #2563eb;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  animation: callPulse 2s infinite;
}
.floating-call:hover {
  background-color: #1d4ed8;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
  color: #fff;
}
@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* =========================================
   CROSS-LINKS STYLES (Added Dynamically)
========================================= */
.yakın-bolgeler-cross-links {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.yakın-bolgeler-cross-links h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.yakın-bolgeler-cross-links p {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 1rem;
}
.yakın-bolgeler-cross-links ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.75rem;
}
.yakın-bolgeler-cross-links ul li a {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.yakın-bolgeler-cross-links ul li a:hover {
    background-color: #eff6ff;
    border-color: #93c5fd;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}

.sehir-cross-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed #e2e8f0;
}
.sehir-cross-links h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}
.sehir-cross-links .btn-outline-secondary {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}
.sehir-cross-links .btn-outline-secondary:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
