/* css/machame-style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
              url('https://images.unsplash.com/photo-1489392191049-fc10c97e64b6?q=80&w=1167&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  color: white;
  padding: 100px 20px 60px;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.offered-by { font-size: 1.2rem; margin-bottom: 10px; color:sandybrown; }
.rating { font-size: 1.1rem; }

/* Duration Tabs */
.duration-tabs {
  background: #f1f1f1;
  padding: 15px 0;
  text-align: center;
}

.duration-tab {
  padding: 12px 35px;
  margin: 0 8px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s;
}

.duration-tab.active {
  background: #ff8c42;
  color: white;
}

/* Navigation Tabs */
.nav-tabs {
  background: white;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-tab {
  padding: 18px 30px;
  cursor: pointer;
  color: #555;
  font-weight: 500;
  border-bottom: 4px solid transparent;
  transition: all 0.3s;
}

.nav-tab.active {
  color: #ff8c42;
  border-bottom: 4px solid #ff8c42;
  font-weight: 600;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Day by Day */
.day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0 30px;
}

.day-tab {
  padding: 12px 24px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.day-tab.active {
  background: #ff8c42;
  color: white;
  border-color: #ff8c42;
}

/* Day Content Card */
.day-content {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.day-number {
  width: 65px;
  height: 65px;
  background: #ff8c42;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

.day-title {
  font-size: 1.6rem;
  color: #222;
}

.day-description {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 20px 0;
  color: #444;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.info-item {
  background: #f9f9f9;
  padding: 18px;
  border-radius: 10px;
  border-left: 5px solid #ff8c42;
}

.info-item strong {
  color: #ff8c42;
  display: block;
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .nav-tabs { flex-direction: column; }
  .nav-tab { padding: 15px; text-align: center; }
  .day-header { flex-direction: column; text-align: center; }
}



.container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    h2 {
      font-size: 1.8rem;
      margin-bottom: 25px;
      color: #222;
      border-bottom: 2px solid #eee;
      padding-bottom: 10px;
    }

    /* Route Section */
    .route-section {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 60px;
    }

    .map-container {
      flex: 1;
      min-width: 300px;
    }

    .map-container img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .route-info {
      flex: 1;
      min-width: 300px;
    }

    .route-list {
      list-style: none;
    }

    .route-list li {
      padding: 12px 0;
      border-bottom: 1px solid #eee;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .route-list li:last-child {
      border-bottom: none;
    }

    .dot {
      width: 10px;
      height: 10px;
      background: #e63939;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* Tour Features */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px 40px;
      margin-bottom: 60px;
    }

    .feature-item {
      display: flex;
      gap: 18px;
    }

    .feature-icon {
      font-size: 32px;
      width: 55px;
      height: 55px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .feature-content h3 {
      font-size: 1.15rem;
      margin-bottom: 6px;
      color: #222;
    }

    .feature-content p {
      color: #555;
      font-size: 0.97rem;
    }

    /* Activities & Transportation */
    .activity-item {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 18px;
    }

    .activity-item .icon {
      font-size: 28px;
      width: 50px;
    }

    /* Accommodation Table */
    .accommodation-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.06);
      border-radius: 12px;
      overflow: hidden;
      margin-top: 20px;
    }

    .accommodation-table th {
      background: #f0f8ff;
      padding: 16px 20px;
      text-align: left;
      font-weight: 600;
    }

    .accommodation-table td {
      padding: 16px 20px;
      border-top: 1px solid #eee;
    }

    .accommodation-table tr:nth-child(even) {
      background: #fafafa;
    }

    .note {
      display: flex;
      gap: 10px;
      margin: 25px 0;
      color: #555;
      font-size: 0.98rem;
    }

    @media (max-width: 768px) {
      .route-section {
        flex-direction: column;
      }
      .features-grid {
        grid-template-columns: 1fr;
      }
    }



    /* ====================== RATES SECTION - Specific Styles ====================== */

.rates-section {
  margin: 60px 0;
}

.rates-section h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: #222;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
}

/* Important to Know Box */
.important-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  margin-bottom: 50px;
}

.important-box ul {
  list-style: none;
}

.important-box li {
  margin-bottom: 14px;
  padding-left: 5px;
}

.important-box li::before {
  content: "›";
  color: #ff8c42;
  font-weight: bold;
  margin-right: 10px;
}

.highlight {
  color: #e63939;
  font-weight: 600;
}

/* Rates Table */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}

.rates-table th {
  background: #f8f9fa;
  padding: 16px 12px;
  text-align: center;
  font-weight: 600;
  color: #222;
  border-bottom: 2px solid #eee;
}

.rates-table td {
  padding: 16px 12px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.rates-table tr:last-child td {
  border-bottom: none;
}

.rates-table .start-date {
  text-align: left;
  font-weight: 600;
  background: #f0f8ff;
}

.get-quote-btn {
  background: #ff8c42;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
}

.get-quote-btn:hover {
  background: #e67e22;
  transform: translateY(-2px);
}

.rates-note {
  font-size: 0.92rem;
  color: #666;
  margin-top: 20px;
  font-style: italic;
}

/* Responsive for Rates */
@media (max-width: 992px) {
  .rates-table th, 
  .rates-table td {
    padding: 12px 8px;
    font-size: 0.95rem;
  }
}

/* ====================== INCLUSIONS & EXCLUSIONS SECTION ====================== */

.inclusions-section {
  margin: 70px 0;
}

.inclusions-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #222;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.included-box, .excluded-box {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.section-header h3 {
  font-size: 1.5rem;
  color: #222;
}

.icon {
  font-size: 28px;
  font-weight: bold;
}

.icon.included {
  color: #2e7d32;
}

.icon.excluded {
  color: #d32f2f;
}

.included-box ul, .excluded-box ul {
  list-style: none;
}

.included-box li, .excluded-box li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.included-box li:last-child, .excluded-box li:last-child {
  border-bottom: none;
}

.included-box small, .excluded-box small {
  color: #666;
  font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 992px) {
  .inclusions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* ====================== GETTING THERE SECTION - SAFE STYLES ====================== */

.getting-there-section {
  margin: 70px 0;
}

.getting-there-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #222;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
}

.getting-list {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  margin-bottom: 50px;
}

.getting-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.getting-item:last-child {
  border-bottom: none;
}

.getting-item .icon {
  font-size: 28px;
  width: 40px;
  flex-shrink: 0;
  margin-top: 2px;
}

.getting-item strong {
  color: #222;
}

.info-icon {
  color: #666;
  cursor: help;
  margin-left: 5px;
}

/* Call to Action */
.cta-section {
  text-align: center;
  margin-top: 40px;
}

.cta-section h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #222;
}

.quote-btn {
  display: inline-block;
  background: #ff8c42;
  color: white;
  padding: 16px 40px;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 15px rgba(255, 140, 66, 0.3);
}

.quote-btn:hover {
  background: #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 140, 66, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .getting-list {
    padding: 25px 20px;
  }
  .quote-btn {
    padding: 14px 35px;
    font-size: 1.1rem;
  }
}