/*
Theme Name: marsabluedive
Theme URI: https://marsabluedive.com
Author: Powered By egy4server
Author URI: https://wordpress.org/
Description: marsabluedive Company is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
*/

/* ——— Marsa Blue Dive — ocean palette & home ——— */
:root {
  --mbd-deep-blue: #003366;
  --mbd-cyan: #00ced1;
  --mbd-cyan-dark: #00a8ad;
  --mbd-light-blue: #add8e6;
  --mbd-orange: #ff8c00;
  --mbd-white: #ffffff;
  --mbd-bg-soft: #e8f6fb;
}

body {
  font-family: 'Montserrat', 'Readex Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--mbd-deep-blue);
  background: var(--mbd-bg-soft);
}

.mbd-home {
  overflow-x: hidden;
}

/* Hero — abs layers; inner fills height and centers title + buttons */
.mbd-hero {
  --mbd-hero-min: clamp(28rem, 78vh, 56rem);
  position: relative;
  isolation: isolate;
  min-height: var(--mbd-hero-min);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  padding: 2rem 1rem;
  overflow: hidden;
}
.mbd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--mbd-deep-blue);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.mbd-hero__bg--fallback {
  background-image: none;
  background: linear-gradient(145deg, var(--mbd-deep-blue) 0%, #004d7a 45%, var(--mbd-cyan-dark) 100%);
}
.mbd-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 51, 102, 0.45) 0%, rgba(0, 80, 120, 0.55) 50%, rgba(0, 40, 70, 0.65) 100%);
}
.mbd-hero__inner {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: max(0px, calc(var(--mbd-hero-min) - 4rem));
  text-align: center;
}
.mbd-hero__title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 700;
  color: #b8f4ff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  margin: 0 0 0.5rem;
  line-height: 1.15;
  text-align: center;
  width: 100%;
}
.mbd-hero__subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.75rem;
  letter-spacing: 0.02em;
  text-align: center;
  width: 100%;
  max-width: 36rem;
}
.mbd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.mbd-btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.mbd-btn--primary {
  background: linear-gradient(135deg, var(--mbd-cyan), var(--mbd-cyan-dark));
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 168, 173, 0.35);
}
.mbd-btn--primary:hover {
  color: #fff !important;
  filter: brightness(1.06);
  transform: translateY(-2px);
}
.mbd-btn--outline {
  background: rgba(255, 255, 255, 0.92);
  color: var(--mbd-deep-blue) !important;
  border-color: rgba(255, 255, 255, 0.95);
}
.mbd-btn--outline:hover {
  background: #fff;
  color: var(--mbd-deep-blue) !important;
  transform: translateY(-2px);
}
.mbd-btn--orange {
  background: linear-gradient(135deg, #ff8c00, #ff9f1a) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
}
.mbd-btn--orange:hover {
  color: #fff !important;
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.mbd-btn--arrow::after {
  content: " ›";
  font-weight: 700;
}

/* Services / glass cards */
.mbd-services {
  margin-top: -3rem;
  position: relative;
  z-index: 3;
  padding-bottom: 3rem;
}
.mbd-glass-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1px solid rgba(173, 216, 230, 0.85);
  padding: 1.75rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 40px rgba(0, 51, 102, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mbd-glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 51, 102, 0.14);
}
.mbd-glass-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 206, 209, 0.25), rgba(0, 51, 102, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--mbd-cyan-dark);
}
.mbd-glass-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mbd-deep-blue);
  margin: 0 0 0.5rem;
}
.mbd-glass-card__text {
  font-size: 0.95rem;
  color: rgba(0, 51, 102, 0.78);
  margin: 0;
  line-height: 1.55;
}

/* Welcome */
.mbd-welcome {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, var(--mbd-bg-soft) 0%, #fff 100%);
}
.mbd-welcome__photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 51, 102, 0.15);
  border: 3px solid rgba(0, 206, 209, 0.35);
}
.mbd-welcome__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.mbd-welcome__photo:empty,
.mbd-about__photo:empty {
  min-height: 260px;
  border-radius: 20px;
  background: rgba(0, 51, 102, 0.08);
  border: 2px dashed rgba(0, 206, 209, 0.35);
}
.mbd-welcome__heading {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--mbd-deep-blue);
  margin: 0 0 0.35rem;
}
.mbd-welcome__lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mbd-cyan-dark);
  margin: 0 0 1rem;
}
.mbd-welcome__text {
  color: rgba(0, 51, 102, 0.82);
  line-height: 1.75;
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

/* About Us (home) */
.mbd-about {
  padding: 4rem 0;
  background: linear-gradient(165deg, #fff 0%, var(--mbd-bg-soft) 40%, rgba(173, 216, 230, 0.35) 100%);
  position: relative;
}
.mbd-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--mbd-cyan), var(--mbd-deep-blue), var(--mbd-cyan), transparent);
  opacity: 0.85;
}
.mbd-about__heading {
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 800;
  color: var(--mbd-deep-blue);
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--mbd-cyan);
  display: inline-block;
}
.mbd-about__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(0, 51, 102, 0.88);
  margin: 0 0 1.25rem;
}
.mbd-about__mission {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(0, 51, 102, 0.78);
  margin: 0 0 1.5rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  border-left: 4px solid var(--mbd-cyan-dark);
  box-shadow: 0 8px 28px rgba(0, 51, 102, 0.08);
}
.mbd-about__photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 51, 102, 0.18);
  border: 3px solid rgba(0, 206, 209, 0.4);
}
.mbd-about__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 991px) {
  .mbd-about {
    padding: 3rem 0;
  }
  .mbd-about .order-lg-1 {
    order: 2;
  }
  .mbd-about .order-lg-2 {
    order: 1;
  }
}

/* Our Missions — creative card grid */
.mbd-aims {
  position: relative;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(0, 206, 209, 0.22), transparent 55%),
    linear-gradient(165deg, #f0fbfd 0%, #e3f6fa 35%, #d8f0f7 70%, #cfeaf5 100%);
  border-top: 1px solid rgba(0, 206, 209, 0.25);
  border-bottom: 1px solid rgba(0, 51, 102, 0.06);
}
.mbd-aims__wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(48px, 8vw, 72px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' fill-opacity='0.55' d='M0,24 C240,48 480,0 720,24 C960,48 1200,0 1440,24 L1440,0 L0,0 Z'/%3E%3C/svg%3E")
    center top / 100% 100% no-repeat;
  pointer-events: none;
}
.mbd-aims__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.45;
  pointer-events: none;
}
.mbd-aims__glow--1 {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: -8%;
  right: -12%;
  background: var(--mbd-cyan);
}
.mbd-aims__glow--2 {
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  bottom: 5%;
  left: -10%;
  background: var(--mbd-light-blue);
}
.mbd-aims__header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.mbd-aims__eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mbd-cyan-dark);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 206, 209, 0.35);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.06);
}
.mbd-aims__heading {
  font-size: clamp(1.55rem, 3.8vw, 2.15rem);
  font-weight: 800;
  color: var(--mbd-deep-blue);
  margin: 0 0 1rem;
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
.mbd-aims__heading::after {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  margin: 0.85rem auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--mbd-cyan), var(--mbd-deep-blue), var(--mbd-cyan), transparent);
  opacity: 0.95;
}
.mbd-aims__intro {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(0, 51, 102, 0.86);
}
.mbd-aims__cards {
  position: relative;
  z-index: 1;
}
.mbd-mission-card {
  position: relative;
  height: 100%;
  padding: 1.65rem 1.35rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 4px 24px rgba(0, 51, 102, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.mbd-mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--mbd-cyan), rgba(0, 51, 102, 0.35), var(--mbd-cyan-dark));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mbd-mission-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow:
    0 22px 48px rgba(0, 51, 102, 0.12),
    0 0 0 1px rgba(0, 206, 209, 0.25);
}
.mbd-mission-card:hover::before {
  opacity: 0.75;
}
.mbd-mission-card__index {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 206, 209, 0.22);
  font-variant-numeric: tabular-nums;
  user-select: none;
}
.mbd-mission-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(140deg, var(--mbd-cyan) 0%, var(--mbd-deep-blue) 100%);
  box-shadow: 0 10px 28px rgba(0, 168, 173, 0.35);
}
.mbd-mission-card__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(0, 51, 102, 0.88);
}
.mbd-aims .col-md-6:nth-child(2) .mbd-mission-card:hover {
  transform: translateY(-8px) rotate(0.5deg);
}
.mbd-aims .col-md-6:nth-child(3) .mbd-mission-card:hover {
  transform: translateY(-8px) rotate(-0.35deg);
}
.mbd-aims .col-md-6:nth-child(4) .mbd-mission-card:hover {
  transform: translateY(-8px) rotate(0.35deg);
}
@media (max-width: 991px) {
  .mbd-aims .col-md-6:nth-child(2) .mbd-mission-card:hover,
  .mbd-aims .col-md-6:nth-child(3) .mbd-mission-card:hover,
  .mbd-aims .col-md-6:nth-child(4) .mbd-mission-card:hover {
    transform: translateY(-6px);
  }
}
@media (max-width: 576px) {
  .mbd-aims {
    padding: 3rem 0 3.25rem;
  }
  .mbd-aims__header {
    margin-bottom: 1.75rem;
  }
  .mbd-mission-card {
    padding: 1.35rem 1.15rem 1.25rem;
  }
  .mbd-mission-card__text {
    font-size: 0.95rem;
  }
}

/* Diving services (scuba) — deep-ocean panel */
.mbd-diving-services {
  position: relative;
  padding: 3.75rem 0 4.25rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 120%, rgba(0, 206, 209, 0.18), transparent 55%),
    linear-gradient(165deg, #012a4a 0%, var(--mbd-deep-blue) 38%, #022f50 100%);
  color: rgba(255, 255, 255, 0.92);
}
.mbd-diving-services__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.mbd-diving-services__bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.06) 45%, transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.55;
  animation: mbd-bubble-float 12s ease-in-out infinite;
}
.mbd-diving-services__bubble--1 {
  width: 18px;
  height: 18px;
  left: 8%;
  top: 22%;
  animation-delay: 0s;
}
.mbd-diving-services__bubble--2 {
  width: 28px;
  height: 28px;
  right: 12%;
  top: 38%;
  animation-delay: -3s;
}
.mbd-diving-services__bubble--3 {
  width: 14px;
  height: 14px;
  left: 18%;
  bottom: 18%;
  animation-delay: -6s;
}
.mbd-diving-services__bubble--4 {
  width: 22px;
  height: 22px;
  right: 22%;
  bottom: 28%;
  animation-delay: -9s;
}
@keyframes mbd-bubble-float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(10px, -14px);
  }
  66% {
    transform: translate(-6px, 8px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mbd-diving-services__bubble {
    animation: none;
  }
}
.mbd-diving-services__shell {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.25rem;
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(0, 206, 209, 0.35);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.12) inset,
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mbd-diving-services__header {
  text-align: center;
  margin-bottom: 1.85rem;
}
.mbd-diving-services__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--mbd-deep-blue);
  background: linear-gradient(145deg, var(--mbd-cyan), #7ee8ea);
  box-shadow: 0 10px 32px rgba(0, 206, 209, 0.35);
}
.mbd-diving-services__title {
  margin: 0;
  font-size: clamp(1.45rem, 3.5vw, 1.95rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.mbd-diving-services__subtitle {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 600;
  color: rgba(184, 244, 255, 0.95);
  letter-spacing: 0.02em;
}
.mbd-diving-services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mbd-diving-services__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.mbd-diving-services__item:hover {
  transform: translateX(6px);
  background: rgba(0, 206, 209, 0.12);
  border-color: rgba(0, 206, 209, 0.35);
}
.mbd-diving-services__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1rem;
  color: #0a3d5c;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(184, 244, 255, 0.88));
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.mbd-diving-services__text {
  flex: 1;
  padding-top: 0.2rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 576px) {
  .mbd-diving-services {
    padding: 3rem 0 3.5rem;
  }
  .mbd-diving-services__shell {
    padding: 1.5rem 1.1rem 1.65rem;
    border-radius: 18px;
  }
  .mbd-diving-services__item {
    padding: 0.75rem 0.85rem;
    gap: 0.85rem;
  }
  .mbd-diving-services__text {
    font-size: 0.94rem;
  }
}

/* Snorkeling services — bright reef / surface */
.mbd-snorkel-services {
  position: relative;
  padding: 3.75rem 0 4.25rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255, 200, 120, 0.35), transparent 60%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(0, 206, 209, 0.2), transparent 55%),
    linear-gradient(180deg, #fffdf8 0%, #e8f8fc 42%, #dff4f8 100%);
}
.mbd-snorkel-services__sun {
  position: absolute;
  top: -40px;
  right: 8%;
  width: clamp(72px, 12vw, 110px);
  height: clamp(72px, 12vw, 110px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff9e6, rgba(255, 214, 120, 0.95) 45%, rgba(255, 180, 80, 0.5) 100%);
  box-shadow: 0 0 60px rgba(255, 200, 100, 0.45);
  pointer-events: none;
  opacity: 0.9;
}
.mbd-snorkel-services__ripples {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(120px, 18vw);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  opacity: 0.35;
}
.mbd-snorkel-services__ripples span {
  display: block;
  height: 12px;
  margin-bottom: 6px;
  border-radius: 50%;
  border: 2px solid rgba(0, 206, 209, 0.45);
  border-bottom: none;
  transform: scaleX(2.2);
}
.mbd-snorkel-services__ripples span:nth-child(2) {
  opacity: 0.7;
  transform: scaleX(2.8);
}
.mbd-snorkel-services__ripples span:nth-child(3) {
  opacity: 0.45;
  transform: scaleX(3.4);
}
.mbd-snorkel-services__board {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem 2.25rem;
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 20px 50px rgba(0, 51, 102, 0.1),
    0 0 0 1px rgba(0, 206, 209, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.mbd-snorkel-services__board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--mbd-cyan), var(--mbd-orange), var(--mbd-cyan));
  opacity: 0.85;
}
.mbd-snorkel-services__header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.mbd-snorkel-services__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 0.75rem;
  border-radius: 18px;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(145deg, var(--mbd-orange), #ffb347);
  box-shadow: 0 10px 28px rgba(255, 140, 0, 0.35);
  transform: rotate(-4deg);
}
.mbd-snorkel-services__title {
  margin: 0;
  font-size: clamp(1.45rem, 3.5vw, 1.95rem);
  font-weight: 800;
  color: var(--mbd-deep-blue);
  line-height: 1.2;
}
.mbd-snorkel-services__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 0.75rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--mbd-cyan), var(--mbd-orange));
}
.mbd-snorkel-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  gap: 1rem;
}
.mbd-snorkel-services__card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin: 0;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(232, 248, 252, 0.95), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(0, 206, 209, 0.22);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.mbd-snorkel-services__card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255, 140, 0, 0.45);
  box-shadow: 0 14px 36px rgba(0, 51, 102, 0.1);
}
.mbd-snorkel-services__card:nth-child(odd) {
  transform: rotate(-0.35deg);
}
.mbd-snorkel-services__card:nth-child(even) {
  transform: rotate(0.35deg);
}
.mbd-snorkel-services__card:nth-child(odd):hover,
.mbd-snorkel-services__card:nth-child(even):hover {
  transform: translateY(-4px) scale(1.01) rotate(0deg);
}
.mbd-snorkel-services__icon {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(145deg, var(--mbd-cyan), var(--mbd-cyan-dark));
  box-shadow: 0 4px 14px rgba(0, 168, 173, 0.35);
}
.mbd-snorkel-services__text {
  margin: 0;
  flex: 1;
  padding-top: 0.15rem;
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(0, 51, 102, 0.88);
}
@media (max-width: 576px) {
  .mbd-snorkel-services {
    padding: 3rem 0 3.5rem;
  }
  .mbd-snorkel-services__board {
    padding: 1.5rem 1.1rem 1.65rem;
    border-radius: 22px;
  }
  .mbd-snorkel-services__grid {
    grid-template-columns: 1fr;
  }
  .mbd-snorkel-services__card {
    padding: 0.9rem 0.95rem;
  }
  .mbd-snorkel-services__text {
    font-size: 0.92rem;
  }
}

/* Liveaboard safaris — night sea / voyage */
.mbd-liveaboard {
  position: relative;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(0, 206, 209, 0.15), transparent 50%),
    linear-gradient(180deg, #0a1628 0%, #132238 42%, #1a3350 100%);
  color: rgba(255, 255, 255, 0.92);
}
.mbd-liveaboard__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 22% 55%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 78% 18%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1px 1px at 65% 40%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 88% 62%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1px 1px at 35% 12%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 50% 8%, rgba(255, 255, 255, 0.4), transparent);
  background-size: 100% 100%;
}
.mbd-liveaboard__horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 40, 70, 0.35) 100%);
  border-top: 1px solid rgba(0, 206, 209, 0.2);
}
.mbd-liveaboard .container {
  position: relative;
  z-index: 1;
}
.mbd-liveaboard__header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.mbd-liveaboard__ship {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  font-size: 1.35rem;
  color: #0a1f33;
  background: linear-gradient(160deg, #e8c87a, #c9a227);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.25),
    0 12px 32px rgba(0, 0, 0, 0.35);
  animation: mbd-liveaboard-rock 8s ease-in-out infinite;
}
@keyframes mbd-liveaboard-rock {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(2deg) translateY(-3px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mbd-liveaboard__ship {
    animation: none;
  }
}
.mbd-liveaboard__title {
  margin: 0;
  font-size: clamp(1.5rem, 3.6vw, 2.05rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.mbd-liveaboard__title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  margin: 0.85rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--mbd-cyan), #e8c87a, var(--mbd-cyan), transparent);
}
.mbd-liveaboard__lead {
  max-width: 36rem;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(184, 244, 255, 0.92);
}
.mbd-liveaboard__ports {
  margin-bottom: 2rem;
}
.mbd-liveaboard__port {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(232, 200, 122, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.mbd-liveaboard__port:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 206, 209, 0.5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
.mbd-liveaboard__port-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.1rem;
  color: #e8c87a;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(232, 200, 122, 0.4);
}
.mbd-liveaboard__port-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.mbd-liveaboard__itinerary-wrap {
  padding: 1.75rem 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(0, 206, 209, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.mbd-liveaboard__itinerary-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0 0 1.25rem;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  font-weight: 700;
  color: #b8f4ff;
  text-align: center;
}
.mbd-liveaboard__itinerary-title i {
  color: var(--mbd-cyan);
}
.mbd-liveaboard__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  justify-content: center;
}
.mbd-liveaboard__chip {
  margin: 0;
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(145deg, rgba(0, 206, 209, 0.22), rgba(0, 51, 102, 0.35));
  border: 1px solid rgba(0, 206, 209, 0.35);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.mbd-liveaboard__chip:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(0, 206, 209, 0.32), rgba(0, 51, 102, 0.45));
  border-color: rgba(232, 200, 122, 0.45);
}
.mbd-liveaboard__cta {
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.15rem 1.35rem;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(135deg, rgba(232, 200, 122, 0.2), rgba(0, 206, 209, 0.15));
  border: 1px solid rgba(232, 200, 122, 0.4);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.mbd-liveaboard__cta-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}
@media (max-width: 576px) {
  .mbd-liveaboard {
    padding: 3.25rem 0 3.75rem;
  }
  .mbd-liveaboard__port {
    padding: 1rem 1.05rem;
  }
  .mbd-liveaboard__chip {
    font-size: 0.82rem;
    padding: 0.4rem 0.75rem;
  }
  .mbd-liveaboard__cta-text {
    font-size: 0.94rem;
  }
}

/* Locations — coastal map panels */
.mbd-locations {
  position: relative;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(0, 206, 209, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 85% 30%, rgba(255, 140, 0, 0.08), transparent 50%),
    linear-gradient(175deg, #f5fcfd 0%, #e8f6fb 40%, #dff2f8 100%);
}
.mbd-locations__map-deco {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 55%;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cpath fill='none' stroke='%23003366' stroke-width='0.8' d='M20,100 Q100,40 180,90 T340,70'/%3E%3Cpath fill='none' stroke='%2300ced1' stroke-width='0.6' d='M40,120 Q120,160 200,100 T360,130'/%3E%3C/svg%3E");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
}
.mbd-locations .container {
  position: relative;
  z-index: 1;
}
.mbd-locations__header {
  text-align: center;
  margin-bottom: 2.25rem;
}
.mbd-locations__title {
  margin: 0;
  font-size: clamp(1.55rem, 3.8vw, 2.1rem);
  font-weight: 800;
  color: var(--mbd-deep-blue);
  line-height: 1.2;
}
.mbd-locations__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 0.75rem auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--mbd-cyan), var(--mbd-deep-blue));
}
.mbd-locations__ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0;
}
.mbd-locations__ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mbd-deep-blue);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 206, 209, 0.4);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 51, 102, 0.08);
}
.mbd-locations__ribbon-item i {
  color: var(--mbd-cyan-dark);
  font-size: 0.85rem;
}
.mbd-locations__ribbon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mbd-cyan);
  opacity: 0.7;
}
.mbd-locations__lead {
  max-width: 40rem;
  margin: 1.15rem auto 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(0, 51, 102, 0.86);
}
.mbd-locations__panels {
  margin-bottom: 1.75rem;
}
.mbd-locations__panel {
  height: 100%;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 40px rgba(0, 51, 102, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mbd-locations__panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 51, 102, 0.14);
}
.mbd-locations__panel--marsa {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(220, 248, 252, 0.88) 100%);
  border-top: 4px solid var(--mbd-cyan);
}
.mbd-locations__panel--qusseir {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 235, 0.9) 100%);
  border-top: 4px solid #e8b86d;
}
.mbd-locations__panel-title {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 800;
  color: var(--mbd-deep-blue);
  line-height: 1.35;
}
.mbd-locations__panel-title i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--mbd-cyan-dark);
}
.mbd-locations__panel--qusseir .mbd-locations__panel-title i {
  color: #c98a2c;
}
.mbd-locations__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mbd-locations__list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(0, 51, 102, 0.88);
  border-bottom: 1px solid rgba(0, 206, 209, 0.12);
}
.mbd-locations__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.mbd-locations__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mbd-cyan), var(--mbd-deep-blue));
  box-shadow: 0 2px 6px rgba(0, 168, 173, 0.3);
}
.mbd-locations__panel--qusseir .mbd-locations__list li::before {
  background: linear-gradient(135deg, #e8b86d, #b8732a);
}
.mbd-locations__protected {
  margin-bottom: 2rem;
  padding: 1.65rem 1.4rem 1.4rem;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(0, 80, 70, 0.06) 0%, rgba(0, 206, 209, 0.1) 50%, rgba(0, 51, 102, 0.06) 100%);
  border: 1px solid rgba(0, 120, 100, 0.25);
  box-shadow: 0 12px 36px rgba(0, 51, 102, 0.08);
}
.mbd-locations__protected-title {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2.2vw, 1.14rem);
  font-weight: 800;
  color: #0d4a42;
  line-height: 1.35;
}
.mbd-locations__protected-title i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #1a8f7a;
}
.mbd-locations__list--protected li {
  border-bottom-color: rgba(0, 100, 85, 0.12);
  color: rgba(0, 51, 102, 0.9);
}
.mbd-locations__list--protected li::before {
  background: linear-gradient(135deg, #1a8f7a, #0d4a42);
}
.mbd-locations__note {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 1.1rem 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(0, 51, 102, 0.82);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  border-left: 4px solid var(--mbd-cyan-dark);
}
.mbd-locations__note i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--mbd-cyan-dark);
}
.mbd-locations__hurghada {
  padding: 1.75rem 1.4rem 1.65rem;
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 236, 220, 0.55) 100%);
  border: 1px solid rgba(255, 140, 0, 0.28);
  box-shadow: 0 14px 42px rgba(0, 51, 102, 0.09);
}
.mbd-locations__hurghada-head {
  text-align: center;
  margin-bottom: 1.25rem;
}
.mbd-locations__hurghada-title {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 800;
  color: var(--mbd-deep-blue);
}
.mbd-locations__hurghada-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 0.6rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mbd-orange), #ffb347);
}
.mbd-locations__hurghada-lead {
  max-width: 38rem;
  margin: 0.85rem auto 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0, 51, 102, 0.85);
}
.mbd-locations__hurghada-sub {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 51, 102, 0.7);
}
.mbd-locations__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mbd-locations__tag {
  margin: 0;
  padding: 0.5rem 0.85rem;
  font-size: 0.86rem;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(0, 51, 102, 0.9);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 140, 0, 0.35);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.mbd-locations__tag:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 140, 0, 0.6);
}
@media (max-width: 576px) {
  .mbd-locations {
    padding: 3.25rem 0 3.75rem;
  }
  .mbd-locations__ribbon {
    flex-direction: column;
  }
  .mbd-locations__ribbon-dot {
    display: none;
  }
  .mbd-locations__panel {
    padding: 1.25rem 1.1rem;
  }
  .mbd-locations__list li {
    font-size: 0.92rem;
    padding-left: 1.2rem;
  }
  .mbd-locations__tag {
    font-size: 0.82rem;
  }
}

/* Contact information — inbox / channel cards */
.mbd-contact-info {
  position: relative;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
  background: linear-gradient(155deg, #071a2e 0%, #0d2844 45%, #0a1f35 100%);
  color: rgba(255, 255, 255, 0.92);
}
.mbd-contact-info__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(0, 206, 209, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 206, 209, 0.25) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 20%, transparent 75%);
}
.mbd-contact-info__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  pointer-events: none;
  opacity: 0.35;
}
.mbd-contact-info__orb--1 {
  width: min(380px, 70vw);
  height: min(380px, 70vw);
  top: -15%;
  right: -8%;
  background: var(--mbd-cyan);
}
.mbd-contact-info__orb--2 {
  width: min(280px, 50vw);
  height: min(280px, 50vw);
  bottom: -5%;
  left: -10%;
  background: #4a90d9;
}
.mbd-contact-info .container {
  position: relative;
  z-index: 1;
}
.mbd-contact-info__header {
  text-align: center;
  margin-bottom: 2.25rem;
}
.mbd-contact-info__stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.85rem;
  border-radius: 20px;
  font-size: 1.35rem;
  color: #0a1f33;
  background: linear-gradient(145deg, #b8f4ff, var(--mbd-cyan));
  box-shadow: 0 12px 36px rgba(0, 206, 209, 0.35);
  transform: rotate(-6deg);
}
.mbd-contact-info__title {
  margin: 0;
  font-size: clamp(1.5rem, 3.6vw, 2.05rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.mbd-contact-info__title::after {
  content: "";
  display: block;
  width: 96px;
  height: 3px;
  margin: 0.85rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--mbd-cyan), #7ee8ea, transparent);
}
.mbd-contact-info__subtitle {
  max-width: 32rem;
  margin: 1rem auto 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(184, 244, 255, 0.88);
}
.mbd-contact-card {
  position: relative;
  height: 100%;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.mbd-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 18px 0 0 18px;
  background: var(--mbd-contact-accent, var(--mbd-cyan));
  opacity: 0.95;
}
.mbd-contact-card--a {
  --mbd-contact-accent: #00ced1;
}
.mbd-contact-card--b {
  --mbd-contact-accent: #5eb3ff;
}
.mbd-contact-card--c {
  --mbd-contact-accent: #7ee8a8;
}
.mbd-contact-card--d {
  --mbd-contact-accent: #e8c87a;
}
.mbd-contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 206, 209, 0.4);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}
.mbd-contact-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.1rem;
  color: #0a1f33;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(184, 244, 255, 0.85));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.mbd-contact-card--b .mbd-contact-card__icon {
  background: linear-gradient(145deg, #e3f2ff, #a8d4ff);
}
.mbd-contact-card--c .mbd-contact-card__icon {
  background: linear-gradient(145deg, #e8fff0, #b8f0d0);
}
.mbd-contact-card--d .mbd-contact-card__icon {
  background: linear-gradient(145deg, #fff8e8, #f0d9a8);
}
.mbd-contact-card__title {
  margin: 0 0 1rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.96);
}
.mbd-contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem 0.55rem 0.65rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  color: #0a1f33 !important;
  background: linear-gradient(90deg, #b8f4ff, #fff);
  border: 1px solid rgba(0, 206, 209, 0.45);
  box-shadow: 0 6px 20px rgba(0, 206, 209, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.mbd-contact-card__link:hover {
  color: #062038 !important;
  transform: translateX(4px);
  filter: brightness(1.05);
  box-shadow: 0 8px 28px rgba(0, 206, 209, 0.35);
}
.mbd-contact-card__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.75rem;
  color: #fff;
  background: linear-gradient(135deg, var(--mbd-cyan), var(--mbd-deep-blue));
}
.mbd-contact-card__email {
  word-break: break-all;
}
@media (max-width: 576px) {
  .mbd-contact-info {
    padding: 3.25rem 0 3.75rem;
  }
  .mbd-contact-card {
    padding: 1.25rem 1.1rem;
  }
  .mbd-contact-card__link {
    font-size: 0.85rem;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Gallery */
.mbd-gallery {
  padding: 3rem 0 4rem;
  background: #fff;
}
.mbd-gallery__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 2rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--mbd-deep-blue);
}
.mbd-gallery__line {
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mbd-cyan), transparent);
  opacity: 0.85;
}
.mbd-gallery__text { white-space: nowrap; }
.mbd-gallery__item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.12);
  border: 2px solid rgba(0, 206, 209, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mbd-gallery__item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 51, 102, 0.18);
}
.mbd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mbd-gallery__empty {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(0, 51, 102, 0.65);
  margin: 0;
  padding: 2.5rem 1rem 1rem;
}

/* Gallery slider — custom arrows (Owl hides built-in .owl-nav when all items fit) */
.mbd-gallery-slider-wrap {
  position: relative;
  padding: 0 52px 3rem;
}
.mbd-gallery-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 20;
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: var(--mbd-deep-blue);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.mbd-gallery-arrow:hover {
  background: #004d7a;
  box-shadow: 0 6px 24px rgba(0, 51, 102, 0.5);
  color: #fff !important;
}
.mbd-gallery-arrow:active {
  transform: translateY(-50%) scale(0.96);
}
.mbd-gallery-arrow:focus {
  outline: 3px solid rgba(0, 206, 209, 0.55);
  outline-offset: 2px;
}
.mbd-gallery-arrow i {
  font-size: 1.25rem;
  line-height: 1;
  pointer-events: none;
}
.mbd-gallery-arrow--prev {
  left: 0;
}
.mbd-gallery-arrow--next {
  right: 0;
}
.mbd-gallery-owl.owl-carousel {
  overflow: visible;
  position: relative;
  padding: 0;
}
.mbd-gallery-owl .owl-stage-outer {
  overflow: hidden;
}
.mbd-gallery-owl .owl-dots {
  text-align: center;
  margin-top: 1.25rem;
}
.mbd-gallery-owl .owl-dots .owl-dot span {
  background: rgba(0, 51, 102, 0.25);
}
.mbd-gallery-owl .owl-dots .owl-dot.active span {
  background: var(--mbd-cyan);
}
@media (max-width: 576px) {
  .mbd-gallery-slider-wrap {
    padding: 0 44px 2.5rem;
  }
  .mbd-gallery-arrow {
    width: 42px;
    height: 42px;
  }
  .mbd-gallery-arrow i {
    font-size: 1.05rem;
  }
}

/* CTA strip */
.mbd-cta-strip {
  padding: 2rem 0 3rem;
  background: linear-gradient(180deg, #fff 0%, var(--mbd-bg-soft) 100%);
}

/* Inner pages: soften dark bars from legacy templates */
.page .bg-dark,
.archive .bg-dark {
  background: linear-gradient(135deg, var(--mbd-deep-blue), #004d7a) !important;
}

/* Beat legacy `.navbar a` rule for Book Now + branded nav */
.navbar.mbd-navbar a.mbd-btn-book {
  color: #fff !important;
}

header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* owl carousel arrows */


/* Base styles for Owl Carousel navigation arrows */
.owl-carousel {
    position: relative; /* Ensure the carousel is the reference for absolute positioning */
    overflow: hidden; /* Prevent overflow */
}

.owl-carousel .owl-nav button {
    background-color: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
    z-index: 10; /* Ensure arrows are above the carousel items */
}

.owl-carousel .owl-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 10px; /* Position the left arrow inside the carousel */
}

.owl-carousel .owl-nav button.owl-next {
    right: 10px; /* Position the right arrow inside the carousel */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .owl-carousel .owl-nav button {
        width: 30px; /* Smaller arrows for mobile */
        height: 30px;
        font-size: 14px; /* Smaller icon size */
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: 5px; /* Move arrows closer to the edge but still inside the carousel */
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 5px; /* Move arrows closer to the edge but still inside the carousel */
    }
}
/* End owl carousel arrows */



  .social-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    background: white;
    padding: 5px;
    border: 1px solid blue;
    border-radius: 5px;
  }
  
  .social-icons a {
    display: block;
    margin: auto;
  }


/* Container for floating contacts */
.contact-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Shared styles for icons */
.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  transition: all 0.3s ease;
}

/* Specific colors */
.phone-icon {
  background: #007bff;
}

.whatsapp-icon {
  background: #25d366;
}

/* Hover effects */
.contact-icon:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Tooltip */
.contact-icon .tooltip {
  position: absolute;
  right: 65px;
  background: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
}

.contact-icon:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive: smaller icons on mobile */
@media (max-width: 576px) {
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .contact-icon .tooltip {
    font-size: 12px;
    right: 55px;
  }
}



/* carousel */
.custom-bg-dark {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/banner-bg.webp');
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the background image */
    color: #fff; /* White text color */
}

.carousel-item {
  position: relative;
}


.carousel-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/* carousel */

/* image post responsive */


.wp-block-image img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
/* end image post responsive */

/* home page posts pagination */

/* end of home page posts pagination */

/* navbar */
.navbar{
  background-color: white !important;
}
.navbar a{
  color:black !important;
}
.ltr{
direction: ltr !important;
}

.rtl{
  direction: rtl !important;
  }

/* end navbar */


/* Packages  */

 .pricing {
      margin-top: 50px;
    }
    .pricing .card {
      border: none;
      border-radius: 15px;
      transition: all 0.3s;
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    }
    .pricing .card:hover {
      transform: translateY(-10px);
    }
    .pricing .card-header {
      background-color: #f9f9f9;
      border-bottom: none;
      padding: 20px;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
    .pricing .card-body {
      padding: 40px;
    }
    .pricing .price {
      font-size: 25px;
      font-weight: bold;
      color: #007bff;
    }

/* End Packages */


/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination li {
  display: inline-block;
  margin: 0;
}

.pagination .page-link {
  display: inline-block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.pagination .page-item.active .page-link {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* end pagination */


@media (max-width: 767px) {
.counter {
  margin-top: 50px;
}
}




/* cards */

/* end cards */

/* location */

.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  /* Adjust map size for small screens */
  .map-container {
    padding-top: 75%; /* 4:3 aspect ratio */
  }
}


/* end location */

/*  embdaded video */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio (h/w * 100) */
}

.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* about us */

 /* CSS styles */
 .section-title {
  font-size: 24px;
  font-weight: bold;
}

.section-item {
  margin-bottom: 10px;
  font-size: 18px;
}

.icon {
  margin-right: 10px;
}
/* end about us */

/* contact us */

.wpcf7 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Style form elements */
.wpcf7-form {
  max-width: 400px;
  padding: 20px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  direction: rtl;

}

form.wpcf7-form.sent {
    margin-top: 50px;
}

.wpcf7-form p {
  margin-bottom: 20px;
}

.wpcf7-form label {
  font-weight: bold;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  border: none;
  color: white;
  cursor: pointer;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #45a049;
}

.wpcf7-response-output {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
}
/* end contact us  */


/* location */

.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  /* Adjust map size for small screens */
  .map-container {
    padding-top: 75%; /* 4:3 aspect ratio */
  }
}


/* end location */

/* styles.css */

/* Service container styles */
.service {
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease; /* Added for smooth transition */
}

/* Icon wrapper styles */
.icon-wrapper {
  margin-bottom: 20px; /* Increased margin for better spacing */
}

/* Icon styles */
.service .icon-wrapper i {
  color: #007bff; /* Default icon color */
  font-size: 3rem; /* Increased icon size for better visibility */
  transition: all 0.3s ease; /* Added for smooth transition */
}

/* Title styles */
.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Paragraph styles */
.service p {
  font-size: 18px;
}

/* Hover effect */
.service:hover {
  transform: translateY(-5px); /* Move the service box up slightly on hover */
}

/* Color change */
.service:hover .icon-wrapper i {
  color: #ff6347; /* Change icon color on hover */
}


/* social icons style */

/* Container for floating contacts */
.contact-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Shared styles for icons */
.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  transition: all 0.3s ease;
}

/* Specific colors */
.phone-icon {
  background: #007bff;
}

.whatsapp-icon {
  background: #25d366;
}

/* Hover effects */
.contact-icon:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Tooltip */
.contact-icon .tooltip {
  position: absolute;
  right: 65px;
  background: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
}

.contact-icon:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive: smaller icons on mobile */
@media (max-width: 576px) {
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .contact-icon .tooltip {
    font-size: 12px;
    right: 55px;
  }
}

/* end social icons style  */

/* ——— About Us page template (mockup-aligned) ——— */
.mbd-about-page {
  --mbd-about-blue: #0056b3;
  --mbd-about-blue-dark: #004494;
  --mbd-about-soft: #e8f4fc;
  font-family: 'Montserrat', 'Readex Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #334155;
  background: #fff;
}
.mbd-about-page__hero {
  position: relative;
  min-height: clamp(220px, 38vh, 420px);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 0 2.75rem;
  overflow: hidden;
}
.mbd-about-page__hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0a4d6e;
  background-size: cover;
  background-position: center center;
}
.mbd-about-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 20, 50, 0.35) 0%, rgba(0, 40, 80, 0.65) 100%);
}
.mbd-about-page__hero .container {
  position: relative;
  z-index: 2;
}
.mbd-about-page__hero-title {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.mbd-about-page__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.mbd-about-page__breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  opacity: 0.75;
  font-weight: 400;
}
.mbd-about-page__breadcrumb-list a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}
.mbd-about-page__breadcrumb-list a:hover {
  text-decoration: underline;
}
.mbd-about-page__who {
  padding: 4rem 0;
  background: #fff;
}
.mbd-about-page__who-photo {
  border-radius: 14px !important;
  box-shadow: 0 16px 40px rgba(0, 51, 102, 0.12);
}
.mbd-about-page__who-img {
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  min-height: 260px;
}
.mbd-about-page__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mbd-about-blue);
}
.mbd-about-page__section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.mbd-about-page__lead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
}
.mbd-about-page__feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 12px;
  background: var(--mbd-about-soft);
  border: 1px solid rgba(0, 86, 179, 0.12);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mbd-about-page__feat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 86, 179, 0.12);
}
.mbd-about-page__feat-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--mbd-about-blue);
}
.mbd-about-page__feat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}
.mbd-about-page__trips {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.mbd-about-page__trips-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 2.25rem;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}
.mbd-about-page__trips-line {
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.35), transparent);
}
.mbd-about-page__trip-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(0, 86, 179, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mbd-about-page__trip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}
.mbd-about-page__trip-img-wrap {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.mbd-about-page__trip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mbd-about-page__trip-body {
  padding: 1.1rem 1.15rem 1.2rem;
}
.mbd-about-page__trip-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.mbd-about-page__trip-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}
.mbd-about-page__trip-price {
  flex-shrink: 0;
  font-weight: 800;
  color: var(--mbd-about-blue);
  font-size: 1.05rem;
}
.mbd-about-page__trip-sub {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: #64748b;
}
.mbd-about-page__trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
}
.mbd-about-page__trip-meta i {
  color: var(--mbd-about-blue);
  margin-right: 0.35rem;
}
.mbd-about-page__trip-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  margin: 0 0 0.55rem;
}
.mbd-about-page__trip-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mbd-about-blue);
  background: rgba(0, 86, 179, 0.1);
  border: 1px solid rgba(0, 86, 179, 0.18);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  line-height: 1.3;
}
.mbd-about-page__btn-primary {
  background: var(--mbd-about-blue) !important;
  border-color: var(--mbd-about-blue) !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.65rem 1.75rem;
  box-shadow: 0 8px 24px rgba(0, 86, 179, 0.3);
}
.mbd-about-page__btn-primary:hover {
  background: var(--mbd-about-blue-dark) !important;
  border-color: var(--mbd-about-blue-dark) !important;
  color: #fff !important;
  filter: brightness(1.05);
}
.mbd-about-page__split {
  padding: 0 0 4.5rem;
  background: #fff;
}
.mbd-about-page__course-banner {
  min-height: 320px;
  position: relative;
}
.mbd-about-page__course-bg {
  position: absolute;
  inset: 0;
  background-color: #003d5c;
  background-size: cover;
  background-position: center center;
}
.mbd-about-page__course-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 40, 90, 0.88) 0%, rgba(0, 86, 179, 0.45) 55%, rgba(0, 86, 179, 0.2) 100%);
}
.mbd-about-page__course-inner {
  position: relative;
  z-index: 2;
  padding: 2.25rem 1.75rem;
  max-width: 32rem;
}
@media (min-width: 992px) {
  .mbd-about-page__course-inner {
    padding: 2.75rem 2.25rem;
  }
}
.mbd-about-page__course-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93c5fd;
}
.mbd-about-page__course-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.mbd-about-page__course-text {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}
.mbd-about-page__btn-light {
  background: #fff !important;
  border: none !important;
  color: var(--mbd-about-blue) !important;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.mbd-about-page__btn-light:hover {
  color: var(--mbd-about-blue-dark) !important;
  filter: brightness(1.02);
}
.mbd-about-page__why {
  background: linear-gradient(180deg, #f0f7ff 0%, #e8f4fc 100%);
  border: 1px solid rgba(0, 86, 179, 0.12);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 12px 36px rgba(0, 51, 102, 0.08);
}
.mbd-about-page__why-title {
  margin: 0 0 1.15rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}
.mbd-about-page__why-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mbd-about-page__why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
  color: #334155;
}
.mbd-about-page__why-list li:last-child {
  margin-bottom: 0;
}
.mbd-about-page__why-list i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--mbd-about-blue);
  font-size: 1rem;
}
@media (max-width: 767px) {
  .mbd-about-page__hero {
    min-height: 200px;
    padding: 2rem 0;
  }
  .mbd-about-page__who {
    padding: 2.75rem 0;
  }
  .mbd-about-page__who-img {
    min-height: 220px;
  }
}

/* Trips page template (Popular trips by category) */
.mbd-trips-page__hero-bg {
  background-image: linear-gradient(145deg, var(--mbd-deep-blue) 0%, #004d7a 45%, var(--mbd-cyan-dark) 100%);
}
.mbd-trips-page__section + .mbd-trips-page__section {
  padding-top: 0;
}
.mbd-trips-page__intro-content {
  text-align: left;
}
.mbd-trips-page__cta {
  background: linear-gradient(180deg, #f0f7ff 0%, var(--mbd-bg-soft) 100%);
}
.mbd-about-page__trip-card .mbd-trip-book-btn.is-done {
  opacity: 0.92;
  cursor: default;
}
.mbd-trip-see-more {
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid var(--mbd-about-blue, #0056b3) !important;
  color: var(--mbd-about-blue, #0056b3) !important;
  background: transparent !important;
}
.mbd-trip-see-more:hover {
  background: rgba(0, 86, 179, 0.08) !important;
  color: var(--mbd-about-blue-dark, #004494) !important;
}
