@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap");

/* ===== GLOBAL RESET & VARIABLES ===== */
* {
  box-sizing: border-box;
}

:root {
  --primary-green: #91bc5e;
  --primary-blue: #83c1e0;
  --dark-blue: #116a70;
  --text-dark: #222;
  --text-medium: #333;
  --text-light: #444;
  --white: #fff;
  --black: #000;
  --background-dark: #4fb6b2;
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --shadow-medium: rgba(0, 0, 0, 0.1);
}

body {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.6;
  color: var(--text-dark);
}

html {
  scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  text-align: center !important;
  color: #91bc5e !important;
  margin: 20px 0 30px;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
}

.logo img {
  display: block;
  height: 50px;
  width: auto;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
  margin-left: 20px;
}

.menu-toggle {
  background-color: #40d1d6;
  border: none;
  cursor: pointer;
  color: #ffffff;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 35px;
}

body.sidebar-open .menu-toggle,
body.sidebar-open .left-float,
body.sidebar-open .right-float {
  display: none !important;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #40d1d6;
  padding: 80px 40px;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow-y: auto;
}

.sidebar.open {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  z-index: 3001;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.sidebar-nav a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
  font-size: 22px;
  text-transform: uppercase;
}

/* Submenu */
.menu-item-has-children {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.submenu {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 15px;
  padding-right: 15px;
}

.submenu.active {
  display: flex;
}

.submenu a {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.arrow {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.3s;
}

.menu-item-has-children.active .arrow {
  transform: rotate(180deg);
}

.overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-dark);
  display: none;
  z-index: 150;
}

.overlay.show {
  display: block;
}

body.sidebar-open {
  overflow: hidden;
}

/* ===== SLIDERS ===== */
#category-slider {
  width: 100%;
  height: 100vh;
}

#category-slider .splide__track,
#category-slider .splide__list {
  height: 100% !important;
}

.category-link {
  display: block;
  width: 100%;
  height: 100%;
}

.category-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== MAIN CONTENT ===== */
.content {
  padding-top: 80px;
}

.hero {
  padding: 20px 20px 0;
  text-align: center;
}

/* About Section (Homepage) */
.about-section {
  padding: 10px 20px;
  text-align: center;
}

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

.about-title {
  font-size: 50px;
  line-height: 1;
  color: var(--primary-blue);
  -webkit-text-stroke: 1px var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-content {
  text-align: justify;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-medium);
}

.about-content p {
  margin-bottom: 25px;
}

/* ===== INFO COLUMNS (Why Choose Us) ===== */
.info-columns {
  padding: 0 10px 40px;
}

.column-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.ta-badges-wrapper {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.ta-badge-item ul {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
}

.widCOEImg {
  max-width: 120px;
  height: auto;
}

.widEXCIMG {
  max-width: 180px;
  height: auto;
}

.info-col {
  flex: 1;
}

.info-col h3 {
  font-size: 28px;
  margin-bottom: 15px;
  text-align: center;
}

.info-col p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  text-align: justify;
}

.ta-badge-title {
  font-size: 30px;
  color: var(--primary-blue);
  -webkit-text-stroke: 1px var(--black);
  text-align: center;
}

.ta-review-count {
  font-size: 19px;
  -webkit-text-stroke: 0.5px var(--primary-green);
  display: block;
  text-align: center;
}

/* Buttons */
.ta-button,
.view-more-btn,
.chauffeurs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-blue);
  color: var(--white);
  text-decoration: none;
  padding: 12px 25px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease, opacity 0.3s ease;
  gap: 10px;
}

.ta-button:hover,
.view-more-btn:hover,
.chauffeurs-btn:hover {
  background: #106c73;
  opacity: 0.9;
}

.ta-btn-img {
  width: 24px;
  height: auto;
  display: block;
}

.view-more-btn {
  margin-top: 12px;
}

/* Tripadvisor Homepage Column Specifics */
.tripadvisor-col .ta-button {
  margin-left: auto;
  margin-right: auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 20px 10px;
  display: flex;
  justify-content: center;
}

.testimonial-container {
  max-width: 900px;
  text-align: center;
  position: relative;
}

.testimonial-heading {
  font-style: italic;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: bold;
}

.testimonial-content {
  position: relative;
  padding: 0 40px;
}

.testimonial-content p {
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.quote-icon {
  position: absolute;
  font-size: 120px;
  color: #eeeeeecb;
  font-family: sans-serif;
  line-height: 1;
}

.left-quote {
  top: -20px;
  left: -20px;
}

.right-quote {
  bottom: 60px;
  right: -20px;
}

.testimonial-footer {
  margin-top: 20px;
  margin-bottom: 40px;
}

.testimonial-author {
  display: block;
  font-size: 18px;
  color: #555;
}

.testimonial-location {
  display: block;
  font-size: 16px;
  color: #777;
  margin-top: 5px;
}

/* ===== DIVIDER ===== */
.wrapper {
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  clear: both;
}

.divider {
  position: relative;
  width: 90%;
  max-width: 1100px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(48, 49, 51, 0.3), transparent);
}

.divider::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-bottom: 1px solid rgba(48, 49, 51, 0.4);
  border-right: 1px solid rgba(48, 49, 51, 0.4);
}

/* ===== TRANSPORT ===== */
.transport-section {
  padding: 20px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.transport-description {
  font-size: 16px;
  color: var(--text-light);
  text-align: justify;
  margin-bottom: 40px;
}

.transport-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.transport-col {
  flex: 1;
  min-width: 250px;
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow-medium);
  overflow: hidden;
}

.transport-col img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.transport-content {
  padding: 20px;
}

.transport-link {
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: inherit;
}

/* ===== CHAUFFEUR & GALLERY ===== */
.chauffeur-section {
  padding: 10px;
  text-align: center;
}

.chauffeur-container {
  max-width: 1000px;
  margin: 0 auto;
}

.chauffeur-content p {
  font-size: 19px;
  color: var(--text-medium);
  margin-bottom: 25px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  object-fit: cover;
}

.gallery-footer {
  text-align: center;
  padding: 20px 0;
}

/* ===== SAFARI & ACTIVITIES ===== */
.safari-section {
  padding: 20px;
  text-align: center;
}

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

.safari-text p {
  font-size: 18px;
  color: var(--text-medium);
  text-align: justify;
}

.activity-slider-section {
  padding: 50px 0 80px;
  background: #fff;
}

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

#activity-slider {
  width: 100%;
}

.activity-card {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-overlay h3 {
  font-size: 20px;
  margin: 0 0 8px 0;
  font-weight: bold;
}

.card-overlay p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

.slider-footer {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0 20px;
}

.more-activities-btn {
  font-family: Arial, sans-serif;
  background: #007074;
  color: #fff;
  padding: 18px 35px !important;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.more-activities-btn:hover {
  background: #0d5358;
}

.splide__arrow {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid #ccc !important;
  opacity: 1 !important;
}

.splide__arrow svg {
  fill: #333 !important;
}

.splide__pagination__page.is-active {
  background: #91bc5e;
}

/* ===== FLOATING BUTTONS ===== */
.left-float {
  position: fixed;
  left: 20px;
  bottom: 30px;
  z-index: 9999;
}

.enquire-tab {
  background-color: #ec3335;
  font-family: Arial, sans-serif;
  font-weight: 400;
  color: white;
  padding: 15px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  width: 90px;
  height: 90px;
  border-radius: 5px;
  text-decoration: none;
  line-height: 1.2;
  transition: background-color 0.3s ease;
}

.enquire-tab:hover {
  background-color: #f8b35c;
}

.right-float {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.whatsapp-float {
  display: block;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 60px;
  height: auto;
  display: block;
}

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

.back-to-top {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 9999;
  padding: 0;
  overflow: hidden;
}

.top-arrow-img {
  width: 25px;
  height: auto;
  display: block;
}

.back-to-top:hover {
  background-color: #f1f1f1;
  transform: translateY(-5px);
}

/* ===== FOOTER ===== */
.main-footer {
  background-color: var(--background-dark);
  color: var(--white);
  padding: 60px 20px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.footer-col h3 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--white);
  margin-top: 0;
  font-weight: normal;
}

/* Contact Col */
.contact-col {
  text-align: center;
}

.contact-col p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-col a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Follow Col */
.follow-col {
  text-align: center;
}

.social-icons {
  text-align: center;
  margin-bottom: 25px;
}

.social-icons a {
  text-decoration: none !important;
  display: inline-block;
  margin: 0 5px;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s;
}

.social-icons a img:hover {
  opacity: 0.7;
}

.license-box img {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
}

/* The background overlay */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  /* High number to stay on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

/* The actual image */
.modal-image {
  max-width: 95%;
  max-height: 95vh;
  border: 5px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  cursor: default;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
}

/* Links Col */
.links-col {
  text-align: center;
}

.links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-col ul li {
  margin-bottom: 20px;
}

.links-col ul li a {
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.payment-box {
  width: 100%;
}

.payment-box img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* Center widget in Contact Column */
.contact-col #TA_rated406 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

/* Copyright */
.copyright-bar {
  color: var(--black);
  padding: 20px 0 3px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

/* --- ABOUT US PAGE STYLES --- */
.about-hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url('/assets/img/cc1b80a0-testimonial_5.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.about-hero h1 {
  position: relative;
  font-size: 4em;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 8px;
  text-align: center;
  z-index: 1;
  margin: 0;
  font-family: "Playfair Display", serif;
}

/* Gray Box Container */
.gray-content-box {
  background-color: #f4f4f4;
  padding: 50px 60px;
  margin: 60px 0 80px 0;
  border-radius: 4px;
}

/* Slideshow */
.team-photo-section {
  margin-bottom: 40px;
  width: 100%;
}

.slideshow-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.slide {
  display: none;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.fade {
  animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
  from {
    opacity: .6
  }

  to {
    opacity: 1
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dcdcdc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #333;
  width: 30px;
  border-radius: 6px;
}

/* About Text */
.about-text {
  font-size: 1.05em;
  color: #666;
  margin-bottom: 25px;
  text-align: justify;
  font-weight: 300;
}

.about-text strong {
  font-weight: 600;
  color: #444;
}

/* Specific Overrides for About Page Titles to keep Cyan color */
.gray-content-box .section-title {
  font-size: 2.2em;
  color: #63d2ff;
  margin: 50px 0 30px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- CONTACT US PAGE STYLES --- */
.contact-hero {
  position: relative;
  width: 100%;
  height: 450px;
  background-image: url('/assets/img/5e899e83-tree_rope_1.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.contact-hero h1 {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 4em;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 2px;
  text-align: center;
  z-index: 1;
  margin: 0;
  text-transform: uppercase;
}

.contact-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.contact-left-col {
  flex: 1.3;
  min-width: 300px;
}

.contact-right-col {
  flex: 1;
  min-width: 300px;
}

.page-heading {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #000;
  margin-bottom: 40px;
  font-weight: 400;
  text-align: center;
}

.section-subheading {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #83c1e0;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Form Styling */
.contact-form label {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #444;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-form label span {
  color: red;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  background: #fff;
  color: #333;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.checkbox-group {
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #555;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.checkbox-group label {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.checkbox-group input {
  margin-right: 8px;
  width: auto;
}

.submit-btn {
  background-color: #007d75;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 2px;
  font-family: sans-serif;
}

.submit-btn:hover {
  background-color: #005a54;
}

/* Right Column Info */
.info-text {
  font-family: "Poppins", sans-serif;
  color: #777;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
}

.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
  color: #555;
  font-size: 16px;
}

.icon-box {
  width: 30px;
  margin-right: 15px;
  text-align: center;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: #83c1e0;
}

/* Map Section */
.map-section {
  max-width: 1200px;
  width: 100%;
  height: 450px;
  margin: 30px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0%);
}

/* --- Channels  PAGE STYLES --- */
.channel-breadcrumb-container {
  padding-top: 120px;
  padding-left: 5%;
  padding-bottom: 20px;
  display: flex;
  gap: 5px;
}


.breadcrumb-shape {
  background-color: #00c2d1;
  color: rgb(0, 0, 0);
  padding: 8px 15px 8px 25px;
  position: relative;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.breadcrumb-shape a,
.breadcrumb-shape span {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.breadcrumb-shape::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #00c2d1;
  z-index: 2;
}

.breadcrumb-shape::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #fff;
  z-index: 1;
}

.breadcrumb-shape:first-child {
  padding-left: 15px;
}

.breadcrumb-shape:first-child::before {
  display: none;
}

/* Header Text */
.channels-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 100px;
  min-height: 60vh;
}

.channels-header {
  text-align: center;
  margin-bottom: 60px;
}

.channels-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #63d2ff;
  margin-bottom: 10px;
  font-weight: bold;
}

.channels-subtitle {
  font-family: 'Playfair Display', serif;
  color: #888;
  font-size: 18px;
  margin-top: 0;
}

/* Card Grid */
.channels-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.channel-card {
  background: #fff;
  width: 100%;
  max-width: 500px;
  height: 300px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.channel-card:hover {
  transform: translateY(-5px);
}

.card-content {
  text-align: center;
  width: 100%;
}

.channel-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 30px;
  display: inline-block;
}

.youtube-logo {
  max-width: 180px;
}

.tripadvisor-logo {
  max-width: 220px;
}

/* Button Override */
.channel-btn {
  background-color: #2a6c74 !important;
  padding: 12px 30px;
  border-radius: 4px;
  font-family: sans-serif;
  text-transform: capitalize;
}

.channel-btn:hover {
  background-color: #005a54 !important;
}

/* --- best-time PAGE STYLES --- */
/* Hero Section */
.best-time-hero {
  position: relative;
  width: 100%;
  height: 450px;
  background-image: url('/assets/img/besttimehero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.best-time-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.best-time-hero h1 {
  position: relative;
  font-size: 4em;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 4px;
  text-align: center;
  z-index: 1;
  margin: 0;
  font-family: "Playfair Display", serif;
}

/* Content Wrapper */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

/* Introduction Section */
.intro-section {
  margin-bottom: 50px;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
  margin-bottom: 20px;
}

.intro-capital {
  font-size: 80px;
  float: left;
  line-height: 60px;
  padding-right: 8px;
  margin-top: 3px;
  color: #83c1e0;
  font-weight: 600;
}

.intro-text .highlight {
  font-weight: 600;
  color: #333;
}

/* Section Title */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #61ce70;
  margin: 50px 0 40px;
  font-weight: 600;
  text-align: left;
}

/* Month Sections */
.month-section {
  margin-bottom: 40px;
}

.month-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.month-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.month-details li {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.month-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #61ce70;
  font-size: 24px;
  line-height: 1.4;
}

.month-details li strong {
  color: #333;
  font-weight: 600;
}

/* Summary Section */
.summary-section {
  margin: 60px 0 50px;
}

.summary-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #61ce70;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: left;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-list li {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.summary-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ec3335;
  font-size: 20px;
  font-weight: bold;
}

.summary-list li strong {
  color: #333;
  font-weight: 600;
}

/* Festivals & Wildlife Table */
.festivals-table-wrapper {
  margin: 50px 0;
  overflow-x: auto;
}

.festivals-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.festivals-table thead {
  background: #40d1d6;
}

.festivals-table thead th {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 20px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.festivals-table tbody tr {
  border-bottom: 3px solid #40d1d6;
}

.festivals-table tbody tr:nth-child(even) {
  background: #f0f9fa;
}

.festivals-table tbody td {
  padding: 18px 15px;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  vertical-align: middle;
}

.festivals-table tbody td:first-child {
  background: #e6f7f9;
  font-weight: 700;
  text-align: center;
  width: 15%;
}

.festivals-table tbody td:nth-child(2),
.festivals-table tbody td:nth-child(3) {
  width: 42.5%;
}

/* Gallery Section */
.gallery-section {
  margin: 60px 0;
}

.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #61ce70;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: left;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-large-image {
  width: 100%;
  margin-top: 10px;
}

.gallery-large-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.lightbox-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 10000;
  /* Sit on top of everything including sidebar */
  padding-top: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  /* Dark background like screenshot */
  align-items: center;
  justify-content: center;
}

/* The Image Wrapper */
.modal-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* The Full Screen Image */
.modal-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s;
}

/* Zoom Animation */
@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close Button (Top Right) */
.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10001;
}

.close-btn:hover,
.close-btn:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Next/Prev Navigation Buttons */
.nav-btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 40px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  z-index: 10001;
}

/* Position the buttons */
.nav-btn.prev {
  left: 20px;
}

.nav-btn.next {
  right: 20px;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Counter Text (e.g. 13 of 15) */
.image-counter {
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  font-family: sans-serif;
  font-size: 14px;
  margin-top: 10px;
}

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

/* Mobile Navigation Fixes */
@media (max-width: 768px) {
  .site-header {
    height: 60px;
    padding: 0;
  }

  .logo img {
    height: 35px;
    margin-left: 15px;
  }

  .menu-toggle {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .sidebar {
    padding: 60px 30px;
  }

  .close-menu {
    font-size: 30px;
  }

  .sidebar-nav a {
    font-size: 18px;
  }

  .submenu a {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .site-header {
    height: 50px;
  }

  .logo img {
    height: 28px;
    margin-left: 10px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .sidebar {
    padding: 50px 20px;
  }

  .sidebar-nav a {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .submenu a {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/* Typography Mobile Fixes */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin: 15px 0 20px;
  }

  .about-title {
    font-size: 36px;
  }

  .about-content {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-content {
    font-size: 14px;
  }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
  .content {
    padding-top: 60px;
  }

  .hero {
    padding: 15px 15px 0;
  }
}

@media (max-width: 480px) {
  .content {
    padding-top: 50px;
  }

  .hero {
    padding: 10px 10px 0;
  }
}

/* Info Columns Mobile Fixes */
@media (max-width: 992px) {
  .column-container {
    flex-direction: column;
    gap: 30px;
  }

  .ta-badges-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .info-col h3 {
    font-size: 24px;
  }

  .ta-badge-title {
    font-size: 26px;
  }

  .ta-review-count {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .info-columns {
    padding: 0 10px 30px;
  }

  .info-col h3 {
    font-size: 20px;
  }

  .info-col p {
    font-size: 14px;
  }

  .widCOEImg {
    max-width: 90px;
  }

  .widEXCIMG {
    max-width: 140px;
  }
}

/* Testimonials Mobile */
@media (max-width: 768px) {
  .testimonial-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .testimonial-content {
    padding: 0 30px;
  }

  .testimonial-content p {
    font-size: 14px;
  }

  .quote-icon {
    font-size: 80px;
  }

  .left-quote {
    top: -10px;
    left: -10px;
  }

  .right-quote {
    bottom: 40px;
    right: -10px;
  }

  .testimonial-author {
    font-size: 16px;
  }

  .testimonial-location {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .testimonial-heading {
    font-size: 18px;
  }

  .testimonial-content {
    padding: 0 20px;
  }

  .testimonial-content p {
    font-size: 13px;
  }

  .quote-icon {
    font-size: 60px;
  }
}

/* Transport Section Mobile */
@media (max-width: 768px) {
  .transport-section {
    padding: 20px 15px 40px;
  }

  .transport-description {
    font-size: 15px;
  }

  .transport-columns {
    flex-direction: column;
    gap: 20px;
  }

  .transport-col {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .transport-description {
    font-size: 14px;
  }

  .transport-col img {
    height: 200px;
  }

  .transport-content {
    padding: 15px;
  }
}

/* Gallery Mobile */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 10px;
  }
}

/* Safari & Activities Mobile */
@media (max-width: 768px) {
  .safari-text p {
    font-size: 16px;
  }

  .activity-slider-section {
    padding: 30px 0 50px;
  }

  .card-overlay {
    padding: 20px 15px;
    min-height: 140px;
  }

  .card-overlay h3 {
    font-size: 18px;
  }

  .card-overlay p {
    font-size: 13px;
  }

  .slider-footer {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .more-activities-btn {
    padding: 15px 28px !important;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .safari-text p {
    font-size: 14px;
  }

  .card-overlay h3 {
    font-size: 16px;
  }

  .card-overlay p {
    font-size: 12px;
  }

  .more-activities-btn {
    width: 90%;
    padding: 12px 20px !important;
  }
}

/* Floating Buttons Mobile */
@media (max-width: 768px) {
  .left-float {
    left: 10px;
    bottom: 20px;
  }

  .enquire-tab {
    width: 70px;
    height: 70px;
    font-size: 11px;
    padding: 10px 8px;
  }

  .right-float {
    right: 10px;
    bottom: 20px;
    gap: 10px;
  }

  .whatsapp-float img {
    width: 50px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
  }

  .top-arrow-img {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .enquire-tab {
    width: 60px;
    height: 60px;
    font-size: 10px;
  }

  .whatsapp-float img {
    width: 45px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
  }

  .top-arrow-img {
    width: 18px;
  }
}

/* TripAdvisor Footer Section Centering */
@media (max-width: 768px) {
  .tripadvisor-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .tripadvisor-col>div,
  .tripadvisor-col>ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  /* Force center all TripAdvisor widgets */
  .tripadvisor-col .TA_excellent,
  .tripadvisor-col .TA_certificateOfExcellence,
  .tripadvisor-col .TA_rated,
  .tripadvisor-col ul {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  /* Center the payment box */
  .payment-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .payment-box p {
    text-align: center;
    margin-bottom: 10px;
  }

  .payment-box img {
    margin: 0 auto;
  }
}

/* Footer Mobile */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .contact-col p,
  .links-col ul li a {
    font-size: 15px;
  }

  .ta-badge-title {
    font-size: 24px;
  }

  .ta-review-count {
    font-size: 16px;
  }

  .license-box img {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .footer-col h3 {
    font-size: 22px;
  }

  .contact-col p {
    font-size: 14px;
  }

  .links-col ul li {
    margin-bottom: 15px;
  }

  .links-col ul li a {
    font-size: 14px;
  }

  .copyright-bar {
    font-size: 14px;
    padding: 15px 0 3px;
  }
}

/* About Page Mobile */
@media (max-width: 768px) {
  .about-hero {
    height: 300px;
  }

  .about-hero h1 {
    font-size: 2.5em;
    letter-spacing: 4px;
  }

  .gray-content-box {
    padding: 30px 20px;
    margin: 40px 0;
  }

  .gray-content-box .section-title {
    font-size: 1.8em;
  }

  .about-text {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 250px;
  }

  .about-hero h1 {
    font-size: 2em;
    letter-spacing: 2px;
  }

  .gray-content-box {
    padding: 20px 15px;
    margin: 30px 0;
  }

  .gray-content-box .section-title {
    font-size: 1.5em;
  }

  .about-text {
    font-size: 0.9em;
  }

  .carousel-dots {
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 25px;
  }
}

/* Contact Page Mobile */
@media (max-width: 768px) {
  .contact-hero {
    height: 350px;
  }

  .contact-hero h1 {
    font-size: 2.5em;
  }

  .contact-container {
    flex-direction: column;
    gap: 40px;
    margin: 40px auto;
    padding: 0 15px;
  }

  .contact-left-col,
  .contact-right-col {
    min-width: 100%;
  }

  .contact-right-col {
    order: -1;
  }

  .page-heading {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .section-subheading {
    font-size: 1.6rem;
  }

  .info-text {
    font-size: 14px;
  }

  .contact-details-list li {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .map-section {
    height: 350px;
    margin: 20px auto;
  }

  /* Hero Section */
  .best-time-hero {
    height: 350px;
  }

  .best-time-hero h1 {
    font-size: 2.5em;
    letter-spacing: 2px;
    padding: 0 20px;
  }

  /* Content Wrapper */
  .content-wrapper {
    padding: 40px 15px 60px;
  }

  /* Introduction */
  .intro-capital {
    font-size: 60px;
    line-height: 50px;
    padding-right: 5px;
  }

  .intro-text {
    font-size: 16px;
  }

  /* Section Titles */
  .section-title,
  .summary-title,
  .gallery-title {
    font-size: 32px;
    margin: 40px 0 30px;
  }

  /* Month Sections */
  .month-title {
    font-size: 24px;
  }

  .month-details li {
    font-size: 15px;
  }

  /* Summary */
  .summary-list li {
    font-size: 16px;
  }

  /* Table */
  .festivals-table thead th {
    font-size: 13px;
    padding: 15px 10px;
  }

  .festivals-table tbody td {
    font-size: 12px;
    padding: 15px 10px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-grid img {
    height: 140px;
  }

  .gallery-large-image img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    height: 280px;
  }

  .contact-hero h1 {
    font-size: 2em;
  }

  .contact-container {
    margin: 30px auto;
  }

  .page-heading {
    font-size: 1.8rem;
  }

  .section-subheading {
    font-size: 1.4rem;
  }

  .contact-form label {
    font-size: 0.9rem;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="number"],
  .contact-form select,
  .contact-form textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .contact-form textarea {
    height: 120px;
  }

  .checkbox-group {
    flex-direction: column;
    gap: 15px;
  }

  .submit-btn {
    width: 100%;
    padding: 12px 30px;
  }

  .info-text {
    font-size: 13px;
  }

  .contact-details-list li {
    font-size: 14px;
  }

  .icon-box {
    width: 25px;
  }

  .icon-box svg {
    width: 20px;
    height: 20px;
  }

  .map-section {
    height: 300px;
    padding: 0 15px;
  }
}

/* Channels Page Mobile */
@media (max-width: 768px) {
  .channel-breadcrumb-container {
    padding-top: 80px;
    padding-left: 3%;
    padding-bottom: 15px;
  }

  .breadcrumb-shape {
    font-size: 12px;
    padding: 6px 12px 6px 20px;
  }

  .breadcrumb-shape::after {
    right: -16px;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #00c2d1;
  }

  .breadcrumb-shape::before {
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #fff;
  }

  .channels-wrapper {
    padding: 20px 15px 60px;
  }

  .channels-header {
    margin-bottom: 40px;
  }

  .channels-title {
    font-size: 36px;
  }

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

  .channels-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .channel-card {
    max-width: 100%;
    height: 250px;
  }

  .channel-logo {
    max-width: 160px;
    margin-bottom: 25px;
  }

  .youtube-logo {
    max-width: 140px;
  }

  .tripadvisor-logo {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .channel-breadcrumb-container {
    padding-top: 60px;
    flex-wrap: wrap;
  }

  .breadcrumb-shape {
    font-size: 11px;
    padding: 5px 10px 5px 15px;
  }

  .channels-title {
    font-size: 28px;
  }

  .channels-subtitle {
    font-size: 14px;
  }

  .channel-card {
    height: 220px;
  }

  .channel-logo {
    max-width: 140px;
    margin-bottom: 20px;
  }

  .youtube-logo {
    max-width: 120px;
  }

  .tripadvisor-logo {
    max-width: 160px;
  }

  .channel-btn {
    padding: 10px 25px !important;
    font-size: 13px;
  }
}

/* Slider Mobile Improvements */
@media (max-width: 768px) {
  .splide__arrow {
    width: 2em !important;
    height: 2em !important;
  }

  .splide__arrow svg {
    width: 1em !important;
    height: 1em !important;
  }
}

@media (max-width: 480px) {
  .splide__arrow {
    width: 1.8em !important;
    height: 1.8em !important;
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {

  /* Hero Section */
  .best-time-hero {
    height: 350px;
  }

  .best-time-hero h1 {
    font-size: 2.5em;
    letter-spacing: 2px;
    padding: 0 20px;
  }

  /* Content Wrapper */
  .content-wrapper {
    padding: 40px 15px 60px;
  }

  /* Introduction */
  .intro-capital {
    font-size: 60px;
    line-height: 50px;
    padding-right: 5px;
  }

  .intro-text {
    font-size: 16px;
  }

  /* Section Titles */
  .section-title,
  .summary-title,
  .gallery-title {
    font-size: 32px;
    margin: 40px 0 30px;
  }

  /* Month Sections */
  .month-title {
    font-size: 24px;
  }

  .month-details li {
    font-size: 15px;
  }

  /* Summary */
  .summary-list li {
    font-size: 16px;
  }

  /* Table */
  .festivals-table thead th {
    font-size: 13px;
    padding: 15px 10px;
  }

  .festivals-table tbody td {
    font-size: 12px;
    padding: 15px 10px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-grid img {
    height: 140px;
  }

  .gallery-large-image img {
    height: 350px;
  }
}

@media (max-width: 480px) {

  /* Hero Section */
  .best-time-hero {
    height: 280px;
  }

  .best-time-hero h1 {
    font-size: 2em;
    letter-spacing: 1px;
  }

  /* Content Wrapper */
  .content-wrapper {
    padding: 30px 15px 50px;
  }

  /* Introduction */
  .intro-capital {
    font-size: 50px;
    line-height: 40px;
  }

  .intro-text {
    font-size: 14px;
  }

  /* Section Titles */
  .section-title,
  .summary-title,
  .gallery-title {
    font-size: 26px;
    margin: 30px 0 20px;
  }

  /* Month Sections */
  .month-title {
    font-size: 20px;
  }

  .month-details li {
    font-size: 14px;
  }

  /* Summary */
  .summary-list li {
    font-size: 14px;
  }

  /* Table */
  .festivals-table thead th {
    font-size: 11px;
    padding: 12px 8px;
  }

  .festivals-table tbody td {
    font-size: 10px;
    padding: 12px 8px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .gallery-grid img {
    height: 200px;
  }

  .gallery-large-image img {
    height: 280px;
  }
}

@media only screen and (max-width: 700px) {
  .modal-image {
    width: 100%;
  }

  .nav-btn {
    padding: 10px;
    font-size: 25px;
  }

  .close-btn {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
}

/* ===== DESKTOP 4-COLUMN LAYOUT FIX ===== */
@media (min-width: 1025px) {

  /* 1. Reset the list container to be a Flexbox row */
  #category-slider .splide__list {
    display: flex !important;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    /* Keeps the full screen height */
    padding: 0;
    margin: 0;
  }

  /* 2. Make each slide take up exactly 25% width */
  #category-slider .splide__slide {
    width: 25% !important;
    height: 100% !important;
    margin: 0 !important;
    /* Remove any accidental margins */
    display: block;
  }

  /* 3. Ensure the images fill the columns completely */
  #category-slider .category-link {
    display: block;
    width: 100%;
    height: 100%;
  }

  #category-slider .category-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images don't stretch weirdly */
    display: block;
  }
}