body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #1A1A2E;
  color: #fff;
}
header {
  background: url('hero-image.jpg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 { font-size: 3rem; margin: 0; }
.hero p { font-size: 1.3rem; }
.btn {
  margin-top: 20px;
  background: #FFD700;
  color: #1A1A2E;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}
section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.services, .about, .contact {
  background: #2E2E2E;
  border-radius: 10px;
  margin-bottom: 20px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.service-item {
  background: #1A1A2E;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
}
.service-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.gallery-grid img {
  width: 100%;
  max-width: 250px;
  border-radius: 5px;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}
.contact input, .contact textarea {
  padding: 10px;
  border-radius: 5px;
  border: none;
}
.contact textarea { height: 100px; }
footer {
  background: #009688;
  padding: 20px;
  text-align: center;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .btn { padding: 10px 16px; font-size: 0.95rem; }
  .service-item { width: 90%; }
  section { padding: 30px 15px; }
}

.aerial-section {
  padding: 50px 20px;
  background: #2e2e2e;
  text-align: center;
  border-radius: 10px;
  margin-top: 30px;
}
.aerial-videos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.aerial-videos video {
  width: 300px;
  border-radius: 10px;
}
.aerial-section {
  padding: 50px 20px;
  background: #2e2e2e;
  text-align: center;
  border-radius: 10px;
  margin-top: 30px;
}

.aerial-videos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.aerial-videos video {
  width: 300px;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  filter: brightness(0.9) contrast(1.2);
}

.hover-glow:hover {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.4) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}
