/* DJI Drone Servis - Şehir Sayfaları İzole CSS */

/* --- Global CSS Değişkenler (Tarayıcı Uyumluluğu İçin) --- */
:root {
  --dji-blue: #0a66b2; /* Bir ton daha yumuşak mavi */
  --dji-blue-light: #3d8fd9; /* Aşırı parlaklığı azalt */
  --dji-blue-dark: #084b80; /* Daha soft koyu ton */
  --dji-dark-text: #1f2937;
  --dji-light-gray-bg: #f8fafc;
  --dji-gray-text: #64748b;
  --dji-border-color: #e2e8f0;
  --dji-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --dji-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --military-green: #2d5016;
  --military-gold: #b8860b;
  --corporate-blue: #1e40af;
  --corporate-light: #dbeafe;
}

/* --- İzole CSS Container --- */
.dji-city-page {
  /* Container Özellikleri */
  font-family: 'Inter', sans-serif;
  background: 
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
    radial-gradient(circle at 10% 20%, rgba(0, 112, 210, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(79, 158, 255, 0.04) 0%, transparent 50%);
  color: var(--dji-dark-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

/* --- İzole Sıfırlama - Sadece bu container içinde --- */
.dji-city-page * {
  box-sizing: border-box;
}

.dji-city-page .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  z-index: 1;
}

/* --- Tipografi --- */
.dji-city-page h1 {
  font-size: 2.8rem; 
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--dji-dark-text);
  text-align: center;
  margin-bottom: 1.5rem;
}

.dji-city-page h2 {
  font-size: 2.125rem; 
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--dji-dark-text);
}

.dji-city-page h3 {
  font-size: 1.5rem; 
  line-height: 1.3;
  font-weight: 700;
  color: var(--dji-dark-text);
  margin-bottom: 1rem;
}

.dji-city-page h4 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--dji-dark-text);
}

.dji-city-page p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--dji-gray-text);
  margin-bottom: 1rem;
}

.dji-city-page .text-dji-blue {
  color: var(--dji-blue);
  font-weight: 800;
}

/* --- Bölümler --- */
.dji-city-page section {
  position: relative;
  margin-bottom: 0;
  padding: 3.5rem 3rem;
}

.dji-city-page section:nth-child(even) {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.6) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.dji-city-page section:nth-child(odd) {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
}

.dji-city-page section:last-child {
  margin-bottom: 0;
}

/* Her section için özel spacing */
.dji-city-page section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.dji-city-page section > p:first-of-type {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  color: var(--dji-gray-text);
}

/* --- Hero Bölümü --- */
.dji-city-page .hero-section {
  text-align: center;
  max-width: 100%;
  margin: 0;
  padding: 8rem 3rem 6rem;
  background: 
    linear-gradient(135deg, rgba(0, 112, 210, 0.08) 0%, rgba(79, 158, 255, 0.05) 100%),
    radial-gradient(circle at 30% 70%, rgba(0, 112, 210, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(79, 158, 255, 0.08) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 0;
}

.dji-city-page .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="%230070d2" opacity="0.1"/><circle cx="75" cy="25" r="1.5" fill="%234f9eff" opacity="0.15"/><circle cx="50" cy="75" r="2.5" fill="%230070d2" opacity="0.08"/><circle cx="20" cy="80" r="1" fill="%234f9eff" opacity="0.12"/></svg>') repeat;
  background-size: 300px 300px;
  animation: float-pattern 25s infinite linear;
  z-index: 1;
}

@keyframes float-pattern {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-300px) translateY(-300px); }
}

.dji-city-page .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dji-city-page .hero-title {
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.dji-city-page .hero-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--dji-blue) 0%, var(--dji-blue-light) 100%);
  border-radius: 2px;
}

.dji-city-page .hero-p {
  margin: 2rem auto;
  max-width: 700px;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
  color: var(--dji-dark-text);
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 112, 210, 0.1);
  box-shadow: 0 20px 60px rgba(0, 112, 210, 0.08);
}

.dji-city-page .hero-buttons {
  margin: 3rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  max-width: 100%;
}

/* Buton iyileştirmeleri */
.dji-city-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.dji-city-page .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dji-city-page .btn:active {
  transform: translateY(0);
}

.dji-city-page .btn-blue {
  background: #0a66b2;
  box-shadow: none;
}

.dji-city-page .btn-blue:hover { background: #084b80; }

.dji-city-page .btn-whatsapp {
  background: #198f48; /* Daha az parlak yeşil */
  box-shadow: none;
}

.dji-city-page .btn-whatsapp:hover { background: #116a35; }

.dji-city-page a.btn-military,
.dji-city-page .btn-military,
.dji-city-page .btn-corporate,
.dji-city-page .btn-agricultural {
  background: #6b7280;
  color: #ffffff !important;
  text-decoration: none !important;
}

.dji-city-page a.btn-military:hover,
.dji-city-page a.btn-military:active,
.dji-city-page a.btn-military:focus,
.dji-city-page a.btn-military:visited,
.dji-city-page .btn-military:hover,
.dji-city-page .btn-military:active,
.dji-city-page .btn-military:focus,
.dji-city-page .btn-corporate:hover,
.dji-city-page .btn-agricultural:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  background: #4b5563;
}

.dji-city-page .agricultural-section .btn-agricultural {
  background: rgba(255, 255, 255, 0.95);
  color: #16a34a !important;
  border: 2px solid #16a34a;
}

.dji-city-page .agricultural-section .btn-agricultural:hover {
  background: white;
  color: #15803d !important;
  border-color: #15803d;
}

.dji-city-page .btn-academic {
  background: #7c3aed;
}

.dji-city-page .btn-apricot {
  background: #f97316;
  color: white;
}

.dji-city-page .apricot-section .btn-apricot {
  background: rgba(255, 255, 255, 0.95);
  color: #ea580c !important;
  border: 2px solid #ea580c;
}

.dji-city-page .apricot-section .btn-apricot:hover {
  background: white;
  color: #c2410c !important;
  border-color: #c2410c;
}

/* --- Grid Düzeni --- */
.dji-city-page .grid-section {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, 1fr);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive grid - 4 kart tek satırda sıkışık */
@media (min-width: 480px) {
  .dji-city-page .grid-section { 
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .dji-city-page .grid-section { 
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .dji-city-page .grid-section { 
    gap: 1.5rem;
  }
}

/* --- Kartlar --- */
.dji-city-page .card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.3);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
  border-left: 4px solid transparent;
}

/* Responsive kart padding */
@media (min-width: 768px) {
  .dji-city-page .card {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .dji-city-page .card {
    padding: 1.75rem;
  }
}

.dji-city-page .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--dji-blue) 0%, var(--dji-blue-light) 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: bottom;
}

.dji-city-page .card:hover::before {
  transform: scaleY(1);
}

.dji-city-page .card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 112, 210, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 112, 210, 0.2);
  background: rgba(255, 255, 255, 0.98);
}

.dji-city-page .card-icon {
  display: none;
}

.dji-city-page .card:hover .card-icon {
  display: none;
}

.dji-city-page .card-icon svg {
  display: none;
}

.dji-city-page .card h3 {
  margin-bottom: 0.75rem;
  color: var(--dji-dark-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.dji-city-page .card p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--dji-gray-text);
  margin-bottom: 0;
}

/* --- Askeri Bölümü --- */
.dji-city-page .military-section {
  background: 
    linear-gradient(135deg, #1a3409 0%, var(--military-green) 100%),
    linear-gradient(45deg, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
  color: white !important;
  border-radius: 0;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
  margin: 0;
}

/* TÜM ASKERI ELEMENTLER KOYU RENK */
.dji-city-page .military-section,
.dji-city-page .military-section *,
.dji-city-page .military-section h1,
.dji-city-page .military-section h2,
.dji-city-page .military-section h3,
.dji-city-page .military-section h4,
.dji-city-page .military-section h5,
.dji-city-page .military-section h6,
.dji-city-page .military-section p,
.dji-city-page .military-section span,
.dji-city-page .military-section div {
  color: #1a3409 !important;
}

/* BAŞLIKLAR ALTIN SARISI */
.dji-city-page .military-section h4 {
  color: #b8860b !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  font-size: 1.125rem !important;
}

.dji-city-page .military-feature h4 {
  color: #b8860b !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  font-size: 1.125rem !important;
}

.dji-city-page .military-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon fill="%23b8860b" opacity="0.08" points="50,15 58,35 80,35 66,50 72,78 50,65 28,78 34,50 20,35 42,35"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  animation: military-rotate 30s infinite linear;
}

@keyframes military-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.dji-city-page .military-section h2 {
  color: #1a3409 !important;
  text-align: center;
  margin-bottom: 3rem;
}

.dji-city-page .military-section > p:first-of-type {
  color: rgba(26, 52, 9, 0.9) !important;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.dji-city-page .military-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.dji-city-page .military-feature {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(184, 134, 11, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.dji-city-page .military-feature:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--military-gold);
  transform: translateY(-4px);
}

.dji-city-page .military-feature h4 {
  color: #b8860b !important;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.dji-city-page .military-section h4 {
  color: #b8860b !important;
}

.dji-city-page .military-section .military-feature h4 {
  color: #b8860b !important;
}

.dji-city-page .military-feature p {
  color: rgba(26, 52, 9, 0.9) !important;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* --- Kurumsal Bölüm --- */
.dji-city-page .corporate-section {
  background: 
    linear-gradient(135deg, var(--corporate-light) 0%, #e0f2fe 100%),
    radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.08) 0%, transparent 50%);
  border-radius: 0;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.dji-city-page .corporate-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.dji-city-page .corporate-section > p:first-of-type {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.dji-city-page .corporate-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin: 4rem auto;
  max-width: 1000px;
}

.dji-city-page .stat-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 
    0 8px 32px rgba(0, 112, 210, 0.12),
    0 4px 8px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 112, 210, 0.1);
  transition: all 0.3s ease;
}

.dji-city-page .stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 16px 48px rgba(0, 112, 210, 0.2),
    0 8px 16px rgba(0, 0, 0, 0.1);
}

.dji-city-page .stat-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--dji-blue);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.dji-city-page .stat-text {
  font-size: 0.95rem;
  color: var(--dji-gray-text);
  margin: 0;
  font-weight: 500;
}

/* --- Model Etiketleri --- */
.dji-city-page .models-grid {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.dji-city-page .model-tag {
  background: linear-gradient(135deg, var(--dji-light-gray-bg) 0%, #e2e8f0 100%);
  color: var(--dji-gray-text);
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--dji-border-color);
  transition: all 0.3s ease;
}

.dji-city-page .model-tag:hover {
  background: linear-gradient(135deg, var(--dji-blue) 0%, var(--dji-blue-light) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--dji-shadow);
}

/* --- FAQ Bölümü --- */
.dji-city-page .faq-container {
  margin-top: 4rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.dji-city-page .faq-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--dji-border-color);
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dji-city-page .faq-item:hover {
  box-shadow: var(--dji-shadow);
  transform: translateY(-2px);
}

.dji-city-page .faq-question {
  padding: 2.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
}

.dji-city-page .faq-question:hover {
  background: rgba(0, 112, 210, 0.05);
}

.dji-city-page .faq-question h4 {
  color: var(--dji-blue);
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  flex: 1;
  padding-right: 1rem;
}

.dji-city-page .faq-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--dji-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--dji-blue);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.dji-city-page .faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--dji-blue);
  color: white;
}

.dji-city-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.dji-city-page .faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2.25rem 2.25rem 2.25rem;
}

.dji-city-page .faq-answer p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
  color: var(--dji-gray-text);
}

/* --- CTA Bölümü --- */
.dji-city-page .cta-section {
  background: 
    linear-gradient(135deg, #1f2937 0%, #374151 100%),
    radial-gradient(circle at 50% 50%, rgba(79, 158, 255, 0.1) 0%, transparent 70%);
  color: white;
  border-radius: 0;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.dji-city-page .cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%234f9eff" opacity="0.1"/><circle cx="90" cy="30" r="1.5" fill="%230070d2" opacity="0.08"/><circle cx="30" cy="90" r="2" fill="%234f9eff" opacity="0.06"/></svg>') repeat;
  background-size: 400px 400px;
  animation: cta-float 40s infinite linear;
}

@keyframes cta-float {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-400px) translateY(-400px); }
}

.dji-city-page .cta-section h2 {
  color: var(--dji-blue) !important;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 2rem;
  border-radius: 12px;
  display: inline-block;
  font-weight: 900;
  margin-bottom: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 112, 210, 0.2);
}

.dji-city-page .cta-section p {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 800px;
  margin: 1rem auto 4rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

.dji-city-page .cta-section .hero-buttons {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

/* --- Tarım Bölümü --- */
.dji-city-page .agricultural-section {
  background: 
    linear-gradient(135deg, #16a34a 0%, #15803d 100%),
    linear-gradient(45deg, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  color: rgb(24, 63, 14) !important;
  border-radius: 0;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.dji-city-page .agricultural-section h2,
.dji-city-page .agricultural-section p {
  color: #1a3409 !important;
  text-align: center;
}

.dji-city-page .agricultural-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1199px) {
  .dji-city-page .agricultural-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .dji-city-page .agricultural-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .dji-city-page .agricultural-features {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.dji-city-page .agricultural-feature {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.dji-city-page .agricultural-feature:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #16a34a;
  transform: translateY(-4px);
}

.dji-city-page .agricultural-feature h4 {
  color: #16a34a !important;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.dji-city-page .agricultural-feature p {
  color: rgba(22, 163, 74, 0.9) !important;
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* --- Akademik Bölümü --- */
.dji-city-page .academic-section {
  background: 
    linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%),
    radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
  color: white !important;
  border-radius: 0;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.dji-city-page .academic-section h2,
.dji-city-page .academic-section p {
  color: #1f2937 !important;
  text-align: center;
}

.dji-city-page .academic-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin: 4rem auto;
  max-width: 1000px;
}

/* --- Kayısı Bölümü --- */
.dji-city-page .apricot-section {
  background: 
    linear-gradient(135deg, #f97316 0%, #ea580c 100%),
    linear-gradient(45deg, rgba(251, 146, 60, 0.1) 0%, transparent 50%);
  color: white !important;
  border-radius: 0;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.dji-city-page .apricot-section h2,
.dji-city-page .apricot-section p {
  color: #431407 !important;
  text-align: center;
}

.dji-city-page .apricot-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1199px) {
  .dji-city-page .apricot-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .dji-city-page .apricot-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .dji-city-page .apricot-features {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.dji-city-page .apricot-feature {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(251, 146, 60, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.dji-city-page .apricot-feature:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #f97316;
  transform: translateY(-4px);
}

.dji-city-page .apricot-feature h4 {
  color: #ea580c !important;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.dji-city-page .apricot-feature p {
  color: rgba(234, 88, 12, 0.9) !important;
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* --- Responsive Tasarım --- */
@media (max-width: 639px) {
  .dji-city-page section {
    padding: 3rem 1.5rem;
  }
  
  .dji-city-page h1 {
    font-size: 2.4rem;
    line-height: 1.15;
  }
  
  .dji-city-page h2 {
    font-size: 1.875rem;
  }
  
  .dji-city-page .hero-section {
    padding: 5rem 1.5rem 4rem;
  }
  
  .dji-city-page .hero-p {
    font-size: 1.125rem;
    padding: 2rem 1.5rem;
    margin: 2rem auto;
  }
  
  .dji-city-page .hero-buttons {
    gap: 0.75rem;
    margin: 3rem auto 0;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .dji-city-page .btn {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: auto;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
  
  .dji-city-page .card {
    padding: 2rem 1.5rem;
  }
  
  .dji-city-page .military-section,
  .dji-city-page .corporate-section,
  .dji-city-page .cta-section {
    padding: 4rem 1.5rem;
  }
  
  .dji-city-page .grid-section {
    gap: 2rem;
  }
}

@media (min-width: 640px) {
  .dji-city-page h1 { 
    font-size: 3.5rem; 
  }
  
  .dji-city-page .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Military Section - TSK ve Güvenlik */
.dji-city-page .military-section {
  background: linear-gradient(135deg, #78716c 0%, #525252 100%);
  color: white;
  padding: 4rem 0;
  margin: 3rem 0;
}

.dji-city-page .military-section h2 {
  color: white;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dji-city-page .military-section p {
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.dji-city-page .military-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 1199px) {
  .dji-city-page .military-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 767px) {
  .dji-city-page .military-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dji-city-page .military-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.dji-city-page .military-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dji-city-page .military-feature h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.dji-city-page .military-feature p {
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  margin-bottom: 0;
}

/* Military button styling */
.dji-city-page .btn-military {
  background: linear-gradient(135deg, #78716c 0%, #525252 100%);
  color: white;
  border: 2px solid #78716c;
}

.dji-city-page .btn-military:hover {
  background: linear-gradient(135deg, #525252 0%, #374151 100%);
  border-color: #525252;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(120, 113, 108, 0.4);
}

@media (min-width: 768px) {
  .dji-city-page h1 { 
    font-size: 4rem; 
  }
  
  .dji-city-page .hero-buttons {
    gap: 1.25rem;
  }
  
  .dji-city-page .hero-p {
    font-size: 1.3rem;
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .dji-city-page h1 { 
    font-size: 4.5rem;
  }
  
  .dji-city-page .military-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dji-city-page .hero-buttons {
    gap: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .dji-city-page h1 { 
    font-size: 5rem;
  }
  
  .dji-city-page .hero-p {
    font-size: 1.25rem;
  }
  
  .dji-city-page .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}

/* --- Sticky Navigation Styles --- */
.dji-city-page .sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  margin-top: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dji-city-page .nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.dji-city-page .nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.dji-city-page .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 112, 210, 0.1) 0%, rgba(79, 158, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dji-city-page .nav-link:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  transform: translateY(-2px);
  border-color: rgba(0, 112, 210, 0.3);
  box-shadow: 0 4px 15px rgba(0, 112, 210, 0.15);
}

.dji-city-page .nav-link:hover::before {
  opacity: 1;
}

.dji-city-page .nav-icon {
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.dji-city-page .nav-text {
  white-space: nowrap;
  position: relative;
  z-index: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Smooth scroll behavior for navigation links */
html {
  scroll-behavior: smooth;
}

/* --- Özel Elazığ Alt Bölüm Tasarımları --- */
.dji-city-page .models-showcase {
  position: relative;
  background: #f5f9fc;
  padding: 4.5rem 3rem 3.5rem;
  overflow: hidden;
}

.dji-city-page .models-showcase::before,
.dji-city-page .models-showcase::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at center, rgba(0,112,210,0.12) 0%, rgba(0,112,210,0) 70%);
  top: -120px;
  left: -120px;
  filter: blur(10px);
  opacity: 0.6;
  pointer-events: none;
}

.dji-city-page .models-showcase::after {
  top: auto;
  bottom: -140px;
  left: auto;
  right: -140px;
  background: radial-gradient(circle at center, rgba(79,158,255,0.15) 0%, rgba(79,158,255,0) 70%);
}

.dji-city-page .models-showcase h2 {
  text-align: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.dji-city-page .models-showcase .models-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569; /* Kontrast artırıldı */
}

.dji-city-page .models-advanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.dji-city-page .model-chip {
  background: #ffffff;
  border: 1px solid #d9e2ec;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.dji-city-page .model-chip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,112,210,0.06) 0%, rgba(79,158,255,0.05) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.dji-city-page .model-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(0,112,210,0.3);
  background: #f0f6fa;
}

.dji-city-page .model-chip:hover::before { opacity: 1; }

.dji-city-page .model-chip.featured {
  border-color: rgba(0,112,210,0.35);
  background: #f2f8fc;
}

.dji-city-page .model-chip.enterprise {
  border-color: rgba(71,85,105,0.4);
  background: #f4f5f6;
}

.dji-city-page .models-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}

.dji-city-page .models-legend .legend-badge {
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #d9e2ec;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dji-city-page .models-meta-note {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: #64748b;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* İletişim Gelişmiş Bölümü */
.dji-city-page .contact-hub {
  position: relative;
  background: #0f172a; /* Daha düz ve sade arka plan */
  padding: 5rem 3rem 4.5rem;
  overflow: hidden;
}

.dji-city-page .contact-hub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04), transparent 65%);
  opacity: 1;
}

@keyframes contact-grid {
  0% { transform: translateY(0); }
  100% { transform: translateY(-400px); }
}

.dji-city-page .contact-hub h2 {
  text-align: center;
  color: #242424;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.dji-city-page .contact-hub .contact-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  color: #1d1d1d !important; /* En yüksek öncelik */
  font-size: 1.12rem; /* Biraz büyüt */
  font-weight: 600; /* Daha kalın */
  line-height: 1.55;
  padding: 0.85rem 1rem 0.9rem;
  position: relative;
  z-index: 2;
}

.dji-city-page .contact-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 2;
}

.dji-city-page .contact-card {
  background: #162132;
  border: 1px solid #1e2c40;
  border-radius: 14px;
  padding: 1.5rem 1.35rem 1.3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: background 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.dji-city-page .contact-card:hover {
  transform: translateY(-4px);
  background: #1d2a3b;
  border-color: #28384c;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

.dji-city-page .contact-card h3 {
  margin: 0 0 0.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #f1f5f9;
}

.dji-city-page .contact-card p,
.dji-city-page .contact-card div,
.dji-city-page .contact-card a:not(.btn) {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #dde6ee;
  margin: 0;
}

.dji-city-page .contact-card a:not(.btn) {
  text-decoration: none;
  color: #4f91c7;
  font-weight: 500;
}

.dji-city-page .contact-card a:not(.btn):hover { color: #77b5e6; }

.dji-city-page .contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.dji-city-page .contact-meta-note {
  text-align: center;
  color: #334155; /* Bir ton daha koyu */
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  margin-top: -0.25rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .dji-city-page .models-showcase { padding: 4rem 1.5rem 3rem; }
  .dji-city-page .models-advanced-grid { gap: 0.85rem; }
  .dji-city-page .model-chip { font-size: 0.65rem; padding: 0.75rem 0.85rem; }
  .dji-city-page .contact-hub { padding: 4.5rem 1.5rem 4rem; }
  .dji-city-page .contact-panels { gap: 1rem; }
  .dji-city-page .contact-card { padding: 1.4rem 1.25rem 1.3rem; }
}

/* Active state for navigation */
.dji-city-page .nav-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 112, 210, 0.2);
}

/* Mobile responsiveness for sticky nav */
@media (max-width: 768px) {
  .dji-city-page .nav-container {
    gap: 1rem;
    padding: 0.75rem 1rem;
  }
  
  .dji-city-page .nav-link {
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    border-radius: 10px;
  }
  
  .dji-city-page .nav-icon {
    font-size: 1.25rem;
  }
  
  .dji-city-page .nav-text {
    font-size: 0.8rem;
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .dji-city-page .nav-container {
    gap: 0.5rem;
    padding: 0.5rem;
  }
  
  .dji-city-page .nav-link {
    padding: 0.625rem 0.75rem;
    gap: 0.25rem;
  }
  
  .dji-city-page .nav-icon {
    font-size: 1.1rem;
  }
  
  .dji-city-page .nav-text {
    font-size: 0.7rem;
  }
}