html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

/* NAV */
.nav-spacer {
  height: 120px;
}

/* HERO */
.hero-section img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 40%;
  left: 10%;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 800;
  color: #ffe600;
}

.hero-text p {
  font-size: 20px;
  color: #ffffff;
}

/* CATEGORY CARD */
.category-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

/* IMAGE */
.category-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* CENTER LABEL */
.category-card span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 10px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
  z-index: 2;
  /* IMPORTANT because of overlay */
}


/* HOVER EFFECT */
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* IMAGE ZOOM ON HOVER */
.category-card:hover img {
  transform: scale(1.06);
}

/* LABEL HOVER EFFECT */
.category-card:hover span {
  background: #f5c400;
  color: #000000;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

/* TOUR CARD WRAPPER */
.tour-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  /* IMPORTANT */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.category-card:hover::after {
  opacity: 1;
}

/* IMAGE */
.tour-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

/* CONTENT AREA */
.tour-card h5 {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 14px 10px;
  margin: 0;
  text-align: center;
}

/* BUTTON */
.tour-card button,
.btn-whatsapp-card {
  width: 80%;
  margin: 0 auto 16px;
  padding: 10px;
  border: none;
  border-radius: 30px;
  background: #25d366;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-whatsapp-card:hover {
  background: #1ebea5;
  transform: scale(1.02);
}

/* HOVER EFFECT (VERY IMPORTANT) */
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* FOOTER */
.site-footer {
  background: #ff8c00;
  /* orange like screenshot */
  color: #ffffff;
  font-size: 13px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

/* LEFT */
.footer-left {
  white-space: nowrap;
}

/* CENTER SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #ffffff;
  font-size: 16px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* RIGHT */
.footer-right {
  white-space: nowrap;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
    text-align: center;
  }
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-spacer {
    height: 80px;
    /* Reduced for mobile */
  }

  .hero-section {
    margin-bottom: 20px;
  }

  .category-card,
  .tour-card {
    border-radius: 0;
    margin-bottom: 25px;
  }

  .category-card img,
  .tour-card img {
    border-radius: 0;
  }

  .hero-section img,
  .about-hero-section img,
  .contact-hero-section img {
    height: auto;
    min-height: 220px;
    object-fit: initial;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
    font-weight: 700;
  }
}


.navbar {
  min-height: 90px;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #f5c400 !important;
}

/* ACTIVE INDICATOR (Desktop Only) */
@media (min-width: 992px) {
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: #f5c400;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
  }
}

/* SOCIAL ICONS */
.social-icon {
  font-size: 18px;
  color: #333;
  cursor: pointer;
}

.social-icon:hover {
  color: #f5c400;
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  margin-top: 0;
  /* Align for hover */
}

.dropdown-item {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: #fdf5d2;
  color: #000;
  padding-left: 25px;
}

/* HOVER TO OPEN DROPDOWN (Desktop) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  /* INDICATOR FOR DESKTOP */
  .navbar-nav .dropdown-toggle::after {
    display: inline-block;
    content: "\F282";
    /* bi-chevron-down */
    font-family: "bootstrap-icons" !important;
    font-size: 10px;
    font-weight: 800;
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    transition: transform 0.3s ease;
    color: inherit;
  }

  /* Remove the active underline for dropdowns to avoid overlap with the icon */
  .navbar-nav .nav-link.dropdown-toggle::after {
    display: none !important;
  }
}

/* MOBILE */
.offcanvas {
  width: 260px;
}

.offcanvas .nav-link[data-bs-toggle="collapse"]::after {
  content: "\F282";
  /* bi-chevron-down */
  font-family: "bootstrap-icons";
  font-size: 12px;
  float: right;
  transition: transform 0.3s ease;
}

.offcanvas .nav-link:not(.collapsed)[data-bs-toggle="collapse"]::after {
  transform: rotate(180deg);
}

.mobile-social {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 18px;
  font-size: 20px;
}

.custom-toggler {
  border: none;
  background: transparent;
  padding: 6px;
}

.custom-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  margin: 5px 0;
  transition: 0.3s;
}

.dropdown-menu {
  min-width: 220px;
  padding: 10px 0;
  border-radius: 10px;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  color: #333;
}

.dropdown-item:hover {
  background: #f5c400;
  color: #000;
}


.drawer-cta {
  margin-top: 30px;
}

.drawer-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: #f5c400;
  font-size: 14px;
  font-weight: 600;
}

.mobile-social {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font-size: 20px;
}

.mobile-social i {
  color: #333;
}


.custom-toggler {
  border: none;
  background: transparent;
  font-size: 22px;
  color: #1a1a1a;
}

.drawer-toggle {
  border: none;
  background: transparent;
  padding: 4px;
  font-size: 22px;
  color: #1a1a1a;
  cursor: pointer;
}

.drawer-toggle:hover {
  color: #f5c400;
}

/* Optional subtle animation */
.drawer-toggle i {
  transition: transform 0.3s ease;
}

.drawer-toggle:hover i {
  transform: translateX(3px);
}

/* MOBILE DRAWER BUTTON */
.drawer-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #1a1a1a;
}

/* SOCIAL ICONS */
.social-icon {
  font-size: 18px;
  color: #333;
  cursor: pointer;
}

.social-icon:hover {
  color: #f5c400;
}

/* MOBILE CTA */
.drawer-btn-primary {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: #f5c400;
  font-size: 14px;
  font-weight: 600;
}

.mobile-social {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font-size: 20px;
}


/* BRAND LOGO */
.brand-logo img {
  height: 80px;
  /* Desktop perfect size */
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Tablet */
@media (max-width: 992px) {
  .brand-logo img {
    height: 75px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .brand-logo img {
    height: 60px;
  }
}


/* CERTIFIED SECTION */
.certified-section {
  background: #ffffff;
  padding: 40px 0;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f5c400;
  border-radius: 10px;
}

.cert-logo {
  background: #ffffff;
  border-radius: 50%;
  padding: 2px;
  height: 160px;
  width: 160px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f5c400;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.cert-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
}

.cert-logo:hover {
  transform: translateY(-2);
  /* box-shadow: 0 14px 3px rgba(0,0,0,0.2); */
}

/* BRANCHES */
.branches-section {
  background: #ffffff;
  padding: 70px 0;
}

.section-title.red {
  color: #d71920;
}


/* CAROUSEL ARROWS VISIBILITY FIX */
#certifiedCarousel .carousel-control-prev,
#certifiedCarousel .carousel-control-next {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

/* ICON COLOR */
#certifiedCarousel .carousel-control-prev-icon,
#certifiedCarousel .carousel-control-next-icon {
  filter: invert(1);
  width: 18px;
  height: 18px;
}

/* POSITIONING */
#certifiedCarousel .carousel-control-prev {
  left: 10px;
}

#certifiedCarousel .carousel-control-next {
  right: 10px;
}

/* HOVER EFFECT */
#certifiedCarousel .carousel-control-prev:hover,
#certifiedCarousel .carousel-control-next:hover {
  background: #f5c400;

}


/* BRANCHES SECTION */
.branches-section {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  color: #1a1a1a;
}

/* BACKGROUND IMAGE */
.branches-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://skyplanetholidays.com/old/wp-content/uploads/2024/05/1.png") center center / cover no-repeat;
  opacity: 0.15;
  /* subtle light effect */
  z-index: 0;
}

/* SECTION TITLE */
.section-title.red {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #d71920;
  position: relative;
  z-index: 1;
}

/* BRANCH CARD */
.branch-card {
  background: #ffffff;
  opacity: 0.80;

  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  /* box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); */
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  position: relative;
  z-index: 2;
  border: 2px solid #f5c400;
}

/* LOCATION PIN */
.branch-icon {
  width: 50px;
  height: 50px;
  background: #f5c400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.branch-icon i {
  font-size: 22px;
  color: #000;
}

/* TEXT */
.branch-card h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.branch-card p {
  font-size: 13px;
  line-height: 20px;
  color: #444;
}

/* CARD HOVER */
.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* SKYLINE SVG */
.branches-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.branches-skyline svg {
  width: 100%;
  height: 100%;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .branches-section {
    padding: 80px 0 100px;
  }

  .section-title.red {
    font-size: 24px;
  }
}


/* ---- MOBILE STICKY CTA BAR ---- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1050;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  border-top: 1px solid #eee;
}

.sticky-cta-btn {
  flex: 1;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  border-radius: 8px;
}

.sticky-enquire {
  background: #ffa843;
  color: #fff !important;
  margin-right: 10px;
}

.sticky-whatsapp {
  background: #25d366;
  color: #fff !important;
  max-width: 60px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    align-items: center;
  }

  /* Hide floating WhatsApp on mobile to avoid overlap */
  .whatsapp-float {
    display: none !important;
  }

  /* Add padding to body to prevent footer overlap */
}


/* ---- FLOATING ENQUIRE BUTTON ---- */
.enquire-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #ff8900;
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 137, 0, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.95;
  /* Slightly transparent as requested */
}

.enquire-float:hover {
  background: #e67b00;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 137, 0, 0.5);
  color: #fff !important;
  opacity: 1;
}

@media (max-width: 768px) {
  .enquire-float {
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 14px;
    /* Avoid clash with mobile sticky CTA if present */
    z-index: 1100;
  }
}

/* ---- FLOATING WHATSAPP BUTTON ---- */
.whatsapp-float {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 65px;
  height: 65px;
  background-color: #25d366;
  /* Official WhatsApp Green */
  color: #fff !important;
  border-radius: 50%;
  text-align: center;
  font-size: 38px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Outer Glow Effect */
.whatsapp-float::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: rgba(37, 211, 102, 0.2);
  border-radius: 50%;
  z-index: -1;
  animation: whatsappGlow 2s infinite;
}

.whatsapp-float:hover {
  background-color: #1ebea5;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff3b30;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes whatsappGlow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    font-size: 34px;
    display: flex !important;
  }

  .whatsapp-badge {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

.hover-orange:hover {
  color: #ffa843 !important;
  transition: color 0.3s ease;
}

.max-w-800 {
  max-width: 800px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}