/* Drone Çekim Sayfası - Tamamen Yeniden Tasarlanmış */

/* Container Fix */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section - Etkileyici Animasyonlar */
.drone-hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.drone-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 119, 198, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(120, 219, 255, 0.4) 0%,
      transparent 50%
    );
  animation: gradient-shift 8s ease-in-out infinite alternate;
}

.drone-hero::after {
  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"><defs><pattern id="grid" patternUnits="userSpaceOnUse" width="10" height="10"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  animation: grid-move 20s linear infinite;
}

@keyframes gradient-shift {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-10px, -10px);
  }
}

/* Drone Scene - Gelişmiş Animasyonlar */
.drone-scene {
  position: relative;
  width: 500px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.drone-container {
  position: relative;
  width: 120px;
  height: 120px;
  animation: drone-flight-path 8s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes drone-flight-path {
  0% {
    transform: translateY(0px) translateX(0px) rotateY(0deg) rotateX(0deg);
  }
  25% {
    transform: translateY(-25px) translateX(15px) rotateY(5deg) rotateX(3deg);
  }
  50% {
    transform: translateY(-10px) translateX(-10px) rotateY(-3deg) rotateX(-2deg);
  }
  75% {
    transform: translateY(-30px) translateX(20px) rotateY(8deg) rotateX(4deg);
  }
  100% {
    transform: translateY(0px) translateX(0px) rotateY(0deg) rotateX(0deg);
  }
}

.drone-body-main {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 18px;
  background: linear-gradient(145deg, #2c3e50, #34495e);
  border-radius: 10px;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
  z-index: 5;
  position: relative;
}

.drone-body-main::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.8),
    transparent
  );
  border-radius: 1px;
  animation: body-pulse 2s ease-in-out infinite alternate;
}

@keyframes body-pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

.drone-camera {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 10px;
  background: linear-gradient(145deg, #e74c3c, #c0392b);
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.5), 0 0 8px rgba(231, 76, 60, 0.3);
  animation: camera-blink 3s ease-in-out infinite;
}

@keyframes camera-blink {
  0%,
  90% {
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.5),
      0 0 8px rgba(231, 76, 60, 0.3);
  }
  95% {
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.8),
      0 0 15px rgba(231, 76, 60, 0.6);
  }
}

.drone-arm {
  position: absolute;
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, #34495e, #2c3e50);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform-origin: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.drone-arm-1 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.drone-arm-2 {
  transform: translate(-50%, -50%) rotate(135deg);
}
.drone-arm-3 {
  transform: translate(-50%, -50%) rotate(225deg);
}
.drone-arm-4 {
  transform: translate(-50%, -50%) rotate(315deg);
}

.drone-propeller {
  position: absolute;
  width: 32px;
  height: 32px;
  right: -16px;
  top: -16px;
  animation: propeller-spin 0.05s linear infinite;
}

.propeller-blade {
  position: absolute;
  width: 28px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.3)
  );
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transform-origin: center;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

.propeller-blade:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg);
}
.propeller-blade:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

@keyframes propeller-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Gelişmiş Glow Effect */
.drone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.4) 0%,
    rgba(118, 75, 162, 0.3) 50%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: advanced-glow 4s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes advanced-glow {
  0% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
  }
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.3) rotate(360deg);
  }
}

/* Parçacık Sistemi */
.drone-scene::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      2px 2px at 20px 30px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(102, 126, 234, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(118, 75, 162, 0.3), transparent),
    radial-gradient(
      2px 2px at 160px 30px,
      rgba(255, 255, 255, 0.4),
      transparent
    ),
    radial-gradient(
      1px 1px at 200px 60px,
      rgba(102, 126, 234, 0.3),
      transparent
    ),
    radial-gradient(
      1px 1px at 240px 90px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 280px 20px, rgba(118, 75, 162, 0.4), transparent),
    radial-gradient(
      1px 1px at 320px 70px,
      rgba(255, 255, 255, 0.5),
      transparent
    ),
    radial-gradient(
      1px 1px at 360px 50px,
      rgba(102, 126, 234, 0.3),
      transparent
    );
  animation: particles-float 12s linear infinite;
  pointer-events: none;
}

@keyframes particles-float {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.3;
  }
  33% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.8;
  }
  66% {
    transform: translateY(-40px) translateX(-5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-60px) translateX(15px);
    opacity: 0;
  }
}

/* Ek Işık Efektleri */
.drone-container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent,
    rgba(118, 75, 162, 0.1),
    transparent
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: light-rotation 10s linear infinite;
  z-index: 0;
}

@keyframes light-rotation {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Content Layout */
.drone-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.drone-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: text-glow 3s ease-in-out infinite alternate;
}

@keyframes text-glow {
  0% {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  100% {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 20px rgba(240, 147, 251, 0.3);
  }
}

.drone-text .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 300;
  animation: text-fade-in 2s ease-out;
}

@keyframes text-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

/* Modern Button Styles */
.drone-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.drone-btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}

.drone-btn i {
  font-size: 1.1em;
}

.drone-btn-primary {
  background: white;
  color: #667eea;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.drone-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
  color: #2a5298;
  text-decoration: none;
}

.drone-btn-outline {
  border: 2px solid white;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.drone-btn-outline:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
  text-decoration: none;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
}

.section-title p {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.service-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}

.service-card p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 1rem;
}

/* Equipment Section */
.equipment-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.equipment-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.equipment-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.equipment-icon {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.equipment-card:hover .equipment-icon {
  transform: scale(1.15);
}

.equipment-card h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.equipment-card p {
  opacity: 0.9;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Video Section */
.video-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #667eea;
  transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
  transform: scale(1.1);
  background: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.video-card h5 {
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: white;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #667eea, #764ba2);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.step-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 300px;
  margin: 0 30px;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.step-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c3e50;
}

.step-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #f093fb;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cta-button {
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1.1rem;
}

.cta-button i {
  font-size: 1.2em;
}

.cta-primary {
  background: white;
  color: #667eea;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  color: #2a5298;
}

.cta-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
  text-decoration: none;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-features p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin: 0;
}

.cta-features i {
  color: #a8e6cf;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .drone-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .drone-text h1 {
    font-size: 2.5rem;
  }

  .drone-scene {
    width: 300px;
    height: 250px;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .services-grid,
  .equipment-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .process-step:nth-child(even) {
    flex-direction: row !important;
  }

  .step-number {
    position: absolute;
    left: 0;
  }

  .step-content {
    margin: 0;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-features {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .drone-text h1 {
    font-size: 2rem;
  }

  .drone-scene {
    width: 250px;
    height: 200px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card {
    padding: 30px 20px;
  }
}
