/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* ================= HEADER ================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #0b5ed7;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #0b5ed7;
}

.call-btn {
  background: #0b5ed7;
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}

/* ================= HERO ================= */
.hero {
  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("../images/hero/hero-bg.jpg") center/cover no-repeat;
  text-align: center;
  padding: 120px 20px 80px;
  color: #ffffff;
}

.hero h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 10px;
  font-size: 16px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: #0b5ed7;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

/* ================= SECTIONS ================= */
section {
  padding: 80px 20px;
  scroll-margin-top: 90px;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

/* ================= GRID ================= */
.grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ================= CARD ================= */
.card {
  background: #ffffff;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 10px;
  color: #0b5ed7;
}

/* ================= CENTER TEXT ================= */
.center-text {
  max-width: 900px;
  margin: auto;
  text-align: center;
  font-size: 16px;
}

/* ================= TESTIMONIALS ================= */
.testimonial-wrapper {
  max-width: 900px;
  margin: auto;
  background: #e9f1ff;
  padding: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-slider {
  flex: 1;
  text-align: center;
}

.testimonial {
  display: none;
  font-style: italic;
  font-size: 16px;
}

.testimonial strong {
  display: block;
  margin-top: 10px;
}

.testimonial.active {
  display: block;
}

.arrow {
  background: #0b5ed7;
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
}

.arrow:hover {
  background: #094db1;
}

/* ================= FORM ================= */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  padding: 12px;
  background: #0b5ed7;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-info {
  margin-top: 20px;
}

/* ================= FOOTER ================= */
footer {
  background: #0b5ed7;
  color: #ffffff;
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
}

footer p {
  margin: 5px 0;
}

/* SERVICE COLORS */
.service-1 { border-top: 4px solid #0b5ed7; }
.service-2 { border-top: 4px solid #198754; }
.service-3 { border-top: 4px solid #fd7e14; }
.service-4 { border-top: 4px solid #6610f2; }
.service-5 { border-top: 4px solid #d63384; }
.service-6 { border-top: 4px solid #20c997; }

/* TOUR COLORS */
.tour-1 { border-top: 4px solid #0b5ed7; }
.tour-2 { border-top: 4px solid #198754; }
.tour-3 { border-top: 4px solid #fd7e14; }
.tour-4 { border-top: 4px solid #6610f2; }
.tour-5 { border-top: 4px solid #d63384; }
.tour-6 { border-top: 4px solid #20c997; }

/* TESTIMONIAL BOX */
.testimonial-wrapper {
  background: #f0f6ff;
}

/* CONTACT SPACING */
.contact-info {
  margin-top: 20px;
}

/* VEHICLE IMAGE */
.vehicle-img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .testimonial-wrapper {
    flex-direction: column;
  }
}
