/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Global ===== */
body {
  font-family: 'Poppins', sans-serif;
  color: white;
  background-color: #0a0a0a;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #ff9900;
  animation: logo-slide 1s ease-out forwards;
}

.logo:hover {
  animation: logo-bounce 0.6s;
}

@keyframes logo-slide {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes logo-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover { color: #ff9900; }

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(60%);
}

.hero-content {
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 2px;
  color: #ff9900;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.3rem;
  margin: 20px 0 30px;
  color: #f2f2f2;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.btn {
  background: #ff9900;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ff7700;
  transform: scale(1.05);
}

/* ===== Intro Section ===== */
.intro {
  text-align: center;
  padding: 60px 20px;
  background: #111;
}

.intro h2 { color: #ff9900; margin-bottom: 15px; }
.intro p { color: #ccc; max-width: 700px; margin: auto; line-height: 1.6; }

/* ===== Features Section ===== */
.features { background: #0f0f0f; text-align: center; }
.features h2 { color: #ff9900; margin-bottom: 40px; }

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-card {
  background: #1a1a1a;
  padding: 30px 20px;
  border-radius: 15px;
  width: 250px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s forwards;
}

.feature-card:nth-child(1){ animation-delay:0.1s; }
.feature-card:nth-child(2){ animation-delay:0.3s; }
.feature-card:nth-child(3){ animation-delay:0.5s; }
.feature-card:nth-child(4){ animation-delay:0.7s; }
.feature-card:nth-child(5){ animation-delay:0.9s; }

@keyframes fadeInUp { to { opacity:1; transform: translateY(0); } }

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 25px rgba(255,153,0,0.5);
}

.feature-card h3 { color: #ff9900; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.feature-card h3 i { transition: transform 0.3s ease, color 0.3s ease; }
.feature-card:hover h3 i { transform: rotate(15deg) scale(1.2); color: #ffcc66; }

.feature-card p { color: #ccc; font-size: 0.95rem; }

/* ===== ROI Section ===== */
.roi { background: #111; text-align: center; }
.roi h2 { color: #ff9900; margin-bottom: 40px; }

.roi-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.roi-card {
  background: #1a1a1a;
  padding: 25px 20px;
  border-radius: 15px;
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.roi-card h3 { color: #ff9900; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.roi-card p { color: #ccc; font-size: 0.95rem; }

.roi-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 25px rgba(255,153,0,0.5);
}

/* ===== Why Join Us Section ===== */
.why-join {
  background: #0f0f0f;
  text-align: center;
  padding: 60px 20px;
}

.why-join h2 { color: #ff9900; margin-bottom: 25px; }
.why-join ul {
  list-style-type: disc;
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
  color: #ccc;
  padding-left: 20px;
}

.why-join li { margin-bottom: 10px; }

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #0a0a0a;
  color: #aaa;
  font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .container {
    width: 95%;
    padding: 30px 0;
  }

  .feature-card, .roi-card {
    width: 220px;
    padding: 25px 15px;
  }

  .hero h1 { font-size: 3.5rem; }
  .hero p { font-size: 1.2rem; }
}

@media (max-width: 900px) {
  .feature-cards, .roi-cards { flex-direction: column; align-items: center; }
  .hero h1 { font-size: 3rem; }
  .hero p { font-size: 1.1rem; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.5rem; letter-spacing: 1px; }
  .hero p { font-size: 1rem; }
  .btn { padding: 10px 20px; font-size: 0.95rem; }
  .feature-card, .roi-card { width: 90%; }
  .intro p, .why-join ul { font-size: 0.95rem; line-height: 1.5; }

  /* Mobile fallback for video */
  /* .background-video { display: none; } */
  .hero { background: url('assets/images/drone-hero.jpg') center/cover no-repeat; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.9rem; }
  .btn { padding: 8px 18px; font-size: 0.9rem; }
  .feature-card h3, .roi-card h3 { font-size: 1.1rem; }
  .feature-card p, .roi-card p { font-size: 0.9rem; }
}


/* ===== Comparison Table Section ===== */
.comparison-table {
  background: #111;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.comparison-table h2 {
  color: #ff9900;
  margin-bottom: 30px;
}

.table-wrapper {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  margin: auto;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 12px;
  border: 1px solid #333;
  text-align: center;
  font-size: 0.95rem;
}

.comparison-table th {
  background-color: #1a1a1a;
  color: #ff9900;
}

.comparison-table td {
  background-color: #0f0f0f;
  color: #ccc;
}

.comparison-table tr:hover td {
  background-color: #222;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 500px) {
  .comparison-table table {
    min-width: 100%;
  }
}


/* ===== FAQ Section ===== */
.faq {
  background: #0f0f0f;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.faq h2 {
  color: #ff9900;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: left;
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #ff9900;
  background: #1a1a1a;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #222;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 20px 15px;
  display: none;
  color: #ccc;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-question { font-size: 0.95rem; padding: 12px 15px; }
  .faq-answer { font-size: 0.9rem; padding: 0 15px 12px; }
}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 100;
}

.whatsapp-float i {
  font-size: 1.4rem;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 500px) {
  .whatsapp-float {
    padding: 12px 15px;
    font-size: 0.9rem;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float i {
    font-size: 1.2rem;
  }
}
