.services-intro {
  text-align: center;
  padding: 90px 20px;
  background-color: #000000d3;
}

.services-intro h1 {
  font-size: 38px;
  margin-bottom: 12px;
  color: #fff;
}

.services-intro p {
  font-size: 16px;
  color: #fdfeff;
  max-width: 720px;
  margin: auto;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 70px 8%;
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.service-card h3 {
  margin-top: 16px;
  font-size: 20px;
}

/* Service details */
.service-details {
  display: none;
  max-width: 980px;
  margin: 60px auto;
  padding: 45px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  animation: fadeIn 0.4s ease;
  position: relative;
}

.service-details h2 {
  margin-bottom: 18px;
  color: #111;
  font-size: 30px;
}

.service-details h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
}

.service-details p,
.service-details ul {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.service-details ul {
  margin-left: 18px;
  margin-bottom: 20px;
}

.back-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 25px;
}

.back-btn:hover {
  background: #000;
}

/* CTA */
.services-cta {
  background: #000000d3;
  border-top: 1px solid #e5e7eb;
  padding: 80px 24px;
  text-align: center;
}

.services-cta .cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.services-cta h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.services-cta p {
  font-size: 16px;
  line-height: 1.6;
  color: #fdfeff;
  margin-bottom: 32px;
}


/* Drone */
#drone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 120px;
  background: url("rand/orange.png") no-repeat center;
  background-size: contain;
  z-index: 999;
  pointer-events: none;
  transition: transform 1s ease;
}

/* Controller */
#controller {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}

#controller img {
  width: 120px;
  display: block;
  margin-bottom: 10px;
}

.controls button {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  margin: 4px;
  z-index: 999;
}

.middle-row {
  display: flex;
}

/* Hide on mobile */
@media (max-width: 768px) {
  #drone,
  #controller {
    display: none;
  }

  .services-grid {
    gap: 16px;
    padding: 40px 5%;
  }

  .service-card img {
    height: 140px;
  }

  .service-card h3 {
    font-size: 16px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.controls button:nth-child(2) {
  background: #444;
}

.controls {
  display: grid;
  grid-template-columns: repeat(3, 50px);
  grid-template-rows: repeat(3, 35px);
  gap: 1px;
  justify-content: center;
  align-items: center;
}

/* Flatten rows into grid */
.controls .row {
  display: contents;
}

/* TOP */
.controls .row:first-child button {
  grid-column: 2;
  grid-row: 1;
}

/* MIDDLE */
.controls .middle-row button:nth-child(1) {
  grid-column: 1;
  grid-row: 2;
}

.controls .middle-row button:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}

.controls .middle-row button:nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}

/* BOTTOM */
.controls .row:last-child button {
  grid-column: 2;
  grid-row: 3;
}

