/* tanzania-safari.css — Tanzania Safari page styles */

/* ============================================================
   TANZANIA SAFARI HERO — Full-width landscape image
   ============================================================ */
.tz-hero {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 500px;
  max-height: 720px;
  overflow: hidden;
}
.tz-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

/* ============================================================
   TANZANIA INTRODUCTION
   ============================================================ */
.tz-intro {
  background: #fff;
  padding: 4.5rem 1.5rem 5rem;
}
.tz-intro-inner {
  max-width: 780px;
  margin: 0 auto;
}
.tz-intro p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
  letter-spacing: -0.005em;
  text-align: left;
}

/* ============================================================
   TANZANIA SAFARI HIGHLIGHTS
   ============================================================ */
.tz-highlights {
  background: var(--bg);
  padding: 5rem 1.5rem 5.5rem;
  border-top: 1px solid var(--border);
}
.tz-highlights-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.tz-highlights-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--foreground);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.tz-highlights-icon {
  font-size: 1.3em;
  line-height: 1;
}
.tz-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.tz-highlight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.tz-highlight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(210,160,80,0.25);
}
.tz-highlight-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--foreground);
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}
.tz-highlight-card p {
  font-size: 0.92rem;
  color: var(--muted-fg);
  line-height: 1.75;
}
.tz-highlight-card ul {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}
.tz-highlight-card ul li {
  font-size: 0.92rem;
  color: var(--muted-fg);
  line-height: 1.7;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}
.tz-highlight-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: hsl(38,65%,55%);
  border-radius: 50%;
}

/* ============================================================
   RESPONSIVE — Tablet (768px)
   ============================================================ */
@media (max-width: 768px) {
  .tz-hero {
    height: 55vh;
    min-height: 380px;
  }
  .tz-intro {
    padding: 3.5rem 1.25rem 4rem;
  }
  .tz-intro p {
    font-size: 1rem;
  }
  .tz-highlights {
    padding: 3.5rem 1.25rem 4rem;
  }
  .tz-highlights-heading {
    margin-bottom: 2rem;
  }
  .tz-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .tz-highlight-card {
    padding: 1.5rem 1.35rem;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (480px)
   ============================================================ */
@media (max-width: 480px) {
  .tz-hero {
    height: 48vh;
    min-height: 320px;
  }
  .tz-intro {
    padding: 2.5rem 1rem 3rem;
  }
  .tz-intro p {
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .tz-highlights {
    padding: 2.5rem 1rem 3.5rem;
  }
  .tz-highlights-heading {
    font-size: 1.35rem;
    margin-bottom: 1.75rem;
  }
  .tz-highlight-card {
    padding: 1.35rem 1.15rem;
  }
  .tz-highlight-card h3 {
    font-size: 1rem;
  }
  .tz-highlight-card p {
    font-size: 0.88rem;
  }
}

/* ============================================================
   TYPICAL TANZANIA SAFARI ITINERARY
   ============================================================ */
.tz-itinerary {
  background: #fff;
  padding: 5rem 1.5rem 5.5rem;
  border-top: 1px solid var(--border);
}
.tz-itinerary-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.tz-itinerary-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--foreground);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.tz-itinerary-intro {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #475569;
  max-width: 780px;
  margin-bottom: 3rem;
}
.tz-itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tz-itinerary-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.tz-itinerary-day {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: hsl(38,65%,45%);
  background: hsla(38,65%,55%,0.1);
  border: 1px solid hsla(38,65%,55%,0.25);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.85rem;
  align-self: flex-start;
}
.tz-itinerary-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--foreground);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.tz-itinerary-card p {
  font-size: 0.92rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

/* ============================================================
   RESPONSIVE — Itinerary Tablet (768px)
   ============================================================ */
@media (max-width: 768px) {
  .tz-itinerary {
    padding: 3.5rem 1.25rem 4rem;
  }
  .tz-itinerary-heading {
    margin-bottom: 0.75rem;
  }
  .tz-itinerary-intro {
    margin-bottom: 2rem;
  }
  .tz-itinerary-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .tz-itinerary-card {
    padding: 1.5rem 1.35rem;
  }
}

/* ============================================================
   RESPONSIVE — Itinerary Mobile (480px)
   ============================================================ */
@media (max-width: 480px) {
  .tz-itinerary {
    padding: 2.5rem 1rem 3.5rem;
  }
  .tz-itinerary-intro {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }
  .tz-itinerary-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .tz-itinerary-card {
    padding: 1.35rem 1.15rem;
  }
  .tz-itinerary-card h3 {
    font-size: 1rem;
  }
}

/* ============================================================
   TANZANIA WILDLIFE GALLERY
   ============================================================ */
.tz-gallery {
  background: #fff;
  padding: 0 1.5rem 5.5rem;
}
.tz-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.tz-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.tz-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.tz-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.tz-gallery-item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   RESPONSIVE — Gallery Tablet (768px)
   ============================================================ */
@media (max-width: 768px) {
  .tz-gallery {
    padding: 0 1.25rem 4rem;
  }
  .tz-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

/* ============================================================
   RESPONSIVE — Gallery Mobile (480px)
   ============================================================ */
@media (max-width: 480px) {
  .tz-gallery {
    padding: 0 1rem 3.5rem;
  }
  .tz-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .tz-gallery-item {
    aspect-ratio: 16 / 10;
  }
}

/* Lodge Section */
.tz-lodges {
  padding: 80px 24px 90px;
  background: #FDFBF7;
  border-top: 1px solid #E8E2D6;
}

.tz-lodges-inner {
  max-width: 820px;
  margin: 0 auto;
}

.tz-lodges-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #6B5E3E;
  text-align: center;
  margin-bottom: 48px;
}

.tz-lodges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tz-lodge-item img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .tz-lodges {
    padding: 60px 20px 70px;
  }
  .tz-lodges-grid {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .tz-lodges {
    padding: 50px 18px 60px;
  }
  .tz-lodges-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Inclusions & Exclusions */
.tz-inclusions,
.tz-exclusions {
  padding: 70px 24px 80px;
}

.tz-inclusions {
  background: #FFFDF8;
  border-top: 1px solid #E8E2D6;
}

.tz-exclusions {
  background: #FDFBF7;
  border-top: 1px solid #E8E2D6;
}

.tz-inclusions-inner,
.tz-exclusions-inner {
  max-width: 740px;
  margin: 0 auto;
}

.tz-inclusions-heading,
.tz-exclusions-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #2C2418;
  margin-bottom: 36px;
  text-align: center;
}

.tz-inclusions-list,
.tz-exclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tz-inclusions-list li,
.tz-exclusions-list li {
  font-size: 16px;
  line-height: 1.7;
  color: #4A4236;
  padding: 10px 0 10px 28px;
  position: relative;
}

.tz-inclusions-list li::before,
.tz-exclusions-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #A89A82;
  font-weight: 400;
}

.tz-inclusions-list li + li,
.tz-exclusions-list li + li {
  border-top: 1px solid #EDE8DD;
}

@media (max-width: 768px) {
  .tz-inclusions,
  .tz-exclusions {
    padding: 60px 20px 65px;
  }
  .tz-inclusions-heading,
  .tz-exclusions-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .tz-inclusions,
  .tz-exclusions {
    padding: 50px 18px 55px;
  }
  .tz-inclusions-heading,
  .tz-exclusions-heading {
    font-size: 25px;
    margin-bottom: 24px;
  }
  .tz-inclusions-list li,
  .tz-exclusions-list li {
    font-size: 15px;
  }
}

/* Pricing */
.tz-pricing {
  padding: 70px 24px 80px;
  background: #FFFDF8;
  border-top: 1px solid #E8E2D6;
}

.tz-pricing-inner {
  max-width: 740px;
  margin: 0 auto;
}

.tz-pricing-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #2C2418;
  margin-bottom: 40px;
  text-align: center;
}

.tz-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tz-season {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid #E8E2D6;
  border-radius: 10px;
  background: #FFF;
}

.tz-season-label {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #2C2418;
  margin-bottom: 6px;
}

.tz-season-months {
  display: block;
  font-size: 14px;
  color: #8A7E6E;
  margin-bottom: 18px;
}

.tz-season-price {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #6B5E3E;
}

/* Price Factors */
.tz-price-factors {
  padding: 70px 24px 80px;
  background: #FDFBF7;
  border-top: 1px solid #E8E2D6;
}

.tz-price-factors-inner {
  max-width: 740px;
  margin: 0 auto;
}

.tz-price-factors-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #2C2418;
  margin-bottom: 36px;
  text-align: center;
}

.tz-price-factors-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tz-price-factors-list li {
  font-size: 16px;
  line-height: 1.7;
  color: #4A4236;
  padding: 10px 0 10px 28px;
  position: relative;
}

.tz-price-factors-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #A89A82;
  font-weight: 400;
}

.tz-price-factors-list li + li {
  border-top: 1px solid #EDE8DD;
}

@media (max-width: 768px) {
  .tz-pricing,
  .tz-price-factors {
    padding: 60px 20px 65px;
  }
  .tz-pricing-heading,
  .tz-price-factors-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .tz-pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tz-season {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .tz-pricing,
  .tz-price-factors {
    padding: 50px 18px 55px;
  }
  .tz-pricing-heading,
  .tz-price-factors-heading {
    font-size: 25px;
    margin-bottom: 28px;
  }
  .tz-season-price {
    font-size: 20px;
  }
  .tz-price-factors-list li {
    font-size: 15px;
  }
}

/* Payment Options */
.tz-payment {
  padding: 70px 24px 80px;
  background: #FFFDF8;
  border-top: 1px solid #E8E2D6;
}

.tz-payment-inner {
  max-width: 740px;
  margin: 0 auto;
}

.tz-payment-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #2C2418;
  margin-bottom: 16px;
  text-align: center;
}

.tz-payment-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #6B5E3E;
  text-align: center;
  margin-bottom: 36px;
}

.tz-payment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tz-payment-list li {
  font-size: 16px;
  line-height: 1.7;
  color: #4A4236;
  padding: 10px 0 10px 28px;
  position: relative;
}

.tz-payment-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #A89A82;
  font-weight: 400;
}

.tz-payment-list li + li {
  border-top: 1px solid #EDE8DD;
}

@media (max-width: 768px) {
  .tz-payment {
    padding: 60px 20px 65px;
  }
  .tz-payment-heading {
    font-size: 28px;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {
  .tz-payment {
    padding: 50px 18px 55px;
  }
  .tz-payment-heading {
    font-size: 25px;
    margin-bottom: 12px;
  }
  .tz-payment-list li {
    font-size: 15px;
  }
}

/* Premium Assurance */
.tz-assurance {
  padding: 70px 24px 80px;
  background: #FDFBF7;
  border-top: 1px solid #E8E2D6;
}

.tz-assurance-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.tz-assurance-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #2C2418;
  margin-bottom: 20px;
}

.tz-assurance-text {
  font-size: 16px;
  line-height: 1.75;
  color: #6B5E3E;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .tz-assurance {
    padding: 60px 20px 65px;
  }
  .tz-assurance-heading {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .tz-assurance {
    padding: 50px 18px 55px;
  }
  .tz-assurance-heading {
    font-size: 25px;
    margin-bottom: 14px;
  }
  .tz-assurance-text {
    font-size: 15px;
  }
}
