body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

/* NAV */
.nav-spacer {
  height: 90px;
}

/* 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-size: 14px;
  font-weight: 500;
  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%;
  height: 100%;
  /* KEY FIX */
  object-fit: initial;
  /* CROPS IMAGE LIKE SCREENSHOT */
  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 {
  width: calc(100% - 28px);
  margin: 0 14px 16px;
  padding: 10px;
  border: none;
  border-radius: 30px;
  background: #16c60c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

/* 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) {
  .hero-section img {
    height: 300px;
  }

  .hero-text h1 {
    font-size: 28px;
  }
}


.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;
}

/* SOCIAL ICONS */
.social-icon {
  font-size: 18px;
  color: #333;
  cursor: pointer;
}

.social-icon:hover {
  color: #f5c400;
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 8px;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  font-size: 14px;
  padding: 10px 16px;
}

/* MOBILE */
.offcanvas {
  width: 260px;
}

.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: 28px;
  font-weight: 700;
  color: #2b2b2b;
}

.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(-2px);
  /* 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;
  }
}

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */

/* GRADIENT DIVIDER */
.gradient-divider {
  height: 4px;
  background: linear-gradient(90deg, #f5c400, #ff8c00, #f5c400);
  opacity: 0.6;
}

/* ---- ABOUT HERO SLIDER (Same as Home) ---- */
.about-hero-section {
  position: relative;
}

.about-hero-section .carousel-item {
  height: 520px;
}

.about-hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.about-hero-content h1 {
  font-size: 46px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-hero-content .breadcrumb {
  background: transparent;
  margin: 0;
}

.about-hero-content .breadcrumb-item a {
  color: #f5c400;
  text-decoration: none;
  font-weight: 600;
}

.about-hero-content .breadcrumb-item.active,
.about-hero-content .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
  font-weight: 600;
}

/* ---- SHARED LABELS ---- */
.about-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #f5c400;
  margin-bottom: 6px;
  display: block;
}

.about-section-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 25px;
  /* Equalized bottom space */
}

.about-divider {
  width: 60px;
  height: 4px;
  background: #f5c400;
  border-radius: 3px;
  margin-bottom: 22px;
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 14px;
}

/* ---- OUR COMPANY ---- */
.about-company-section {
  padding: 80px 0;
  background: #fff;
}

.about-stats-row {
  display: flex;
  gap: 30px;
  margin-top: 28px;
}

.about-stat {
  text-align: center;
  background: #fffbec;
  border: 2px solid #f5c400;
  border-radius: 12px;
  padding: 16px 24px;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #f5a000;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* VIDEO WRAPPER FIX */
.about-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 3px solid #f5c400;
}

.about-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* IMAGE GRID */
.about-img-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-img-main {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.about-img-sub-group {
  display: flex;
  gap: 12px;
}

.about-img-sub-group img {
  width: 50%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

/* ---- MANAGING DIRECTORS ---- */
/* ---- MANAGING DIRECTORS (NEW STYLE MATCHING SCREENSHOT) ---- */
.about-mds-section {
  padding: 80px 0;
  background: #e9ecef;
  /* Light gray background from user request */
}

.md-card-new {
  text-align: center;
  margin-bottom: 30px;
}

.md-image-box {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 5px solid #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.md-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.md-name {
  font-size: 22px;
  font-weight: 700;
  color: #1b3d64;
  /* Dark blue from screenshot */
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

.md-role-new {
  display: block;
  font-size: 16px;
  color: #ff8c00;
  /* Orange color */
  font-style: italic;
  font-weight: 500;
}

.about-text-footer {
  max-width: 950px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  padding: 25px 0;
}

/* LEGACY MD STYLES (KEEPING FOR COMPATIBILITY OR REFERENCE IF NEEDED ELSEWHERE) */
.md-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #e0e0e0;
}

.md-card--featured {
  border-top: 4px solid #f5c400;
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(245, 196, 0, 0.25);
}

.md-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.md-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 4px solid #e5e5e5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.md-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.md-avatar--featured {
  background: #fffbec;
  border-color: #f5c400;
}

.md-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
}

.md-role {
  display: inline-block;
  background: #f5c400;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.md-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.md-socials {
  margin-top: 14px;
}

.md-socials a {
  color: #888;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
}

.md-socials a:hover {
  color: #f5c400;
}

/* ---- WHY CHOOSE US ---- */
.about-why-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.about-why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a2e 0%, #1a1a5e 50%, #0a0a2e 100%);
  z-index: 0;
}

.about-why-section .container-fluid {
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(245, 196, 0, 0.12);
  border-color: #f5c400;
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(245, 196, 0, 0.15);
  border: 2px solid #f5c400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: #f5c400;
}

.why-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.why-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
}

/* ---- CERTIFICATIONS SECTION ---- */
.about-certs-section {
  padding: 80px 0;
  background: #fff;
}

/* ---- AWARDS SECTION ---- */
.about-awards-section {
  padding: 80px 0;
  background: #f9f9f9;
}



/* ---- THICK DIVIDER (under cert/award titles) ---- */
.cert-divider-thick {
  width: 140px;
  height: 6px;
  background: #ff8c00;
  margin-top: 14px;
  margin-bottom: 50px;
  border-radius: 3px;
}

.cert-card-new {
  background: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 12px;
  padding: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cert-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cert-card-new img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

/* LEGACY CERT STYLES */
.cert-badge-card {
  text-align: center;
  padding: 18px 10px;
  border: 2px solid #f0f0f0;
  border-radius: 14px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.cert-badge-card:hover {
  transform: translateY(-6px);
  border-color: #f5c400;
  box-shadow: 0 12px 28px rgba(245, 196, 0, 0.2);
}

.cert-badge-card img {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
  margin-bottom: 10px;
}

.cert-badge-card span {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- OUR TEAM ---- */
.about-team-section {
  padding: 80px 0;
  background: #fff;
}

.about-team-para {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 0;
}

.about-team-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 4px solid #f5c400;
}

.about-team-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ---- AWARDS (NEW STYLE MATCHING SCREENSHOT) ---- */
.award-card-large {
  position: relative;
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  height: 100%;
}

.award-card-large:hover {
  transform: translateY(-8px);
}

.award-card-large img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.award-title {
  position: absolute;
  bottom: 0;
  left: 10;
  right: 0;
  width: 100%;
  display: block;
  text-align: right !important;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  padding: 12px 10px;
  margin: 2px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.85);
}

/* LEGACY AWARD STYLES */
.award-card {
  text-align: center;
  padding: 16px 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.award-card img {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  margin-bottom: 10px;
}

.award-card span {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- CAROUSEL ARROWS FOR ABOUT CERT CAROUSEL ---- */
#aboutCertCarousel .carousel-control-prev,
#aboutCertCarousel .carousel-control-next {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

#aboutCertCarousel .carousel-control-prev-icon,
#aboutCertCarousel .carousel-control-next-icon {
  filter: invert(1);
  width: 18px;
  height: 18px;
}

#aboutCertCarousel .carousel-control-prev {
  left: 10px;
}

#aboutCertCarousel .carousel-control-next {
  right: 10px;
}

#aboutCertCarousel .carousel-control-prev:hover,
#aboutCertCarousel .carousel-control-next:hover {
  background: #f5c400;
}

/* ---- ENQUIRE NOW ---- */
.about-enquire-section {
  padding: 60px 0;
  background: #fff;
}

.about-enquire-box {
  background: linear-gradient(135deg, #f5c400 0%, #ff8c00 100%);
  border-radius: 20px;
  padding: 48px 44px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(245, 140, 0, 0.3);
}

.about-enquire-box h3 {
  font-size: 26px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.about-enquire-box p {
  font-size: 15px;
  opacity: 0.9;
  margin: 0;
}

.enquire-whatsapp-btn {
  display: inline-block;
  padding: 13px 26px;
  background: #25d366;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.enquire-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.enquire-contact-btn {
  display: inline-block;
  padding: 13px 26px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: background 0.2s;
}

.enquire-contact-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .about-hero-section .carousel-item {
    height: 220px;
  }

  .about-hero-content h1 {
    font-size: 30px;
  }

  .about-section-title {
    font-size: 24px;
  }

  .about-stats-row {
    flex-direction: column;
    gap: 12px;
  }

  .about-img-sub-group {
    flex-direction: column;
  }

  .about-img-sub-group img {
    width: 100%;
  }

  .md-card--featured {
    transform: none;
  }

  .about-enquire-box {
    padding: 30px 20px;
  }

  .about-enquire-box h3 {
    font-size: 20px;
  }
}


/* =====================================================
   GALLERY PAGE STYLES
   ===================================================== */

/* ---- HERO ---- */
/* ---- GALLERY HERO SLIDER (Same as Home/About/Contact) ---- */
.gallery-hero-section {
  position: relative;
}

.gallery-hero-section .carousel-item {
  height: 520px;
}

.gallery-hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.gallery-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  width: 100%;
  text-align: center;
}

.gallery-hero-content h1 {
  font-size: 46px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}


.gallery-hero-content .breadcrumb {
  background: transparent;
  margin: 0;
}

.gallery-hero-content .breadcrumb-item a {
  color: #f5c400;
  text-decoration: none;
  font-weight: 600;
}

.gallery-hero-content .breadcrumb-item.active,
.gallery-hero-content .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
  font-weight: 600;
}

/* ---- GALLERY SECTION ---- */
.gallery-section {
  padding: 80px 0 100px;
  background: #fff;
}

.gallery-main-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.gallery-divider {
  width: 140px;
  height: 6px;
  background: #ff8c00;
  border-radius: 3px;
  margin-bottom: 30px;
}

/* ---- GALLERY CARD ---- */
.gallery-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  border-bottom: 4px solid #f5c400;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

/* ---- IMAGE WRAPPER ---- */
.gallery-img-wrapper {
  overflow: hidden;
  flex: 1;
  aspect-ratio: 4 / 3;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.05);
}

/* ---- CAPTION ---- */
.gallery-caption {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 14px 12px;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
  background: #fff;
  border-top: 2px solid #f5c400;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .gallery-hero-section .carousel-item {
    height: 220px;
  }

  .gallery-hero-content h1 {
    font-size: 30px;
  }

  .gallery-main-title {
    font-size: 24px;
  }

  .gallery-img-wrapper img {
    min-height: auto;
  }
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

/* ---- HERO ---- */
/* ---- CONTACT HERO SLIDER (Same as Home/About) ---- */
.contact-hero-section {
  position: relative;
}

.contact-hero-section .carousel-item {
  height: 520px;
}

.contact-hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.contact-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  width: 100%;
}

.contact-hero-content h1 {
  font-size: 46px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}


.contact-hero-content .breadcrumb {
  background: transparent;
  margin: 0;
}

.contact-hero-content .breadcrumb-item a {
  color: #f5c400;
  text-decoration: none;
  font-weight: 600;
}

.contact-hero-content .breadcrumb-item.active,
.contact-hero-content .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
  font-weight: 600;
}

/* ---- CONTACT FORM SECTION ---- */
.contact-form-section {
  background: #fdfdfd;
}

.contact-main-wrapper {
  border: 1px solid #eee;
}

.form-title {
  color: #ffa843;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
}

.contact-form .form-control {
  border: 1.5px solid #d1d9e6;
  font-size: 15px;
  color: #333;
  box-shadow: none;
}

.contact-form .form-control:focus {
  border-color: #ffa843;
}

.contact-form .input-group-text {
  border: 1.5px solid #d1d9e6 !important;
  font-weight: 600;
  color: #444;
}

.rounded-pill-start {
  border-top-left-radius: 50rem !important;
  border-bottom-left-radius: 50rem !important;
}

.rounded-pill-end {
  border-top-right-radius: 50rem !important;
  border-bottom-right-radius: 50rem !important;
}

.btn-enquire {
  background: #ffa843;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 168, 67, 0.3);
  transition: all 0.3s ease;
}

.btn-enquire:hover {
  background: #e6963c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 168, 67, 0.4);
}

/* ---- INFO COLUMN WITH MAP ---- */
.contact-info-column {
  background: #f4f7f9 url("https://skyplanetholidays.com/old/wp-content/uploads/2024/05/map-bg.png") center center / contain no-repeat !important;
  position: relative;
  min-height: 600px;
}

.stay-connected-title {
  color: #ffa843;
  font-size: 42px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  text-transform: none;
}

.info-icon-box {
  width: 80px;
  height: 80px;
  background: #ffa843;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  box-shadow: 0 10px 25px rgba(255, 168, 67, 0.2);
}

.info-text {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  font-family: 'Montserrat', sans-serif;
}

/* ---- BRANCH SECTION STYLES ---- */
.branch-section {
  position: relative;
  z-index: 1;
}

.branch-row {
  transition: transform 0.3s ease;
  min-height: 400px;
  background: #fff;
}

.branch-row:hover {
  transform: translateY(-8px);
}

.branch-name {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1px;
}

.icon-square-outlined {
  width: 60px;
  height: 60px;
  border: 2.5px solid #ffa843;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffa843;
  font-size: 28px;
  flex-shrink: 0;
}

.info-val {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .contact-info-column {
    min-height: 450px;
  }

  .stay-connected-title {
    font-size: 32px;
  }

  .branch-name {
    font-size: 36px !important;
  }
}

@media (max-width: 768px) {
  .contact-hero-section .carousel-item {
    height: 220px;
  }

  .contact-hero-content h1 {
    font-size: 30px;
  }

  .branch-name {
    font-size: 28px !important;
  }

  .info-val {
    font-size: 18px !important;
  }

  .icon-square-outlined {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

.branch-map-card {
  transition: transform 0.3s ease;
}

.branch-map-card:hover {
  transform: translateY(-5px);
}

.map-wrapper {
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .contact-info-column {
    min-height: 450px;
  }

  .stay-connected-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .contact-hero-section .carousel-item {
    height: 220px;
  }

  .contact-hero-content h1 {
    font-size: 30px;
  }
}

/* =====================================================
   FLOATING WHATSAPP BUTTON (GLOBAL)
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 65px;
  height: 65px;
  background-color: #25d366;
  /* Official WhatsApp Green */
  color: #fff !important;
  border-radius: 50%;
  /* Reverted to Circular */
  text-align: center;
  font-size: 38px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #1ebea5;
  color: #fff !important;
  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 whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    font-size: 32px;
  }

  .whatsapp-badge {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}

/* ---- NEWSLETTER SECTION ---- */
.newsletter-strip {
  background-color: #fcf6e8;
  border-top: 1px solid #f2e9d5;
  border-bottom: 1px solid #f2e9d5;
  min-height: 180px;
  display: flex;
  align-items: center;
}

.btn-join-now {
  background: linear-gradient(90deg, #ff8c00 0%, #ff4b5c 100%);
  color: #fff;
  border: none;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(255, 75, 92, 0.3);
  transition: all 0.3s ease;
}

.btn-join-now:hover {
  background: linear-gradient(90deg, #e67e00 0%, #e64453 100%);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 75, 92, 0.4);
}

.newsletter-icon svg {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .newsletter-strip .row {
    text-align: center;
    justify-content: center !important;
  }

  .newsletter-strip .col-auto {
    width: 100%;
    justify-content: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .newsletter-icon {
    margin-bottom: 15px;
    margin-right: 0 !important;
  }
}

.contact-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-link:hover {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

.contact-info-card {
  transition: transform 0.3s ease;
}

.branch-map-card {
  transition: transform 0.3s ease;
}

.branch-map-card:hover {
  transform: translateY(-5px);
}

.map-wrapper {
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .contact-hero-section .carousel-item {
    height: 220px;
  }

  .contact-hero-content h1 {
    font-size: 30px;
  }
}

/* ---- DUAL CTA SECTION (Sky Planet Style) ---- */
.dual-cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.btn-whatsapp-cta {
  background: #25d366;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp-cta:hover {
  background: #1ebea5;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .dual-cta-section {
    padding: 50px 0;
  }
}