/* ===================================================
   UZMAN KARDEŞLER NAKLİYAT — TASARIM SİSTEMİ
   =================================================== */

/* --- CSS Değişkenleri (Design Tokens) --- */
:root {
  --primary: #C87533;
  --primary-dark: #A85E28;
  --primary-light: #E8944A;
  --primary-bg: rgba(200, 117, 51, 0.08);
  --dark: #1B2A4A;
  --dark-light: #2A3D66;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F5F5F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #333333;
  --green-wp: #25D366;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;
  --transition: 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --navbar-h: 72px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-gray {
  background: var(--gray-50);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-title .accent-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.navbar-brand-text {
  display: none;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
  line-height: 1.2;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-menu>a,
.navbar-menu>.dropdown>.dropdown-toggle {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 4px 0;
  display: inline-block;
}

.navbar-menu>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.navbar-menu>a:hover::after,
.navbar-menu>a.active::after {
  width: 100%;
}

.navbar-menu a:hover {
  color: var(--primary);
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.navbar-phone:hover {
  background: var(--primary-dark);
}

.navbar-phone svg {
  width: 18px;
  height: 18px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform var(--transition);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  min-width: 260px;
  max-height: 400px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(-135deg);
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.dropdown-menu a:hover {
  background: var(--primary-bg);
  color: var(--primary);
}

.dropdown-menu a::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Slider --- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  margin-top: var(--navbar-h);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.82) 0%, rgba(27, 42, 74, 0.5) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 28px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.hero-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  transform: translateY(-50%);
  z-index: 3;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.hero-arrow:hover {
  background: var(--primary);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 117, 51, 0.35);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* --- Trust Band --- */
.trust-band {
  background: var(--dark);
  padding: 28px 0;
}

.trust-band .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.trust-item .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(200, 117, 51, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-light);
}

.trust-item .text h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 2px;
}

.trust-item .text p {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin: 0;
}

/* --- Service Cards --- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.service-card-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-card-body a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card-body a:hover {
  color: var(--primary-dark);
}

/* --- Why Us --- */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-us-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-us-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.why-us-item .icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}

.why-us-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.why-us-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

/* --- Quote Form --- */
.quote-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: rgba(200, 117, 51, 0.08);
}

.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quote-form h2 {
  text-align: center;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--gray-800);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: border-color var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- District Grid --- */
.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.district-link {
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: all var(--transition);
  text-align: center;
}

.district-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* --- Testimonials --- */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 12px;
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  text-align: left;
}

.testimonial-inner .stars {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.testimonial-inner p {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.testimonial-inner .author {
  font-weight: 600;
  color: var(--dark);
}

.testimonial-inner .location {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* --- Blog Cards --- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-body .date {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.blog-card-body h3 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.footer p,
.footer a {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.footer a:hover {
  color: var(--primary-light);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact .icon {
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.footer-col img,
.footer-grid div img {
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
}

.footer-logo img {
  height: 42px;
  margin-bottom: 12px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* --- WhatsApp & Call Buttons --- */
.float-btn {
  position: fixed;
  bottom: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  animation: pulse-float 2s infinite;
  transition: transform var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  right: 24px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  animation: none;
  width: 64px;
  height: 64px;
  border-radius: 0;
}

.whatsapp-btn img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform var(--transition);
  filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.4));
  animation: pulse-float 2.5s infinite;
}

.whatsapp-btn:hover {
  background: transparent;
  transform: none;
}

.whatsapp-btn:hover img {
  transform: scale(1.1);
}

.call-btn {
  left: 24px;
  background: var(--primary);
  display: none;
}

@keyframes pulse-float {

  0%,
  100% {
    filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.2));
    transform: translateY(0);
  }

  50% {
    filter: drop-shadow(0 6px 20px rgba(37, 211, 102, 0.5));
    transform: translateY(-4px);
  }
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
}

/* --- Page Header --- */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 100px 0 50px;
  margin-top: var(--navbar-h);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.page-header p {
  color: var(--gray-400);
}

/* --- Map --- */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* --- Check List (Hizmetler sayfası) --- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--gray-800);
  font-size: 0.95rem;
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- Stat Card (Hakkımızda) --- */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  color: var(--gray-600);
  margin-top: 8px;
  font-weight: 500;
}

/* --- Value Card (Hakkımızda) --- */
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Contact Info (İletişim) --- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item h4 {
  margin-bottom: 4px;
  color: var(--dark);
}

.contact-info-item p {
  margin-bottom: 2px;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-info-item a {
  color: var(--primary);
  font-weight: 500;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C757D' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* --- FAQ Accordion (İlçe Sayfaları) --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  background: var(--white);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
  background: var(--gray-50);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 16px 20px;
}

.faq-answer p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Timeline (Taşınma Süreci) --- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gray-200);
}

.timeline-step {
  position: relative;
  margin-bottom: 28px;
  padding-left: 20px;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary-bg);
}

.timeline-step h4 {
  margin-bottom: 6px;
  color: var(--dark);
}

.timeline-step p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- District Page Intro --- */
.district-intro {
  font-size: 1.05rem;
  line-height: 1.8;
}

.district-intro p {
  margin-bottom: 1.2rem;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-h: 64px;
  }

  .section {
    padding: 50px 0;
  }

  .navbar-menu {
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - var(--navbar-h));
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition), opacity var(--transition);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    text-align: center;
  }

  .navbar-logo img {
    height: 40px;
  }

  .navbar-brand-text {
    display: block;
  }

  .navbar-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-menu>a::after {
    display: none;
  }

  .navbar-menu a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1.1rem;
  }

  .navbar-menu a:last-child {
    border-bottom: none;
  }

  .navbar-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    padding: 10px 0;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    margin-top: 10px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown.open .dropdown-toggle::after {
    transform: rotate(-135deg);
  }

  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .trust-band .container {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
    width: fit-content;
    gap: 24px;
  }

  .call-btn {
    display: flex;
  }

  .quote-form {
    padding: 24px;
  }

  .district-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .district-grid .hidden-district {
    display: none !important;
  }

  .district-grid.expanded .hidden-district {
    display: inline-flex !important;
  }

  .district-toggle-wrapper {
    display: block;
  }

  .footer-col img,
  .footer-grid div img {
    max-width: 100%;
    height: auto !important;
    object-fit: contain;
  }

  .footer-social {
    margin-top: 16px;
  }

  .testimonial-inner {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    height: 60vh;
    min-height: 350px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .district-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Kuvvetli 2 sütun */
  .district-grid a {
    font-size: 0.85rem;
    padding: 10px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    bottom: 16px;
  }

  .whatsapp-btn {
    right: 16px;
  }

  .call-btn {
    left: 16px;
  }
}

/* --- District Grid Toggle (Desktop) --- */
.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  justify-content: center;
}

.district-grid a {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.district-toggle-wrapper {
  display: none;
}