/* ===================================================================
   RETETI Adventure Safaris — Landing Page Styles
   Plain CSS · responsive (desktop / tablet / mobile)
   =================================================================== */

/* -------------------------------------------------------------------
   SECTION INDEX
   01. Theme variables & global reset
   02. Typography utility classes
   03. Buttons
   04. Cards, image placeholders & reveal animation
   05. Layout helpers (wrap / section / grid)
   06. Navigation / header
   07. Hero / banner
   08. Responsive behavior
   09. Forms
   10. Sliders, offers & misc utilities
   ------------------------------------------------------------------- */

:root {
  --lime: #8cc63f;
  --lime-bright: #a4d65e;
  --lime-deep: #6ba12b;
  --forest: #14401c;
  --forest-2: #0e2e14;
  --moss: #2e6b30;
  --gold: #e9a23b;
  --gold-deep: #c9821d;
  --sunset: #e2683a;
  --clay: #b5532a;
  --cream: #fbf7ec;
  --cream-2: #f4eedc;
  --sand: #ede4cc;
  --ink: #16211a;
  --ink-soft: #3c4a3e;
  --muted: #6e7a6c;
  --line: rgba(20, 64, 28, 0.14);
  --white: #ffffff;
  --display: "Anton", sans-serif;
  --head: "Archivo", sans-serif;
  --body: "Mulish", sans-serif;
  --script: "Caveat", cursive;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --shadow-sm: 0 4px 14px rgba(20, 46, 20, 0.08);
  --shadow-md: 0 14px 40px rgba(20, 46, 20, 0.14);
  --shadow-lg: 0 30px 70px rgba(14, 46, 20, 0.22);
  --maxw: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}
.head {
  font-family: var(--head);
}
.script {
  font-family: var(--script);
}
.eyebrow {
  font-family: var(--head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  color: var(--lime-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.on-dark {
  color: var(--lime-bright);
}
.eyebrow.center {
  justify-content: center;
}

/* ---------------- 05. Layout helpers (wrap / section / grid / utilities) ---------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}
.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.sec-head {
  max-width: 820px;
}
.sec-head.center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.sec-head h2 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  margin-top: 16px;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.sec-head.dark h2 {
  color: #f3fbe9;
}
.sec-head .accent {
  color: var(--gold);
}
.sec-head p {
  margin-top: 18px;
}
.sec-head.dark p {
  color: rgba(243, 251, 233, 0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 800;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest-2);
  box-shadow: 0 10px 24px rgba(201, 130, 29, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(201, 130, 29, 0.42);
  background: #f0ad48;
}
.btn-forest {
  background: var(--forest);
  color: #eaf6de;
}
.btn-forest:hover {
  transform: translateY(-2px);
  background: var(--moss);
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  box-shadow: inset 0 0 0 2px rgba(20, 64, 28, 0.25);
}
.btn-ghost:hover {
  background: rgba(20, 64, 28, 0.06);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25d366;
  color: #06351a;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.34);
}

/* ---------------- 04. Cards, image placeholders & reveal animation ---------------- */

.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #29551f 0%, #3a6e2a 46%, #5d8f3a 100%);
  color: #eaf6dd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  isolation: isolate;
  width: 100%;
  height: 100%;
}
.btn-wa:hover {
  transform: translateY(-2px);
  background: #2ee36f;
}
.dual-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.dual-cta.center {
  justify-content: center;
}

.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #29551f 0%, #3a6e2a 46%, #5d8f3a 100%);
  color: #eaf6dd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  isolation: isolate;
  width: 100%;
  height: 100%;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image:
    radial-gradient(
      circle at 78% 22%,
      rgba(233, 162, 59, 0.55),
      transparent 42%
    ),
    radial-gradient(circle at 12% 86%, rgba(164, 214, 94, 0.4), transparent 46%);
}
.ph .ph-ico {
  width: 38px;
  height: 38px;
  opacity: 0.92;
  margin-bottom: 10px;
}
.ph .ph-label {
  font-family: var(--head);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  line-height: 1.3;
  max-width: 90%;
}
.ph .ph-tag {
  margin-top: 7px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 700;
}
.ph .ph-corner {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.55;
}

/* image box with stock photo + fallback */
.imgbox {
  position: relative;
  overflow: hidden;
  background: #1f4417;
}
.imgbox .ph {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease;
}
.imgbox img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.5s ease;
}
.imgbox img.loaded {
  opacity: 1;
}

.card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 0.8, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 0.8, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 7px 13px;
  border-radius: 100px;
  background: rgba(140, 198, 63, 0.16);
  color: var(--moss);
}
.grid {
  display: grid;
  gap: 24px;
}
::selection {
  background: var(--gold);
  color: var(--forest-2);
}
body::-webkit-scrollbar {
  width: 11px;
}
body::-webkit-scrollbar-thumb {
  background: var(--moss);
  border-radius: 10px;
  border: 3px solid var(--cream);
}
#page-loading {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--moss);
  font-family: var(--head);
  font-weight: 700;
}

.include-card:hover,
.whyus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.act-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.pkg-card:hover img,
.act-card:hover img,
.dest-slide:hover img {
  transform: scale(1.05);
}
.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.22s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.partner-card:hover {
  transform: translateY(-4px);
}
.social-link {
  transition: background 0.2s ease;
}
.footer-link {
  transition: color 0.15s ease;
}

/* sliders */
.dest-track,
.testi-track {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.dest-track::-webkit-scrollbar,
.testi-track::-webkit-scrollbar {
  display: none;
  height: 0;
}
.slider-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-2);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(8, 28, 12, 0.35);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}
.slider-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: #f0ad48;
}

/* offer bar */
@keyframes growbar {
  from {
    width: 0;
  }
  to {
    width: 75%;
  }
}
.offer-bar {
  animation: growbar 1.4s cubic-bezier(0.16, 0.8, 0.3, 1) both;
}

/* form fields */
.ff {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ff.full {
  grid-column: 1 / -1;
}
.ff label {
  font-family: var(--head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--forest);
}
.ff label .req {
  color: var(--sunset);
}
.ff input,
.ff select,
.ff textarea {
  font-family: var(--body);
  font-size: 15px;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  width: 100%;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.ff input:focus,
.ff select:focus,
.ff textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(140, 198, 63, 0.16);
}
.ff textarea {
  resize: vertical;
  min-height: 64px;
}
.ff .err {
  font-size: 12px;
  color: var(--clay);
  font-weight: 600;
  min-height: 0;
}
.ff.invalid input,
.ff.invalid select {
  border-color: var(--clay);
}
.phone-row {
  display: flex;
}
.phone-row .cc {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: var(--cream-2);
  border: 1.5px solid var(--line);
  border-right: none;
  border-radius: 12px 0 0 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--forest);
}
.phone-row input {
  border-radius: 0 12px 12px 0;
}
.trip-chip {
  font-family: var(--head);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 15px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  transition: all 0.15s ease;
}
.trip-chip.on {
  border-color: var(--lime-deep);
  background: var(--lime);
  color: var(--forest-2);
}

/* ---------------- 08. Responsive behavior ---------------- */
.mobile-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 960px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
  }
  .mobile-menu {
    display: block !important;
  }
  .about-grid {
    grid-template-columns: 1fr !important;
  }
  .about-media {
    max-width: 520px;
  }
  .pkg-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .act-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .whyus-layout {
    grid-template-columns: 1fr !important;
  }
  .whyus-visual {
    min-height: 320px !important;
  }
  .qs-grid {
    grid-template-columns: 1fr !important;
  }
  .offer-inner {
    grid-template-columns: 1fr !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .why4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .inc4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .wrap {
    padding: 0 20px;
  }
  .pkg-grid,
  .act-grid {
    grid-template-columns: 1fr !important;
  }
  .qf-grid {
    grid-template-columns: 1fr !important;
  }
  .whyus-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .why4 {
    grid-template-columns: 1fr !important;
  }
  .inc4 {
    grid-template-columns: 1fr !important;
  }
  .display {
    line-height: 1;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
}

















/* ---------------- 06. Navigation / header ---------------- */
/* ==========================
   PREMIUM NAVBAR V2
========================== */







/* ==========================
   PREMIUM NAVBAR FINAL
========================== */
/* ==========================
   PREMIUM NAVBAR FINAL V3
========================== */

#nav{
  position:fixed;
  top:14px;
  left:50%;
  transform:translateX(-50%);
  width:95%;
  max-width:1450px;
  z-index:9999;
  transition:all .35s ease;
  border-radius:24px;
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  border:1px solid rgba(255,255,255,.08);
}

/* scrolled navbar */

#nav.scrolled{
  top:10px;
  background:rgba(248,246,238,.97);
  box-shadow:
  0 12px 40px rgba(0,0,0,.08);
}

/* ======================
   NAV INNER
====================== */

.nav-inner{
  height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 24px;
  transition:.3s ease;
}

#nav.scrolled .nav-inner{
  height:76px;
}

/* ======================
   LOGO
====================== */

.nav-logo{
  display:flex;
  align-items:center;
  transition:.3s ease;
}

.nav-logo:hover{
  transform:scale(1.03);
}

#nav-logo-img{
  width:auto;
  height:72px;
  object-fit:contain;
  transition:.3s ease;
}

#nav.scrolled #nav-logo-img{
  height:64px;
}

/* ======================
   NAV LINKS
====================== */

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
}

.nav-link{
  position:relative;
  text-decoration:none;
  font-family:'Nunito Sans',sans-serif;
  font-size:17px;
  font-weight:600;
  color:#fff;
  transition:.3s ease;
}

#nav.scrolled .nav-link{
  color:#18311b;
}

/* underline hover */

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:3px;
  border-radius:999px;
  background:#b5ef50;
  transition:.3s ease;
}

.nav-link:hover{
  color:#b5ef50;
}

.nav-link:hover::after{
  width:100%;
}

/* ======================
   BUTTONS
====================== */

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* common button */

.nav-btn{
  height:52px;
  padding:0 24px;
  border:none;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:'Nunito Sans',sans-serif;
  font-size:15px;
  font-weight:800;
  text-decoration:none;
  transition:all .3s ease;
  cursor:pointer;
}

.nav-btn:hover{
  transform:translateY(-3px);
}

/* whatsapp button */

.nav-btn-wa{
  background:#25D366;
  color:#fff;
  box-shadow:
  0 10px 26px rgba(37,211,102,.22);
}

.nav-btn-wa:hover{
  background:#20c35d;
}

/* quote button */

.nav-btn-primary{
  background:#f4b53f;
  color:#111;
  box-shadow:
  0 10px 26px rgba(244,181,63,.25);
}

.nav-btn-primary:hover{
  background:#efab2b;
}

/* button icons */

.nav-icon{
  width:32px;
  height:32px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ======================
   MOBILE HAMBURGER
====================== */

.mobile-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:16px;
  background:#f4b53f;
  color:#14311a;
  cursor:pointer;
  transition:.3s ease;
  box-shadow:
  0 8px 22px rgba(244,181,63,.22);
}

.mobile-toggle:hover{
  transform:translateY(-2px);
}

.mobile-toggle i{
  font-size:20px;
  color:#14311a;
}

/* scrolled mobile icon */

#nav.scrolled .mobile-toggle{
  /* background:#18311b; */
  background:#e9a23b;
}

#nav.scrolled .mobile-toggle i{
  color:#fff;
}

/* ======================
   MOBILE MENU
====================== */

.mobile-menu{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
  background:#f8f6ef;
  border-radius:0 0 24px 24px;
}

.mobile-menu.open{
  max-height:520px;
}

.mobile-menu-inner{
  padding:20px;
}

.mm-link{
  display:block;
  padding:16px 0;
  text-decoration:none;
  color:#18311b;
  font-family:'Nunito Sans',sans-serif;
  font-size:17px;
  font-weight:800;
  border-bottom:
  1px solid rgba(0,0,0,.06);
}

/* ======================
   RESPONSIVE
====================== */

@media(max-width:991px){

  .desktop-nav{
    display:none;
  }

  .mobile-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .nav-inner{
    height:76px;
    padding:0 16px;
  }

  #nav-logo-img{
    height:58px;
  }

  .nav-actions{
    gap:8px;
  }

  .nav-btn{
    height:44px;
    padding:0 18px;
    font-size:13px;
    border-radius:14px;
  }

  .nav-btn-wa{
    display:none;
  }
}

/* extra small mobile */

@media(max-width:480px){

  #nav{
    width:94%;
    border-radius:20px;
  }

  .nav-inner{
    height:72px;
  }

  #nav-logo-img{
    height:52px;
  }

  .mobile-toggle{
    width:44px;
    height:44px;
  }
}
















/* ---------------- 07. Hero / banner section ---------------- */







/* ==========================
   HERO SECTION UPDATED
========================== */

/* ==========================
   PREMIUM HERO SECTION
========================== */
/* ==========================
   PREMIUM WOW HERO
========================== */

/* ==========================
   PREMIUM HERO V2
========================== */

/* ==========================
   PREMIUM HERO SECTION V2
========================== */

/* ==========================
   PREMIUM HERO FINAL FIX
========================== */

/* ==========================
   HERO FINAL UPDATED
========================== */

.hero{
  position:relative;
  background:
  linear-gradient(
    180deg,
    #07140a 0%,
    #0d1f11 100%
  );
  padding:140px 0 90px;
  overflow:hidden;
  isolation:isolate;
}

/* glow */
.hero::before{
  content:"";
  position:absolute;
  width:700px;
  height:700px;
  background:
  radial-gradient(
    circle,
    rgba(181,239,80,.12),
    transparent 70%
  );
  top:-200px;
  right:-100px;
}

/* overlay */
.hero-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to right,
    rgba(7,20,10,.92),
    rgba(7,20,10,.72)
  );
  z-index:0;
  pointer-events:none;
}

.hero-container{
  position:relative;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
}

/* ======================
   LEFT SIDE
====================== */

.hero-left{
  flex:1;
  max-width:620px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 24px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-weight:700;
  backdrop-filter:blur(18px);
}

.hero-title{
  margin-top:28px;
  font-size:clamp(52px,6vw,60px);
  line-height:.95;
  font-weight:800;
  color:#fff;
}

.hero-title span{
  display:block;
  color:#b5ef50;
}

.hero-subtitle{
  margin-top:24px;
  color:rgba(255,255,255,.88);
  font-size:19px;
  line-height:1.9;
}

/* ======================
   TRUST CHIPS
====================== */

.trust-chips{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.chip{
  padding:14px 20px;
  border-radius:18px;
  background:#132016;
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-weight:600;
}

/* ======================
   BUTTONS
====================== */

.hero-buttons{
  display:flex;
  gap:18px;
  margin-top:36px;
  flex-wrap:wrap;
}

.hero-btn{
  min-width:260px;
  height:68px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:18px;
  font-weight:800;
  text-decoration:none;
  transition:.3s ease;
}

.hero-btn:hover{
  transform:translateY(-5px);
}

.quote-btn{
  background:#f5b53f;
  color:#111;
  box-shadow:
  0 15px 35px rgba(245,181,63,.28);
}

.whatsapp-btn{
  background:#25D366;
  color:#fff;
  box-shadow:
  0 15px 35px rgba(37,211,102,.25);
}

.wa-circle{
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ======================
   RIGHT IMAGE
====================== */

.hero-right{
  flex:1;
  display:flex;
  justify-content:center;
}

.hero-image-wrapper{
  position:relative;
  width:100%;
  max-width:540px;
}

.hero-image{
  width:100%;
  height:640px;
  object-fit:cover;
  border-radius:36px;
  box-shadow:
  0 30px 80px rgba(0,0,0,.35);
}

/* ======================
   FLOATING CARDS
====================== */

.floating-review{
  position:absolute;
  top:35px;
  left:-45px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
  border-radius:24px;
  padding:22px 28px;
  color:#fff;
}

.floating-review h3{
  font-size:38px;
  color:#b5ef50;
  font-weight:900;
  margin:0;
}

.floating-review p{
  margin-top:6px;
  color:#fff;
}

.floating-support{
  position:absolute;
  bottom:35px;
  right:-35px;
  display:flex;
  align-items:center;
  gap:14px;
  background:rgba(255,255,255,.12);
  border-radius:24px;
  padding:18px 22px;
  color:#fff;
  backdrop-filter:blur(18px);
}

.floating-support i{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ======================
   STATS
====================== */

.hero-stats-wrap{
  position:relative;
  z-index:5;
  margin-top:80px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.stat-box{
  background:#162517;
  border:1px solid rgba(181,239,80,.22);
  border-radius:28px;
  padding:40px 30px;
  text-align:center;
  transition:.3s ease;
  box-shadow:
  0 10px 30px rgba(0,0,0,.22);
}

.stat-box:hover{
  transform:translateY(-8px);
}

.stat-box h3{
  font-size:56px;
  font-weight:900;
  color:#b5ef50;
  margin:0;
  line-height:1;
}

.stat-box p{
  margin-top:12px;
  color:#fff;
  font-size:18px;
  font-weight:600;
}

/* ======================
   TABLET
====================== */

@media(max-width:991px){

  .hero{
    padding-top:120px;
  }

  .hero-container{
    flex-direction:column;
    text-align:center;
  }

  .hero-left{
    max-width:100%;
  }

  .trust-chips,
  .hero-buttons{
    justify-content:center;
  }

  .hero-image-wrapper{
    max-width:420px;
  }

  .hero-image{
    height:500px;
  }

  .floating-review{
    left:10px;
    top:-20px;
  }

  .floating-support{
    right:10px;
    bottom:-20px;
  }

  .hero-stats-wrap{
    grid-template-columns:repeat(2,1fr);
  }
}

/* ======================
   MOBILE
====================== */

@media(max-width:576px){

  .hero{
    padding:110px 0 70px;
  }

  .hero-title{
    font-size:42px;
    line-height:1.05;
  }

  .hero-subtitle{
    font-size:16px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-btn{
    width:100%;
    min-width:unset;
    height:60px;
    font-size:16px;
  }

  /* 2 boxes in one row */
  .hero-stats-wrap{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .stat-box{
    padding:26px 16px;
    border-radius:20px;
  }

  .stat-box h3{
    font-size:34px;
  }

  .stat-box p{
    font-size:13px;
    line-height:1.4;
  }

  .hero-image{
    height:420px;
    border-radius:24px;
  }

  .floating-review{
    top:10px;
    left:10px;
    padding:14px 18px;
  }

  .floating-review h3{
    font-size:24px;
  }

  .floating-support{
    right:10px;
    bottom:10px;
    padding:14px 18px;
  }
}



















/* ---------------- 08. Inline form section (#plan) ---------------- */
/* ==========================
   PREMIUM INLINE FORM
========================== */

.inline-form-sec{
  position:relative;
  background:
  linear-gradient(
    180deg,
    #f4b53f 0%,
    #eaa22c 100%
  );
  padding:80px 0;
  overflow:hidden;
}

/* subtle glow */
.inline-form-sec::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:
  radial-gradient(
    circle,
    rgba(255,255,255,.18),
    transparent 70%
  );
  top:-180px;
  right:-120px;
}

.inline-form-sec .wrap{
  position:relative;
  z-index:2;
}

/* heading */

.inline-form-title{
  font-weight:900;
  font-size:clamp(30px,4vw,48px);
  line-height:1.05;
  color:#14311a;
  margin-top:14px;
  letter-spacing:-1px;
}

.inline-form-sub{
  font-size:18px;
  color:rgba(20,49,26,.85);
  margin-top:14px;
  font-weight:600;
  max-width:720px;
  margin-inline:auto;
}

/* ======================
   FORM CARD
====================== */

.inline-form-sec .form-card{
  margin-top:36px;
  border-radius:32px;
  padding:42px;
  background:
  rgba(255,255,255,.22);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:
    0 20px 60px rgba(0,0,0,.12);
  position:relative;
  overflow:hidden;
}

/* top accent */

.inline-form-sec .form-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:
  linear-gradient(
    90deg,
    #25D366,
    #14311a
  );
}

/* ======================
   INPUTS
====================== */

.inline-form-sec input,
.inline-form-sec select,
.inline-form-sec textarea{
  width:100%;
  height:60px;
  border:none;
  outline:none;
  border-radius:18px;
  padding:0 20px;
  background:#fff;
  font-size:16px;
  font-weight:600;
  color:#14311a;
  box-shadow:
    0 6px 20px rgba(0,0,0,.06);
  transition:.3s ease;
}

.inline-form-sec textarea{
  min-height:140px;
  padding:18px 20px;
  resize:none;
}

.inline-form-sec input:focus,
.inline-form-sec select:focus,
.inline-form-sec textarea:focus{
  transform:translateY(-2px);
  box-shadow:
    0 12px 30px rgba(0,0,0,.12);
}

/* placeholder */

.inline-form-sec input::placeholder,
.inline-form-sec textarea::placeholder{
  color:#7a7a7a;
}

/* ======================
   GRID
====================== */

.qf-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

/* ======================
   BUTTON
====================== */

.inline-form-sec .btn-primary{
  width:100%;
  justify-content:center;
  height:64px;
  border:none;
  border-radius:20px;
  font-size:18px;
  font-weight:900;
  background:
  linear-gradient(
    135deg,
    #14311a,
    #1f4927
  );
  color:#fff;
  box-shadow:
    0 18px 40px rgba(20,49,26,.22);
  transition:.3s ease;
}

.inline-form-sec .btn-primary:hover{
  transform:translateY(-4px);
}

/* safety text */

.form-note{
  margin-top:14px;
  font-size:13px;
  text-align:center;
  color:rgba(20,49,26,.75);
  font-weight:600;
}

/* ======================
   MOBILE
====================== */

@media(max-width:768px){

  .inline-form-sec{
    padding:60px 0;
  }

  .inline-form-title{
    font-size:34px;
  }

  .inline-form-sub{
    font-size:16px;
  }

  .inline-form-sec .form-card{
    padding:24px;
    border-radius:26px;
  }

  .qf-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .inline-form-sec input,
  .inline-form-sec select,
  .inline-form-sec textarea{
    height:56px;
    font-size:15px;
  }

  .inline-form-sec .btn-primary{
    height:58px;
    font-size:16px;
  }
}



























/* ---------------- 09. About section (#about) ---------------- */
/* ==========================
   ABOUT SECTION PREMIUM
========================== */

.about-premium{
  background:#f8f5ea;
  padding:120px 0;
  overflow:hidden;
  font-family: 'Mulish', sans-serif;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:80px;
}

/* LEFT */

.about-content{
  max-width:580px;
}

.about-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#edf5de;
  border:1px solid rgba(132,185,54,.15);
  padding:14px 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  color:#7ba133;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.about-heading{
  margin-top:28px;
  font-size:clamp(42px,4vw,46px);
  line-height:1.08;
  font-weight:800;
  color:#17361d;
  letter-spacing:-2px;
  max-width:600px;
}

.about-heading span{
  color:#91c93d;
}

.about-text{
  margin-top:28px;
  font-size:19px;
  line-height:1.9;
  color:#4d5a50;
  max-width:540px;
}

/* features */

.about-features{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin:38px 0;
}

.feature-pill{
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(14px);
  border:1px solid rgba(0,0,0,.06);
  padding:18px 24px;
  border-radius:999px;
  font-size:15px;
  font-weight:800;
  color:#284428;
  transition:.3s;
}

.feature-pill:hover{
  transform:translateY(-5px);
}

.feature-pill i{
  color:#88ba35;
}

/* buttons */

.premium-buttons{
  display:flex;
  gap:18px;
  margin-top:20px;
  flex-wrap:wrap;
}

.premium-btn{
  height:68px;
  min-width:260px;
  border:none;
  border-radius:20px;
  background:#f3b33f;
  color:#111;
  font-size:19px;
  font-weight:900;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  transition:.35s;
  box-shadow:0 18px 45px rgba(243,179,63,.25);
}

.premium-btn:hover{
  transform:translateY(-5px);
}

.wa-btn{
  height:68px;
  min-width:260px;
  border-radius:20px;
  background:#25D366;
  color:#fff;
  font-size:19px;
  font-weight:900;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  transition:.35s;
}

.wa-btn:hover{
  transform:translateY(-5px);
}

/* RIGHT IMAGE */

.about-image{
  position:relative;
}

.about-image img{
  width:100%;
  height:680px;
  object-fit:cover;
  border-radius:42px;
  box-shadow:0 30px 70px rgba(0,0,0,.18);
}

.trust-card{
  position:absolute;
  left:-40px;
  bottom:50px;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(18px);
  border-radius:24px;
  padding:20px 24px;
  display:flex;
  gap:16px;
  align-items:center;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.trust-card strong{
  display:block;
  font-size:18px;
  color:#18351d;
}

.trust-card p{
  margin:0;
  color:#5f685f;
  font-size:14px;
}

.trust-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#fff3cf;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

/* mobile */

@media(max-width:991px){

  .about-grid{
    grid-template-columns:1fr;
  }

  .about-content{
    order:2;
    text-align:center;
    max-width:100%;
  }

  .about-image{
    order:1;
  }

  .about-features,
  .premium-buttons{
    justify-content:center;
  }

  .about-image img{
    height:500px;
  }

  .trust-card{
    left:20px;
    bottom:20px;
  }
}

@media(max-width:576px){

  .about-heading{
    font-size:38px;
  }

  .premium-btn,
  .wa-btn{
    width:100%;
    min-width:unset;
  }

  .feature-pill{
    width:100%;
    justify-content:center;
  }
}















.ico{
    display:flex;
    align-items:center;
    justify-content:center;
}

.ico svg{
    width:100%;
    height:100%;
    display:block;
}


.dest-slide{
  position: relative;
  min-width: 370px;
  height: 380px;
  overflow: hidden;
  border-radius: 28px;
}

.dest-slide .imgbox-inner{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.dest-slide img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  opacity: 1 !important;
  z-index: 2;
}

.dest-slide .scrim{
  position: absolute;
  inset: 0;
  z-index: 3;
}

.dest-slide .info{
  position: absolute;
  bottom: 24px;
  left: 20px;
  z-index: 4;
}































/* ---------------- 10. Trusted section */
.trusted {
  background: var(--lime);
  padding: 28px 0;
}
.trusted-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  text-align: center;
}
.trusted-label {
  font-weight: 800;
  color: var(--forest-2);
  font-size: clamp(15px, 1.6vw, 19px);
}
.trusted-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.trusted-cities span {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--forest-2);
  background: rgba(255, 255, 255, 0.55);
  padding: 7px 15px;
  border-radius: 100px;
}

/* ---------------- 11. Packages section (#packages / #tanzania) ---------------- */
.pkg-title {
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.06;
  color: var(--forest);
  margin-top: 16px;
  letter-spacing: -0.01em;
}

/* ---------------- 12. Destinations section (#destinations) ---------------- */
.dest-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.dest-head-title {
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 30px);
  color: #f3fbe9;
}
.dest-head-rule {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.slider {
  position: relative;
}
.dest-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.dest-slide {
  flex: 0 0 clamp(255px, 31%, 340px);
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
}
.dest-slide .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 28, 12, 0) 38%,
    rgba(8, 24, 10, 0.9) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.dest-slide .info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
}

/* ---------------- 13. Why Us section (#whyus) ---------------- */
.whyus-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
}
.whyus-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-md);
}
.whyus-visual-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 28, 12, 0.15) 0%,
    rgba(8, 24, 10, 0.88) 100%
  );
  z-index: 2;
}
.whyus-visual-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  z-index: 3;
}
.whyus-visual-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.whyus-visual-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold);
  display: grid;
  place-items: center;
  color: var(--forest-2);
  flex-shrink: 0;
}
.whyus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.whyus-tags span {
  font-family: var(--head);
  font-weight: 700;
  font-size: 12px;
  color: var(--forest-2);
  background: rgba(164, 214, 94, 0.92);
  padding: 6px 12px;
  border-radius: 100px;
}

/* ---------------- 14. Reviews section (#reviews) ---------------- */
.testi-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.testi-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.testi-rating-rule {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
}
.testi-rating-note {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 120px;
  font-weight: 600;
}
.testi-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.testi-slide {
  flex: 0 0 clamp(280px, 32%, 380px);
  scroll-snap-align: start;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(164, 214, 94, 0.18);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}

.offer-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.offer-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 28, 12, 0.94) 0%,
    rgba(14, 46, 20, 0.86) 48%,
    rgba(8, 24, 10, 0.45) 100%
  );
}
.offer-inner {
  position: relative;
  padding: clamp(34px, 5vw, 62px);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 36px;
  align-items: center;
}
.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sunset);
  color: #fff;
  font-family: var(--head);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 100px;
}
.offer-h2 {
  font-weight: 800;
  font-size: clamp(27px, 3.6vw, 46px);
  line-height: 1.06;
  color: #fff;
  margin-top: 18px;
  letter-spacing: -0.01em;
}
.offer-p {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  max-width: 640px;
}
.offer-slots {
  margin-top: 24px;
  max-width: 460px;
}
.offer-slots-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--head);
  font-weight: 700;
  font-size: 13px;
  color: #eaf6dd;
  margin-bottom: 8px;
}
.offer-slots-bar {
  height: 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}
.offer-bar {
  height: 100%;
  width: 75%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--lime), var(--gold));
}
.offer-feats {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.offer-feats > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #eaf6dd;
  font-weight: 600;
  font-size: 14.5px;
}
.offer-feats .ico {
  width: 18px;
  height: 18px;
  color: var(--lime-bright);
}

/* ---------------- 15. Offer section (#offer) ---------------- */
.offer-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(164, 214, 94, 0.3);
  border-radius: var(--r-lg);
  padding: 24px;
  backdrop-filter: blur(6px);
}
.offer-box-big {
  font-size: clamp(40px, 5vw, 62px);
  color: var(--gold);
  line-height: 1;
}
.offer-box-sub {
  color: #eaf6dd;
  font-weight: 700;
  font-size: 14px;
  margin-top: 6px;
  margin-bottom: 18px;
}

/* ---------------- 16. Quote section (#quote) ---------------- */
.quote-sec {
  background: linear-gradient(165deg, var(--forest) 0%, var(--forest-2) 100%);
  overflow: hidden;
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0;
}
.quote-blob {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 162, 59, 0.22),
    transparent 70%
  );
}
.qs-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.quote-h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.05;
  color: #f3fbe9;
  margin-top: 16px;
  letter-spacing: -0.01em;
}
.quote-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.quote-feats > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #eaf6dd;
}
.qf-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(140, 198, 63, 0.2);
  display: grid;
  place-items: center;
  color: var(--lime-bright);
  flex-shrink: 0;
}
.qf-ico .ico {
  width: 18px;
  height: 18px;
}
.quote-feats > div span:last-child {
  font-size: 15px;
  font-weight: 600;
}
.quote-form-card {
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-lg);
}

/* ---------------- 17. Partners section (#partners) ---------------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 44px;
  align-items: center;
}
.partner-card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 14px;
  transition: transform 0.2s ease;
}
.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ---------------- 18. Footer section (#footer) ---------------- */
#footer {
  background: var(--forest-2);
  color: #dfeccf;
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #eaf6dd;
}
.footer-social a:hover {
  background: var(--lime-deep);
}
.footer-col-title {
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-link {
  font-size: 14px;
  color: rgba(223, 236, 207, 0.72);
}
.footer-link:hover {
  color: var(--lime-bright);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 11px;
}
.footer-contact .fc-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(140, 198, 63, 0.15);
  display: grid;
  place-items: center;
  color: var(--lime-bright);
  flex-shrink: 0;
}
.footer-contact .fc-ico .ico {
  width: 19px;
  height: 19px;
}
.footer-contact span:last-child {
  font-size: 14.5px;
  font-weight: 600;
  color: #eaf6dd;
}
.footer-bar {
  background: rgba(0, 0, 0, 0.25);
  padding: 18px 0;
}
.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.footer-bar-inner span {
  font-size: 13px;
  color: rgba(223, 236, 207, 0.55);
}
.rot180 {
  display: inline-flex;
  transform: rotate(180deg);
}






















/* =========================================
   SAFARI FORM SECTION CSS
========================================= */


:root{
  --sqf-green:#173d2d;
  --sqf-green-mid:#21553f;

  --sqf-gold:#e9a23b;
  --sqf-gold-dark:#cf8b26;
  --sqf-gold-soft:#fff5e4;

  --sqf-bg:#f7f5ef;
  --sqf-border:#ebe7dc;

  --sqf-text:#122019;
  --sqf-text-mid:#4b5563;
  --sqf-text-light:#9ca3af;

  --sqf-highlight:#9cc4ab;

  --sqf-white:#ffffff;

  --sqf-radius:18px;
  --sqf-radius-lg:34px;

  --sqf-shadow:
  0 10px 40px rgba(0,0,0,.06);

  --sqf-shadow-hover:
  0 20px 60px rgba(0,0,0,.12);

  --sqf-font:'Mulish',sans-serif;
}

/* ========================================
   SECTION
======================================== */

.sqf-form-section{
  width:100%;
  padding:60px 10px;
  background:
  radial-gradient(
    circle at top right,
    rgba(233,162,59,.08),
    transparent 30%
  );
}

/* ========================================
   FORM CARD
======================================== */

.sqf-form-panel{
  position:relative;
  overflow:hidden;

  max-width:900px;
  margin:0 auto;

  background:
  rgba(255,255,255,.90);

  backdrop-filter:blur(10px);

  border:
  1px solid rgba(233,162,59,.12);

  border-radius:
  var(--sqf-radius-lg);

  padding:70px 60px;

  box-shadow:
  var(--sqf-shadow);

  transition:.45s ease;
}

/* premium top line */
.sqf-form-panel::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;

  background:
  linear-gradient(
    90deg,
    #173d2d,
    #e9a23b
  );
}

.sqf-form-panel:hover{
  transform:translateY(-6px);
  box-shadow:
  var(--sqf-shadow-hover);
}

/* ========================================
   HEADER
======================================== */

.sqf-form-header{
  text-align:center;
  margin-bottom:55px;
}

/* badge */
.sqf-form-eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 18px;

  border-radius:999px;

  background:
  var(--sqf-gold-soft);

  color:
  var(--sqf-gold-dark);

  font-size:12px;
  font-weight:800;

  letter-spacing:.14em;
  text-transform:uppercase;

  margin-bottom:22px;
}

/* HERO STYLE HEADING */
.sqf-form-header h3{
  margin:0;

  font-size:
  clamp(44px, 5vw, 40px);

  line-height:.95;
  font-weight:800;
  letter-spacing:-2px;

  color:
  var(--sqf-text);

  margin-bottom:22px;
}

/* highlighted word */
.sqf-form-header h3 span{
  position:relative;
  display:inline-block;
  color:#88b09a;
  z-index:1;
}

.sqf-form-header h3 span::after{
  content:'';
  position:absolute;
  left:0;
  bottom:10px;

  width:100%;
  height:56%;

  background:
  rgba(136,176,154,.20);

  z-index:-1;
  border-radius:8px;
}

.sqf-form-header p{
  max-width:640px;
  margin:auto;

  color:
  var(--sqf-text-mid);

  font-size:17px;
  line-height:1.8;
  font-weight:500;
}

/* ========================================
   GRID
======================================== */

.sqf-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.sqf-field-full{
  grid-column:1/-1;
}

/* ========================================
   FIELD
======================================== */

.sqf-field{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.sqf-field label{
  font-size:13px;
  font-weight:800;
  color:#2d3748;
}

.sqf-req{
  color:var(--sqf-gold);
}

/* ========================================
   INPUTS
======================================== */

.sqf-field input,
.sqf-field select,
.sqf-field textarea{
  width:100%;
  height:50px;

  border:
  1.5px solid transparent;

  background:
  #faf9f5;

  border-radius:
  var(--sqf-radius);

  padding:0 20px;

  font-family:
  var(--sqf-font);

  font-size:15px;
  color:
  var(--sqf-text);

  outline:none;

  transition:
  .35s ease;

  box-shadow:
  inset 0 0 0 1px rgba(0,0,0,.05);
}

/* textarea */
.sqf-field textarea{
  height:100px;
  resize:vertical;
  padding:18px 20px;
  line-height:1.7;
}

/* placeholder */
.sqf-field input::placeholder,
.sqf-field textarea::placeholder{
  color:#b0b0b0;
}

/* hover */
.sqf-field input:hover,
.sqf-field select:hover,
.sqf-field textarea:hover{
  background:#fff;
  border-color:
  rgba(233,162,59,.22);

  transform:
  translateY(-1px);
}

/* focus */
.sqf-field input:focus,
.sqf-field select:focus,
.sqf-field textarea:focus{
  background:#fff;

  border-color:
  var(--sqf-gold);

  box-shadow:
  0 0 0 5px rgba(233,162,59,.12),
  0 12px 30px rgba(233,162,59,.08);

  transform:
  translateY(-2px);
}

/* ========================================
   SELECT
======================================== */

.sqf-select-wrap{
  position:relative;
}

.sqf-select-wrap::after{
  content:'';

  position:absolute;
  top:50%;
  right:20px;

  width:8px;
  height:8px;

  border-right:
  2px solid #888;

  border-bottom:
  2px solid #888;

  transform:
  translateY(-70%)
  rotate(45deg);

  pointer-events:none;
}

.sqf-select-wrap select{
  appearance:none;
  cursor:pointer;
  padding-right:50px;
}

/* ========================================
   PHONE
======================================== */

.sqf-phone-row{
  display:flex;
}

.sqf-phone-prefix{
  display:flex;
  align-items:center;
  justify-content:center;

  padding:0 18px;

  background:#faf9f5;

  border:
  1px solid #ececec;

  border-right:none;

  border-radius:
  18px 0 0 18px;

  font-size:14px;
  font-weight:700;
  color:#333;
}

.sqf-phone-row input{
  border-radius:
  0 18px 18px 0;
}

/* ========================================
   CTA
======================================== */

.sqf-cta-area{
  margin-top:40px;
}

.sqf-submit{
  position:relative;
  overflow:hidden;

  width:100%;
  height:64px;

  border:none;

  border-radius:20px;

  background:
  linear-gradient(
    135deg,
    #e9a23b,
    #cf8b26
  );

  color:#fff;

  font-size:16px;
  font-weight:800;
  letter-spacing:.02em;

  cursor:pointer;

  transition:.35s ease;

  box-shadow:
  0 14px 35px rgba(233,162,59,.30);
}

/* shine animation */
.sqf-submit::before{
  content:'';
  position:absolute;
  top:0;
  left:-120%;

  width:60%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );

  transition:.7s ease;
}

.sqf-submit:hover::before{
  left:140%;
}

.sqf-submit:hover{
  transform:
  translateY(-3px)
  scale(1.01);

  box-shadow:
  0 20px 50px rgba(233,162,59,.35);
}

.sqf-submit:active{
  transform:scale(.98);
}

.sqf-privacy{
  text-align:center;
  margin-top:18px;
  font-size:12px;
  color:#8f8f8f;
}

/* ========================================
   MOBILE
======================================== */

@media(max-width:768px){

  .sqf-form-section{
    padding:70px 8px;
  }

  .sqf-form-panel{
    padding:38px 22px;
    border-radius:28px;
  }

  .sqf-fields{
    grid-template-columns:1fr;
    gap:18px;
  }

  .sqf-form-header{
    margin-bottom:38px;
  }

  .sqf-form-header h3{
    font-size:clamp(34px,8vw,46px);
    line-height:1;
    letter-spacing:-1.5px;
  }

  .sqf-form-header p{
    font-size:15px;
  }

}

.quote-form-wrap .sqf-form-panel{
  max-width:100%;
  padding:42px;
}.quote-form-wrap .sqf-form-panel{
  max-width:100%;
  padding:54px 26px;
  min-height:760px;
}







.quote-feats{
  margin-top:34px;

  display:flex;
  flex-direction:column;
  gap:16px;

  max-width:500px;
}

/* feature cards */
.quote-feature-card{
  display:flex;
  align-items:flex-start;
  gap:16px;

  padding:18px 20px;

  background:
  rgba(255,255,255,.05);

  border:
  1px solid rgba(255,255,255,.08);

  border-radius:22px;

  backdrop-filter:blur(10px);

  transition:.3s ease;
}

.quote-feature-card:hover{
  transform:translateY(-2px);

  background:
  rgba(255,255,255,.08);

  border-color:
  rgba(233,162,59,.2);
}

.quote-icon{
  width:48px;
  height:48px;

  border-radius:16px;

  background:
  rgba(233,162,59,.14);

  color:#e9a23b;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
  flex-shrink:0;
}

.quote-feature-card h4{
  margin:0 0 6px;

  font-size:18px;
  font-weight:700;
  color:#fff;
}

.quote-feature-card p{
  margin:0;

  font-size:14px;
  line-height:1.6;

  color:
  rgba(255,255,255,.72);
}

.quote-trust-row{
  display:grid;
  grid-template-columns:
  repeat(3,1fr);

  gap:14px;

  margin-top:28px;
  margin-bottom:28px;

  max-width:520px;
}

.quote-trust-item{
  padding:18px 16px;

  border-radius:18px;

  background:
  rgba(255,255,255,.05);

  border:
  1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(8px);

  text-align:center;
}

.quote-trust-item strong{
  display:block;

  font-size:22px;
  font-weight:800;

  color:#fff;

  margin-bottom:4px;
}

.quote-trust-item span{
  font-size:13px;

  color:
  rgba(255,255,255,.72);
}
































.footer-credit{
  color:rgba(255,255,255,.75);
  text-decoration:none;
  transition:.3s ease;
}

.footer-credit strong{
  color:#22c55e;
  font-weight:800;
}

.footer-credit:hover{
  color:#fff;
}

.footer-credit:hover strong{
  color:#34d399;
}












.quote-form-wrap .sqf-form-panel{
    background-color: #ffffff !important;
    background: #ffffff !important;
}






















/* ==========================
   THANK YOU PAGE
========================== */

/* ==========================================
   THANK YOU PAGE - PREMIUM SAFARI VERSION
========================================== */

/* ==========================================
   THANK YOU PAGE - HERO STYLE VERSION
========================================== */

.thank-you-page{
    position:relative;
    isolation:isolate;
    overflow:hidden;

    padding:120px 20px;

    background:linear-gradient(
        rgb(7,20,10) 0%,
        rgb(13,31,17) 100%
    );
}

/* Hero Glow Effects */

.thank-you-page::before{
    content:"";
    position:absolute;

    top:-180px;
    right:-180px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(163,212,63,.08);

    filter:blur(100px);
    pointer-events:none;
}

.thank-you-page::after{
    content:"";
    position:absolute;

    bottom:-220px;
    left:-220px;

    width:550px;
    height:550px;

    border-radius:50%;

    background:rgba(244,181,63,.06);

    filter:blur(120px);
    pointer-events:none;
}

/* ==========================================
   MAIN CARD
========================================== */

.thank-you-wrap{
    position:relative;
    z-index:2;

    max-width:950px;
    margin:auto;

    text-align:center;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:32px;

    padding:70px 50px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

/* ==========================================
   SUCCESS ICON
========================================== */

.success-check{
    width:90px;
    height:90px;

    margin:0 auto 32px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #a3d43f,
        #8cc63f
    );

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 15px 40px rgba(163,212,63,.35);
}

/* ==========================================
   LABEL
========================================== */

.thank-label{
    display:inline-block;

    font-size:13px;
    letter-spacing:2px;

    font-weight:700;
    text-transform:uppercase;

    color:#b4e25c;

    margin-bottom:18px;
}

/* ==========================================
   TITLE
========================================== */

.thank-you-wrap h1{
    font-size:46px;
    line-height:1.1;

    font-weight:800;

    color:#fff;

    margin-bottom:24px;
}

/* ==========================================
   SUBTITLE
========================================== */

.thank-subtitle{
    max-width:760px;
    margin:auto;

    color:rgba(255,255,255,.82);

    font-size:18px;
    line-height:1.9;
}

/* ==========================================
   DIVIDER
========================================== */

.thank-divider{
    width:90px;
    height:4px;

    margin:55px auto;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        #f4b53f,
        #e9a23b
    );
}

/* ==========================================
   BUTTON
========================================== */

.thank-actions{
    margin-bottom:55px;
}

.back-home-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    padding:18px 38px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        #f4b53f,
        #e9a23b
    );

    color:#081c0c;

    text-decoration:none;

    font-size:17px;
    font-weight:800;

    transition:.35s ease;

    box-shadow:
    0 15px 35px rgba(233,162,59,.28);
}

.back-home-btn:hover{
    transform:translateY(-5px);

    box-shadow:
    0 22px 45px rgba(233,162,59,.35);
}

/* ==========================================
   FEATURE BOXES
========================================== */

.thank-meta{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:24px;
}

.meta-item{
    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border-radius:24px;

    padding:36px 30px;

    transition:.35s ease;

    box-shadow:
    0 10px 35px rgba(0,0,0,.18);
}

.meta-item:hover{
    transform:translateY(-8px);

    border-color:rgba(244,181,63,.25);

    box-shadow:
    0 20px 45px rgba(0,0,0,.25);
}

.meta-item strong{
    display:block;

    font-size:20px;

    color:#fff;

    margin-bottom:10px;
}

.meta-item span{
    color:rgba(255,255,255,.72);

    font-size:15px;

    line-height:1.8;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .thank-meta{
        grid-template-columns:1fr;
    }

    .thank-you-wrap{
        padding:60px 35px;
    }

    .thank-you-wrap h1{
        font-size:44px;
    }

    .thank-subtitle{
        font-size:20px;
    }
}

@media(max-width:767px){

    .thank-you-page{
        padding:80px 16px;
    }

    .thank-you-wrap{
        padding:40px 25px;
        border-radius:24px;
    }

    .success-check{
        width:72px;
        height:72px;
    }

    .thank-you-wrap h1{
        font-size:34px;
    }

    .thank-subtitle{
        font-size:17px;
        line-height:1.7;
    }

    .meta-item{
        padding:26px 22px;
    }

    .back-home-btn{
        width:100%;
    }
}




















