/* ============================================
  GLOBAL STYLES & VARIABLES
  ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #c3ee04;
  --secondary-color: #d9ff00;
  --dark-bg: #0b1220;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --card-bg: rgba(195, 238, 4, 0.05);
}

body {
  font-family: 'Campton', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
  HEADER & NAVIGATION
  ============================================ */
.site-header {
  background-color: rgba(11, 18, 32, 0.95);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(195, 238, 4, 0.1);
}

.header-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}

.logo-img {
  max-height: 50px;
  width: auto;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--primary-color);
}

.cta, .menu-toggle {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta:hover, .menu-toggle:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  padding: 10px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.nav.open .cta {
  display: inline-block;
  margin-top: 10px;
}

/* ============================================
  CONTAINER & UTILITIES
  ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
  HERO SECTION
  ============================================ */
.hero {
  background: linear-gradient(135deg, rgba(11, 18, 32, 0.8), rgba(195, 238, 4, 0.1));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23c3ee04" opacity="0.1"/></svg>');
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn.primary {
  background-color: var(--primary-color);
  color: var(--dark-bg);
}

.btn.primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(195, 238, 4, 0.3);
}

.btn.ghost {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn.ghost:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
}

/* ============================================
  FEATURES & CARDS
  ============================================ */
.features {
  padding: 80px 0;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: var(--card-bg);
  border: 1px solid rgba(195, 238, 4, 0.2);
  padding: 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 16px rgba(195, 238, 4, 0.15);
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
  ABOUT SECTION
  ============================================ */
.about {
  padding: 80px 0;
  background-color: rgba(195, 238, 4, 0.05);
  border-radius: 8px;
  margin: 40px 0;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.about p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================
  FAQ SECTION
  ============================================ */
.faq {
  padding: 80px 0;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.faq-list {
  display: grid;
  gap: 15px;
}

.faq-item h3 {
  background: rgba(195, 238, 4, 0.1);
  padding: 20px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.faq-item h3:hover {
  background: rgba(195, 238, 4, 0.2);
}

.faq-item h3 i {
  transition: transform 0.3s ease;
}

.answer {
  background: var(--card-bg);
  padding: 20px;
  border-left: 3px solid var(--primary-color);
  color: var(--text-muted);
  border-radius: 0 5px 5px 0;
}

/* ============================================
  TESTIMONIALS SECTION
  ============================================ */
.testimonials {
  padding: 80px 0;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 20px;
}

.testimonial-content {
  width: 80%;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(195, 238, 4, 0.1);
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial blockquote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial cite {
  color: var(--primary-color);
  font-style: normal;
  font-weight: 600;
}

.arrow {
  background: var(--secondary-color);
  color: var(--dark-bg);
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.arrow:hover {
  transform: scale(1.1);
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

/* ============================================
  LEAVE REVIEW FORM
  ============================================ */
.leave-review {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.leave-review h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.leave-review form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.leave-review input,
.leave-review textarea,
.leave-review select {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(195, 238, 4, 0.2);
  border-radius: 5px;
  color: var(--text-light);
  font-family: inherit;
  transition: all 0.3s ease;
}

.leave-review input:focus,
.leave-review textarea:focus,
.leave-review select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(195, 238, 4, 0.2);
}

.leave-review input::placeholder,
.leave-review textarea::placeholder {
  color: var(--text-muted);
}

/* ============================================
  CONTACT SECTION
  ============================================ */
.contact {
  padding: 80px 0;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.contact-form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(195, 238, 4, 0.2);
  border-radius: 5px;
  color: var(--text-light);
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(195, 238, 4, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form button {
  align-self: flex-start;
}

/* ============================================
  FOOTER
  ============================================ */
.site-footer {
  background-color: rgba(11, 18, 32, 0.95);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(195, 238, 4, 0.1);
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.site-footer h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.site-footer p {
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--secondary-color);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1.5rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(195, 238, 4, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
}

.useful-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.useful-links a {
  font-size: 0.95rem;
}

.newsletter input {
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(195, 238, 4, 0.2);
  border-radius: 5px;
  color: var(--text-light);
}

.newsletter button {
  padding: 8px 16px;
  background: var(--primary-color);
  color: var(--dark-bg);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* ============================================
  MODALS
  ============================================ */
#notice-modal div, #how-it-works-modal div {
  background: rgba(11, 18, 32, 0.95);
  border: 1px solid rgba(195, 238, 4, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

#notice-modal button, #how-it-works-modal button {
  background: var(--primary-color);
  color: var(--dark-bg);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
}

#notice-modal button:hover, #how-it-works-modal button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* ============================================
  MOBILE RESPONSIVENESS
  ============================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 28px;
  }

  .nav {
   display: none;
   position: absolute;
   top: 60px;
   left: 0;
   right: 0;
   flex-direction: column;
   background: var(--dark-bg);
   padding: 20px;
   gap: 15px;
   border-bottom: 1px solid rgba(195, 238, 4, 0.1);
  }

  .nav.open {
   display: flex;
  }

  .menu-toggle {
   display: block;
  }

  .header-inner {
   flex-wrap: wrap;
  }

  .hero-text h1 {
   font-size: 1.8rem;
  }

  .hero-text p {
   font-size: 0.95rem;
  }

  .hero-ctas {
   flex-direction: column;
   gap: 10px;
  }

  .btn {
   padding: 12px 24px;
   font-size: 0.95rem;
  }

  .grid {
   grid-template-columns: 1fr;
   gap: 20px;
  }

  .card {
   padding: 20px;
  }

  .features h2, .about h2, .faq h2, .testimonials h2, .contact h2 {
   font-size: 1.5rem;
  }

  .testimonial-carousel {
   gap: 10px;
  }

  .testimonial-content {
   width: 95%;
  }

  .arrow {
   padding: 10px;
   font-size: 16px;
  }

  .footer-grid {
   grid-template-columns: 1fr;
   gap: 15px;
  }

  .socials, .useful-links {
   grid-column: auto;
  }

  .contact-info, .newsletter {
   text-align: center;
  }

  #notice-modal div, #how-it-works-modal div {
   width: 90%;
   padding: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 24px;
  }

  .hero {
   padding: 60px 0;
   min-height: 400px;
  }

  .hero-text h1 {
   font-size: 1.3rem;
  }

  .hero-text p {
   font-size: 0.9rem;
  }

  .btn {
   padding: 10px 16px;
   font-size: 0.85rem;
  }

  .features, .about, .faq, .testimonials, .contact {
   padding: 50px 0;
  }

  .features h2, .about h2, .faq h2, .testimonials h2, .contact h2 {
   font-size: 1.3rem;
   margin-bottom: 30px;
  }

  .card h3 {
   font-size: 1.1rem;
  }

  .card {
   padding: 15px;
  }

  .faq-item h3 {
   padding: 15px;
   font-size: 0.95rem;
  }

  .answer {
   padding: 15px;
   font-size: 0.9rem;
  }

  .testimonial {
   padding: 15px;
  }

  .testimonial blockquote {
   font-size: 0.9rem;
  }

  .leave-review h3 {
   font-size: 1.2rem;
  }

  .leave-review {
   padding: 20px;
  }

  .contact-form input, .contact-form textarea {
   width: 100%;
  }

  .contact-form button {
   width: 100%;
  }

  .site-footer {
   padding: 40px 0 15px;
  }

  .footer-grid {
   gap: 15px;
  }

  .socials {
   gap: 15px;
  }

  .useful-links {
   gap: 10px;
   font-size: 0.85rem;
  }

  .site-footer p {
   font-size: 0.9rem;
  }

  #notice-modal div, #how-it-works-modal div {
   width: 95%;
   padding: 15px;
  }

  #notice-modal div h2, #how-it-works-modal div h2 {
   font-size: 1.2rem;
  }
}

/* ============================================
  RESPONSIVE IMAGES
  ============================================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
  SMOOTH SCROLLING & ANIMATIONS
  ============================================ */
html {
  scroll-behavior: smooth;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.992);
  transition: opacity 560ms cubic-bezier(0.2, 0.9, 0.2, 1), transform 560ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* hero */
.hero{
  height:100vh;
  position:relative;
  background-image:url('images/delivery-van.png');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment:fixed;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg, rgba(5,13,31,0.75) 0%, rgba(5,13,31,0.55) 50%, rgba(5,13,31,0.3) 100%);
  z-index:1;
}