/* ==========================================================================
   CSS Değişkenleri ve Temel Ayarlar
   ========================================================================== */
:root {
  --primary-color: #FFB300; /* Dikkat çekici sarı/turuncu CTA */
  --primary-hover: #FFA000;
  --secondary-color: #E65100; /* İkincil turuncu */
  --dark-navy: #0A192F;
  --dark-bg: #111111;
  --light-bg: #F8F9FA;
  --text-dark: #333333;
  --text-light: #F0F0F0;
  --whatsapp-color: #25D366;
  --whatsapp-hover: #128C7E;
  --phone-color: #007BFF;
  --border-color: #E0E0E0;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
}

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

html {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.6;
  padding-bottom: 70px; /* Sticky bar için alt boşluk */
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Tipografi ve Ortak Sınıflar
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark-navy);
  line-height: 1.3;
  font-weight: 700;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--dark-navy);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding: 60px 0;
}

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

.bg-dark .section-title,
.bg-dark .section-subtitle,
.bg-dark h3 {
  color: var(--text-light);
}

.text-center {
  text-align: center;
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  gap: 8px;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: #fff;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header & Navigasyon
   ========================================================================== */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.logo span {
  color: var(--secondary-color);
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-navy);
}

/* ==========================================================================
   Hero Alanı
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1a365d 100%);
  color: white;
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Hero 2-kolon layout: metin sol, görsel sağ */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Hero metnini sola hizala (layout ile sol kolon) */
.hero-layout .hero-content {
  text-align: left;
  max-width: 100%;
  margin: 0;
}

.hero-layout .hero-buttons {
  justify-content: flex-start;
}

.hero-layout .hero-features {
  justify-content: flex-start;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 179, 0, 0.2);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 179, 0, 0.3);
}

.hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: #d1d5db;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.hero-feature svg {
  color: var(--primary-color);
}

/* ==========================================================================
   Görsel Destekli Hizmet Kartları (v2)
   ========================================================================== */
.services-section {
  background-color: #f8f9fa;
}

.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.service-card-v2 {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card-v2:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h3 {
  font-size: 1.15rem;
  margin: 12px 0 10px;
}

.service-card-body p {
  color: #555;
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 18px;
}

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

/* ==========================================================================
   Eski Hizmet Grid (geri dönüş için bırakıldı)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-hover);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 179, 0, 0.1);
  color: var(--secondary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ==========================================================================
   Güven / Nasıl Çalışır
   ========================================================================== */
.trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.trust-icon {
  color: var(--whatsapp-color);
  font-size: 1.5rem;
  margin-top: 3px;
}

.trust-text h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.trust-text p {
  color: #666;
  font-size: 0.95rem;
}

/* Nasıl Çalışır Adımları */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--dark-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--light-bg);
}

.step-card h4 {
  margin-bottom: 10px;
}

.step-card p {
  color: #555;
  font-size: 0.95rem;
}

/* ==========================================================================
   Hizmet Bölgeleri
   ========================================================================== */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.location-tag {
  background-color: white;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  color: var(--text-dark);
}

.location-tag:hover {
  background-color: var(--dark-navy);
  color: white;
  border-color: var(--dark-navy);
}

.location-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border-left: 4px solid var(--primary-color);
  margin-bottom: 15px;
}

/* ==========================================================================
   Sık Sorulan Sorular (Accordion)
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  overflow: hidden;
}

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

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question.active {
  color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 20px;
  color: #555;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff7043 100%);
  color: white;
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-section .btn-primary:hover {
  background-color: var(--light-bg);
}

/* ==========================================================================
   Nasıl Çalışır — Yeni
   ========================================================================== */
.how-section {
  background: linear-gradient(135deg, #0A192F 0%, #112240 100%);
  padding: 80px 0;
}

.how-header { text-align: center; margin-bottom: 50px; }

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.how-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 24px 28px;
  text-align: center;
  flex: 1;
  max-width: 260px;
  position: relative;
  transition: all 0.3s ease;
}

.how-step:hover {
  background: rgba(255,179,0,0.08);
  border-color: rgba(255,179,0,0.3);
  transform: translateY(-4px);
}

.how-step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #0A192F;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step-icon {
  color: var(--primary-color);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

.how-step h3 { color: white; font-size: 1.05rem; margin-bottom: 10px; }
.how-step p { color: #94a3b8; font-size: 0.88rem; margin-bottom: 16px; }

.how-step-btn {
  display: inline-block;
  background: var(--primary-color);
  color: #0A192F;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.how-step-btn:hover { background: var(--primary-hover); transform: scale(1.04); }
.how-step-btn.whatsapp { background: var(--whatsapp-color); color: white; }
.how-step-btn.whatsapp:hover { background: var(--whatsapp-hover); }

.how-step-tag {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(34,197,94,0.3);
}

.how-step-arrow {
  color: #FFB300;
  font-size: 1.8rem;
  padding: 0 8px;
  margin-top: 60px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ==========================================================================
   Bölgeler — Yeni
   ========================================================================== */
.regions-section { background: #f8f9fa; }

.regions-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: center;
}

.regions-badge {
  display: inline-block;
  background: rgba(230,81,0,0.1);
  color: var(--secondary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.regions-info h2 { font-size: 1.9rem; margin-bottom: 14px; }
.regions-info p { color: #555; line-height: 1.7; }

.regions-grid-new {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-chip {
  background: white;
  border: 1.5px solid #e2e8f0;
  color: #333;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
}
.region-chip:hover,
.region-chip.active {
  background: var(--dark-navy);
  color: white;
  border-color: var(--dark-navy);
}

/* ==========================================================================
   SSS Grid — Yeni
   ========================================================================== */
.faq-section { background: white; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.faq-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 26px;
  transition: all 0.25s;
}
.faq-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(255,179,0,0.1);
  transform: translateY(-3px);
}
.faq-card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.faq-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--dark-navy); }
.faq-card p { color: #555; font-size: 0.92rem; line-height: 1.6; }

/* ==========================================================================
   CTA Banner — Yeni
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a5c 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,179,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-banner-badge {
  display: inline-block;
  background: rgba(255,179,0,0.15);
  color: var(--primary-color);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(255,179,0,0.3);
}

.cta-banner-text h2 { color: white; font-size: 2rem; margin-bottom: 8px; }
.cta-banner-text p { color: #94a3b8; font-size: 1rem; }

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.cta-phone-big,
.cta-wa-big {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 12px;
  min-width: 260px;
  transition: all 0.25s;
}
.cta-phone-big { background: var(--primary-color); color: #0A192F; }
.cta-phone-big:hover { background: var(--primary-hover); transform: translateX(4px); }
.cta-wa-big { background: var(--whatsapp-color); color: white; }
.cta-wa-big:hover { background: var(--whatsapp-hover); transform: translateX(4px); }

.cta-phone-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cta-phone-num { display: block; font-size: 1.15rem; font-weight: 800; }

/* Responsive — Yeni bölümler */
@media (max-width: 991px) {
  .how-steps { flex-direction: column; align-items: center; gap: 28px; }
  .how-step { max-width: 100%; width: 100%; }
  .how-step-arrow { transform: rotate(90deg); margin: 0; }
  .regions-layout { grid-template-columns: 1fr; }
  .cta-banner-content { flex-direction: column; text-align: center; }
  .cta-banner-actions { width: 100%; }
  .cta-phone-big, .cta-wa-big { justify-content: center; min-width: auto; width: 100%; }
}


/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--dark-bg);
  color: #aaa;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-links a {
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-contact svg {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* ==========================================================================
   Mobil Sticky CTA Bar
   ========================================================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 8px 10px;
  gap: 10px;
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  color: white;
  font-size: 1rem;
}

.sticky-phone {
  background-color: var(--phone-color);
}

.sticky-whatsapp {
  background-color: var(--whatsapp-color);
}

/* ==========================================================================
   İç Sayfa Ortak (Hakkımızda, Hizmetler vb.)
   ========================================================================== */
.page-header {
  background-color: var(--dark-navy);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 15px;
}

.content-section {
  padding: 60px 0;
}

.content-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.content-card h2 {
  margin-bottom: 20px;
}

.content-card p {
  margin-bottom: 15px;
  color: #444;
}

/* İletişim Formu */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-navy);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-hover);
  box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.2);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--dark-navy);
  color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  height: 100%;
}

.contact-info-card h3 {
  color: white;
  margin-bottom: 25px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-item svg {
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Responsive Ayarlar
   ========================================================================== */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  /* Tablet: hero tek kolona düşür */
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-image {
    display: none; /* Tablette görseli gizle, hız için */
  }
  .hero-layout .hero-content {
    text-align: center;
  }
  .hero-layout .hero-buttons {
    justify-content: center;
  }
  .hero-layout .hero-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px; /* Sticky bar için */
  }

  .nav-links {
    display: none; /* Mobilde gizle, js ile açılacak */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-cta .btn-primary {
    display: none; /* Mobilde yer kazanmak için */
  }

  .hero h1 {
    font-size: 2rem;
  }

  .logo-img {
    height: 40px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: flex; /* Mobilde göster */
  }

  .services-grid {
    margin-top: 0;
    padding: 0;
  }
  
  .section-padding {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .trust-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
