/* ==========================================================================
   GÜVEN HAYVANCILIK - Ultra Hızlı, Modern & Kusursuz CSS
   ========================================================================== */

:root {
  --primary: #15803d;
  --primary-dark: #166534;
  --primary-light: #22c55e;
  --primary-subtle: #f0fdf4;
  --secondary: #d97706;
  --secondary-hover: #b45309;
  --accent: #ca8a04;
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --text-main: #334155;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --whatsapp-color: #25d366;
  --whatsapp-dark: #128c7e;
  --phone-color: #0284c7;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px -2px rgba(0,0,0,0.08), 0 2px 6px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 24px -4px rgba(0,0,0,0.1), 0 6px 12px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 35px -6px rgba(15, 23, 42, 0.15);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
  background: var(--dark);
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-item svg {
  width: 15px;
  height: 15px;
  fill: var(--primary-light);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-phone-link {
  color: #ffffff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.top-phone-link:hover {
  color: var(--primary-light);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
}

/* Nav Menu - White Space No Wrap Fix */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: nowrap;
}

.nav-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap; /* Prevent any word wrapping */
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--primary);
  color: #fff;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(21, 128, 61, 0.25);
  transition: var(--transition);
}

.btn-header-call:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--whatsapp-color);
  color: #fff;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
}

.btn-header-wa:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dark);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  overflow: hidden;
  color: #fff;
  padding: 4.5rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(22, 101, 52, 0.72) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fef08a;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: #86efac;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: #e2e8f0;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 760px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--primary);
  color: #ffffff;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(21, 128, 61, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(21, 128, 61, 0.45);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--whatsapp-color);
  color: #ffffff;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
}

.hero-feat-icon {
  width: 36px;
  height: 36px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feat-icon svg {
  width: 20px;
  height: 20px;
  fill: #86efac;
}

.hero-feat-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-feat-text p {
  font-size: 0.78rem;
  color: #cbd5e1;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background: #ffffff;
  padding: 2rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 0.75rem;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

.section-bg {
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-subtle);
  border: 1px solid rgba(21, 128, 61, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-wrapper img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.03);
}

.about-badge-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
}

.about-badge-card h5 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #86efac;
}

.about-badge-card p {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.about-content p {
  font-size: 1.02rem;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.75rem 0 2rem 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

.check-item svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(21, 128, 61, 0.3);
}

.service-img-holder {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-holder img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
}

.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features {
  border-top: 1px dashed var(--border-color);
  padding-top: 1rem;
  margin-bottom: 1.25rem;
}

.service-feat-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.service-feat-row svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary-subtle);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(21, 128, 61, 0.2);
  transition: var(--transition);
}

.service-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ==========================================================================
   PROCESS / WHY US
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-card {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

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

.process-step-num {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 4px 10px rgba(21, 128, 61, 0.3);
}

.process-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.process-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Highlight Box in Process */
.process-highlight-banner {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}

.process-highlight-banner h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fef08a;
  margin-bottom: 0.3rem;
}

.process-highlight-banner p {
  font-size: 0.95rem;
  color: #f0fdf4;
}

/* ==========================================================================
   REGIONS / ANKARA 40KM DISTRICTS
   ========================================================================== */
.regions-wrapper {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.regions-wrapper::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.22) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.regions-header {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.regions-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.regions-header p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
}

.ankara-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.ankara-districts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.district-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.district-card:hover {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-2px);
}

.district-name {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.district-name svg {
  width: 16px;
  height: 16px;
  fill: #86efac;
  flex-shrink: 0;
}

.district-meta {
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.district-dist {
  color: #fef08a;
  font-weight: 700;
}

.regions-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  gap: 1.25rem;
}

.regions-cta-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.regions-cta-text p {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* ==========================================================================
   TESTIMONIALS / 30 REVIEWS ACCORDION
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  transition: all 0.4s ease;
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card.hidden-review {
  display: none;
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(21, 128, 61, 0.3);
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
}

.review-stars svg {
  width: 17px;
  height: 17px;
  fill: #f59e0b;
}

.review-text {
  font-size: 0.93rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-color);
  padding-top: 0.85rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-subtle);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 128, 61, 0.2);
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--dark);
}

.reviewer-service {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.reviews-toggle-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.btn-show-more-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-white);
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-show-more-reviews:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-show-more-reviews svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-show-more-reviews.expanded svg {
  transform: rotate(180deg);
}

/* ==========================================================================
   CONTACT SECTION & FORM
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info-panel {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-xl);
}

.contact-info-panel h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-info-panel p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.contact-method-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-phone {
  background: rgba(2, 132, 199, 0.2);
}
.contact-icon-phone svg {
  width: 24px;
  height: 24px;
  fill: #38bdf8;
}

.contact-icon-wa {
  background: rgba(37, 211, 102, 0.2);
}
.contact-icon-wa svg {
  width: 24px;
  height: 24px;
  fill: #4ade80;
}

.contact-icon-address {
  background: rgba(234, 179, 8, 0.2);
}
.contact-icon-address svg {
  width: 24px;
  height: 24px;
  fill: #facc15;
}

.contact-method-text h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}

.contact-method-text a {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.contact-hours-card {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-hours-card svg {
  width: 24px;
  height: 24px;
  fill: #86efac;
  flex-shrink: 0;
}

.contact-hours-card div h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.contact-hours-card div p {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-form-wrapper p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.45rem;
}

.form-label span {
  color: #ef4444;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #f8fafc;
  color: var(--dark);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.12);
}

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

/* KVKK Checkbox */
.kvkk-check-group {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.5rem 0;
  padding: 0.85rem;
  background: var(--primary-subtle);
  border: 1px solid rgba(21, 128, 61, 0.2);
  border-radius: var(--radius-md);
}

.kvkk-check-group input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--primary);
  margin-top: 0.15rem;
  cursor: pointer;
  flex-shrink: 0;
}

.kvkk-check-label {
  font-size: 0.84rem;
  color: var(--dark);
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

.kvkk-check-label a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
}

.btn-form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--whatsapp-color);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-form-submit:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.45);
}

.form-guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

.form-guarantee-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #090e17;
  color: #94a3b8;
  padding-top: 4.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #94a3b8;
  margin: 1.25rem 0 1.5rem 0;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-light);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-light);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-phone-big {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}
.footer-phone-big:hover {
  color: var(--primary-light);
}

/* Footer Bottom Bar */
.footer-bottom {
  padding: 1.75rem 0 5.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.86rem;
  color: #64748b;
}

.footer-agency-link {
  color: #94a3b8;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.footer-agency-link:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal-link {
  color: #94a3b8;
  transition: var(--transition);
}

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

/* ==========================================================================
   FIXED MOBILE BOTTOM ACTION BAR
   ========================================================================== */
.mobile-fixed-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(12px);
  padding: 0.65rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.mobile-fixed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--phone-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.mobile-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--whatsapp-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Floating WhatsApp Desktop */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.floating-wa-btn:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1);
}

.floating-wa-btn svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 0.9rem;
  }
  .nav-link {
    font-size: 0.88rem;
  }
  .ankara-districts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .services-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ankara-districts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .top-bar {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 1000;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .header-actions {
    display: none;
  }
  
  .hero-section {
    padding: 3rem 0 3.5rem 0;
    min-height: auto;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group a {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-checklist {
    grid-template-columns: 1fr;
  }
  
  .services-grid, .testimonials-grid, .process-grid, .ankara-districts-grid {
    grid-template-columns: 1fr;
  }
  
  .regions-wrapper {
    padding: 2rem 1.25rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .mobile-fixed-bar {
    display: block;
  }
  
  .floating-wa-btn {
    display: none;
  }
}
