/* masaimarasafaripackages.net — global stylesheet */
:root {
  --brown: #3e2c1c;
  --brown-light: #5a4430;
  --gold: #c8862a;
  --gold-dark: #a76d1c;
  --savanna: #d9a441;
  --green: #4a5d3a;
  --cream: #faf6ef;
  --white: #ffffff;
  --text: #33291d;
  --muted: #6f6354;
  --border: #e6ddcd;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(62, 44, 28, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4, .btn, nav, .price, .badge {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

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

a { color: var(--gold-dark); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--brown);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 10px;
}
.logo {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  font-family: "Segoe UI", Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--savanna); }
.logo-img { width: 38px; height: 38px; flex-shrink: 0; }

/* ---------- Mobile nav toggle ---------- */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-toggle-label span {
  display: block;
  width: 26px;
  height: 3px;
  background: #f0e8da;
  margin: 5px 0;
  border-radius: 2px;
}
.site-nav { display: flex; flex-wrap: wrap; gap: 4px; }
.site-nav a {
  color: #f0e8da;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
}
.site-nav a:hover, .site-nav a.active { background: var(--brown-light); color: var(--white); }
.site-nav a.nav-cta {
  background: var(--gold);
  color: var(--brown);
  font-weight: 700;
}
.site-nav a.nav-cta:hover { background: var(--savanna); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 90px 20px;
  background: linear-gradient(rgba(40, 28, 15, 0.55), rgba(40, 28, 15, 0.65)), var(--hero-img, var(--brown)) center/cover no-repeat;
}
.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero p.lead {
  max-width: 720px;
  margin: 0 auto 26px;
  font-size: 1.15rem;
  color: #f4ecdf;
}
.hero .price-from {
  display: inline-block;
  background: rgba(200, 134, 42, 0.92);
  padding: 6px 18px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 22px;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--brown); }
.btn-primary:hover { background: var(--savanna); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); margin-left: 10px; }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5b; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
section.alt { background: var(--white); }
.section-title { font-size: 1.7rem; color: var(--brown); margin-bottom: 8px; }
.section-sub { color: var(--muted); margin-bottom: 30px; max-width: 760px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card img { height: 200px; object-fit: cover; width: 100%; }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card h3 { color: var(--brown); margin-bottom: 8px; font-size: 1.15rem; }
.card p { font-size: 0.97rem; color: var(--muted); flex: 1; }
.card .price {
  color: var(--gold-dark);
  font-weight: 700;
  margin: 12px 0;
  font-size: 1.05rem;
}
.card .btn { text-align: center; }

/* ---------- Feature list ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.feature { background: var(--white); border-left: 4px solid var(--gold); padding: 18px 20px; border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow); }
.feature h3 { color: var(--brown); font-size: 1.05rem; margin-bottom: 6px; }
.feature p { font-size: 0.95rem; color: var(--muted); }

/* ---------- Itinerary ---------- */
.itinerary-day {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.itinerary-day h3 { color: var(--brown); margin-bottom: 10px; }
.itinerary-day .day-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ---------- Include / Exclude ---------- */
.incl-excl { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.incl-box { background: var(--white); border-radius: var(--radius); padding: 24px; border-top: 4px solid var(--green); box-shadow: var(--shadow); }
.incl-box.excl { border-top-color: #b5482f; }
.incl-box h3 { color: var(--brown); margin-bottom: 12px; }
.incl-box ul { list-style: none; }
.incl-box li { padding: 6px 0 6px 28px; position: relative; font-size: 0.97rem; }
.incl-box li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.incl-box.excl li::before { content: "✗"; color: #b5482f; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
th, td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.97rem; }
th { background: var(--brown); color: var(--white); font-family: "Segoe UI", Arial, sans-serif; font-weight: 600; }
tr:last-child td { border-bottom: none; }
.table-note { font-size: 0.88rem; color: var(--muted); margin-top: 10px; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--brown);
  font-family: "Segoe UI", Arial, sans-serif;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold-dark); font-size: 1.2rem; }
.faq details[open] summary::after { content: "–"; }
.faq .faq-a { padding: 0 20px 16px; color: var(--muted); font-size: 0.97rem; }

/* ---------- Inquiry form ---------- */
.inquiry {
  background: var(--brown);
  color: var(--white);
}
.inquiry .section-title, .inquiry h2 { color: var(--white); }
.inquiry .section-sub { color: #d8ccb8; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-bottom: 18px; }
.form-grid label { display: block; font-size: 0.9rem; margin-bottom: 5px; font-family: "Segoe UI", Arial, sans-serif; color: #e8dfcf; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 7px;
  border: 1px solid var(--brown-light);
  background: var(--white);
  font-size: 0.97rem;
  font-family: inherit;
}
.form-full { grid-column: 1 / -1; }
.form-note { font-size: 0.85rem; color: #cbbfa9; margin-top: 12px; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--green); color: var(--white); text-align: center; padding: 40px 20px; }
.cta-strip h2 { margin-bottom: 10px; }
.cta-strip p { margin-bottom: 20px; color: #e6eadf; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.88rem; padding: 14px 0; color: var(--muted); font-family: "Segoe UI", Arial, sans-serif; }
.breadcrumbs a { color: var(--gold-dark); text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer { background: #2a1e12; color: #cfc4b0; padding: 46px 0 26px; font-size: 0.94rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-bottom: 30px; }
.site-footer h4 { color: var(--white); margin-bottom: 12px; font-size: 1rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #d9c9a8; text-decoration: none; }
.site-footer a:hover { color: var(--savanna); }
.footer-bottom { border-top: 1px solid #4a3a28; padding-top: 18px; text-align: center; font-size: 0.85rem; color: #9c8f79; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  z-index: 200;
  text-decoration: none;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Prose ---------- */
.prose p { margin-bottom: 16px; }
.prose h2 { color: var(--brown); margin: 28px 0 12px; font-size: 1.45rem; }
.prose h3 { color: var(--brown); margin: 22px 0 10px; font-size: 1.15rem; }
.prose ul { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 6px; }

@media (max-width: 860px) {
  .nav-toggle-label { display: block; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0 12px;
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .site-nav a { padding: 12px 14px; font-size: 1.05rem; border-radius: 8px; }
  .site-nav a.nav-cta { text-align: center; margin-top: 6px; }
}

@media (max-width: 640px) {
  .logo { font-size: 0.98rem; gap: 7px; }
  .logo-img { width: 30px; height: 30px; }
  .hero { padding: 60px 16px; }
  .hero p.lead { font-size: 1.05rem; }
  .btn { display: block; width: 100%; max-width: 340px; margin: 0 auto; text-align: center; }
  .hero .btn + .btn, .btn-outline { margin: 12px auto 0; }
  .card .btn { max-width: none; }
  section { padding: 40px 0; }
  .section-title { font-size: 1.45rem; }
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  th, td { padding: 10px 12px; font-size: 0.92rem; }
}
