Address: Kiligolf B26 Arusha, 10155

<!--
  TARANGIRE NATIONAL PARK — content-only page block
  Built to drop straight into the page body (no header/nav/footer included).

  ⚠️ TWO THINGS TO SWAP BEFORE PUBLISHING — everything else works as-is:
  1) COLORS — the six --am-* variables below are a safari-toned palette I built
     to sit comfortably next to your site (I couldn't pull your exact hex codes
     from the live CSS). Open your theme's stylesheet / Customizer, grab your
     real hex values, and paste them in below — every color on the page is
     wired to these variables, so it's a 6-line fix.
  2) FONT — --am-font-heading / --am-font-body currently load Fraunces +
     Inter from Google Fonts as tasteful stand-ins. Replace the two font-family
     values with your site's actual font names (check Customizer → Typography,
     or your theme.json) and remove the @import if your site already loads
     its fonts globally, so you're not loading fonts twice.

  📷 IMAGES — every photo (elephants, lions, leopard, cheetah, buffalo,
     giraffes, zebra, wildebeest, the river, the baobabs) is a real photograph
     hotlinked from Wikimedia Commons, each individually verified to exist and
     be freely licensed (mostly CC BY-SA, a couple public domain). Wikimedia
     hosting is reliable, but for a commercial site it's best practice to
     either credit the photographers or, better, swap these for your own
     licensed safari photography before publishing — just replace the src
     URLs, the layout won't need any changes.
-->

<section id="am-tarangire" class="am-tarangire">
<style>
  #am-tarangire {
    /* ============ 1) BRAND COLORS — replace with your real hex values ============ */
    --am-forest:      #24382B;   /* deep savannah green — headings, nav-like accents */
    --am-terracotta:  #C1652F;   /* warm accent — buttons, links, highlights */
    --am-gold:        #B8893A;   /* dry-season gold — secondary accent, dividers */
    --am-cream:       #FAF5EA;   /* page background */
    --am-sand:        #F0E6D2;   /* card / panel background */
    --am-charcoal:    #2B241C;   /* body text */

    /* ============ 2) BRAND FONTS — replace with your site's real fonts ============ */
    --am-font-heading: 'Fraunces', Georgia, serif;
    --am-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    all: initial;
    display: block;
    font-family: var(--am-font-body);
    color: var(--am-charcoal);
    background: var(--am-cream);
    line-height: 1.65;
  }
  @import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Inter:wght@400;500;600&display=swap');

  #am-tarangire * { box-sizing: border-box; margin: 0; padding: 0; }
  #am-tarangire img { max-width: 100%; display: block; }
  #am-tarangire p { font-family: var(--am-font-body); font-size: 1.05rem; color: var(--am-charcoal); }
  #am-tarangire h1, #am-tarangire h2, #am-tarangire h3 {
    font-family: var(--am-font-heading); color: var(--am-forest); font-weight: 600; line-height: 1.15;
  }
  #am-tarangire .am-wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
  #am-tarangire .am-eyebrow {
    font-family: var(--am-font-body); text-transform: uppercase; letter-spacing: .14em;
    font-size: .78rem; font-weight: 600; color: var(--am-terracotta); display: block; margin-bottom: 10px;
  }

  /* ---- HERO ---- */
  #am-tarangire .am-hero {
    position: relative; min-height: 62vh; display: flex; align-items: flex-end;
    background: linear-gradient(180deg, rgba(36,56,43,.15) 0%, rgba(20,26,18,.78) 100%),
      url('https://www.adventuremakers.co.tz/wp-content/uploads/2022/08/5-Day-Tanzanian-Photographic-Group-Safari-Banner.jpg') center/cover no-repeat;
    padding: 80px 0 56px;
  }
  #am-tarangire .am-hero-inner { max-width: 760px; }
  #am-tarangire .am-hero .am-eyebrow { color: #E8C089; }
  #am-tarangire .am-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 16px; }
  #am-tarangire .am-hero p { color: #EFE7D6; font-size: 1.15rem; max-width: 620px; }
  #am-tarangire .am-hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 32px; }
  #am-tarangire .am-hero-stats div { color: #fff; }
  #am-tarangire .am-hero-stats strong { display: block; font-family: var(--am-font-heading); font-size: 1.5rem; color: var(--am-gold); }
  #am-tarangire .am-hero-stats span { font-size: .82rem; letter-spacing: .04em; color: #D9CFBB; text-transform: uppercase; }

  /* ---- generic section rhythm ---- */
  #am-tarangire section.am-block { padding: 72px 0; }
  #am-tarangire .am-center { text-align: center; max-width: 720px; margin: 0 auto 44px; }
  #am-tarangire .am-alt { background: var(--am-sand); }

  /* ---- intro ---- */
  #am-tarangire .am-intro h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
  #am-tarangire .am-intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }
  #am-tarangire .am-intro-grid p + p { margin-top: 14px; }
  #am-tarangire .am-fact-card {
    background: var(--am-charcoal); border-radius: 4px; padding: 30px; color: #F3EEE1;
  }
  #am-tarangire .am-fact-card h3 { color: var(--am-gold); font-size: 1.05rem; margin-bottom: 16px; }
  #am-tarangire .am-fact-card ul { list-style: none; }
  #am-tarangire .am-fact-card li {
    display: flex; justify-content: space-between; padding: 11px 0; font-size: .95rem;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  #am-tarangire .am-fact-card li:first-child { border-top: none; }
  #am-tarangire .am-fact-card li span:first-child { color: #C9C0AC; }
  #am-tarangire .am-fact-card li span:last-child { color: #fff; font-weight: 500; text-align: right; }

  /* ---- why famous / feature cards ---- */
  #am-tarangire .am-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  #am-tarangire .am-feature { background: #fff; border: 1px solid #E7DBC0; border-radius: 4px; padding: 30px 26px; }
  #am-tarangire .am-feature svg { width: 34px; height: 34px; fill: none; stroke: var(--am-terracotta); stroke-width: 1.6; margin-bottom: 16px; }
  #am-tarangire .am-feature h3 { font-size: 1.15rem; margin-bottom: 10px; }
  #am-tarangire .am-feature p { font-size: .95rem; }

  /* ---- wildlife cards ---- */
  #am-tarangire .am-species-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  #am-tarangire .am-species {
    background: #fff; border-radius: 4px; overflow: hidden; border: 1px solid #E7DBC0;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  #am-tarangire .am-species:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(43,36,28,.16); }
  #am-tarangire .am-species-photo { height: 170px; overflow: hidden; }
  #am-tarangire .am-species-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  #am-tarangire .am-species-body { padding: 18px 20px 22px; }
  #am-tarangire .am-species-body h3 { font-size: 1.02rem; margin-bottom: 8px; }
  #am-tarangire .am-species-body p { font-size: .89rem; color: #5A5044; }
  #am-tarangire .am-species-more {
    margin-top: 30px; padding: 22px 26px; background: var(--am-sand); border-radius: 4px; font-size: .92rem;
  }
  #am-tarangire .am-species-more strong { color: var(--am-forest); }

  /* ---- river / baobab split sections ---- */
  #am-tarangire .am-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  #am-tarangire .am-split.am-rev .am-split-media { order: 2; }
  #am-tarangire .am-split-media {
    aspect-ratio: 4/3; border-radius: 4px; position: relative; overflow: hidden;
  }
  #am-tarangire .am-split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  #am-tarangire .am-split h2 { font-size: 1.9rem; margin-bottom: 16px; }
  #am-tarangire .am-split p + p { margin-top: 12px; }

  /* ---- habitats ---- */
  #am-tarangire .am-habitats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  #am-tarangire .am-habitat { padding: 26px 22px; border-left: 3px solid var(--am-terracotta); background: #fff; }
  #am-tarangire .am-habitat h3 { font-size: 1.02rem; margin-bottom: 8px; }
  #am-tarangire .am-habitat p { font-size: .89rem; color: #5A5044; }

  /* ---- best time strip ---- */
  #am-tarangire .am-months { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0 28px; }
  #am-tarangire .am-month {
    flex: 1 1 60px; text-align: center; padding: 12px 6px; border-radius: 4px; font-size: .82rem;
    font-weight: 600; letter-spacing: .03em; background: var(--am-sand); color: var(--am-charcoal);
  }
  #am-tarangire .am-month.am-peak { background: var(--am-terracotta); color: #fff; }

  /* ---- experiences ---- */
  #am-tarangire .am-exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  #am-tarangire .am-exp {
    position: relative; border-radius: 4px; padding: 32px 26px; min-height: 220px;
    display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
    background-size: cover; background-position: center;
  }
  #am-tarangire .am-exp::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,16,10,.25) 0%, rgba(15,12,8,.88) 100%);
  }
  #am-tarangire .am-exp h3, #am-tarangire .am-exp p { position: relative; z-index: 1; }
  #am-tarangire .am-exp h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
  #am-tarangire .am-exp p { color: #E6DFCE; font-size: .92rem; }

  /* ---- itinerary strip ---- */
  #am-tarangire .am-route { display: flex; align-items: center; flex-wrap: wrap; gap: 0; margin-top: 10px; }
  #am-tarangire .am-route-stop {
    background: #fff; border: 1px solid #E7DBC0; padding: 14px 20px; border-radius: 4px;
    font-family: var(--am-font-heading); font-weight: 600; color: var(--am-forest); font-size: .98rem;
  }
  #am-tarangire .am-route-arrow { padding: 0 14px; color: var(--am-terracotta); font-size: 1.2rem; }

  /* ---- CTA ---- */
  #am-tarangire .am-cta {
    position: relative; border-radius: 6px; padding: 60px 48px; text-align: center; color: #fff;
    background: linear-gradient(180deg, rgba(20,16,10,.55) 0%, rgba(15,12,8,.88) 100%),
      url('https://commons.wikimedia.org/wiki/Special:FilePath/File:ElefantenherdeTarangireFluss.jpg?width=1200') center/cover no-repeat;
  }
  #am-tarangire .am-cta h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
  #am-tarangire .am-cta p { color: #D9CFBB; max-width: 560px; margin: 0 auto 28px; }
  #am-tarangire .am-btn {
    display: inline-block; background: var(--am-terracotta); color: #fff; text-decoration: none;
    font-family: var(--am-font-body); font-weight: 600; padding: 15px 36px; border-radius: 3px;
    letter-spacing: .02em; transition: background .2s ease;
  }
  #am-tarangire .am-btn:hover { background: #A5551F; }

  @media (max-width: 900px) {
    #am-tarangire .am-intro-grid, #am-tarangire .am-split, #am-tarangire .am-split.am-rev { grid-template-columns: 1fr; }
    #am-tarangire .am-split.am-rev .am-split-media { order: 0; }
    #am-tarangire .am-features, #am-tarangire .am-exp-grid { grid-template-columns: repeat(2, 1fr); }
    #am-tarangire .am-species-grid { grid-template-columns: repeat(2, 1fr); }
    #am-tarangire .am-habitats { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    #am-tarangire .am-features, #am-tarangire .am-exp-grid, #am-tarangire .am-species-grid, #am-tarangire .am-habitats { grid-template-columns: 1fr; }
    #am-tarangire .am-cta { padding: 44px 24px; }
    #am-tarangire .am-route { flex-direction: column; align-items: stretch; }
    #am-tarangire .am-route-arrow { text-align: center; padding: 6px 0; }
  }
</style>

  <!-- HERO -->
  <div class="am-hero">
    <div class="am-wrap am-hero-inner">
      <span class="am-eyebrow">Northern Tanzania Safari Circuit</span>
      <h1>Tarangire National Park</h1>
      <p>Elephant herds beneath ancient baobabs, a river that draws the whole ecosystem to its banks, and a savannah rarely crowded with other vehicles — Tarangire is one of Tanzania's most rewarding safari destinations.</p>
      <div class="am-hero-stats">
        <div><strong>2,850 km²</strong><span>Park area</span></div>
        <div><strong>120 km</strong><span>From Arusha</span></div>
        <div><strong>550+</strong><span>Bird species</span></div>
        <div><strong>Jun – Oct</strong><span>Peak dry season</span></div>
      </div>
    </div>
  </div>

  <!-- INTRO + QUICK FACTS -->
  <section class="am-block am-intro">
    <div class="am-wrap am-intro-grid">
      <div>
        <span class="am-eyebrow">Overview</span>
        <h2>An elephant paradise on the Northern Circuit</h2>
        <p>Tarangire National Park takes its name from the Tarangire River, the lifeline that flows through the park and, during the dry season, becomes the most important source of water for miles around. As other water sources disappear, elephants, buffalo, zebra, wildebeest and countless other animals converge on its banks — creating some of the most concentrated wildlife viewing in northern Tanzania.</p>
        <p>Beyond the wildlife, Tarangire is defined by its landscape: open grassland, acacia woodland, seasonal swamps and a savannah scattered with enormous, centuries-old baobab trees. It offers a different atmosphere to the vast open plains of the Serengeti, and a quieter, less-crowded alternative for travellers who still want exceptional game viewing.</p>
      </div>
      <div class="am-fact-card">
        <h3>Good to know</h3>
        <ul>
          <li><span>Location</span><span>~120 km SW of Arusha</span></li>
          <li><span>Named for</span><span>The Tarangire River</span></li>
          <li><span>Known for</span><span>Elephants &amp; baobabs</span></li>
          <li><span>Best for</span><span>Big herds, big cats, birding</span></li>
          <li><span>Often combined with</span><span>Lake Manyara, Ngorongoro, Serengeti</span></li>
          <li><span>Minimum visit</span><span>Full day trip from Arusha</span></li>
        </ul>
      </div>
    </div>
  </section>

  <!-- WHY FAMOUS -->
  <section class="am-block am-alt">
    <div class="am-wrap">
      <div class="am-center">
        <span class="am-eyebrow">Why Tarangire</span>
        <h2>Four things that make this park different</h2>
      </div>
      <div class="am-features">
        <div class="am-feature">
          <svg viewBox="0 0 24 24"><path d="M4 18c2-6 4-9 8-9s6 3 8 9M8 18c1-3 2-4 4-4s3 1 4 4"/></svg>
          <h3>Enormous elephant herds</h3>
          <p>Large family groups gather along the Tarangire River, especially during the dry season, offering some of the most reliable elephant sightings in Tanzania.</p>
        </div>
        <div class="am-feature">
          <svg viewBox="0 0 24 24"><path d="M12 2C9 6 8 10 8 14a4 4 0 0 0 8 0c0-4-1-8-4-12z"/></svg>
          <h3>Iconic baobab landscape</h3>
          <p>Huge, ancient baobab trees scattered across the savannah create one of the most distinctive landscapes anywhere on the Northern Circuit.</p>
        </div>
        <div class="am-feature">
          <svg viewBox="0 0 24 24"><path d="M3 12h4l3-8 4 16 3-8h4"/></svg>
          <h3>Dry-season concentration</h3>
          <p>As water disappears elsewhere, wildlife converges on the river — concentrating animals in a way few other parks can match.</p>
        </div>
        <div class="am-feature">
          <svg viewBox="0 0 24 24"><path d="M12 3c4 2 7 4 7 8a7 7 0 0 1-14 0c0-4 3-6 7-8z"/></svg>
          <h3>Outstanding birding</h3>
          <p>Official Tanzania National Parks records list approximately 550 bird species here, making Tarangire a serious birding destination in its own right.</p>
        </div>
        <div class="am-feature">
          <svg viewBox="0 0 24 24"><path d="M4 6h16M4 12h16M4 18h10"/><circle cx="19" cy="18" r="2"/></svg>
          <h3>A landscape of contrasts</h3>
          <p>Open savannah, acacia woodland, seasonal swamps and riverine forest sit side by side — few parks pack this much habitat variety into one game drive.</p>
        </div>
        <div class="am-feature">
          <svg viewBox="0 0 24 24"><path d="M4 20c4-10 12-14 16-14M14 6l2-2 2 2-2 2z"/></svg>
          <h3>Fewer crowds, more freedom</h3>
          <p>Less busy than Ngorongoro or the Serengeti, Tarangire offers the same big-game rewards with a quieter, more relaxed safari atmosphere.</p>
        </div>
      </div>
    </div>
  </section>

  <!-- WILDLIFE -->
  <section class="am-block" id="am-wildlife">
    <div class="am-wrap">
      <div class="am-center">
        <span class="am-eyebrow">Wildlife</span>
        <h2>Who you'll meet on a Tarangire game drive</h2>
      </div>
      <div class="am-species-grid">
        <div class="am-species">
          <div class="am-species-photo"><img src="https://commons.wikimedia.org/wiki/Special:FilePath/File:African_elephant_(Loxodonta_africana)_3.jpg?width=500" alt="African elephant in Tanzania" loading="lazy"></div>
          <div class="am-species-body"><h3>African Elephants</h3><p>Tarangire's signature attraction — family groups from young calves to enormous bulls gather at the river, especially in the dry months.</p></div>
        </div>
        <div class="am-species">
          <div class="am-species-photo"><img src="https://commons.wikimedia.org/wiki/Special:FilePath/File:Male_lion_on_savanna.jpg?width=500" alt="Male lion resting on the savanna" loading="lazy"></div>
          <div class="am-species-body"><h3>Lions</h3><p>Found in open grassland and woodland, often resting beneath trees by day and active in the cooler morning and evening light.</p></div>
        </div>
        <div class="am-species">
          <div class="am-species-photo"><img src="https://commons.wikimedia.org/wiki/Special:FilePath/File:Leopard_on_the_tree.jpg?width=500" alt="Leopard resting in a tree" loading="lazy"></div>
          <div class="am-species-body"><h3>Leopards</h3><p>Solitary and elusive, often resting in trees or dense vegetation — a sighting is one of Tarangire's most exciting encounters.</p></div>
        </div>
        <div class="am-species">
          <div class="am-species-photo"><img src="https://commons.wikimedia.org/wiki/Special:FilePath/File:Cheetah_(Acinonyx_jubatus)_female_2.jpg?width=500" alt="Cheetah resting in Africa" loading="lazy"></div>
          <div class="am-species-body"><h3>Cheetahs</h3><p>Built for speed and adapted to open ground, cheetahs favour the park's grasslands where they can spot and chase prey.</p></div>
        </div>
        <div class="am-species">
          <div class="am-species-photo"><img src="https://commons.wikimedia.org/wiki/Special:FilePath/File:African_buffalo_Syncerus_caffer.JPG?width=500" alt="African buffalo in Tanzania" loading="lazy"></div>
          <div class="am-species-body"><h3>African Buffalo</h3><p>Powerful, social herds move through grassland and woodland, gathering in larger numbers near water in the dry season.</p></div>
        </div>
        <div class="am-species">
          <div class="am-species-photo"><img src="https://commons.wikimedia.org/wiki/Special:FilePath/File:Two_giraffes_in_tall_savanna.jpg?width=500" alt="Giraffes in tall savanna grass" loading="lazy"></div>
          <div class="am-species-body"><h3>Giraffes</h3><p>A classic Tarangire scene — long necks reaching into acacia canopies, often photographed walking between huge baobabs.</p></div>
        </div>
        <div class="am-species">
          <div class="am-species-photo"><img src="https://commons.wikimedia.org/wiki/Special:FilePath/File:Plains_Zebra_Equus_quagga.jpg?width=500" alt="Plains zebra in Tanzania" loading="lazy"></div>
          <div class="am-species-body"><h3>Zebras</h3><p>Frequently seen crossing open grassland alongside wildebeest, moving between grazing and water areas.</p></div>
        </div>
        <div class="am-species">
          <div class="am-species-photo"><img src="https://commons.wikimedia.org/wiki/Special:FilePath/File:Blue_wildebeest_(Connochaetes_taurinus_taurinus),_male.jpg?width=500" alt="Blue wildebeest male" loading="lazy"></div>
          <div class="am-species-body"><h3>Wildebeest</h3><p>Part of Tarangire's own seasonal movements, grazing the open savannah in groups influenced by rainfall and grazing.</p></div>
        </div>
      </div>
      <div class="am-species-more">
        <strong>Also present in Tarangire:</strong> eland, oryx, the striking upright-browsing gerenuk, lesser kudu and other antelope, African wild dogs (uncommon but recorded in the wider ecosystem), warthogs, and several mongoose species — plenty to discover beyond the headline sightings.
      </div>
    </div>
  </section>

  <!-- RIVER -->
  <section class="am-block am-alt">
    <div class="am-wrap am-split">
      <div class="am-split-media">
        <img src="https://commons.wikimedia.org/wiki/Special:FilePath/File:Tarangire_river.jpg?width=900" alt="The Tarangire River" loading="lazy">
      </div>
      <div>
        <span class="am-eyebrow">The Tarangire River</span>
        <h2>The lifeline the park is named for</h2>
        <p>The Tarangire River plays a critical role in the ecosystem, particularly during the dry season. As other seasonal water sources disappear, the river becomes the most important remaining source of water — drawing elephants, buffalo, giraffes, zebra, wildebeest and many other animals to its banks.</p>
        <p>For photographers, the riverside offers a chance to watch behaviour rarely seen elsewhere: drinking, bathing, crossing water and herd interaction, all within a single game drive.</p>
      </div>
    </div>
  </section>

  <!-- BAOBABS -->
  <section class="am-block">
    <div class="am-wrap am-split am-rev">
      <div>
        <span class="am-eyebrow">Baobab Trees</span>
        <h2>The defining symbol of Tarangire</h2>
        <p>Thick trunks, unusual branches and a silhouette unlike anything else in the savannah — the baobab is one of Tarangire's most recognisable features. Adapted to store large amounts of water within their trunks, these trees can survive for centuries, and their flowers, fruit, bark and hollows provide food or shelter for a wide range of species.</p>
        <p>Official TANAPA material highlights the baobab as one of the park's defining natural attractions — a game drive through Tarangire is as much about the landscape as it is about the animals within it.</p>
      </div>
      <div class="am-split-media">
        <img src="https://commons.wikimedia.org/wiki/Special:FilePath/File:Tarangire_scenery_with_baobabs.jpg?width=900" alt="Baobab trees in Tarangire National Park" loading="lazy">
      </div>
    </div>
  </section>

  <!-- BIRDLIFE -->
  <section class="am-block am-alt">
    <div class="am-wrap">
      <div class="am-center">
        <span class="am-eyebrow">Birdlife</span>
        <h2>Around 550 species call Tarangire home</h2>
        <p style="margin-top:10px;">Woodland, grassland, riverine and wetland habitats combine to make Tarangire one of northern Tanzania's most rewarding birding destinations — for dedicated birders and curious travellers alike.</p>
      </div>
      <div class="am-features" style="grid-template-columns:repeat(6,1fr);">
        <div class="am-feature" style="text-align:center;padding:20px 10px;"><p style="font-weight:600;color:var(--am-forest);">Fish Eagles</p></div>
        <div class="am-feature" style="text-align:center;padding:20px 10px;"><p style="font-weight:600;color:var(--am-forest);">Bateleur Eagles</p></div>
        <div class="am-feature" style="text-align:center;padding:20px 10px;"><p style="font-weight:600;color:var(--am-forest);">Kori Bustards</p></div>
        <div class="am-feature" style="text-align:center;padding:20px 10px;"><p style="font-weight:600;color:var(--am-forest);">Hornbills</p></div>
        <div class="am-feature" style="text-align:center;padding:20px 10px;"><p style="font-weight:600;color:var(--am-forest);">Bee-eaters</p></div>
        <div class="am-feature" style="text-align:center;padding:20px 10px;"><p style="font-weight:600;color:var(--am-forest);">Lovebirds</p></div>
      </div>
    </div>
  </section>

  <!-- HABITATS -->
  <section class="am-block">
    <div class="am-wrap">
      <div class="am-center">
        <span class="am-eyebrow">Landscape</span>
        <h2>Four habitats, one ecosystem</h2>
      </div>
      <div class="am-habitats">
        <div class="am-habitat"><h3>Open Savannah</h3><p>Grazing ground for zebra and wildebeest, and hunting ground for lions and cheetahs.</p></div>
        <div class="am-habitat"><h3>Acacia Woodland</h3><p>Food and shelter for giraffes, elephants, antelope and many bird species.</p></div>
        <div class="am-habitat"><h3>Seasonal Wetlands</h3><p>Vital feeding and water areas for herbivores and birds when conditions are dry elsewhere.</p></div>
        <div class="am-habitat"><h3>Riverine Habitat</h3><p>The park's most important wildlife zone, especially valuable during the dry season.</p></div>
      </div>
    </div>
  </section>

  <!-- BEST TIME -->
  <section class="am-block am-alt">
    <div class="am-wrap">
      <span class="am-eyebrow">Best Time to Visit</span>
      <h2 style="max-width:640px;">June to October brings the biggest herds</h2>
      <p style="margin-top:14px;max-width:640px;">As water becomes scarce elsewhere, wildlife gathers around the Tarangire River — July through October is especially rewarding for large concentrations of elephants and other game. The greener months after the rains offer a quieter safari with lush scenery and increased bird activity.</p>
      <div class="am-months">
        <div class="am-month">Jan</div><div class="am-month">Feb</div><div class="am-month">Mar</div>
        <div class="am-month">Apr</div><div class="am-month">May</div>
        <div class="am-month am-peak">Jun</div><div class="am-month am-peak">Jul</div>
        <div class="am-month am-peak">Aug</div><div class="am-month am-peak">Sep</div><div class="am-month am-peak">Oct</div>
        <div class="am-month">Nov</div><div class="am-month">Dec</div>
      </div>
    </div>
  </section>

  <!-- EXPERIENCES -->
  <section class="am-block">
    <div class="am-wrap">
      <div class="am-center">
        <span class="am-eyebrow">Safari Experiences</span>
        <h2>How to explore Tarangire</h2>
      </div>
      <div class="am-exp-grid">
        <div class="am-exp" style="background-image:url('https://commons.wikimedia.org/wiki/Special:FilePath/File:African_Elephant_walking.JPG?width=700');">
          <h3>Game Drives</h3>
          <p>The main way to explore — morning and afternoon drives through different habitats with an experienced guide.</p>
        </div>
        <div class="am-exp" style="background-image:url('https://www.adventuremakers.co.tz/wp-content/uploads/2022/08/about-img.jpg');">
          <h3>Walking Safari</h3>
          <p>In designated areas with expert guidance — a closer look at tracks, plants, insects and the smaller details of the bush.</p>
        </div>
        <div class="am-exp" style="background-image:url('https://commons.wikimedia.org/wiki/Special:FilePath/File:Tarangire_scenery_with_baobabs.jpg?width=700');">
          <h3>Hot Air Balloon</h3>
          <p>Listed among TANAPA's park activities — a sunrise view over savannah, woodland and baobab from above.</p>
        </div>
      </div>
    </div>
  </section>

  <!-- ITINERARY -->
  <section class="am-block am-alt">
    <div class="am-wrap">
      <span class="am-eyebrow">Planning</span>
      <h2 style="max-width:600px;">Easy to combine with the rest of the Northern Circuit</h2>
      <p style="margin-top:14px;max-width:640px;">Tarangire works well as a day trip from Arusha, or as the opening chapter of a longer safari — introducing elephants and open savannah before the landscape changes toward the Serengeti.</p>
      <div class="am-route">
        <div class="am-route-stop">Tarangire</div><span class="am-route-arrow">→</span>
        <div class="am-route-stop">Lake Manyara</div><span class="am-route-arrow">→</span>
        <div class="am-route-stop">Ngorongoro Crater</div><span class="am-route-arrow">→</span>
        <div class="am-route-stop">Serengeti</div>
      </div>
    </div>
  </section>

  <!-- CTA -->
  <section class="am-block">
    <div class="am-wrap">
      <div class="am-cta">
        <h2>Plan your Tarangire safari</h2>
        <p>Elephant herds, baobab landscapes, big cats and 550 species of birds — let's build a Tarangire itinerary around your interests, travel style and available time.</p>
        <a href="https://www.adventuremakers.co.tz/contact-us/" class="am-btn">Enquire Now</a>
      </div>
    </div>
  </section>

</section>