/**
 * Kuryemart - Ana Stil Dosyası
 * Modern, Profesyonel ve Responsive Tasarım
 */

/* ============================================
   GENEL AYARLAR
   ============================================ */
:root {
  --primary-color: #ff7a00;
  --primary-hover: #ff8c1a;
  --dark-bg: #0a0e27;
  --dark-bg-gradient: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  --card-bg: #ffffff;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --border-radius: 15px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 15px 40px rgba(255, 122, 0, 0.2);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ============================================
   NAVBAR / HEADER
   ============================================ */
.navbar {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand i {
  font-size: 1.8rem;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

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

.navbar-phone {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

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

.btn-primary-custom {
  background: var(--primary-color);
  border: none;
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

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

/* ============================================
   HERO ALANI
   ============================================ */
.hero-section {
  min-height: 100vh;
  background: var(--dark-bg-gradient);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* 1K çözünürlük için min-height'ı kaldır */
@media (min-width: 992px) and (max-width: 1400px) {
  .hero-section {
    min-height: auto !important;
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,122,0,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 1K çözünürlük için min-height'ı kaldır */
@media (min-width: 992px) and (max-width: 1400px) {
  .hero-content {
    min-height: auto !important;
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 122, 0, 0.2);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 122, 0, 0.3);
  max-width: 100%;
  line-height: 1.6;
  text-align: left;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Kurye Çağır Formu */
.order-form-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 1;
}

.order-form-card h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  background-color: #ffffff;
  color: #0a0e27;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 0.7;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.25);
  background-color: #ffffff;
  color: #0a0e27;
}

/* Text-muted için daha iyi kontrast */
.order-form-card .text-muted,
.order-form-card small.text-muted {
  color: #495057 !important;
  font-weight: 500;
}

/* Disabled form elemanları */
.form-control:disabled,
.form-select:disabled {
  background-color: #e9ecef;
  color: #6c757d;
  opacity: 0.7;
}

/* Form label iconları */
.form-label i {
  color: var(--primary-color);
}

/* Textarea özel stili */
textarea.form-control {
  resize: vertical;
  min-height: 80px;
  background-color: #ffffff;
  color: #0a0e27;
}

/* Select box özel stili */
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230a0e27' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

.form-select option {
  background-color: #ffffff;
  color: #0a0e27;
}

/* Invalid feedback */
.is-invalid {
  border-color: #dc3545 !important;
}

.invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Agreement error */
#agreementError {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.price-estimate-card {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.price-estimate-card h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #0a0e27;
}

.price-row span,
.price-row strong {
  color: #0a0e27;
}

.price-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.btn-submit {
  width: 100%;
  background: var(--primary-color);
  border: none;
  color: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  margin-top: 1rem;
}

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

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================
   HİZMET SÖZLEŞMESİ
   ============================================ */
.service-agreement {
  background: #f8f9fa;
  border-radius: var(--border-radius);
  border: 2px solid #e9ecef;
  overflow: hidden;
  transition: var(--transition);
}

.service-agreement:hover {
  border-color: var(--primary-color);
}

.agreement-header {
  padding: 0;
}

.agreement-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.agreement-toggle:hover {
  background: rgba(255, 122, 0, 0.1);
  color: var(--primary-color);
}

.agreement-toggle i {
  transition: var(--transition);
}

.agreement-toggle.active i#agreementIcon {
  transform: rotate(180deg);
}

.agreement-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.agreement-content.show {
  max-height: 500px;
  padding: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.agreement-text {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 0.95rem;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.agreement-text::-webkit-scrollbar {
  width: 6px;
}

.agreement-text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.agreement-text::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.agreement-text::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

.agreement-text p {
  margin-bottom: 1rem;
}

.agreement-text p:last-child {
  margin-bottom: 0;
}

.agreement-text strong {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.agreement-checkbox {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e9ecef;
  background: #ffffff;
}

.agreement-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin: 0;
  gap: 0.75rem;
}

.agreement-checkbox-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary-color);
  flex-shrink: 0;
}

.agreement-checkbox-text {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  user-select: none;
  display: flex;
  align-items: center;
}

.agreement-checkbox-text i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.agreement-checkbox-input:checked + .agreement-checkbox-text {
  color: var(--text-dark);
  font-weight: 500;
}

.agreement-checkbox-input.is-invalid {
  border: 2px solid #dc3545;
  outline: 2px solid rgba(220, 53, 69, 0.25);
}

#agreementError {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

/* ============================================
   İSTATİSTİK KARTLARI
   ============================================ */
.stats-section {
  background: var(--dark-bg-gradient);
  padding: 80px 0;
  position: relative;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 122, 0, 0.1);
  border-color: var(--primary-color);
  box-shadow: var(--box-shadow-hover);
}

.stat-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Teslimat Türü Seçenekleri */
.delivery-type-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.delivery-type-option {
  position: relative;
}

.delivery-type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.delivery-type-label {
  display: block;
  padding: 1rem 1.2rem;
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.delivery-type-label:hover {
  background: #e9ecef;
  border-color: rgba(255, 122, 0, 0.5);
  transform: translateX(5px);
}

.delivery-type-option input[type="radio"]:checked + .delivery-type-label {
  background: rgba(255, 122, 0, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.2);
}

.delivery-type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.delivery-type-name {
  font-size: 1rem;
  font-weight: 600;
  color: #0a0e27;
}

.delivery-type-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-vip {
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  color: #ffffff;
}

.badge-fast {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: #ffffff;
}

.badge-standard {
  background: #6c757d;
  color: #ffffff;
}

.delivery-type-time {
  font-size: 0.85rem;
  color: #495057;
  font-weight: 500;
}

/* Hero section içindeki istatistikler - kompakt versiyon */
.hero-stats {
  margin-top: 1.5rem;
}

.hero-stats .stat-card {
  padding: 1.2rem 0.8rem;
  border-radius: 12px;
}

.hero-stats .stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-stats .stat-number {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.hero-stats .stat-label {
  font-size: 0.85rem;
}

/* 1K çözünürlük için hero stats */
@media (min-width: 992px) and (max-width: 1400px) {
  .hero-stats {
    margin-top: 1rem;
  }

  .hero-stats .stat-card {
    padding: 1rem 0.6rem;
  }

  .hero-stats .stat-icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .hero-stats .stat-number {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }

  .hero-stats .stat-label {
    font-size: 0.75rem;
  }
}

/* Mobil için hero stats */
@media (max-width: 768px) {
  .hero-stats {
    margin-top: 1.5rem;
  }

  .hero-stats .stat-card {
    padding: 1rem 0.5rem;
  }

  .hero-stats .stat-icon {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }

  .hero-stats .stat-number {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }

  .hero-stats .stat-label {
    font-size: 0.8rem;
  }
}

/* ============================================
   NEDEN BİZ? BÖLÜMÜ
   ============================================ */
.why-us-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}

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

.feature-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   İSTANBUL İLÇELERİ BLOG BÖLÜMÜ
   ============================================ */
.districts-blog-section {
  padding: 60px 0;
  background: #ffffff;
}

/* Kompakt İlçeler Bölümü */
.districts-compact-section {
  padding: 60px 0;
  background: #ffffff;
}

.districts-compact {
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.district-row {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.district-row-title {
  flex: 0 0 auto;
  font-size: 1.1rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.district-row-list {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.district-category {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.district-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.district-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
}

.district-category-title i {
  color: var(--primary-color);
}

.district-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.district-item {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #f8f9fa;
  color: var(--text-dark);
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid transparent;
}

.district-item:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
  border-color: var(--primary-color);
}

.districts-info {
  margin-top: 2rem;
  text-align: center;
}

.districts-description {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.districts-description i {
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ============================================
   NASIL ÇALIŞIR? BÖLÜMÜ
   ============================================ */
.how-it-works-section {
  padding: 80px 0;
  background: var(--dark-bg-gradient);
}

.how-it-works-section .section-title,
.how-it-works-section .section-subtitle {
  color: #ffffff;
}

.step-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.step-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin: 1.5rem 0 1rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   FİYATLAR BÖLÜMÜ
   ============================================ */
.pricing-section {
  padding: 80px 0;
  background: #ffffff;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--primary-color);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
}

.pricing-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.pricing-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.pricing-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.price-period {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-body {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.pricing-footer {
  margin-top: auto;
}

.btn-pricing {
  width: 100%;
  background: var(--primary-color);
  border: none;
  color: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  text-align: center;
}

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

.btn-pricing-featured {
  background: var(--primary-color);
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

/* Dinamik Fiyatlandırma Bilgi Notu */
.pricing-info-note {
  margin: 3rem 0 2rem;
}

.info-note-card {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  border-left: 4px solid #2196f3;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #0d47a1;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}

.info-note-card i {
  color: #2196f3;
  font-size: 1.2rem;
}

.pricing-notes {
  margin-top: 2rem;
}

.note-card {
  background: #f8f9fa;
  border-radius: var(--border-radius);
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
}

.note-card h5 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.note-card h5 i {
  color: var(--primary-color);
}

.note-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.note-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  line-height: 1.8;
}

.note-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   CTA ALANI
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: var(--dark-bg-gradient);
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta-button {
  font-size: 1.2rem;
  padding: 1rem 3rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0a0e27;
  padding: 60px 0 20px;
  color: rgba(255, 255, 255, 0.8);
}

.footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-description {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-contact-info {
  list-style: none;
  padding: 0;
}

.footer-contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contact-info i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

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

/* ============================================
   RESPONSIVE TASARIM
   ============================================ */

/* 1K Çözünürlük için özel düzenlemeler (1024px - 1400px) */
@media (min-width: 992px) and (max-width: 1400px) {
  .hero-section {
    padding: 80px 0 30px !important;
    min-height: auto !important;
    overflow: visible;
  }

  /* Hero section içeriğinin kesilmemesi için */
  .hero-section .row {
    align-items: flex-start !important;
  }

  /* Hero section'ın flex ayarları */
  .hero-section {
    align-items: flex-start !important;
  }

  /* İçerik kesilmesini önlemek için */
  .hero-content {
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
  }

  .hero-section .container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-section .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .hero-section .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-section .row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

  .hero-title {
    font-size: 2.2rem !important;
    margin-bottom: 0.6rem !important;
    line-height: 1.2 !important;
  }

  .hero-description {
    font-size: 0.95rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.5 !important;
  }

  .hero-content {
    padding-right: 0.8rem;
    padding-bottom: 0.5rem !important;
  }

  /* İçerik kesilmesini önle */
  .hero-title,
  .hero-description {
    overflow: visible;
    word-wrap: break-word;
  }

  .hero-badge {
    font-size: 0.75rem !important;
    padding: 0.35rem 1rem !important;
    margin-bottom: 0.8rem !important;
    line-height: 1.5 !important;
    text-align: left !important;
  }

  .order-form-card {
    padding: 1.2rem 1rem !important;
    max-width: 100%;
    margin-left: 0;
    margin-top: 0;
    max-height: none !important;
    overflow: visible !important;
  }

  /* Form genişliğini kontrol et */
  .col-lg-6:last-child {
    max-width: 100%;
  }

  .order-form-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.8rem !important;
  }

  /* Form içi spacing - çok kompakt */
  .form-group {
    margin-bottom: 0.8rem !important;
  }

  .form-label {
    font-size: 0.8rem !important;
    margin-bottom: 0.3rem !important;
  }

  .form-label i {
    font-size: 0.85rem;
  }

  .form-control,
  .form-select {
    padding: 0.55rem 0.7rem !important;
    font-size: 0.8rem !important;
  }

  textarea.form-control {
    padding: 0.55rem 0.7rem !important;
    font-size: 0.8rem !important;
    min-height: 50px;
    rows: 2;
  }

  /* Row içindeki kolonlar */
  .order-form-card .row {
    margin-left: -5px;
    margin-right: -5px;
  }

  .order-form-card .row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
  }

  .order-form-card .col-md-4 {
    margin-bottom: 0.5rem !important;
  }

  /* Küçük metinler */
  small.text-muted {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin-top: 0.2rem !important;
  }

  /* Butonlar */
  .btn-submit {
    padding: 0.7rem !important;
    font-size: 0.9rem !important;
    margin-top: 0.3rem !important;
  }

  /* Price estimate card */
  .price-estimate-card {
    padding: 1rem !important;
    margin: 0.8rem 0 !important;
  }

  .price-estimate-card h5 {
    font-size: 0.9rem !important;
    margin-bottom: 0.6rem !important;
  }

  .price-row {
    font-size: 0.8rem !important;
    margin-bottom: 0.3rem !important;
  }

  .price-total {
    font-size: 1rem !important;
    margin-top: 0.6rem !important;
    padding-top: 0.6rem !important;
  }

  /* Service agreement */
  .service-agreement {
    margin-bottom: 0.8rem !important;
  }

  .agreement-toggle {
    padding: 0.7rem 1rem !important;
    font-size: 0.85rem !important;
  }

  .agreement-content.show {
    padding: 1rem !important;
  }

  .agreement-text {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
  }

  .agreement-checkbox {
    padding: 0.7rem 1rem !important;
  }

  .agreement-checkbox-text {
    font-size: 0.8rem !important;
  }

  /* Delivery type */
  .delivery-type-options {
    gap: 0.6rem;
  }

  .delivery-type-label {
    padding: 0.8rem 1rem !important;
  }

  .delivery-type-name {
    font-size: 0.85rem !important;
  }

  .delivery-type-badge {
    padding: 0.2rem 0.5rem !important;
    font-size: 0.7rem !important;
  }

  .delivery-type-time {
    font-size: 0.75rem !important;
  }

  /* Navbar düzenlemeleri */
  .navbar {
    padding: 0.8rem 0;
  }

  .navbar-nav .nav-link {
    font-size: 0.9rem;
    margin: 0 0.3rem;
  }

  .btn-primary-custom {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }

  .navbar-phone {
    font-size: 0.85rem;
    margin-right: 0.8rem;
  }

  /* Container genişliği */
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .order-form-card {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .navbar-phone {
    display: none;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
  }

  .districts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .district-category {
    padding: 1.5rem;
  }

  .district-category-title {
    font-size: 1.3rem;
  }

  .district-item {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .districts-description {
    font-size: 0.95rem;
    padding: 1.2rem;
    flex-direction: column;
    text-align: center;
  }

  .districts-description i {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .order-form-card {
    padding: 1.5rem;
  }

  /* Delivery type - mobil */
  .delivery-type-label {
    padding: 0.9rem 1rem !important;
  }

  .delivery-type-name {
    font-size: 0.9rem !important;
  }

  .delivery-type-badge {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.7rem !important;
  }

  .delivery-type-time {
    font-size: 0.8rem !important;
  }

  .stat-card,
  .feature-card,
  .step-card {
    margin-bottom: 2rem;
  }

  .districts-blog-section {
    padding: 40px 0;
  }

  /* Kompakt ilçeler - mobil */
  .districts-compact-section {
    padding: 40px 0;
  }

  .district-row {
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .district-row-title {
    font-size: 1rem;
  }

  .district-row-list {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .district-category {
    padding: 1.2rem;
  }

  .district-category-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .district-list {
    gap: 0.5rem;
  }

  .district-item {
    font-size: 0.85rem;
    padding: 0.45rem 0.9rem;
  }

  .districts-description {
    font-size: 0.9rem;
    padding: 1rem;
  }

  /* Fiyat bilgi notu - mobil */
  .info-note-card {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Form alanları mobil görünüm */
  .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .form-label i {
    font-size: 0.9rem;
  }

  .form-control,
  .form-select {
    font-size: 0.9rem;
    padding: 0.65rem 0.85rem;
  }

  /* Row içindeki kolonlar mobilde tam genişlik */
  .row .col-md-4 {
    margin-bottom: 1rem;
  }

  /* Küçük metinler */
  small.text-muted {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

/* ============================================
   ANİMASYONLAR
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading Spinner */
.spinner-border-custom {
  width: 1.5rem;
  height: 1.5rem;
  border-width: 0.2em;
  border-color: #ffffff;
  border-right-color: transparent;
}

/* Alert Messages */
.alert {
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.alert-success {
  background: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-danger {
  background: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

/* ============================================
   HARİTA STİLLERİ
   ============================================ */
#orderMap,
#taskMap {
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.map-info-window {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.map-info-window strong {
  color: #ff7a00;
}

/* Adres Input Stilleri */
.address-input {
  padding-right: 50px !important;
}

.map-btn {
  right: 5px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  border-radius: 0 10px 10px 0 !important;
  padding: 0.5rem 0.75rem !important;
  min-width: 40px !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #ffffff !important;
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.map-btn:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
}

.map-btn i {
  font-size: 1rem;
}

/* Adres input içindeki padding */
.address-input {
  padding-right: 50px !important;
}

/* Mobil görünüm için özel stiller */
@media (max-width: 768px) {
  .address-input {
    padding-right: 45px !important;
    font-size: 0.9rem;
  }

  .map-btn {
    padding: 0.4rem 0.6rem !important;
    min-width: 38px !important;
  }

  .map-btn i {
    font-size: 0.9rem;
  }

  /* Placeholder metinlerini kısalt */
  .address-input::placeholder {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .address-input {
    padding-right: 42px !important;
    font-size: 0.85rem;
  }

  .map-btn {
    padding: 0.35rem 0.5rem !important;
    min-width: 35px !important;
  }

  .map-btn i {
    font-size: 0.85rem;
  }

  .service-agreement {
    margin-bottom: 1rem;
  }

  .agreement-toggle {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  .agreement-content.show {
    padding: 1rem;
  }

  .agreement-text {
    font-size: 0.9rem;
    max-height: 250px;
  }

  .agreement-checkbox {
    padding: 0.85rem 1rem;
  }

  .agreement-checkbox-text {
    font-size: 0.9rem;
  }

  .agreement-checkbox-input {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   SABİT İLETİŞİM BUTONLARI
   ============================================ */
.fixed-phone-btn,
.fixed-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  overflow: hidden;
}

.fixed-phone-btn {
  left: 20px;
  background: var(--primary-color);
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-hover) 100%
  );
  animation: pulsePhone 2s infinite;
}

.fixed-whatsapp-btn {
  right: 20px;
  background: #25d366;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  animation: pulseWhatsApp 2s infinite;
}

.fixed-phone-btn svg,
.fixed-whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.fixed-phone-btn i,
.fixed-whatsapp-btn i {
  font-size: 1.8rem;
}

.fixed-phone-btn:hover,
.fixed-whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.fixed-phone-btn:active,
.fixed-whatsapp-btn:active {
  transform: translateY(-2px) scale(1.05);
}

/* Buton Label (Hover'da görünecek) */
.btn-label {
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fixed-phone-btn .btn-label {
  right: 70px;
}

.fixed-phone-btn:hover .btn-label {
  opacity: 1;
  right: 75px;
}

.fixed-whatsapp-btn .btn-label {
  left: 70px;
}

.fixed-whatsapp-btn:hover .btn-label {
  opacity: 1;
  left: 75px;
}

/* Pulse Animasyonları */
@keyframes pulsePhone {
  0% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 122, 0, 0.7);
  }
  50% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(255, 122, 0, 0);
  }
  100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 122, 0, 0);
  }
}

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobil Görünüm */
@media (max-width: 768px) {
  .fixed-phone-btn,
  .fixed-whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    bottom: 15px;
  }

  .fixed-phone-btn svg,
  .fixed-whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }

  .fixed-phone-btn {
    left: 15px;
  }

  .fixed-whatsapp-btn {
    right: 15px;
  }

  .btn-label {
    display: none; /* Mobilde label gösterme */
  }
}

@media (max-width: 576px) {
  .fixed-phone-btn,
  .fixed-whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    bottom: 10px;
  }

  .fixed-phone-btn svg,
  .fixed-whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }

  .fixed-phone-btn {
    left: 10px;
  }

  .fixed-whatsapp-btn {
    right: 10px;
  }
}

/* ============================================
   BLOG STİLLERİ
   ============================================ */
.blog-header-section {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--dark-bg-gradient);
}

.blog-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.blog-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e9ecef;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-card-date,
.blog-card-views {
  display: flex;
  align-items: center;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

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

.blog-card-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.blog-card-link:hover {
  color: var(--primary-hover);
  transform: translateX(5px);
}

/* Blog Detay Sayfası */
.blog-detail-section {
  padding-top: 120px;
  padding-bottom: 60px;
  background: #ffffff;
}

.blog-detail-header {
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 1.5rem;
}

.blog-detail-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-detail-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
}

.blog-detail-image {
  margin-bottom: 2rem;
}

.blog-detail-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.blog-detail-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  padding-top: 2rem;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.blog-detail-content p {
  margin-bottom: 1.5rem;
}

.blog-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-detail-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.blog-detail-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-detail-title {
    font-size: 2rem;
  }

  .blog-card-image {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .blog-detail-title {
    font-size: 1.75rem;
  }

  .blog-detail-content {
    font-size: 1rem;
  }

  .blog-card-image {
    height: 160px;
  }
}

/* Google Places Autocomplete Dropdown */
.pac-container {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  border: none;
  margin-top: 5px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.pac-item {
  padding: 10px;
  cursor: pointer;
  border-top: 1px solid #e9ecef;
}

.pac-item:hover {
  background-color: #f8f9fa;
}

.pac-item-selected {
  background-color: #fff5e6;
}

.pac-icon {
  margin-right: 10px;
}

/* Harita Seçici Modal */
#mapPickerModal .modal-body {
  padding: 1.5rem;
}

#mapSearchInput {
  border-radius: 10px;
  padding: 0.75rem 1rem;
}
