/* --- Section structure --- */
.section {
  padding: 4rem 0;
}
.section-muted {
  background: #f3f4f6;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}
.section-header p {
  color: #6b7280;
  font-size: 0.98rem;
}

/* Destinations pills */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.destination-pill {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}
.destination-pill h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: #0f172a;
}
.destination-pill p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* --- Tours tabs --- */
.tour-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: #e5e7eb;
  margin: 0 auto 2rem;
}
.tour-tab {
  border: none;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  background: transparent;
  color: #374151;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.tour-tab:hover {
  background: rgba(255, 255, 255, 0.8);
}
.tour-tab.active {
  background: #0f766e;
  color: #ecfdf5;
  box-shadow: 0 12px 25px rgba(15, 118, 110, 0.35);
}

.tour-panes {
  margin-top: 1rem;
}
.tour-pane {
  display: none;
}
.tour-pane.active {
  display: block;
}

/* Tours grid & cards */
.tours-grid {
  margin-bottom: 1.5rem;
}
.tour-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tour-card h3 {
  font-size: 1.05rem;
  color: #0f172a;
}
.tour-card p {
  font-size: 0.92rem;
  color: #4b5563;
}

/* Pills inside cards */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #ecfeff;
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 500;
  margin-right: 0.25rem;
}

/* Meta / price / CTA */
.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.tour-price {
  font-size: 0.96rem;
  color: #0f172a;
}
.tour-price strong {
  font-weight: 700;
}

.tour-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
}
.btn-block {
  width: 100%;
  text-align: center;
}

.link-small {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.8rem;
  color: #0f766e;
  text-decoration: underline;
  cursor: default;
}

.tours-note {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Coming soon pane */
.tours-coming-soon {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.tours-coming-soon h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.coming-label {
  display: inline-flex;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: #f97316;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

/* Layout helpers for about, why, contact */
.why-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}
.section-header-left {
  text-align: left;
  margin-left: 0;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.feature-list li {
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  color: #4b5563;
}
.payment-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.7rem;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.09);
}
.payment-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #4b5563;
}
.payment-list li {
  margin-bottom: 0.4rem;
}
.payment-note {
  font-size: 0.85rem;
  color: #6b7280;
}

.about-highlight {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 1.25rem;
  padding: 1.4rem 1.6rem;
}
.about-highlight h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.about-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.about-highlight li {
  margin-bottom: 0.4rem;
}

.social-strip {
  background: #0f766e;
  color: #ecfdf5;
}
.social-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.social-links a {
  margin-left: 0.6rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #ecfdf5;
  border-bottom: 1px solid transparent;
}
.social-links a:hover {
  border-bottom-color: #ecfdf5;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: #4b5563;
}
.contact-list a {
  color: #0f766e;
}
.contact-form {
  background: #f9fafb;
  border-radius: 1.3rem;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}
.form-row {
  margin-bottom: 0.9rem;
}
.form-row label {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.2rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .social-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .tour-tabs {
    justify-content: flex-start;
    border-radius: 1rem;
  }
}
