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

    :root {
      --green: #1B4332;
      --orange: #F28C28;
      --white: #F8F9FA;
      --slate: #2D2D2D;
      --peach: #FFDAB9;
      --green-light: #2D6A4F;
      --orange-light: #FFA040;
    }

    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      color: var(--slate);
      background: var(--white);
      font-size: 16px
    }

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

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

    /* NAV */
    nav {
      background: var(--green);
      position: sticky;
      top: 0;
      z-index: 999;
      padding: 0 1rem
    }

    .nav-inner {
      max-width: 1100px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px
    }

    .logo {
      color: #fff;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin-left: 10px;
    }

    .logo span {
      color: var(--orange)
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
      list-style: none
    }

    .nav-links a {
      color: #fff;
      font-size: .9rem;
      opacity: .9;
      transition: .2s
    }

    .nav-links a:hover {
      color: var(--orange);
      opacity: 1
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: #fff;
      display: block
    }

    .mobile-menu {
      display: none;
      background: var(--green);
      padding: 1rem
    }

    .mobile-menu.open {
      display: block
    }

    .mobile-menu a {
      display: block;
      color: #fff;
      padding: .6rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      font-size: 1rem
    }

    /* HERO */
    .hero {
      /* background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 40%, #1B4332 100%); */
      background: linear-gradient(135deg, #98FFD9 0%, #2D6A4F 40%, #1B4332 100%);
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 3rem 1rem;
      position: relative;
      overflow: hidden
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      opacity: .15;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F28C28' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto
    }

    .hero h1 {
      color: #fff;
      font-size: clamp(2rem, 6vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, .3)
    }

    .hero p {
      color: rgba(255, 255, 255, .85);
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      margin-bottom: .5rem
    }

    .hero-sub {
      font-size: clamp(.95rem, 2vw, 1.1rem) !important;
      margin-bottom: 2rem !important;
      color: rgba(255, 255, 255, .85) !important;
      line-height: 1.6;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 1.5rem
    }

    .btn-orange {
      background: var(--orange);
      color: #fff;
      border: none;
      padding: .85rem 2.2rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: .2s;
      display: inline-block;
      text-align: center;
    }

    .btn-orange:hover {
      background: var(--orange-light);
      transform: translateY(-2px)
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.8);
      padding: .85rem 2.2rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: .2s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #fff;
      color: #fff;
      transform: translateY(-2px)
    }

    .countdown-hero {
      margin-top: 2.5rem;
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap
    }

    .cd-box {
      background: rgba(255, 255, 255, .12);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 12px;
      padding: .8rem 1.2rem;
      min-width: 70px;
      text-align: center
    }

    .cd-num {
      color: #fff;
      font-size: 2rem;
      font-weight: 800;
      display: block;
      line-height: 1
    }

    .cd-label {
      color: rgba(255, 255, 255, .7);
      font-size: .7rem;
      margin-top: 4px;
      display: block;
      text-transform: uppercase;
      letter-spacing: 1px
    }

    /* SECTIONS */
    section {
      padding: 4rem 1rem
    }

    .section-inner {
      max-width: 1100px;
      margin: auto
    }

    .section-title {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800;
      color: var(--green);
      margin-bottom: .5rem
    }

    .section-sub {
      color: #666;
      margin-bottom: 2.5rem;
      font-size: 1rem
    }

    /* TRIP CARDS */
    .trips-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem
    }

    .trip-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
      transition: .2s;
      cursor: pointer
    }

    .trip-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, .14)
    }

    .trip-img {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      position: relative
    }

    .slots-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--orange);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px
    }

    .trip-body {
      padding: 1.2rem
    }

    .trip-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: .4rem
    }

    .trip-meta {
      font-size: .85rem;
      color: #666;
      margin-bottom: .8rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap
    }

    .trip-price {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--orange);
      margin-bottom: .8rem
    }

    .progress-wrap {
      margin-bottom: 1rem
    }

    .progress-label {
      font-size: .78rem;
      color: #666;
      margin-bottom: 4px;
      display: flex;
      justify-content: space-between
    }

    .progress-bar {
      height: 8px;
      background: #eee;
      border-radius: 10px;
      overflow: hidden
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--green), var(--orange));
      border-radius: 10px;
      transition: width .6s
    }

    .btn-green {
      background: var(--green);
      color: #fff;
      border: none;
      padding: .7rem 1.5rem;
      border-radius: 50px;
      font-size: .9rem;
      font-weight: 700;
      cursor: pointer;
      width: 100%;
      transition: .2s
    }

    .btn-green:hover {
      background: var(--green-light)
    }

    /* TRIP DETAIL MODAL */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .6);
      z-index: 2000;
      overflow-y: auto;
      padding: 1rem
    }

    .modal-overlay.open {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 2rem
    }

    .modal {
      background: #fff;
      border-radius: 20px;
      max-width: 600px;
      width: 100%;
      overflow: hidden;
      position: relative
    }

    .modal-header {
      padding: 1.5rem;
      background: var(--green);
      color: #fff
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(255, 255, 255, .2);
      border: none;
      color: #fff;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .modal-body {
      padding: 1.5rem
    }

    .toggle-tabs {
      display: flex;
      border-radius: 50px;
      overflow: hidden;
      border: 2px solid var(--green);
      margin-bottom: 1.2rem;
      width: fit-content
    }

    .toggle-tab {
      padding: .5rem 1.5rem;
      cursor: pointer;
      font-size: .9rem;
      font-weight: 600;
      transition: .2s
    }

    .toggle-tab.active {
      background: var(--green);
      color: #fff
    }

    .toggle-tab:not(.active) {
      color: var(--green)
    }

    .inc-exc-list {
      list-style: none;
      display: none
    }

    .inc-exc-list.show {
      display: block
    }

    .inc-exc-list li {
      padding: .5rem 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: .9rem;
      display: flex;
      align-items: center;
      gap: .5rem
    }

    .inc-exc-list li:last-child {
      border: none
    }

    /* PACKING */
    .packing-section {
      margin-top: 1.2rem
    }

    .packing-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: .8rem
    }

    .packing-item {
      display: flex;
      align-items: center;
      gap: .6rem;
      padding: .4rem 0;
      cursor: pointer
    }

    .packing-item input[type=checkbox] {
      width: 18px;
      height: 18px;
      accent-color: var(--green);
      cursor: pointer
    }

    .packing-item label {
      font-size: .9rem;
      cursor: pointer
    }

    .packing-item.checked label {
      text-decoration: line-through;
      color: #aaa
    }

    /* BOOKING FORM / GENERAL FORM INPUTS */
    .booking-form {
      margin-top: 1.5rem;
      border-top: 2px solid #f0f0f0;
      padding-top: 1.5rem
    }

    .form-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 1rem
    }

    .form-group {
      margin-bottom: 1rem
    }

    .form-group label {
      display: block;
      font-size: .85rem;
      font-weight: 600;
      color: var(--slate);
      margin-bottom: .4rem
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: .75rem 1rem;
      border: 1.5px solid #ddd;
      border-radius: 10px;
      font-size: .95rem;
      outline: none;
      transition: .2s;
      background: #fff;
      color: var(--slate);
      font-family: inherit;
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--green)
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem
    }

    .mpesa-info {
      background: #f0f7f3;
      border: 1px solid #2D6A4F;
      border-radius: 10px;
      padding: .8rem 1rem;
      font-size: .85rem;
      color: var(--green);
      margin-bottom: 1rem
    }

    .btn-pay {
      background: var(--orange);
      color: #fff;
      border: none;
      padding: 1rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      width: 100%;
      transition: .2s
    }

    .btn-pay:hover {
      background: var(--orange-light)
    }

    .booking-success {
      display: none;
      text-align: center;
      padding: 2rem;
      background: #f0f7f3;
      border-radius: 16px;
      margin-top: 1rem
    }

    .booking-success .check {
      font-size: 3rem;
      margin-bottom: .5rem
    }

    .booking-success h3 {
      color: var(--green);
      font-size: 1.3rem;
      margin-bottom: .5rem
    }

    .booking-id {
      background: var(--green);
      color: #fff;
      padding: .5rem 1.5rem;
      border-radius: 50px;
      font-size: .9rem;
      font-weight: 700;
      display: inline-block;
      margin-top: .8rem
    }

    /* GALLERY */
    .gallery-section {
      background: #fff
    }

    .filter-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1.5rem
    }

    .filter-tabs {
      display: flex;
      gap: .6rem;
      flex-wrap: wrap
    }

    .filter-btn {
      padding: .45rem 1.2rem;
      border-radius: 50px;
      border: 2px solid var(--green);
      color: var(--green);
      background: transparent;
      font-size: .85rem;
      font-weight: 600;
      cursor: pointer;
      transition: .2s
    }

    .filter-btn.active,
    .filter-btn:hover {
      background: var(--green);
      color: #fff
    }

    .masonry {
      columns: 2;
      column-gap: 1rem
    }

    @media(min-width:600px) {
      .masonry {
        columns: 3
      }
    }

    @media(min-width:900px) {
      .masonry {
        columns: 4
      }
    }

    .masonry-item {
      break-inside: avoid;
      margin-bottom: 1rem;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      position: relative
    }

    .masonry-img {
      width: 100%;
      height: 200px;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      font-size: 3rem;
      transition: .2s;
      object-fit: cover;
    }

    .masonry-item:hover .masonry-img {
      filter: brightness(.85)
    }

    .masonry-tag {
      position: absolute;
      bottom: 6px;
      left: 6px;
      background: rgba(27, 67, 50, .85);
      color: #fff;
      font-size: .7rem;
      padding: 2px 8px;
      border-radius: 20px
    }

    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .9);
      z-index: 3000;
      align-items: center;
      justify-content: center;
      flex-direction: column
    }

    .lightbox.open {
      display: flex
    }

    .lightbox-img-container {
      max-width: 90%;
      max-height: 80%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8rem;
    }

    .lightbox-img-container img {
      max-width: 100%;
      max-height: 100%;
      border-radius: 10px;
    }

    .lightbox-close {
      position: fixed;
      top: 1rem;
      right: 1rem;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      background: rgba(255, 255, 255, .15);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .lightbox-caption {
      color: #fff;
      font-size: 1rem;
      opacity: .8;
      margin-top: 1rem;
    }

    /* REVIEWS */
    .reviews-section {
      background: var(--green)
    }

    .reviews-section .section-title {
      color: #fff
    }

    .reviews-section .section-sub {
      color: rgba(255, 255, 255, .7)
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2.5rem
    }

    .img-logo {
      width: 40px;
      height: 40px;
    }

    .review-card {
      background: var(--peach);
      border-radius: 16px;
      padding: 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .review-photo {
      width: 100%;
      height: 200px;
      /*height: auto;
      width: auto;*/
      object-fit: cover;
      object-position: top;
      border-radius: 12px;
      margin-bottom: 0.5rem;
    }

    .trip-photo {
      width: 100%;
      height: 200%;
      /*height: auto;
      width: auto;*/
      object-fit: cover;
      object-position: top;
      border-radius: 12px;
      margin-bottom: 0.5rem;
    }

    .stars {
      color: var(--orange);
      font-size: 1.2rem;
    }

    .review-text {
      font-size: .9rem;
      color: var(--slate);
      line-height: 1.6;
      font-style: italic;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: .6rem;
      margin-top: auto;
    }

    .reviewer-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      font-weight: 700
    }

    .reviewer-name {
      font-size: .9rem;
      font-weight: 700;
      color: var(--green)
    }

    .reviewer-trip {
      font-size: .78rem;
      color: #666
    }

    .review-form-wrap {
      background: rgba(255, 255, 255, .1);
      border-radius: 16px;
      padding: 1.5rem;
      max-width: 500px;
      margin: 0 auto;
    }

    .review-form-wrap h3 {
      color: #fff;
      margin-bottom: 1rem;
      font-size: 1.1rem
    }

    .review-input-group {
      margin-bottom: 1rem;
    }

    .review-input-group label {
      display: block;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.8rem;
      margin-bottom: 0.3rem;
    }

    .review-field {
      width: 100%;
      padding: .75rem;
      border-radius: 10px;
      border: none;
      font-size: .9rem;
      background: #fff;
      outline: none;
      font-family: inherit;
      color: var(--slate);
    }

    .review-input {
      min-height: 80px;
      resize: vertical;
    }

    .star-picker {
      display: flex;
      gap: .3rem;
      margin-bottom: 1rem;
      font-size: 1.6rem;
      cursor: pointer
    }

    .star-pick {
      opacity: .4;
      transition: .15s;
      color: #fff;
    }

    .star-pick.lit {
      opacity: 1;
      color: var(--orange);
    }

    .review-file {
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      border: 1.5px dashed rgba(255, 255, 255, .4);
      border-radius: 10px;
      padding: .7rem 1rem;
      font-size: .85rem;
      margin-bottom: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: .5rem
    }

    .review-file input {
      display: none
    }

    /* ABOUT */
    .about-section {
      background: var(--peach)
    }

    .founder-card {
      background: #fff;
      border-radius: 24px;
      padding: 2rem;
      margin-bottom: 2.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.03)
    }

    .founder-photo-wrap {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      overflow: hidden;
      margin-bottom: 1.5rem;
      border: 6px solid var(--peach);
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #ec4072;
    }

    .founder-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      margin-left: 20px;
    }

    .founder-info h3 {
      color: var(--green);
      font-size: 1.8rem;
      margin-bottom: 0.2rem
    }

    .founder-info .founder-title {
      color: var(--orange);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 1px;
      margin-bottom: 1.2rem;
      display: block
    }

    .founder-info p {
      color: var(--slate);
      line-height: 1.7;
      max-width: 700px;
      margin: 0 auto 1.2rem;
      font-size: 1.05rem
    }

    .lifestyle-badge {
      background: var(--green);
      color: #fff;
      display: inline-block;
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      margin-top: 0.5rem
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem
    }

    .team-card {
      background: #fff;
      border-radius: 16px;
      padding: 1.5rem;
      text-align: center
    }

    .team-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      margin: auto auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      background: var(--green)
    }

    .team-name {
      font-weight: 700;
      color: var(--green)
    }

    .team-role {
      font-size: .85rem;
      color: #888;
      margin-top: .2rem
    }

    /* FOOTER */
    footer {
      background: var(--green);
      color: #fff;
      padding: 3rem 1rem 1.5rem;
      text-align: center
    }

    .footer-inner {
      max-width: 1100px;
      margin: auto
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      justify-content: center;
      margin: 1rem 0
    }

    .footer-links a {
      color: rgba(255, 255, 255, .75);
      font-size: .9rem
    }

    .footer-links a:hover {
      color: var(--orange)
    }

    .footer-bottom {
      margin-top: 2rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, .15);
      font-size: .82rem;
      color: rgba(255, 255, 255, .5)
    }

    .social-links {
      display: flex;
      gap: .8rem;
      justify-content: center;
      margin: 1rem 0
    }

    .social-btn {
      background: rgba(255, 255, 255, .1);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      color: #fff;
      transition: .2s
    }

    .social-btn:hover {
      background: var(--orange)
    }

    /* WHATSAPP FLOAT */
    .wa-float {
      position: fixed;
      bottom: 24px;
      right: 20px;
      z-index: 1000;
      background: #25D366;
      color: #fff;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
      text-decoration: none;
      transition: .2s
    }

    .wa-float:hover {
      transform: scale(1.1)
    }

    .wa-label {
      position: absolute;
      right: 66px;
      background: #25D366;
      color: #fff;
      font-size: .78rem;
      font-weight: 700;
      padding: .35rem .8rem;
      border-radius: 20px;
      white-space: nowrap;
      opacity: 0;
      transition: .2s;
      pointer-events: none
    }

    .wa-float:hover .wa-label {
      opacity: 1
    }

    /* URGENCY BANNER */
    .urgency-bar {
      background: var(--orange);
      color: #fff;
      text-align: center;
      padding: .6rem;
      font-size: .9rem;
      font-weight: 600
    }

    @media(max-width:700px) {
      .nav-links {
        display: none
      }

      .hamburger {
        display: flex
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .countdown-hero {
        gap: .6rem
      }

      .cd-box {
        min-width: 56px;
        padding: .6rem .8rem
      }

      .cd-num {
        font-size: 1.5rem
      }

      .filter-header {
        flex-direction: column;
        align-items: stretch;
      }
    }