  :root {
    --green-dark: #1a3a1f;
    --green-mid: #2d5a34;
    --green-light: #4a7c59;
    --green-accent: #5c9e6a;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --cream: #f5f0e8;
    --white: #ffffff;
    --text-dark: #1e1e1e;
    --text-grey: #555;
    
  }

  /* Import Google Fonts */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&family=Playfair+Display:wght@400;700;900&display=swap');

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background: var(--white);
  }

  h1,
  h2,
  h3,
  h4 {
    font-family: 'Playfair Display', serif;
  }

  /* ===== TOPBAR ===== */
  .topbar {
    background: var(--green-dark);
    color: #ccc;
    font-size: 13px;
    padding: 7px 0;
  }

  .topbar a {
    color: var(--gold);
    text-decoration: none;
  }

  .topbar i {
    margin-right: 5px;
  }

  /* ===== NAVBAR ===== */
    .navbar .dropdown-toggle::after {
    border: none;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
  }
  .navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    outline: none;
  }
  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: #8b9e4e;
  }
  @media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
      margin-right: 0;
      padding: 10px 0;
    }

    .navbar-light .navbar-nav {
      border-top: 1px solid #EEEEEE;
    }
  }
  .navbar-light .navbar-brand,
  .navbar-light a.btn {
    height: 75px;
  }
  .navbar-light .navbar-nav .nav-link {
    color: #2f4f2f;
    font-weight: 600;
  }
  .navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
  }
  @media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: .5s;
      opacity: 1;
    }
  }
  .headerlogo{
    width: 272px;
  }
  @media (max-width: 576px) {
    .headerlogo {
      width: 270px;
    }
  }
  /* ===== SECTION DEFAULTS ===== */
  section {
    padding: 80px 0;
  }

  .section-subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-accent);
    display: block;
    margin-bottom: 10px;
  }

  .section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .section-divider {
    width: 55px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 25px;
  }

  .section-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-grey);
    text-align: justify;
  }

  /* ===== ABOUT ===== */
  .about-section {
    background: var(--cream);
  }

  .about-img-wrap {
    position: relative;
  }

  .about-img-wrap img {
    border-radius: 4px;
    box-shadow: 12px 12px 0px var(--gold);
    width: 100%;
  }

  .about-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: var(--green-dark);
    color: var(--white);
    padding: 18px 24px;
    border-radius: 4px;
  }

  .about-badge strong {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    display: block;
  }

  .about-badge span {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aaa;
  }

  /* ===== HISTORY ===== */
  .history-section {
    background: var(--white);
  }

  .history-timeline {
    position: relative;
    padding-left: 30px;
  }

  .history-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--green-light);
  }

  .timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--green-light);
  }

  .timeline-item h5 {
    font-family: 'Playfair Display', serif;
    color: var(--green-dark);
    font-size: 18px;
    margin-bottom: 6px;
  }

  .timeline-item p {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.8;
  }


  /* ===== BEST TIME ===== */

.besttime-section {
   background: linear-gradient(to bottom, #efe6d7, #f8f3ea);
  padding: 90px 0;
}

.besttime-section .section-title {
  color: #2f3b2f; /* forest olive */
}

.besttime-section .section-subtitle {
  color: #9c6b30; /* earthy brown */
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.besttime-section .section-text {
  color: black;
}

/* Cards */
.season-card {
  background: #fffdf9;
  border: 1px solid #e6dccd;
  border-radius: 18px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

/* Top Accent */
.season-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #9c6b30, #d8b07a);
}

.season-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: #d8c2a8;
  background: #ffffff;
}

.season-card h4 {
  font-family: 'Playfair Display', serif;
  color: #384438;
  font-size: 24px;
  margin-bottom: 14px;
}

.season-card p {
  color: black;
  font-size: 15px;
  line-height: 1.9;
}

/* Season Badge */
.season-badge {
  display: inline-block;
  background: #efe2cf;
  color: #8a5a24;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #dcc5a8;
}

/* Divider */
.besttime-section .section-divider {
  width: 85px;
  height: 3px;
  background: linear-gradient(90deg, #9c6b30, #d8b07a);
  border-radius: 20px;
  margin-top: 14px;
}

/* Optional soft hover glow */
.season-card:hover::before {
  background: linear-gradient(90deg, #7f5323, #c89b63);
}

/* Responsive */
@media (max-width: 768px) {
  .besttime-section {
    padding: 70px 0;
  }

  .season-card {
    padding: 26px 22px;
  }

  .season-card h4 {
    font-size: 22px;
  }

  .season-card p {
    font-size: 14px;
    line-height: 1.8;
  }
}

  /* ===== SAFARI ===== */
  .safari-section {
    background: var(--cream);
  }

  .safari-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s;
  }

  .safari-card:hover {
    transform: translateY(-5px);
  }

  .safari-card-header {
    background: var(--green-dark);
    color: var(--white);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .safari-card-header i {
    color: var(--gold);
    font-size: 20px;
  }

  .safari-card-header h5 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin: 0;
  }

  .safari-card-body {
    padding: 24px;
  }

  .timing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
  }

  .timing-row:last-child {
    border-bottom: none;
  }

  .timing-label {
    font-weight: 700;
    color: var(--green-dark);
  }

  .timing-val {
    color: var(--text-grey);
  }

  /* ===== GYPSY SAFARI ===== */
  .gypsy-section {
    background: var(--green-dark);
  }

  .gypsy-section .section-title {
    color: var(--white);
  }

  .gypsy-section .section-subtitle {
    color: var(--gold-light);
  }

  .gypsy-section .section-text {
    color: #b5cebc;
  }

  .gypsy-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .gypsy-feature-icon {
    width: 46px;
    height: 46px;
    background: rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 18px;
  }

  .gypsy-feature-text h6 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 16px;
    margin-bottom: 4px;
  }

  .gypsy-feature-text p {
    color: white;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }

  .safari-highlight {
    background: rgba(201, 168, 76, 0.12);
    border-left: 4px solid var(--gold);
    border-radius: 0 6px 6px 0;
    padding: 20px 24px;
    margin-top: 24px;
  }

  .safari-highlight p {
    color: #cde0d4;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
  }

  /* ===== ATTRACTIONS ===== */
  .attractions-section {
    background: var(--cream);
  }

  .attraction-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition: transform 0.3s;
  }

  .attraction-card:hover {
    transform: translateY(-5px);
  }

  .attraction-card-img {
    background: var(--green-mid);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--gold);
    position: relative;
    overflow: hidden;
  }

  .attraction-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 31, 0.7), transparent);
  }

  .attraction-card-body {
    padding: 22px;
  }

  .attraction-card-body h5 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--green-dark);
    margin-bottom: 10px;
  }

  .attraction-card-body p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.8;
  }

  /* ===== HOW TO REACH ===== */
  .reach-section {
    background: var(--white);
  }

  .reach-card {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid #e4ece6;
    border-radius: 6px;
    height: 100%;
    transition: all 0.3s;
  }

  .reach-card:hover {
    border-color: var(--green-accent);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  }

  .reach-card i {
    font-size: 36px;
    color: var(--green-mid);
    margin-bottom: 14px;
  }

  .reach-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--green-dark);
    margin-bottom: 10px;
  }

  .reach-card p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.8;
  }

  .distance-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 14px;
  }

  .distance-item:last-child {
    border: none;
  }

  .distance-city {
    font-weight: 700;
    color: var(--green-dark);
  }

  .distance-km {
    color: var(--text-grey);
  }

  /* ===== ROUTE TABLE ===== */
  .route-table th {
    background: var(--green-dark);
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .route-table td {
    font-size: 14px;
    vertical-align: middle;
  }

  .route-table tbody tr:hover {
    background: #f0f7f2;
  }

  /* ===== KEY HIGHLIGHTS ===== */
  .highlights-section {
    background: var(--green-dark);
  }

  .highlights-section .section-title {
    color: var(--white);
  }

  .highlights-section .section-subtitle {
    color: var(--gold-light);
  }

  .highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .highlight-num {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--green-dark);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .highlight-text h6 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 17px;
    margin-bottom: 5px;
  }

  .highlight-text p {
    color: #9fc9ab;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }

  /* ===== CTA ===== */
  .cta-section {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    text-align: center;
    padding: 70px 0;
  }

  .cta-section h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 15px;
  }

  .cta-section p {
    color: #b5cebc;
    font-size: 17px;
    max-width: 550px;
    margin: 0 auto 30px;
  }


  /* ===== THINGS TO DO SECTION ===== */
.things-to-do-section { background: var(--cream); }
.things-to-do-section .section-title { color: var(--green-dark); }
.things-to-do-section .section-subtitle { color: var(--green-accent); }

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.activity-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  border-color: var(--green-accent);
}

.activity-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--gold);
}

.activity-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.activity-card p {
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.8;
  margin: 0;
  flex-grow: 1;
}

.activity-card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  opacity: 0.3;
}

.activity-card {
  position: relative;
}

.activity-highlight {
  background: linear-gradient(135deg, rgba(92, 158, 106, 0.08), rgba(201, 168, 76, 0.08));
  border-left: 4px solid var(--green-accent);
  border-radius: 6px;
  padding: 20px 24px;
  margin-top: 40px;
  text-align: center;
}

.activity-highlight h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.activity-highlight p {
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.8;
  margin: 0;
}

@media(max-width: 768px) {
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .activity-card {
    padding: 24px 20px;
  }
}

  /* ===== FOOTER ===== */
  footer {
    background: #0f1f12;
    color: #999;
    padding: 60px 0 0;
  }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: white;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .footer-logo span {
    color: var(--white);
  }

  footer p {
    font-size: 14px;
    line-height: 1.8;
     color: white;
  }

  .footer-heading {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green-mid);
  }

  .footer-link {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.3s;
  }

  .footer-link:hover {
    color: var(--gold);
  }

  .footer-contact {
    font-size: 14px;
    color: white;
    margin-bottom: 8px;
  }

  .footer-contact i {
    color: white;
    margin-right: 8px;
    width: 16px;
  }

  .footer-bottom {
    background: #080f09;
    text-align: center;
    padding: 16px;
    margin-top: 50px;
    font-size: 13px;
    color: #555;
  }

  /* ===== RESPONSIVE ===== */
  @media(max-width: 768px) {
    .hero h1 {
      font-size: 36px;
    }

    .hero-stats {
      gap: 20px;
      flex-wrap: wrap;
    }

    .section-title {
      font-size: 28px;
    }

    .hero {
      min-height: auto;
      padding: 80px 0 50px;
    }
  }

  /* ===== CHUKA SECTION ===== */
  .chuka-section {
    background: var(--cream);
  }

  .chuka-section .section-title {
    color: var(--green-dark);
  }

  .chuka-section .section-subtitle {
    color: var(--green-accent);
  }

  .chuka-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .chuka-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-grey);
  }

  /* ===== FLORA FAUNA SECTION ===== */
  .flora-fauna-section {
    background: var(--white);
  }

  .flora-fauna-section .section-subtitle {
    color: var(--green-accent);
  }

  .flora-fauna-section .section-title {
    color: var(--green-dark);
  }

  .fauna-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin: 20px 0;
  }

  .fauna-item {
    background: var(--cream);
    padding: 14px 18px;
    border-radius: 6px;
    border-left: 4px solid var(--green-accent);
    font-size: 15px;
    color: var(--text-grey);
    transition: all 0.3s;
  }

  .fauna-item:hover {
    background: #f0f7f2;
    border-left-color: var(--gold);
    transform: translateX(4px);
  }

  .fauna-section-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
  }

  /* ===== BOOKING DETAILS SECTION ===== */
.booking-section {
  background: var(--white);
  padding: 100px 0;
  position: relative;
}

.booking-section .section-title {
  color: var(--green-dark);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.booking-section .section-subtitle {
  color: var(--green-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-divider {
  width: 55px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 30px;
}

.intro-text {
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* ===== BOOKING TABLE ===== */
.booking-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.booking-table thead {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
}

.booking-table th {
  color: var(--white);
  padding: 20px 24px;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 3px solid var(--gold);
}

.booking-table th:first-child {
  width: 10%;
  text-align: center;
}

.booking-table tbody tr {
  border-bottom: 1px solid #e8f0ea;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-table tbody tr:last-child {
  border-bottom: none;
}

.booking-table tbody tr:hover {
  background: #f9fbfa;
  box-shadow: inset 0 0 20px rgba(92, 158, 106, 0.08);
}

.booking-table td {
  padding: 22px 24px;
  color: var(--text-grey);
  font-size: 15px;
  line-height: 1.6;
}

.booking-table .no-col {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 16px;
  width: 10%;
}

.booking-table .detail-title {
  font-weight: 700;
  color: var(--green-dark);
  display: block;
  margin-bottom: 4px;
}

.booking-table .detail-desc {
  color: #888;
  font-size: 13px;
  margin-top: 4px;
}

.foreign-note {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(92, 158, 106, 0.12));
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 28px 32px;
  text-align: center;
}

.foreign-note p {
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.8;
  margin: 0;
}

.foreign-note strong {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 16px;
}

/* ===== GUIDELINES SECTION ===== */
.guidelines-section {
  background: linear-gradient(135deg, #f9fbfa 0%, #f0f7f2 100%);
  padding: 100px 0;
  position: relative;
}

.guidelines-section .section-title {
  color: var(--green-dark);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.guidelines-section .section-subtitle {
  color: var(--green-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

/* ===== GUIDELINES TABLE ===== */
.guidelines-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.guidelines-table thead {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.guidelines-table th {
  color: var(--green-dark);
  padding: 20px 24px;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 3px solid var(--green-dark);
}

.guidelines-table th:first-child {
  width: 10%;
  text-align: center;
}

.guidelines-table tbody tr {
  border-bottom: 1px solid #e8f0ea;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.guidelines-table tbody tr:last-child {
  border-bottom: none;
}

.guidelines-table tbody tr:hover {
  background: #f9fbfa;
  box-shadow: inset 0 0 20px rgba(201, 168, 76, 0.08);
}

.guidelines-table td {
  padding: 22px 24px;
  color: var(--text-grey);
  font-size: 15px;
  line-height: 1.7;
}

.guidelines-table .no-col {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 16px;
  background: rgba(201, 168, 76, 0.1);
  width: 10%;
}

.guidelines-table .guideline-text strong {
  color: var(--green-dark);
  font-weight: 700;
}

/* ===== RESPONSIVE TABLES ===== */
@media(max-width: 991px) {
  .booking-section,
  .guidelines-section {
    padding: 70px 0;
  }

  .booking-section .section-title,
  .guidelines-section .section-title {
    font-size: 32px;
  }
}

@media(max-width: 768px) {
  .booking-section,
  .guidelines-section {
    padding: 60px 0;
  }

  .booking-section .section-title,
  .guidelines-section .section-title {
    font-size: 28px;
  }

  .booking-table,
  .guidelines-table {
    font-size: 13px;
  }

  .booking-table th,
  .guidelines-table th {
    padding: 16px 12px;
    font-size: 14px;
  }

  .booking-table td,
  .guidelines-table td {
    padding: 16px 12px;
    font-size: 13px;
  }

  .booking-table .no-col,
  .guidelines-table .no-col {
    width: 12%;
  }

  .detail-title,
  .guideline-text {
    font-size: 14px;
  }

  .detail-desc {
    font-size: 12px;
  }

  .intro-text {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .foreign-note {
    padding: 20px 24px;
  }
}

@media(max-width: 480px) {
  .booking-section,
  .guidelines-section {
    padding: 50px 0;
  }

  .booking-section .section-title,
  .guidelines-section .section-title {
    font-size: 24px;
  }

  .booking-table,
  .guidelines-table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
  }

  .booking-table th,
  .guidelines-table th {
    padding: 14px 10px;
    font-size: 14px;
  }

  .booking-table td,
  .guidelines-table td {
    padding: 14px 10px;
    font-size: 14px;
  }

  .booking-table .no-col,
  .guidelines-table .no-col {
    width: 15%;
  }
}

  /*--------------------------------------------------------------
>>> Whatsapp Floating Footer 
----------------------------------------------------------------*/
  .whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 90px;
    display: flex;
    align-items: center;
    padding: 5px;
    z-index: 1;
  }

  .whatsapp-float a {
    display: flex;
    margin-left: 4px;
  }

  /*--------------------------------------------------------------
>>> Call Us Floating Footer 
----------------------------------------------------------------*/
  .callus-float {
    position: fixed;
    right: 30px;
    bottom: 150px;
    display: flex;
    align-items: center;
    padding: 5px;
    z-index: 1;
  }

  .callus-float a {
    display: flex;
    margin-left: 4px;
  }
  .brand-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
  }