@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap");

* {
  box-sizing: border-box;
}

/* ===== ROOT VARIABLES ===== */
: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;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --overlay-dark: rgba(0, 0, 0, 0.5);
}

/* ===== BASE ===== */
body {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* ===== GLOBAL SECTION TITLE (USED EVERYWHERE) ===== */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  text-align: center;
  color: var(--primary-green);
  margin: 20px 0 30px;
}

/* ===== TRANSPARENT HEADER ===== */
.site-header {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; 
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0; 
    z-index: 2000;
}

.logo img {
    display: block;
    height: 50px;
    width: auto;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3)); 
}

.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;
    margin: 0;
    font-size: 35px;
}

.hamburger-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.line {
    display: block;
    width: 35px;
    height: 3px;
    background-color: white;
}

body.sidebar-open .menu-toggle {
    display: none;
}

body.sidebar-open .left-float,
body.sidebar-open .right-float {
    display: none !important;
}

.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;
    font-size: 26px;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 22px;
    text-transform: uppercase;
}

.submenu {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 15px;
    padding-right: 15px;
}

.submenu.active { display: flex; }

.submenu a { font-size: 16px; opacity: 0.9; }

body.sidebar-open { overflow: hidden; }

.content { padding-top: 0; }

.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: 10px;
}

.submenu.active {
  display: flex;
}

.submenu a {
  font-size: 20px; 
  margin-bottom: 12px;
  opacity: 0.9;
}

.arrow {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.3s;
}

.menu-item-has-children.active .arrow {
  transform: rotate(180deg);
}

/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-dark);
  display: none;
  z-index: 150;
}

.overlay.show {
  display: block;
}

/* ===== CLICKABLE CATEGORY GRID ===== */
#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 ===== */
.hero {
  padding: 20px 20px 0;
  text-align: center;
}

/* ===== ABOUT ===== */
.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 ===== */
.info-columns {
  padding: 0 10px 40px;
}

.column-container {
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Wrapper for the two badge items */
.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;
}

/* Tripadvisor */
.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 ===== */
.tripadvisor-col {
  text-align: center;
}

.tripadvisor-col .ta-button {
  margin-left: auto;
  margin-right: auto;
}

.view-more-btn {
  margin-top: 12px;
}

.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-btn-img {
  width: 24px;   
  height: auto;
  display: block;
}

.ta-button:hover,
.view-more-btn:hover,
.chauffeurs-btn:hover {
  background: #106c73;
  opacity: 0.9;
}

.ta-icon {
  margin-left: 10px;
}

/* ===== 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 Icons */
.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;
}

/* Button Styling */
.view-more-btn {
  display: inline-block;
  background-color: #066063; 
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s;
}

.view-more-btn:hover {
  background-color: #044a4d;
}

/* ===== 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);
  padding: 0; 
  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 ===== */
.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 ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  /*height: 250px;*/
  object-fit: cover;
}

.gallery-footer {
  text-align: center;
  padding: 20px 0;
}

/* ===== SAFARI ===== */
.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;
}

/* == Splide image section ==*/

.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;
}

.splide__arrow {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid #ccc !important;
  opacity: 1 !important;
}

.splide__arrow svg {
  fill: #333 !important;
}

.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__pagination__page.is-active {
  background: #91bc5e;
}

/* ===== Enquire Now button ===== */
.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;
    justify-content: center;
    align-items: center;
}

/* ===== whatsapp button ===== */
.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);
}

/* Container for vertical stacking */
.right-float {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Back to Top Button Style */
.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;
}

/* The Arrow Image */
.top-arrow-img {
    width: 25px;
    height: auto; 
    display: block;
}

.back-to-top:hover {
    background-color: #f1f1f1;
    transform: translateY(-5px);
}

html {
    scroll-behavior: smooth;
}

/* ===== 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);
}


.contact-col {
    text-align: center; 
}

.contact-col h3 {
    font-weight: normal;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px; 
}

.contact-col p {
    font-size: 18px; 
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-col a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.contact-col #TA_rated406 {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px; 
}

.contact-col .TA_links {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    display: flex;
    justify-content: center;
}

.contact-col .TA_links li {
    margin: 0 !important;
    display: flex;
}

.contact-col .TA_links a {
    display: block;
}

/* Column 2: Follow Us */
.follow-col {
    text-align: center;
}

.follow-col h3 {
    font-weight: normal;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;  
}

.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;
    vertical-align: middle; 
    transition: opacity 0.3s;
}

.social-icons a img:hover {
    opacity: 0.7;
}

.license-box img {
    width: 100%;
    max-width: 320px;    
    border: 3px solid #cc0000; 
    display: block;
    margin: 0 auto;
}

/* Column 3: Quick Links */
.links-col h3 {
    font-weight: normal;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;  
}
.links-col {
    text-align: center;
}
.links-col ul {
    list-style: none;
    padding: 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;
}

/* Column 4: Payments */
.tripadvisor-col {
    width: 100%;
}

.tripadvisor-col div {
    margin-bottom: 10px;
}

.payment-box img {
  align-items: center;
    max-width: 100%;
    height: auto;
    padding-top: 15px; 
}


.links-col ul {
    padding: 0;
    margin: 0;
}

.links-col ul li a {
    color: var(--white);
}

/* ===== COPYRIGHT BAR ===== */
.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;
}

/* ===== RESPONSIVE ===== */

@media (min-width: 1025px) {
    #category-slider .splide__list {
        display: flex !important;
        transform: none !important; 
    }
    #category-slider .splide__slide {
        width: 25% !important; 
    }
    #category-slider .splide__pagination, 
    #category-slider .splide__arrows {
        display: none !important; 
    }
}

@media (max-width: 1024px) {
    #category-slider .splide__slide {
        width: 100% !important;
    }
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .column-container,
  .transport-columns {
    flex-direction: column;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

   .category-grid {
    display: none !important;
  }

  .section-title {
    font-size: 32px;
  }

  .column-container,
  .transport-columns {
    flex-direction: column;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .site-header {
    height: 60px;
    padding: 0 15px;
  }

  .site-header {
        height: 60px;
        padding: 0;
    }

    .menu-toggle {
        width: 60px; 
        height: 60px;
        font-size: 30px;
    }
    
    .logo img {
        height: 40px;
        margin-left: 15px;
    }

    .copyright-bar {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .category-item {
      flex: 1 1 100%; 
  }

  .more-activities-btn {
     width: 100%;
     max-width: 300px;
     padding: 18px 25px;
  }
}
