/* ===============================
   Global Styles
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fdfbf7;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===============================
   Header / Navbar
================================ */
.header {
  background: #5a3e1b;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.nav-brand h2 {
  color: #f1c27d;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #f1c27d;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 5px;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: -100%;
    background: #5a3e1b;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    transition: 0.3s;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }
}

/* ===============================
   Hero Section
================================ */
.tour-detail-hero {
  background: url('../img/eco-safari-hero.webp') center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.tour-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  margin-bottom: 10px;
  font-size: 0.9em;
}

.breadcrumb a {
  color: #f1c27d;
}

.hero-subtitle {
  font-size: 1.2em;
  margin-top: 10px;
}

.tour-quick-info {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.quick-info-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 6px;
  color: #f1c27d;
  font-weight: 600;
}

/* ===============================
   Tour Details
================================ */
.container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

.tour-details {
  padding: 60px 0;
}

.tour-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

@media (max-width: 992px) {
  .tour-content-grid {
    grid-template-columns: 1fr;
  }
}

.content-section {
  margin-bottom: 30px;
}

.content-section h2 {
  color: #5a3e1b;
  margin-bottom: 15px;
  border-left: 4px solid #f1c27d;
  padding-left: 10px;
}

.included-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===============================
   Itinerary
================================ */
.itinerary-timeline {
  margin-top: 15px;
  border-left: 3px solid #f1c27d;
  padding-left: 20px;
}

.timeline-item {
  margin-bottom: 20px;
}

.timeline-time {
  font-weight: 600;
  color: #5a3e1b;
}

.timeline-content h4 {
  color: #333;
  margin: 5px 0;
}

/* ===============================
   Booking Sidebar
================================ */
.tour-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-card {
  background: #fffaf3;
  border: 1px solid #e0c49c;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-header {
  text-align: center;
  margin-bottom: 15px;
}

.price {
  font-size: 2em;
  color: #5a3e1b;
  font-weight: 700;
}

.per-person {
  color: #888;
  font-size: 0.9em;
}

.booking-form .form-group {
  margin-bottom: 15px;
}

.booking-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #d8b887;
  border-radius: 6px;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #5a3e1b;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #5a3e1b;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #f1c27d;
  color: #5a3e1b;
}

.booking-features {
  margin-top: 15px;
}

.booking-features .feature {
  margin-bottom: 8px;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

/* ===============================
   Contact Card
================================ */
.contact-card {
  background: #fdf8f1;
  border: 1px solid #e0c49c;
  border-radius: 10px;
  padding: 20px;
}

.contact-card h3 {
  margin-bottom: 15px;
  color: #5a3e1b;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-item i {
  font-size: 1.4em;
  color: #f1c27d;
}

.contact-item strong {
  color: #5a3e1b;
}

/* ===============================
   Footer
================================ */
.footer {
  background: #5a3e1b;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-section h3,
.footer-section h4 {
  color: #f1c27d;
  margin-bottom: 15px;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #fff;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #f1c27d;
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  font-size: 0.9em;
}
