/* ================================================================
   Wild Oz Expeditions – Minimalist Responsive CSS using FLEXBOX ONLY
   (No CSS Grid, No CSS Columns, No clamp())
   Brand colors, typography & style applied per requirements
================================================================ */

/* ========================
    RESET & NORMALIZATION
======================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
sumary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #F5F2ED;
  color: #20513A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #20513A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E97826;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ========================
        BRAND COLORS
======================== */
:root {
  --color-primary: #20513A;
  --color-body-bg: #F5F2ED;
  --color-contrast: #FFFFFF;
  --color-accent: #E97826;
  --color-accent-dark: #B04B00;
  --color-grey-100: #EBEAE7;
  --color-grey-200: #E3E0DA;
  --color-shadow: rgba(32,81,58,0.06);
  --color-shadow-sm: rgba(32,81,58,0.03);
}

/* ========================
        TYPOGRAPHY
======================== */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #284931;
  margin-bottom: 14px;
}

.subheadline {
  color: #58745b;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 580px;
}
.section ul, .section ol {
  padding-left: 1.3em;
  margin-bottom: 10px;
}
strong, b {
  font-weight: 600;
}

/* =========================
    CONTAINERS & LAYOUTS
========================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section:last-child {
  margin-bottom: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 20px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 240px;
  flex: 1 1 270px;
  transition: box-shadow 0.2s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 4px 22px var(--color-shadow);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
.text-section {
  max-width: 760px;
}

.testimonial-card,
.testimonial-card.featured {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px var(--color-shadow);
  padding: 24px 30px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 230px;
  max-width: 460px;
  color: #20513A;
}
.testimonial-card.featured {
  background: #F9F6F2;
  border: 2px solid var(--color-accent);
  box-shadow: 0 4px 24px var(--color-shadow);
}
.stars {
  letter-spacing: .15em;
  color: var(--color-accent);
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 2px;
}
.author {
  color: #6b6b6b;
  font-size: 0.97em;
  font-weight: 500;
  letter-spacing: .01em;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-bottom: 8px;
}
.features-list li {
  background: #fff;
  box-shadow: 0 1px 6px var(--color-shadow-sm);
  border-radius: 14px;
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 210px;
  max-width: 270px;
  flex: 1 1 210px;
  margin-bottom: 20px;
}
.features-list img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
  filter: grayscale(10%) brightness(92%);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0px;
  margin-top: 6px;
  margin-bottom: 32px;
}
.service-block {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 10px var(--color-shadow-sm);
  padding: 24px 17px 18px 21px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 270px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s;
}
.service-block:hover {
  box-shadow: 0 4px 18px var(--color-shadow);
}
.price {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.05em;
  margin-top: 10px;
}

.pricing-highlight {
  background: #fff9f3;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 8px var(--color-shadow-sm);
  margin: 18px 0 24px 0;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 8px;
}
.footer-contact-info {
  min-width: 180px;
  font-size: 0.97em;
  color: #295b3e;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}
.footer-menu a {
  color: #5e7763;
  font-size: 0.97em;
  transition: color 0.2s;
  margin-bottom: 5px;
  letter-spacing: .02em;
}
.footer-menu a:hover {
  color: var(--color-accent);
}
.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-links img {
  transition: opacity .17s;
  opacity: 0.85;
}
.social-links a:hover img {
  opacity: 1;
}

.address-details,
.location-map {
  margin-bottom: 14px;
}
.contact-details {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.location-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #414944;
  font-size: 0.97em;
  gap: 6px;
}
.location-map img {
  height: 40px;
  width: 40px;
  margin-bottom: 4px;
  opacity: 0.86;
}

/* ========================
        BUTTONS & CTAs
========================= */
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 100px;
  border: none;
  font-size: 1.09em;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px var(--color-shadow-sm);
  transition: background 0.19s, color 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  margin-bottom: 12px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 28px var(--color-shadow);
  outline: none;
}

button, .button, input[type="submit"], input[type="button"] {
  font-family: inherit;
  font-size: 1em;
  border-radius: 60px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 30px;
  box-shadow: 0 1px 6px var(--color-shadow-sm);
  transition: background 0.13s, box-shadow 0.2s;
}
button.secondary, .button.secondary {
  background: var(--color-grey-100);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
button.accent, .button.accent {
  background: var(--color-accent);
  color: #fff;
}
button:hover, .button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 18px var(--color-shadow);
}

/* ========================
        HEADER & NAV
========================== */
header {
  background: #fff;
  box-shadow: 0 2px 14px var(--color-shadow-sm);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  height: 76px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.06em;
  padding: 9px 12px;
  border-radius: 100px;
  transition: background 0.16s, color 0.18s;
}
.main-nav a:not(.cta-btn):hover,
.main-nav a:not(.cta-btn):focus {
  background: var(--color-grey-100);
  color: var(--color-accent);
  outline: none;
}
.main-nav .cta-btn {
  margin-left: 10px;
  min-width: 155px;
  font-size: 1.07em;
  color: white;
}
.main-nav img {
  height: 44px;
  width: 44px;
  margin-right: 13px;
  display: inline-flex;
  align-items: center;
}

/* ============================
 MOBILE MENU & HAMBURGER NAV
============================ */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 22px;
  background: #fff;
  color: var(--color-primary);
  border-radius: 30px;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  z-index: 31;
  border: 1px solid var(--color-grey-100);
  transition: background .18s, color .21s, box-shadow .17s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 32px 0 var(--color-shadow);
  z-index: 60;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.44,.2,.09,1), opacity .27s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 30px;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: var(--color-accent);
  background: transparent;
  border-radius: 50%;
  border: none;
  width: 46px;
  height: 46px;
  margin-left: 20px;
  margin-bottom: 8px;
  transition: background .16s, color .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-grey-100);
  color: var(--color-primary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 32px;
  padding-right: 24px;
  margin-top: 0;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.18em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 13px 6px 13px 0;
  border-bottom: 1px solid var(--color-grey-200);
  text-align: left;
  transition: color 0.14s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-accent);
  outline: none;
}

/* =============================
      COOKIE CONSENT BANNER
============================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -1px 12px var(--color-shadow);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  gap: 22px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s, transform 0.29s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .banner-msg {
  color: #1a3423;
  max-width: 510px;
  font-size: 1.05em;
  margin-bottom: 0;
}
.cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-btns .cookie-accept,
.cookie-btns .cookie-reject,
.cookie-btns .cookie-settings {
  font-size: 0.99em;
  padding: 10px 16px;
  border-radius: 40px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-grey-100);
  color: var(--color-primary);
  border: 1.2px solid var(--color-primary);
  cursor: pointer;
  transition: background 0.17s, color 0.18s;
}
.cookie-btns .cookie-accept {
  background: var(--color-accent);
  color: #fff;
  border: none;
}
.cookie-btns .cookie-accept:hover {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btns .cookie-reject:hover,
.cookie-btns .cookie-settings:hover {
  background: var(--color-grey-200);
  color: var(--color-accent);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1011;
  left: 0;top: 0;width: 100vw;height: 100vh;
  background: rgba(32,81,58,0.27);
  backdrop-filter: blur(2px);
  opacity: 1;
  pointer-events: all;
  transition: opacity .18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px var(--color-shadow);
  padding: 36px 26px 28px 26px;
  min-width: 340px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 0px 12px 0px;
  border-bottom: 1px solid #F3F1ED;
}
.cookie-category-row:last-child {
  border-bottom: none;
}
.cookie-category-row label {
  flex: 1 1 90px;
  color: #285b3e;
  font-weight: 500;
  font-size: 1.05em;
}
.cookie-category-row .toggle {
  width: 38px;
  height: 22px;
  border-radius: 16px;
  background: var(--color-grey-100);
  position: relative;
  transition: background .19s;
  margin-right: 5px;
  cursor: pointer;
  display: inline-block;
}
.cookie-category-row .toggle.enabled {
  background: var(--color-primary);
}
.cookie-category-row .toggle:after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left .19s;
  box-shadow: 0 1px 5px var(--color-shadow-sm);
}
.cookie-category-row .toggle.enabled:after {
  left: 18px;
}

.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .close-modal-btn {
  background: var(--color-accent);
  color: #fff;
  padding: 9px 22px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  transition: background .18s;
}
.cookie-modal .close-modal-btn:hover {
  background: var(--color-primary);
}

/* ====================
      PAGE ELEMENTS
==================== */
section {
  background: none;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ====================
       MISCELLANEOUS
==================== */
hr {
  border: none;
  height: 1px;
  background: var(--color-grey-100);
  margin: 26px 0;
}

::-webkit-input-placeholder { color: #a5a2a0; }
::-moz-placeholder { color: #a5a2a0; }
:-ms-input-placeholder { color: #a5a2a0; }
::placeholder { color: #a5a2a0; }

/* =========================
      GENERIC UTILITIES
========================= */
.hide { display: none !important; }
.invisible { opacity: 0 !important; pointer-events: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* =========================
         RESPONSIVE STYLES
========================= */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .main-nav {
    padding: 0 6px;
    gap: 9px;
  }
}

@media (max-width: 900px) {
  .features-list,
  .service-list,
  .testimonial-grid,
  .footer-flex {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .features-list li,
  .service-block,
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    margin: 12px 0 0 0;
  }
}

@media (max-width: 768px) {
  h1      { font-size: 2rem; }
  h2      { font-size: 1.42rem; }
  h3      { font-size: 1.08rem; }
  .section {
    margin-bottom: 38px;
    padding: 30px 6px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .features-list,
  .service-list,
  .testimonial-grid {
    gap: 12px;
  }
  .testimonial-card,
  .testimonial-card.featured {
    padding: 16px 12px;
    border-radius: 14px;
    font-size: 0.97em;
  }
  .footer-flex {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
    margin-top: 0;
  }
  .contact-details {
    flex-direction: column;
    gap: 16px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 4px;
  }
  .section {
    margin-bottom: 27px;
    padding: 24px 2px 20px 2px;
  }
  .footer-flex {
    gap: 13px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px 6px 15px 12px;
  }
  .cookie-banner .banner-msg {
    max-width: 99vw;
    font-size: 0.98em;
  }
  .cookie-modal {
    padding: 18px 8px 12px 8px;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  h1       { font-size: 1.23rem; }
  h2       { font-size: 1.05rem; }
  .section {
    margin-bottom: 15px;
    padding: 11px 1px 13px 1px;
  }
  .testimonial-card,
  .testimonial-card.featured {
    padding: 8px 4px;
    font-size: 0.93em;
  }
}

/* =============================
    FLEXBOX COLUMN DIRECTION
============================= */
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}

/* =============================
        PRINT/ACCESSIBILITY
============================= */
@media print {
  * { background: #fff !important; color: #000 !important; }
  .main-nav, .mobile-menu, .cookie-banner, .cookie-modal-overlay, header, footer { display: none !important; }
  .section, .container { box-shadow: none !important; padding: 0 !important; margin: 0 !important; }
}

/* =============================
      MICRO-INTERACTIONS
============================= */
.cta-btn, .service-block, .testimonial-card, .features-list li, .card {
  transition: box-shadow 0.2s, background 0.22s, border 0.21s;
}
.cta-btn:active,
.cta-btn:focus {
  transform: translateY(2px) scale(0.99);
}

/* ===============
 VISUALS/DETAILS
=============== */
::-webkit-scrollbar {
  width: 10px; background: var(--color-grey-200); border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary); border-radius: 10px;
}


/* =============================================
   END OF CSS – FLEXBOX ONLY, NO GRID/COLUMNS
   Brand, Flex, Responsive, Minimal, Consistent
   For any .cookie-banner or .cookie-modal, add to HTML when required
============================================= */