html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: white;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  padding-top: 120px;
  background:
linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)),
url("images/van-hero.jpg");

background-size: cover;
background-position: 50% center;
}

.hero h1 {
  font-size: 56px;
  max-width: 700px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 500px;
  color: #d0d0d0;
}

.button {
  margin-top: 25px;
  background: #6f7f45;
  color: white;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  width: fit-content;
  font-weight: bold;
  transition: 0.3s ease;
}
.button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  box-sizing: border-box;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.nav-links a:hover {
  color: #6f7f45;
}.how-it-works {
  background: #0f0f0f;
  padding: 90px 40px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 42px;
  margin-bottom: 50px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: #171717;
  padding: 35px 25px;
  border-radius: 20px;
  border: 1px solid #2a2a2a;
}

.step-card span {
  color: #6f7f45;
  font-weight: bold;
  font-size: 18px;
}

.step-card h3 {
  font-size: 24px;
  margin: 15px 0 10px;
}

.step-card p {
  color: #d0d0d0;
  font-size: 16px;
}.packages {
  padding: 100px 40px;
  background: #111;
  text-align: center;
}

.packages h2 {
  font-size: 42px;
  margin-bottom: 60px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.package-card {
  background: #171717;
  border-radius: 20px;
  padding: 40px 25px;
  border: 1px solid #2a2a2a;
  transition: 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: #6f7f45;
}

.package-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.package-card h2 {
  font-size: 52px;
  color: #6f7f45;
  margin-bottom: 15px;
}

.package-card p {
  color: #d0d0d0;
}

.featured {
  border: 2px solid #6f7f45;
}.contact {
  background: #0f0f0f;
  padding: 100px 40px;
  text-align: center;
}

.contact h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.contact p {
  color: #d0d0d0;
  font-size: 18px;
  margin-bottom: 35px;
}

.secondary {
  background: transparent;
  border: 1px solid #6f7f45;
  margin-left: 15px;
}.footer {
  padding: 30px;
  text-align: center;
  background: #0a0a0a;
  color: #888;
  font-size: 14px;
}

.footer p {
  margin: 6px 0;
}

.footer a {
  color: #888;
  text-decoration: underline;
}

.footer a:hover {
  color: #6f7f45;
}.logo img {
  height: 45px;
}@media (max-width: 900px) {
  .navbar {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 15px;
}
  

  .nav-links {
    gap: 18px;
    font-size: 14px;
  }

  .hero {
    min-height: 100vh;
    padding: 30px 22px;
    background-position: center;
  }

  .hero h1 {
    font-size: 42px;
    max-width: 100%;
  }

  .hero p {
    font-size: 18px;
    max-width: 100%;
  }

  .steps,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works,
  .packages,
  .contact {
    padding: 70px 22px;
  }

  .contact .button {
    display: block;
    margin: 15px auto;
    width: fit-content;
  }
}

@media (max-width: 500px) {
  .hero h1 {
  font-size: 32px;
  line-height: 1.1;
}

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .package-card,
  .step-card {
    padding: 30px 20px;
  }
  .delivery-grid {
  grid-template-columns: 1fr;
}
}

.step-card,
.package-card,
.contact,
.hero-text {
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}.faq {
  background: #111;
  padding: 90px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
}

details {
  background: #171717;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 18px;
}

summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}

details p {
  color: #d0d0d0;
  margin-top: 15px;
}.floating-call {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #6f7f45;
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s ease;
}

.floating-call:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}.enquiry-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: #171717;
  color: white;
  font-size: 16px;
}

.enquiry-form input[readonly] {
  color: #a7b86b;
  cursor: default;
}

.enquiry-form textarea {
  min-height: 130px;
  resize: vertical;
}

.enquiry-form button {
  border: none;
  cursor: pointer;
  align-self: center;
}

@media (max-width: 700px) {
  .hero {
    background:
    linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)),
    url("images/crates.jpg");

    background-size: cover;
    background-position: center;
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.3;
  }
  .testimonial-grid {
  grid-template-columns: 1fr;
}
}.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}.package-card:hover,
.step-card:hover {
  box-shadow: 0 0 30px rgba(111, 127, 69, 0.25);
}.loader {
  position: fixed;
  inset: 0;
  background: #050505;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;

  animation: fadeOut 1s ease forwards;
  animation-delay: 1.2s;
}

.loader-logo {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 6px;
  color: #6f7f45;

  animation: pulse 1.2s ease infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.5;
    transform: scale(0.98);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}.service-area,
.testimonials {
  padding: 90px 40px;
  background: #0f0f0f;
  text-align: center;
}

.service-area h2,
.testimonials h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.service-area p {
  max-width: 800px;
  margin: 0 auto;
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 40px auto 0;
}

.testimonial-card {
  background: #171717;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 35px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.5;
}

.testimonial-card span {
  color: #6f7f45;
  font-weight: bold;
}

.review-cta {
  max-width: 700px;
  margin: 0 auto;
  background: #171717;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 45px 35px;
  text-align: center;
}

.review-cta p {
  font-size: 20px;
  color: #d0d0d0;
  margin-bottom: 25px;
}

.review-cta .button {
  margin: 0 auto;
}.delivery-info {
  padding: 90px 40px;
  background: #111;
  text-align: center;
}

.delivery-info h2 {
  font-size: 42px;
  margin-bottom: 45px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.delivery-card {
  background: #171717;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 35px 25px;
}

.delivery-card h3 {
  color: #6f7f45;
  font-size: 22px;
  margin-bottom: 15px;
}

.delivery-card p {
  color: #d0d0d0;
  line-height: 1.5;
}.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    font-size: 0.9rem;
}

.terms-checkbox input {
    margin-top: 4px;
}

.terms-checkbox a {
    color: #fff;
    text-decoration: underline;
}.terms-container {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 20px;
    line-height: 1.8;
}

.terms-container h1 {
    margin-bottom: 10px;
}

.terms-container h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}.terms-checkbox {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    color: white;
    font-size: 0.9rem;
    text-align: center;
}

.terms-checkbox input {
    margin-top: 5px;
}

.terms-checkbox a {
    color: #a7b86b;
    text-decoration: underline;
}

.terms-checkbox a:hover {
    opacity: 0.8;
}

/* ---- Availability Calendar ---- */
.availability {
  padding: 90px 40px;
  background: #111;
  text-align: center;
}

.availability h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.availability > p {
  color: #d0d0d0;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.calendar {
  max-width: 480px;
  margin: 0 auto;
  background: #171717;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 30px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header h3 {
  font-size: 22px;
  margin: 0;
}

.cal-nav {
  background: transparent;
  border: 1px solid #2a2a2a;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease;
}

.cal-nav:hover {
  border-color: #6f7f45;
  color: #6f7f45;
}

.cal-nav:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 10px;
  color: #888;
  font-size: 13px;
  font-weight: bold;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
}

.cal-day.empty {
  visibility: hidden;
}

.cal-day.unavailable {
  background: #0a0a0a;
  color: #444;
  text-decoration: line-through;
}

.cal-day.available {
  background: #1f1f1f;
  border: 1px solid #6f7f45;
  color: white;
  cursor: pointer;
  transition: 0.2s ease;
}

.cal-day.available:hover {
  background: #6f7f45;
  color: #0f0f0f;
}

.cal-day.selected {
  background: #6f7f45;
  color: #0f0f0f;
  font-weight: bold;
}

.calendar-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  font-size: 14px;
  color: #d0d0d0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}

.dot.available {
  background: #1f1f1f;
  border: 1px solid #6f7f45;
}

.dot.unavailable {
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
}

.dot.selected {
  background: #6f7f45;
}

#selectedDateDisplay {
  margin-top: 25px;
  font-weight: bold;
  color: #d0d0d0;
  min-height: 24px;
}

#selectedDateDisplay.error {
  color: #e07a5f;
}

.calendar-note {
  margin-top: 10px;
  color: #888;
  font-size: 14px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 500px) {
  .calendar {
    padding: 20px 15px;
  }

  .cal-day {
    font-size: 12px;
  }

  .calendar-header h3 {
    font-size: 18px;
  }
}