/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Global ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e8e8e8;
  background-color: #0f0f1e;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.95) 0%, rgba(26, 26, 40, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 153, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #ff9900, #ffaa33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logo-slide 1s ease-out forwards;
  letter-spacing: 1px;
}

.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: 35px;
}

.navbar a {
  text-decoration: none;
  color: #e8e8e8;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar a:hover { 
  color: #ff9900;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9900, #ffaa33);
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

/* ===== Hamburger Menu ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #ff9900;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation Menu */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.98) 0%, rgba(26, 26, 40, 0.98) 100%);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-right: 1px solid rgba(255, 153, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    display: block;
    padding: 16px 25px;
    border-bottom: 1px solid rgba(255, 153, 0, 0.05);
    transition: all 0.2s ease;
  }
  
  .nav-menu a::after {
    display: none;
  }
  
  .nav-menu a:hover {
    background: rgba(255, 153, 0, 0.1);
    padding-left: 35px;
    color: #ff9900;
  }
  
  .nav-menu a.active {
    color: #ff9900;
    background: rgba(255, 153, 0, 0.05);
    border-left: 4px solid #ff9900;
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
  padding-top: 80px;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(50%) contrast(1.1);
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 4.5rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ff9900, #ffcc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 30px rgba(255, 153, 0, 0.3);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: 1.4rem;
  margin: 25px 0 40px;
  color: #d0d0d0;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  line-height: 1.5;
}

.btn {
  background: linear-gradient(135deg, #ff9900, #ff8800);
  color: #fff;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
  letter-spacing: 0.5px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 153, 0, 0.5);
  background: linear-gradient(135deg, #ff8800, #ff7700);
}

.btn:active {
  transform: translateY(-1px);
}

/* ===== Intro Section ===== */
.intro {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-top: 1px solid rgba(255, 153, 0, 0.1);
}

.intro h2 { 
  color: #ff9900; 
  margin-bottom: 25px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.intro p { 
  color: #b8b8b8; 
  max-width: 700px; 
  margin: auto; 
  line-height: 1.8;
  font-size: 1.1rem;
}

/* ===== Features Section ===== */
.features { 
  background: #0f0f1e;
  text-align: center;
  padding: 80px 20px;
}

.features h2 { 
  color: #ff9900; 
  margin-bottom: 60px;
  font-size: 2.5rem;
  font-weight: 700;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 40px 30px;
  border-radius: 15px;
  width: 280px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s forwards;
  border: 1px solid rgba(255, 153, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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(-15px);
  box-shadow: 0 15px 40px rgba(255, 153, 0, 0.3);
  border-color: rgba(255, 153, 0, 0.3);
  background: linear-gradient(135deg, #232341 0%, #1e2a4a 100%);
}

.feature-card h3 { 
  color: #ff9900; 
  margin-bottom: 15px; 
  display: flex; 
  align-items: center; 
  gap: 12px;
  font-size: 1.3rem;
  justify-content: center;
}

.feature-card h3 i { 
  transition: all 0.3s ease; 
  font-size: 2rem;
}

.feature-card:hover h3 i { 
  transform: scale(1.3) rotate(10deg); 
  color: #ffcc66;
}

.feature-card p { 
  color: #a8a8a8; 
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ===== ROI Section ===== */
.roi { 
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid rgba(255, 153, 0, 0.1);
}

.roi h2 { 
  color: #ff9900; 
  margin-bottom: 60px;
  font-size: 2.5rem;
  font-weight: 700;
}

.roi-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.roi-card {
  background: linear-gradient(135deg, #252541 0%, #1f2f47 100%);
  padding: 35px 25px;
  border-radius: 15px;
  width: 280px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 153, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.roi-card h3 { 
  color: #ff9900; 
  margin-bottom: 15px; 
  display: flex; 
  align-items: center; 
  gap: 12px;
  font-size: 1.3rem;
}

.roi-card p { 
  color: #a8a8a8; 
  font-size: 0.98rem;
  line-height: 1.7;
}

.roi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 153, 0, 0.25);
  border-color: rgba(255, 153, 0, 0.3);
  background: linear-gradient(135deg, #2f2a50 0%, #272d50 100%);
}

/* ===== Why Join Us Section ===== */
.why-join {
  background: #0f0f1e;
  text-align: center;
  padding: 80px 40px;
}

.why-join h2 { 
  color: #ff9900; 
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}

.why-join ul {
  list-style: none;
  margin: 30px auto;
  max-width: 700px;
  text-align: left;
  color: #b8b8b8;
  padding: 0;
}

.why-join li { 
  margin-bottom: 18px;
  padding-left: 35px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
}

.why-join li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff9900;
  font-weight: bold;
  font-size: 1.3rem;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #0a0a14 0%, #0f0f1e 100%);
  color: #888;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 153, 0, 0.1);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .container {
    width: 95%;
    padding: 50px 0;
  }

  .feature-card, .roi-card {
    width: 250px;
    padding: 30px 20px;
  }

  .hero h1 { font-size: 3.5rem; }
  .hero p { font-size: 1.2rem; }
  
  .navbar { padding: 15px 30px; }
}

@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; }
  .intro h2, .features h2, .roi h2, .why-join h2 { font-size: 2rem; }
  
  .navbar { 
    padding: 12px 20px;
  }
  
  .logo {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.5rem; letter-spacing: 1px; }
  .hero p { font-size: 1rem; }
  .btn { padding: 12px 30px; font-size: 0.95rem; }
  .feature-card, .roi-card { width: 90%; }
  .intro p, .why-join ul { font-size: 0.98rem; line-height: 1.6; }
  .navbar { padding: 12px 20px; flex-wrap: wrap; }
  .navbar ul { gap: 10px; }
  
  .intro h2, .features h2, .roi h2, .why-join h2 { font-size: 1.8rem; }
  .intro { padding: 50px 20px; }
  .features { padding: 50px 15px; }
  .roi { padding: 50px 15px; }
  .why-join { padding: 50px 20px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.9rem; }
  .btn { padding: 10px 25px; font-size: 0.9rem; }
  .feature-card h3, .roi-card h3 { font-size: 1.1rem; }
  .feature-card p, .roi-card p { font-size: 0.9rem; }
  .navbar ul { gap: 8px; }
}

/* ===== Comparison Table Section ===== */
.comparison-table {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  border-top: 1px solid rgba(255, 153, 0, 0.1);
}

.comparison-table h2 {
  color: #ff9900;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
}

.table-wrapper {
  overflow-x: auto;
  margin: 30px auto;
  max-width: 1000px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  margin: auto;
  min-width: 600px;
  background: #0f0f1e;
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 15px;
  border: 1px solid rgba(255, 153, 0, 0.1);
  text-align: center;
  font-size: 0.98rem;
}

.comparison-table th {
  background-color: rgba(255, 153, 0, 0.1);
  color: #ff9900;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.comparison-table td {
  background-color: transparent;
  color: #c8c8c8;
}

.comparison-table tr:hover td {
  background-color: rgba(255, 153, 0, 0.05);
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
  .comparison-table th,
  .comparison-table td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 500px) {
  .comparison-table table {
    min-width: 100%;
  }
  .comparison-table h2 { font-size: 1.8rem; }
}

/* ===== FAQ Section ===== */
.faq {
  background: #0f0f1e;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.faq h2 {
  color: #ff9900;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 15px;
  text-align: left;
  border: 1px solid rgba(255, 153, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.15);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ff9900;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 153, 0, 0.05);
  padding-left: 30px;
}

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-answer {
  padding: 0 25px 20px;
  display: none;
  color: #b8b8b8;
  font-size: 0.98rem;
  line-height: 1.8;
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 600px) {
  .faq h2 { font-size: 1.8rem; }
  .faq-question { font-size: 0.98rem; padding: 15px 15px; }
  .faq-answer { font-size: 0.9rem; padding: 0 15px 15px; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  color: white;
  padding: 16px 22px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 100;
  border: 2px solid transparent;
}

.whatsapp-float i {
  font-size: 1.5rem;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #1ebe57, #16a34a);
}

/* Responsive */
@media (max-width: 500px) {
  .whatsapp-float {
    padding: 14px 18px;
    font-size: 0.9rem;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float i {
    font-size: 1.3rem;
  }
}

  

.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: linear-gradient(135deg, #25D366, #1ebe57);
  color: white;
  padding: 16px 22px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 100;
  border: 2px solid transparent;
}

.whatsapp-float i {
  font-size: 1.5rem;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #1ebe57, #16a34a);
}

/* Responsive */
@media (max-width: 500px) {
  .whatsapp-float {
    padding: 14px 18px;
    font-size: 0.9rem;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float i {
    font-size: 1.3rem;
  }
}

/* ===== FORM STYLING ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 14px 18px;
  border: 1px solid rgba(255, 153, 0, 0.2);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.7), rgba(22, 33, 62, 0.7));
  color: #e8e8e8;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #ff9900;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1), 0 4px 15px rgba(255, 153, 0, 0.2);
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9900' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 45px;
}

.contact-form label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #d0d0d0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.contact-form label:hover {
  color: #ff9900;
}

.contact-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #ff9900;
  border: 2px solid rgba(255, 153, 0, 0.3);
}

.contact-form input[type="checkbox"]:hover {
  border-color: #ff9900;
}

.contact-form button {
  padding: 16px 35px;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* Grid layout for form inputs */
@media (min-width: 768px) {
  .contact-form > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .contact-form > div > input {
    grid-column: auto;
  }
}

/* ===== OLD STYLES (Legacy Support) ===== */

/* Floating WhatsApp Button - Old */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  color: white;
  padding: 16px 22px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 100;
  border: 2px solid transparent;
}

.whatsapp-float i {
  font-size: 1.5rem;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #1ebe57, #16a34a);
}

@media (max-width: 500px) {
  .whatsapp-float {
    padding: 14px 18px;
    font-size: 0.9rem;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float i {
    font-size: 1.3rem;
  }
}
