/* =====================
   Global Styles
===================== */
body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, Roboto, Arial, sans-serif;
  background: orange;
  color: #222;
  font-weight: bold;
}

/* =====================
   Header & Navigation
===================== */
header {
  background-color: #01210b; /* Jungle Green */
  color: white;
  padding: 15px 20px;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 span {
  color: orange;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: white;
}

nav a:hover {
  border-bottom: 2px solid orange;
}

nav a.active {
  font-weight: bold;
  border-bottom: 2px solid orange;
}

/* =====================
   Home Section
===================== */
.home-section {
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.banner-bg {
  background-image: url("../images/banner 2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
}

/* =====================
   WhatsApp Button
===================== */
.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 15px;
  font-size: 16px;
  transition: transform 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* =====================
   Services
===================== */
#services {
  padding: 50px 20px;
  background: orange;
}

.service-card {
  background: #f1f1f1;
  padding: 20px;
  border-left: 5px solid orange;
  border-radius: 8px;
  margin-bottom: 30px;
}

.carousel-item img {
  height: 180px;
  border-radius: 10px;
  max-width: 300px;
  cursor: pointer;
  margin: 0 5px;
  transition: transform 0.3s;
}

.carousel-item img:hover {
  transform: scale(1.08);
}

/* =====================
   Contact Section
===================== */
#contact {
  padding: 40px 20px;
  background-color: orange;
  text-align: center;
}

.contact-img {
  width: 100%;
  max-width: 100px;
  margin-top: 15px;
  border-radius: 8px;
}

/* =====================
   Footer
===================== */
footer {
  background: orange;
  color: black;
  text-align: center;
  padding: 10px;
}

/* =====================
   Courier Section
===================== */
.courier-card {
  max-width: 820px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-left: 5px solid orange;
}

.courier-card h3 {
  color: darkgreen;
  font-weight: bold;
  margin-top: 0;
}

.courier-question {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.form-label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.form-control,
.form-select,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 15px;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: darkgreen;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 127, 95, 0.4);
}

#map {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-top: 12px;
}

#priceDisplay {
  font-size: 18px;
  font-weight: bold;
  color: darkgreen;
  margin-top: 12px;
}

/* Buttons */
.courier-btn {
  background-color: darkgreen;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.courier-btn:hover {
  background-color: #005f45;
}

/* Inline fields */
.inline {
  display: flex;
  gap: 8px;
  align-items: center;
}

.section-title {
  font-size: 1.8rem;       /* smaller than default h1 */
  color: #333;          
  margin-bottom: 15px;
  font-weight: bold;
}

.sub-title {
  font-size: 1.2rem;       /* neat subheading */
  color: #333;
  margin: 15px 0 10px;
  font-weight: 600;
}

.sub-title i {
  color: #29AB87;          /* jungle green icons */
  margin-right: 8px;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #29AB87;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #218b6f; /* darker jungle green on hover */
}
