* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: #0a0c10;
  color: #f0f3f8;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

#hero {
  position: relative;
  background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.65)), url("images/IMG-20260514-WA0021.jpg") no-repeat center center;
  background-size: cover;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
}

nav {
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(240, 145, 22, 0.4);
  padding: 0.85rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #eef2ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

nav ul li a i {
  color: #f09116;
}

nav ul li a:hover {
  color: #f5a623;
}

nav ul li ul {
  position: absolute;
  top: 2.2rem;
  left: 0;
  background: rgba(18, 22, 28, 0.96);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 0.8rem 0;
  min-width: 180px;
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  border: 1px solid rgba(240,145,22,0.4);
  z-index: 1050;
}

nav ul li:hover ul {
  display: flex;
}

nav ul li ul li a {
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
}

nav ul li ul li a:hover {
  background: rgba(240,145,22,0.2);
  border-radius: 40px;
}

@media (max-width: 880px) {
  nav { flex-direction: column; gap: 12px; }
  .nav-menu { width: 100%; }
  nav ul { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

.hero-content {
  max-width: 900px;
  z-index: 2;
  position: relative;
}

h1 {
  font-size: 3.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 20%, #f5b042 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.2rem;
}

#hero h1 {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#hero p {
  font-size: 1.25rem;
  color: #cfddee;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.cta-btn {
  background: linear-gradient(105deg, #f09116, #ffb347);
  color: #0a0c10;
  font-weight: 700;
  padding: 0.9rem 2rem;
  margin: 0.5rem;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #f09116;
  color: #f09116;
}

.btn-outline:hover {
  background: rgba(240,145,22,0.15);
}

.btn-secondary {
  background: #2a2e3a;
  color: #f5bc70;
}

section {
  position: relative;
  padding: 5rem 2rem;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

h2 {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.8rem;
  background: linear-gradient(120deg, #ffffff, #f5bc70);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.solid-bg-section {
  background: #0f1117;
  border-top: 1px solid rgba(240,145,22,0.2);
  border-bottom: 1px solid rgba(240,145,22,0.2);
}

/* SOLUTION SECTION - COMPLETELY TRANSPARENT FOR PARTICLES */
#solution {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  background-color: transparent !important;
}

#particles-solution {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

#solution h2,
#solution .features {
  position: relative;
  z-index: 1;
}

/* Force boxes side by side */
#solution .features {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
}

#solution .feature-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: rgba(20, 25, 33, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 33px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(240,145,22,0.3);
}

#solution .feature-card:hover {
  transform: translateY(-8px);
  border-color: #f09116;
}

/* Landing background section - FIXED BACKGROUND */
.landing-bg-section {
  position: relative;
  background: url("images/IMG-20260514-WA0021.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.landing-bg-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 16, 0.75);
  backdrop-filter: blur(8px);
  z-index: 0;
}

.landing-bg-section .container {
  position: relative;
  z-index: 1;
}

/* Alternative for better mobile support */
/* .landing-bg-section {
  position: relative;
  background: url("images/IMG-20260514-WA0021.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .landing-bg-section {
    background-attachment: scroll;
  }
} */

.stats-grid, .features-grid, .trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  justify-items: center;
}
.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #f5b042;
  line-height: 1;
  text-shadow: 0 0 8px rgba(240,145,22,0.4);
  transition: all 0.3s ease;
}

.stat-card, .feature-card {
  background: rgba(20, 25, 33, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(240,145,22,0.3);
  width: 100%;
  max-width: 320px;
}

.stat-card:hover, .feature-card:hover {
  transform: translateY(-8px);
  border-color: #f09116;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #f5b042;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #cddfef;
  margin-top: 0.6rem;
}

.feature-card i, .stat-card i {
  font-size: 2.8rem;
  color: #f5a623;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.feature-card p {
  color: #bdc7db;
  line-height: 1.5;
}

/* TESTIMONIAL CAROUSEL - ONE BOX AT A TIME */
.testimonial-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-carousel {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 300px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 0;
}

.testimonial-card {
  background: rgba(15, 20, 27, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 1rem;
  width: 300px;
  flex-shrink: 0;
  border: 1px solid #f5a62340;
  transition: 0.2s;
  margin: 0 9px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #f5b042;
}

.testimonial-card i {
  font-size: 2.2rem;
  color: #f5b042;
  margin-bottom: 1rem;
  display: inline-block;
}

.testimonial-card p {
  line-height: 1.5;
  color: #eef2fc;
  font-size: 0.95rem;
}

.testimonial-card h4 {
  margin-top: 1.2rem;
  color: #f5bc70;
  font-weight: 600;
}

.carousel-arrow {
  background: rgba(240, 145, 22, 0.2);
  border: 2px solid rgba(240, 145, 22, 0.6);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #f5a623;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background: #f09116;
  color: #0a0c10;
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(240, 145, 22, 0.3);
  cursor: pointer;
  transition: all 0.2s;
}

.dot.active {
  background: #f09116;
  width: 24px;
  border-radius: 10px;
}

#cta {
  text-align: center;
}

.cta-sub {
  margin-bottom: 1.8rem;
  font-size: 1.2rem;
  color: #ddd;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer {
  background: #07090e;
  border-top: 1px solid rgba(240, 145, 22, 0.4);
  padding: 2.5rem 2rem 1.5rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  color: #f5a623;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-col p {
  color: #9ca3af;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.footer-col p i {
  width: 24px;
  color: #f5a623;
  margin-right: 6px;
}

/* Social links - vertical layout */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.4rem 0;
  transition: all 0.2s ease;
  width: fit-content;
}

.social-link i {
  width: 20px;
  font-size: 1rem;
}

/* Original brand colors on hover */
.social-link.whatsapp { color: #9ca3af; }
.social-link.whatsapp:hover { color: #25D366; }

.social-link.twitter { color: #9ca3af; }
.social-link.twitter:hover { color: #1DA1F2; }

.social-link.linkedin { color: #9ca3af; }
.social-link.linkedin:hover { color: #0077B5; }

.social-link.instagram { color: #9ca3af; }
.social-link.instagram:hover { color: #E4405F; }

/* Footer bottom copyright */
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 145, 22, 0.2);
  text-align: center;
}

.footer-bottom p {
  color: #6b7280;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    text-align: center;
  }
  
  .social-links {
    align-items: center;
  }
  
  .social-link {
    justify-content: center;
  }
  
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
}
/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09116, #ffb347);
  color: #0a0c10;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(240, 145, 22, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffa425, #f09116);
  box-shadow: 0 6px 20px rgba(240, 145, 22, 0.5);
}

.scroll-to-top:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}
.footer-bottom {
  position: relative;
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 145, 22, 0.2);
  text-align: center;
  overflow: hidden;
  min-height: 80px;
}

#particles-footer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.footer-bottom p {
  position: relative;
  z-index: 1;
  color: #6b7280;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

/* Contact page specific styles */
#contact-header {
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at 70% 30%, rgba(240,145,22,0.1), transparent 70%);
}

#contact-header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 20%, #f5b042 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

#contact-header p {
  font-size: 1.1rem;
  color: #cfddee;
  max-width: 650px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.contact-card, .contact-form {
  background: rgba(20, 25, 33, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(240,145,22,0.3);
  transition: all 0.3s ease;
}

.contact-card:hover, .contact-form:hover {
  border-color: #f09116;
  box-shadow: 0 0 20px rgba(240,145,22,0.2);
}

.contact-info h2, .contact-form h2 {
  color: #f5a623;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info p {
  color: #cddfef;
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info i {
  color: #f5a623;
  width: 24px;
}

.whatsapp-link {
  color: #cddfef;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-link:hover {
  color: #25D366;
}

.map-container {
  margin-top: 1.5rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(10, 12, 16, 0.8);
  border: 1px solid rgba(240,145,22,0.3);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f09116;
  box-shadow: 0 0 8px rgba(240,145,22,0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8f9bb3;
}

.submit-btn {
  background: linear-gradient(105deg, #f09116, #ffb347);
  color: #0a0c10;
  font-weight: 700;
  padding: 12px 24px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(105deg, #ffa425, #f09116);
  box-shadow: 0 8px 20px rgba(240,145,22,0.4);
}

.form-status {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  padding: 8px;
  border-radius: 8px;
}

.form-status.success {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid #22c55e;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid #ef4444;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MISSION PAGE STYLES
   ============================================ */

#mission-header {
  text-align: center;
  padding: 2rem 1rem;
  background: radial-gradient(ellipse at 70% 30%, rgba(240,145,22,0.1), transparent 70%);
}

#mission-header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 20%, #f5b042 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.2rem;
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  from { text-shadow: 0 0 5px rgba(240,145,22,0.3); }
  to { text-shadow: 0 0 20px rgba(240,145,22,0.6); }
}

#mission-header p {
  font-size: 1.2rem;
  color: #cfddee;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.mission-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.mission-features .feature-card {
  background: rgba(20, 25, 33, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(240,145,22,0.3);
}

.mission-features .feature-card:hover {
  transform: translateY(-8px);
  border-color: #f09116;
  box-shadow: 0 0 25px rgba(240,145,22,0.2);
}

.mission-features .feature-card i {
  font-size: 2.5rem;
  color: #f5a623;
  margin-bottom: 1rem;
  display: inline-block;
}

.mission-features .feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.mission-features .feature-card p {
  color: #bdc7db;
  line-height: 1.5;
  font-size: 0.9rem;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.mission-stats .stat-card {
  background: rgba(20, 25, 33, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(240,145,22,0.3);
}

.mission-stats .stat-card:hover {
  transform: translateY(-5px);
  border-color: #f09116;
  box-shadow: 0 0 20px rgba(240,145,22,0.2);
}

.mission-stats .stat-card i {
  font-size: 2.5rem;
  color: #f5a623;
  margin-bottom: 1rem;
  display: inline-block;
}

.mission-stats .stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f5b042;
  line-height: 1;
}

.mission-stats .stat-card .stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #cddfef;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .mission-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mission-features {
    grid-template-columns: 1fr;
  }
  .mission-stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

#about-header {
  text-align: center;
  padding: 2rem 1rem;
  background: radial-gradient(ellipse at 70% 30%, rgba(240,145,22,0.1), transparent 70%);
}

#about-header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 20%, #f5b042 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.2rem;
}

#about-header p {
  font-size: 1.2rem;
  color: #cfddee;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-features .feature-card {
  background: rgba(20, 25, 33, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(240,145,22,0.3);
}

.about-features .feature-card:hover {
  transform: translateY(-8px);
  border-color: #f09116;
  box-shadow: 0 0 25px rgba(240,145,22,0.2);
}

.about-features .feature-card i {
  font-size: 2.5rem;
  color: #f5a623;
  margin-bottom: 1rem;
  display: inline-block;
}

.about-features .feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.about-features .feature-card p {
  color: #bdc7db;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* ============================================
   REQUEST BOX PAGE STYLES
   ============================================ */

#request-header {
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at 70% 30%, rgba(240,145,22,0.1), transparent 70%);
}

#request-header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 20%, #f5b042 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

#request-header p {
  font-size: 1.1rem;
  color: #cfddee;
  max-width: 650px;
  margin: 0 auto;
}

.request-container {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.request-form {
  background: rgba(20, 25, 33, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  border: 1px solid rgba(240,145,22,0.3);
  transition: all 0.3s ease;
}

.request-form:hover {
  border-color: #f09116;
  box-shadow: 0 0 20px rgba(240,145,22,0.2);
}

.request-form h2 {
  color: #f5a623;
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.request-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.request-form input,
.request-form textarea,
.request-form select {
  background: rgba(10, 12, 16, 0.8);
  border: 1px solid rgba(240,145,22,0.3);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  outline: none;
  border-color: #f09116;
  box-shadow: 0 0 8px rgba(240,145,22,0.3);
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #8f9bb3;
}

.request-form select option {
  background: #0a0c10;
}

.submit-btn {
  background: linear-gradient(105deg, #f09116, #ffb347);
  color: #0a0c10;
  font-weight: 700;
  padding: 12px 24px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(105deg, #ffa425, #f09116);
  box-shadow: 0 8px 20px rgba(240,145,22,0.4);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.info-card {
  background: rgba(20, 25, 33, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(240,145,22,0.3);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: #f09116;
  box-shadow: 0 0 20px rgba(240,145,22,0.2);
}

.info-card i {
  font-size: 2.2rem;
  color: #f5a623;
  margin-bottom: 1rem;
  display: inline-block;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.info-card p {
  color: #bdc7db;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* ============================================
   DURATION BUTTONS STYLES
   ============================================ */

.form-label {
  display: block;
  color: #cddfef;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.duration-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.duration-btn {
  background: rgba(10, 12, 16, 0.8);
  border: 1px solid rgba(240, 145, 22, 0.3);
  border-radius: 40px;
  padding: 10px 20px;
  color: #cddfef;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.duration-btn:hover {
  border-color: #f09116;
  background: rgba(240, 145, 22, 0.1);
  transform: translateY(-2px);
}

.duration-btn.active {
  background: linear-gradient(105deg, #f09116, #ffb347);
  color: #0a0c10;
  border-color: #f09116;
  box-shadow: 0 4px 12px rgba(240, 145, 22, 0.3);
}

@media (max-width: 1000px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BUSINESS PAGE STYLES
   ============================================ */

#business-header {
  text-align: center;
  padding: 2rem 1rem;
  background: radial-gradient(ellipse at 70% 30%, rgba(240,145,22,0.1), transparent 70%);
}

#business-header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 20%, #f5b042 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.2rem;
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  from { text-shadow: 0 0 5px rgba(240,145,22,0.3); }
  to { text-shadow: 0 0 20px rgba(240,145,22,0.6); }
}

#business-header p {
  font-size: 1.2rem;
  color: #cfddee;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.business-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.business-features .feature-card {
  background: rgba(20, 25, 33, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(240,145,22,0.3);
}

.business-features .feature-card:hover {
  transform: translateY(-8px);
  border-color: #f09116;
  box-shadow: 0 0 25px rgba(240,145,22,0.2);
}

.business-features .feature-card i {
  font-size: 2.5rem;
  color: #f5a623;
  margin-bottom: 1rem;
  display: inline-block;
}

.business-features .feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.business-features .feature-card p {
  color: #bdc7db;
  line-height: 1.5;
  font-size: 0.9rem;
}

.business-cta {
  text-align: center;
  margin: 2rem auto 4rem;
}

.business-cta .cta-btn {
  background: linear-gradient(105deg, #f09116, #ffb347);
  color: #0a0c10;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.business-cta .cta-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(105deg, #ffa425, #f09116);
  box-shadow: 0 8px 20px rgba(240,145,22,0.4);
}

@media (max-width: 900px) {
  .business-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .business-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DRIVERS PAGE STYLES
   ============================================ */

#drivers-header {
  text-align: center;
  padding: 2rem 1rem;
  background: radial-gradient(ellipse at 70% 30%, rgba(240,145,22,0.1), transparent 70%);
}

#drivers-header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 20%, #f5b042 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.2rem;
  animation: glowPulse 2s infinite alternate;
}

#drivers-header p {
  font-size: 1.2rem;
  color: #cfddee;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.drivers-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.drivers-features .feature-card {
  background: rgba(20, 25, 33, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(240,145,22,0.3);
}

.drivers-features .feature-card:hover {
  transform: translateY(-8px);
  border-color: #f09116;
  box-shadow: 0 0 25px rgba(240,145,22,0.2);
}

.drivers-features .feature-card i {
  font-size: 2.5rem;
  color: #f5a623;
  margin-bottom: 1rem;
  display: inline-block;
}

.drivers-features .feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.drivers-features .feature-card p {
  color: #bdc7db;
  line-height: 1.5;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .drivers-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .drivers-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FAQ PAGE STYLES - INTERACTIVE ACCORDION
   ============================================ */

#faq-header {
  text-align: center;
  padding: 2rem 1rem;
  background: radial-gradient(ellipse at 70% 30%, rgba(240,145,22,0.1), transparent 70%);
}

#faq-header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 20%, #f5b042 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

#faq-header p {
  font-size: 1.1rem;
  color: #cfddee;
  max-width: 700px;
  margin: 0 auto;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.faq-item {
  background: rgba(20, 25, 33, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(240,145,22,0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: #f09116;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(240,145,22,0.1);
}

.faq-question i:first-child {
  font-size: 1.5rem;
  color: #f5a623;
  width: 32px;
}

.faq-question h3 {
  flex: 1;
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0;
}

.faq-toggle {
  font-size: 1rem;
  color: #f5a623;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: #bdc7db;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  margin: 0;
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */

.theme-toggle {
  background: rgba(240, 145, 22, 0.2);
  border: 1px solid rgba(240, 145, 22, 0.5);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #f5a623;
  font-size: 1.2rem;
  margin-left: 1rem;
}

.theme-toggle:hover {
  background: #f09116;
  color: #0a0c10;
  transform: scale(1.05);
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */

.theme-toggle {
  background: rgba(240, 145, 22, 0.2);
  border: 1px solid rgba(240, 145, 22, 0.5);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #f5a623;
  font-size: 1.2rem;
  margin-left: 1rem;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: #f09116;
  color: #0a0c10;
  transform: scale(1.05);
}

/*Whatsapp Chat Bubble*/
.whatsapp-bubble {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25D366;
      color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      z-index: 1000;
    }
    .whatsapp-bubble:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    }
    .whatsapp-bubble i {
      font-size: 28px;
    }
    /* Tooltip */
    .whatsapp-bubble::after {
      content: "Need help? Chat with us";
      position: absolute;
      bottom: 70px;
      right: 0;
      background: #333;
      color: #fff;
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 0.85rem;
      white-space: nowrap;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
    }
    .whatsapp-bubble:hover::after {
      opacity: 1;
      transform: translateY(0);
    }

/* ============================================
   LIGHT MODE STYLES - LIGHT BACKGROUNDS, DARK TEXT
   ============================================ */

body.light-mode {
  background: #f5f7fa;
  color: #1a1a2e;
}

body.light-mode #hero {
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.8)), url("images/IMG-20260514-WA0021.jpg") no-repeat center center;
  background-size: cover;
}

body.light-mode #hero h1 {
  color: #1a1a2e !important;
  background: none !important;
  text-shadow: none;
}

body.light-mode #hero p {
  color: #2d2d44;
}

body.light-mode nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(240, 145, 22, 0.3);
}

body.light-mode nav ul li a {
  color: #1a1a2e;
}

body.light-mode nav ul li a i {
  color: #f09116;
}

body.light-mode nav ul li ul {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(240, 145, 22, 0.3);
}

body.light-mode nav ul li ul li a {
  color: #1a1a2e;
}

body.light-mode .logo img {
  filter: brightness(0.8);
}

body.light-mode h1 {
  background: linear-gradient(135deg, #1a1a2e 20%, #f09116 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.light-mode h2 {
  background: linear-gradient(120deg, #1a1a2e, #f09116);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.light-mode .solid-bg-section {
  background: #ffffff;
  border-top: 1px solid rgba(240, 145, 22, 0.2);
  border-bottom: 1px solid rgba(240, 145, 22, 0.2);
}

body.light-mode .stat-card,
body.light-mode .feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 145, 22, 0.3);
  box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.1);
}

body.light-mode .stat-card .stat-number {
  color: #f09116;
  text-shadow: none;
}

body.light-mode .stat-label,
body.light-mode .feature-card p {
  color: #4a4a6a;
}

body.light-mode .feature-card h3 {
  color: #1a1a2e;
}

body.light-mode .feature-card i,
body.light-mode .stat-card i {
  color: #f09116;
}

body.light-mode .testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 145, 22, 0.2);
}

body.light-mode .testimonial-card p {
  color: #2d2d44;
}

body.light-mode .testimonial-card h4 {
  color: #f09116;
}

body.light-mode .carousel-arrow {
  background: rgba(240, 145, 22, 0.15);
  border-color: rgba(240, 145, 22, 0.5);
  color: #f09116;
}

body.light-mode .carousel-arrow:hover {
  background: #f09116;
  color: #ffffff;
}

body.light-mode .dot {
  background: rgba(240, 145, 22, 0.3);
}

body.light-mode .dot.active {
  background: #f09116;
}

body.light-mode .cta-btn {
  background: linear-gradient(105deg, #f09116, #ffb347);
  color: #ffffff;
}

body.light-mode .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(240, 145, 22, 0.3);
}

body.light-mode .btn-outline {
  background: transparent;
  border: 2px solid #f09116;
  color: #f09116;
}

body.light-mode .btn-outline:hover {
  background: rgba(240, 145, 22, 0.1);
}

body.light-mode .btn-secondary {
  background: #e8ecf2;
  color: #f09116;
}

body.light-mode .btn-secondary:hover {
  background: #f09116;
  color: #ffffff;
}

body.light-mode #solution .feature-card {
  background: rgba(255, 255, 255, 0.95);
}

body.light-mode #solution .feature-card p {
  color: #4a4a6a;
}

body.light-mode #solution .feature-card h3 {
  color: #1a1a2e;
}

body.light-mode .landing-bg-section .overlay {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

body.light-mode .cta-sub {
  color: #4a4a6a;
}

body.light-mode footer {
  background: #ffffff;
  border-top: 1px solid rgba(240, 145, 22, 0.3);
}

body.light-mode .footer-col p,
body.light-mode .footer-col a {
  color: #4a4a6a;
}

body.light-mode .footer-col h4 {
  color: #f09116;
}

body.light-mode .footer-bottom {
  border-top-color: rgba(240, 145, 22, 0.2);
}

body.light-mode .footer-bottom p {
  color: #9ca3af;
}

body.light-mode .scroll-to-top {
  background: linear-gradient(135deg, #f09116, #ffb347);
  color: #ffffff;
}

body.light-mode .scroll-to-top:hover {
  background: linear-gradient(135deg, #ffa425, #f09116);
}

body.light-mode #particles-solution {
  opacity: 0.4;
}

body.light-mode #particles-footer {
  opacity: 0.4;
}

/* Light mode specific text colors */
body.light-mode .stat-number {
  color: #f09116;
}

body.light-mode .feature-card i,
body.light-mode .stat-card i {
  color: #f09116;
}

body.light-mode .testimonial-card i {
  color: #f09116;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .testimonial-carousel {
    width: 280px;
  }
  .testimonial-card {
    width: 260px;
  }
  .carousel-arrow {
    width: 38px;
    height: 38px;
  }
  h1 { font-size: 2.2rem; }
  section { padding: 3rem 1.2rem; }
}
/* Fleet owner's*/
.fleet-owner-fields {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px; /* consistent spacing between inputs */
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

input[type="number"], textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
