/* --- 1. SLIDERS (Home Hero) --- */
#category-slider {
  width: 100%;
  height: auto !important;
}

#category-slider .splide__track,
#category-slider .splide__list {
  height: auto !important;
}

.category-link {
  display: block;
  width: 100%;
  height: auto !important;
}

.category-link img {
  width: 100%;
  height: 100vh !important;
  object-fit: cover;
  display: block;
}

/* Splide Overrides (Home Specific) */
.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;
}

/* Mobile: Sliders */
@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;
  }
}

/* --- 2. MAIN CONTENT WRAPPERS --- */
.content {
  padding-top: 80px;
}

.hero {
  padding: 20px 20px 0;
  text-align: center;
}

/* Mobile: Content & Hero */
@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;
  }
}

/* --- 3. ABOUT SECTION --- */
.about-section {
  padding: 10px 20px;
  text-align: center;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  line-height: 1;
  color: var(--primary-blue);
  -webkit-text-stroke: 1px var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 20px 0 30px;
}

.about-content {
  text-align: justify;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-medium);
}

.about-content p {
  margin-bottom: 25px;
}

/* Mobile: About Section */
@media (max-width: 768px) {
  .about-title {
    font-size: 36px;
  }
  .about-content {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }
  .about-content {
    font-size: 14px;
  }
}

/* --- 4. DIVIDERS --- */
.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);
}

/* --- 5. INFO COLUMNS (Why Choose Us / TripAdvisor) --- */
.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;
}

.tripadvisor-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tripadvisor-col .ta-button {
  margin-top: 20px;
}

/* Home Page 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;
}

/* Mobile: Info Columns */
@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: 768px) {
  /* TripAdvisor Centering Mobile */
  .tripadvisor-col,
  .tripadvisor-col > div,
  .tripadvisor-col > ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center !important;
  }
  .tripadvisor-col .TA_excellent,
  .tripadvisor-col .TA_certificateOfExcellence,
  .tripadvisor-col .TA_rated,
  .tripadvisor-col ul {
    margin: 0 auto !important;
    text-align: center !important;
  }
}

@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;
  }
}

/* --- 6. 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;
}

/* Mobile: Testimonials */
@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;
  }
}

/* --- 7. 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;
}

/* Mobile: Transport */
@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;
  }
}

/* --- 8. 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;
}

/* Mobile: Gallery */
@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;
  }
}

/* --- 9. 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;
}

/* Mobile: Safari & Activities */
@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: 20px 0;
  }
  .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;
  }
}
