﻿:root {
      --olive: #817629;
      --olive-dark: #6f6422;
      --charcoal: #383838;
      --ink: #111111;
      --muted: #707070;
      --paper: #ffffff;
      --soft: #f4f4f2;
      --line: rgba(0, 0, 0, .08);
      --font: "Segoe UI", Arial, sans-serif;
      --display: Georgia, "Times New Roman", serif;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      font-family: var(--font);
      background: var(--paper);
    }

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

    img { max-width: 100%; display: block; }

    .topbar {
      min-height: 50px;
      background: var(--olive-dark);
      color: #fff;
      font-size: 14px;
      font-weight: 800;
    }

    .wrap {
      width: min(1130px, calc(100% - 32px));
      margin-inline: auto;
    }

    .topbar .wrap,
    .navbar .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .contact-strip,
    .social-strip,
    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .contact-strip span {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .contact-strip b,
    .social {
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      font-size: 16px;
    }

    .social.facebook { background: #3b5998; }
    .social.youtube { background: #e62117; }
    .social.instagram { background: #202020; }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 20;
      min-height: 76px;
      background: #fff;
      box-shadow: 0 3px 18px rgba(0, 0, 0, .08);
    }

    .brand {
      display: flex;
      align-items: center;
      width: 88px;
      min-width: 88px;
    }

    .brand img { height: 62px; object-fit: contain; }

    .nav-links {
      flex: 1;
      justify-content: center;
      gap: 12px;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .nav-links > li {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 76px;
    }

    .nav-links > li:not(:last-child)::after {
      content: "";
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--olive);
      transform: translateX(2px);
    }

    .nav-links a:hover,
    .nav-links a.active { color: var(--olive); }

    .dropdown {
      position: absolute;
      left: 0;
      top: 76px;
      width: 236px;
      padding: 10px 0;
      background: #fff;
      box-shadow: 0 16px 35px rgba(0, 0, 0, .18);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: .2s ease;
      list-style: none;
      z-index: 30;
    }

    .nav-links li:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown a {
      display: block;
      padding: 11px 18px;
      color: #222;
      font-size: 12px;
      line-height: 1.35;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      font-weight: 800;
      white-space: nowrap;
    }

    .language {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
    }

    .language img { width: 22px; height: 15px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 26px;
      border: 0;
      border-radius: 0;
      background: var(--olive);
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      cursor: pointer;
      transition: .2s ease;
    }

    .btn:hover { background: #665d20; transform: translateY(-1px); }

    .menu-toggle {
      display: none;
      border: 0;
      background: transparent;
      font-size: 28px;
      color: var(--olive);
      cursor: pointer;
    }

    .hero {
      position: relative;
      height: min(650px, calc(100vh - 126px));
      min-height: 510px;
      color: #fff;
      overflow: hidden;
      isolation: isolate;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.03);
      transition: opacity 1s ease, transform 5s ease;
      background-position: center;
      background-size: cover;
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .slide::after,
    .section-dark::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(#000 1px, transparent 1px);
      background-size: 4px 4px;
      opacity: .65;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.18) 58%, rgba(0,0,0,.5));
      z-index: -1;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      height: 100%;
      max-width: 650px;
      padding-top: 18px;
    }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--olive);
      font-family: var(--display);
      font-size: clamp(24px, 3vw, 39px);
      font-weight: 900;
      line-height: 1.05;
    }

    .hero h1 {
      margin: 0 0 18px;
      font-size: clamp(42px, 6vw, 78px);
      line-height: .96;
      font-weight: 950;
      letter-spacing: 0;
    }

    .hero p {
      max-width: 560px;
      margin: 0 0 28px;
      font-size: 18px;
      line-height: 1.7;
      font-weight: 600;
    }

    .hero-controls {
      position: absolute;
      left: 50%;
      bottom: 28px;
      z-index: 4;
      display: flex;
      gap: 10px;
      transform: translateX(-50%);
    }

    .dot {
      width: 12px;
      height: 12px;
      border: 2px solid #fff;
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
    }

    .dot.active { background: #fff; }

    section {
      position: relative;
      padding: 86px 0;
      overflow: hidden;
    }

    .intro {
      background:
        radial-gradient(circle at 60% 48%, rgba(129, 118, 41, .1), transparent 30%),
        #fff;
    }

    .map-mark {
      position: absolute;
      inset: 70px 0 auto;
      height: 360px;
      opacity: .08;
      background-image: radial-gradient(#000 1.3px, transparent 1.3px);
      background-size: 9px 9px;
      mask-image: radial-gradient(ellipse at center, #000 0 55%, transparent 72%);
      pointer-events: none;
    }

    .split {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(330px, .96fr);
      gap: 54px;
      align-items: center;
      z-index: 1;
    }

    .script-title {
      margin: 0 0 18px;
      color: var(--olive);
      font-family: var(--display);
      font-size: 28px;
      font-weight: 900;
      line-height: 1.1;
    }

    h2 {
      margin: 0 0 24px;
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1.1;
      font-weight: 950;
      letter-spacing: 0;
    }

    .highlight {
      display: inline;
      padding: 0 10px 3px;
      background: var(--olive);
      color: #fff;
    }

    .lead {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.72;
      font-weight: 600;
    }

    .dropcap::first-letter {
      float: left;
      margin: 7px 12px 0 0;
      padding: 6px 14px;
      background: var(--olive);
      color: #fff;
      font-size: 56px;
      line-height: .9;
      font-weight: 900;
    }

    .image-collage {
      position: relative;
      min-height: 430px;
    }

    .blob {
      position: absolute;
      overflow: hidden;
      box-shadow: 0 16px 35px rgba(0, 0, 0, .18);
    }

    .blob img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .blob.one {
      width: 72%;
      height: 340px;
      left: 7%;
      top: 20px;
      border-radius: 50% 50% 42% 42%;
    }

    .blob.two {
      right: 0;
      bottom: 0;
      width: 42%;
      height: 220px;
      border-radius: 50% 50% 45% 55%;
      border: 8px solid #fff;
    }

    .section-dark {
      background: var(--charcoal);
      color: #fff;
    }

    .section-dark::before {
      opacity: .18;
      pointer-events: none;
    }

    .section-dark .wrap { position: relative; z-index: 1; }
    .section-dark .lead { color: #f2f2f2; }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 38px;
    }

    .activity {
      position: relative;
      min-height: 285px;
      overflow: hidden;
      background: #111;
    }

    .activity img {
      width: 100%;
      height: 100%;
      min-height: 285px;
      object-fit: cover;
      opacity: .62;
      transition: .35s ease;
    }

    .activity:hover img {
      transform: scale(1.06);
      opacity: .78;
    }

    .activity .badge {
      position: absolute;
      left: 50%;
      top: 42%;
      display: grid;
      place-items: center;
      width: 78px;
      height: 78px;
      border-radius: 50%;
      background: var(--olive);
      color: #fff;
      font-size: 35px;
      transform: translate(-50%, -50%);
    }

    .activity h3 {
      position: absolute;
      inset: auto 24px 26px;
      margin: 0;
      color: #fff;
      font-size: 22px;
      text-align: center;
      font-weight: 900;
    }

    .center {
      max-width: 820px;
      margin-inline: auto;
      text-align: center;
    }

    .light-pattern {
      background:
        linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
        url("https://kiliroamadventures.com/wp-content/uploads/2023/04/DSCF7611.jpg") center/cover fixed;
    }

    .tour-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      margin-top: 44px;
    }

    .tour {
      position: relative;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 13px 28px rgba(0, 0, 0, .12);
    }

    .tour img {
      width: 100%;
      height: 230px;
      object-fit: cover;
    }

    .tour-body {
      padding: 22px;
      border-bottom: 5px solid var(--olive);
    }

    .tour-body h3 {
      margin: 0 0 10px;
      font-size: 20px;
      line-height: 1.25;
    }

    .tour-body p {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
      font-weight: 600;
    }

    .guide {
      display: grid;
      grid-template-columns: minmax(330px, .9fr) minmax(0, 1.1fr);
      gap: 58px;
      align-items: center;
    }

    .guide img {
      height: 470px;
      width: 100%;
      object-fit: cover;
      border-radius: 52% 48% 52% 48%;
    }

    .cta {
      min-height: 500px;
      display: grid;
      align-items: center;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.32)),
        url("https://kiliroamadventures.com/wp-content/uploads/2025/08/Tanzania-Safaris-9.webp") center/cover;
    }

    .cta h2 {
      max-width: 780px;
      font-size: clamp(42px, 6vw, 72px);
    }

    .zanzibar {
      background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0 52%, rgba(255,255,255,.72)),
        url("https://kiliroamadventures.com/wp-content/uploads/2024/08/zanzibar-diving-3.webp") right center/cover;
    }

    .testimonials {
      background: var(--soft);
    }

    .quote-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin-top: 38px;
    }

    .quote {
      min-height: 220px;
      padding: 28px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
      border-top: 5px solid var(--olive);
    }

    .quote p {
      margin: 0 0 18px;
      color: #555;
      line-height: 1.65;
      font-weight: 600;
    }

    .quote strong { color: var(--ink); }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      margin-top: 34px;
    }

    .blog {
      background: #fff;
      box-shadow: 0 12px 25px rgba(0, 0, 0, .1);
    }

    .blog img {
      width: 100%;
      height: 210px;
      object-fit: cover;
    }

    .blog h3 {
      margin: 0;
      padding: 20px;
      font-size: 20px;
    }

    footer {
      padding: 48px 0 20px;
      background: #242424;
      color: #fff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,.16);
    }

    footer h3 {
      margin: 0 0 16px;
      color: var(--olive);
      font-size: 20px;
    }

    footer p,
    footer li {
      color: #d8d8d8;
      line-height: 1.7;
      font-weight: 600;
    }

    footer ul {
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .copyright {
      padding-top: 20px;
      color: #cfcfcf;
      font-size: 13px;
      text-align: center;
    }

    .whatsapp {
      position: fixed;
      left: 30px;
      bottom: 30px;
      z-index: 40;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .wa-icon,
    .chat-icon {
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #43513f;
      color: #fff;
      font-size: 31px;
      box-shadow: 0 12px 24px rgba(0,0,0,.24);
    }

    .wa-label {
      padding: 11px 14px;
      background: #fff;
      color: #333;
      border-radius: 4px;
      box-shadow: 0 8px 20px rgba(0,0,0,.12);
      font-size: 12px;
    }

    .wa-label b { color: #111; }

    .chat {
      position: fixed;
      right: 28px;
      bottom: 28px;
      z-index: 40;
      display: grid;
      justify-items: end;
      gap: 12px;
    }

    .chat-panel {
      width: min(286px, calc(100vw - 42px));
      padding: 17px 20px;
      background: #fff;
      color: #333;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0,0,0,.14);
      font-size: 14px;
    }

    .chat button {
      display: block;
      padding: 10px 17px;
      border: 1px solid var(--olive);
      border-radius: 8px;
      background: #fff;
      color: var(--olive-dark);
      font-weight: 700;
      cursor: pointer;
    }

    .chat-launch {
      position: relative;
      border: 0;
      background: transparent;
      padding: 0;
      cursor: pointer;
    }

    .chat-icon { background: var(--olive); font-size: 28px; }

    .notification {
      position: absolute;
      right: 0;
      top: -4px;
      display: grid;
      place-items: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #e21d1d;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
    }

    .hidden { display: none; }

    @media (max-width: 1000px) {
      .topbar { display: none; }

      .navbar .wrap {
        min-height: 74px;
        flex-wrap: wrap;
      }

      .menu-toggle { display: block; }

      .nav-links {
        order: 3;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-bottom: 18px;
      }

      .nav-links.open { display: flex; }

      .nav-links > li {
        min-height: 0;
        padding: 12px 0;
        border-top: 1px solid var(--line);
      }

      .nav-links > li::after { display: none; }

      .dropdown {
        position: static;
        width: 100%;
        padding: 8px 0 0 12px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
      }

      .split,
      .guide,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero { min-height: 590px; }
      .nav-actions .btn { display: none; }
      .cards,
      .tour-grid,
      .quote-grid,
      .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 680px) {
      .wrap { width: min(100% - 24px, 1130px); }
      .language { display: none; }
      .hero-copy { padding-top: 0; }
      .hero p { font-size: 16px; }
      section { padding: 62px 0; }
      .cards,
      .tour-grid,
      .quote-grid,
      .blog-grid { grid-template-columns: 1fr; }
      .image-collage { min-height: 360px; }
      .whatsapp .wa-label { display: none; }
      .chat-panel,
      .chat .quick { display: none; }
      .chat,
      .whatsapp { bottom: 18px; }
      .chat { right: 16px; }
      .whatsapp { left: 16px; }
    }

