* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --brand-orange: #f15823;
  --brand-cyan: #0198c6;
  --brand-sky: #96d4e7;
  --brand-ice: #f2f9fc;
  --ocean-ink: #0b2545;
  --body-text: #243746;
  --muted-text: #526875;
  --link-blue: #005f78;
  --orange-text: #852600;
  --primary-orange: var(--brand-orange);
  --dark-blue: var(--link-blue);
  --light-bg: var(--brand-ice);
  --text-muted: var(--muted-text);
  --dark-bg: var(--ocean-ink);
  --cream-bg: #f7fbfc;
}

::-webkit-scrollbar {
  width: 1px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--brand-cyan);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}

body {
  font-family: "Barlow Condensed", sans-serif;
  background-color: #fff;
  color: var(--body-text);
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 1.1rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  color: var(--dark-bg);
}

/* Top Bar */
.top-bar {
  background-color: var(--brand-sky);
  color: var(--ocean-ink);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar a {
  color: var(--ocean-ink);
  text-decoration: none;
}

.top-bar .container,
.top-bar-contact,
.top-bar-links {
  gap: 0.9rem;
}

.top-bar-contact-link,
.top-bar-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.top-bar a:hover,
.top-bar a:focus-visible {
  color: var(--orange-text);
}

.top-bar i {
  color: currentColor;
}

/* Navigation */
.navbar {
  background-color: var(--light-bg);
  padding: 15px 0;
}
.navbar-nav .nav-link {
  color: #000 !important;
  font-weight: 500;
  margin-right: 15px;
}
.navbar-brand {
  position: relative;
}
.navbar-brand strong {
  padding-left: 78px;
}
.navbar-brand img {
  width: auto;
  height: 106px;
  position: absolute;
  top: 0;
  left: 0;
}

.main-header {
  transition: transform 0.3s ease-in-out;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030; /* Keeps it above other Bootstrap elements */
}

/* Slides the entire header completely out of view */
.header-hidden {
  transform: translateY(-150%);
}
.btn-orange {
  background-color: var(--primary-orange);
  color: var(--ocean-ink);
  border-radius: 4px;
  padding: 8px 24px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}
.btn-orange:hover,
.btn-orange:focus-visible {
  background-color: var(--ocean-ink);
  color: var(--brand-ice);
}
/* Parent Setup */
.has-mega-menu {
  position: static !important; /* Forces dropdown container width to read navbar boundaries */
}

/* Container Box Layout Match */
.navbar .mega-menu-container {
  position: absolute;
  left: 25%;
  right: 5%;
  width: 70%;
  max-width: 1100px;
  margin-top: 10px;
  background-color: #fdfaf4; /* Matching the image color tone background */
  border: none;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 35px;
  z-index: 1000;
}
.dropdown-toggle::after {
  display: none;
}
/* Subtle Column Divider Borders */
.mega-menu-col {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 20px;
}

/* Header Headings Inside Menu */
.mega-menu-title {
  font-size: 13px;
  font-weight: 700;
  color: #888888;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  padding-left: 8px;
}

/* Link Group Styling List */
.mega-link-list li {
  margin-bottom: 16px;
}

.mega-link-list li a {
  display: block;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}

.mega-link-list li a strong {
  display: block;
  color: #1a2b49;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 1px;
}

.mega-link-list li a span {
  display: block;
  color: #778294;
  font-size: 12.5px;
  line-height: 1.3;
}

/* Link Hover Actions */
.mega-link-list li a:hover {
  background-color: rgba(242, 101, 34, 0.06);
}
.mega-link-list li a:hover strong {
  color: var(--primary-orange);
}

/* Highlighted Action Links */
.all-specialties-link strong {
  color: var(--primary-orange) !important;
}

/* Right-Side Feature Card */
.mega-feature-card {
  background: transparent;
  border: none;
}

.card-img-holder {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 140px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-ssi {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #004b87;
  color: #fff;
  font-weight: 800;
  padding: 3px 8px;
  font-size: 11px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.fs-7 {
  font-size: 0.8rem;
}
.tiny-icon {
  font-size: 10px !important;
  vertical-align: middle;
}

/* Hero Section */
/* --- HERO CAROUSEL LAYOUT --- */
.hero-slider-container {
  background-color: transparent !important;
  overflow: hidden;
  border: 0;
  margin-top: 90px;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  padding: 180px 0 240px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-desc {
  max-width: 580px;
  line-height: 1.6;
}

/* Vertical Progress Pagination (Left Side) */
.hero-vertical-pagination {
  position: absolute;
  left: 4%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  gap: 35px;
}

.hero-slide {
  position: relative;
}

/* Static hero media */
.hero-media {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Solid scrims maintain contrast over bright and blue imagery. */
.hero-overlay,
.hero-scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(3 24 43 / 74%);
  z-index: 1;
}

.hero-scrim--strong {
  background: rgb(3 24 43 / 84%);
}

/* Ensure text stays above video & overlay */
.hero-slide .z-2 {
  z-index: 2;
}
.stat-item h4 {
  font-family: "Barlow Condensed", sans-serif;
}
.pagination-number {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
}

.pagination-number::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: 0.3s ease;
}

.pagination-number.active {
  color: var(--primary-orange);
  font-size: 18px;
  /* transform: scale(1.1); */
}

.pagination-number.active::before {
  width: 25px;
}

/* Right Side Stats Items */
.hero-stats-wrapper {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 30px;
}

.stat-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(1, 29, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

/* Horizontal Bottom Dots Override */
.hero-swiper-pagination.swiper-pagination-bullets {
  bottom: 80px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
  margin: 0 6px !important;
  transition: 0.3s;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-orange) !important;
  opacity: 1;
  width: 12px;
  height: 12px;
}

/* Shape Wave Divider at Bottom */
.hero-wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 5;
  padding: 0;
}

.hero-wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.hero-wave-divider .hero-wave-mobile {
  display: none;
}

/* --- HERO TEXT ANIMATIONS --- */

/* 1. Set Initial Hidden States & Transitions */
.hero-slide .hero-tagline,
.hero-slide .hero-title,
.hero-slide .hero-desc,
.hero-slide .btn-orange,
.hero-slide .btn-outline-white,
.hero-slide .hero-stats-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition:
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.8s ease;
  color: #fff;
}

/* Specific start positions for different elements to create a layered effect */
.hero-slide .hero-title {
  transform: translateY(40px);
}
.hero-slide .hero-stats-wrapper {
  transform: translateX(30px); /* Stats slide in from the right */
}

/* 2. Active Slide Target States (Triggered by Swiper) */
.swiper-slide-active .hero-tagline,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-desc,
.swiper-slide-active .btn-orange,
.swiper-slide-active .btn-outline-white,
.swiper-slide-active .hero-stats-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.swiper-slide-active .hero-stats-wrapper {
  transform: translateX(0);
}

/* 3. Staggered Delays (Creates the premium top-to-bottom waterfall effect) */
.swiper-slide-active .hero-tagline {
  transition-delay: 0.2s;
}
.swiper-slide-active .hero-title {
  transition-delay: 0.4s;
}
.swiper-slide-active .hero-desc {
  transition-delay: 0.6s;
}
.swiper-slide-active .btn-orange {
  transition-delay: 0.8s;
}
.swiper-slide-active .btn-outline-white {
  transition-delay: 0.9s; /* Follows right after the orange button */
}
.swiper-slide-active .hero-stats-wrapper {
  transition-delay: 0.5s;
}

/* Destinations Section */
.destinations-section {
  /* background-color: var(--light-bg); */
  padding: 20px 0 80px 0;
}
.section-tag {
  color: var(--dark-blue);
  font-size: 18px;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
}
.section-title {
  color: var(--dark-bg);
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
}
.destination-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: center;
  height: 100%;
}
.destination-card:hover {
  transform: translateY(-5px);
}
.dest-img-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.dest-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dest-icon-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd8ca;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f15823;
  border: 3px solid #ffc8b4;
  z-index: 2;
}
.dest-icon-badge2 {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd8ca;
  width: fit-content;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border: 1px solid #ffc8b4;
  z-index: 2;
  line-height: 1;
  font-size: 14px;
  padding: 0 15px;
}
/* Adventure Grid Sections */
.adventure-grid {
  padding: 0;
}
.liveaboard-col {
  background: url("../img/gear_rinse.jpg") no-repeat center center/cover;
  color: #fff;
  padding: 60px;
}
.courses-col {
  background-color: var(--light-bg);
  padding: 30px;
}
.why-dive-col {
  background: url("../img/couple_on_boat.jpg") no-repeat center center/cover;
  color: #fff;
  padding: 60px;
}

/* Testimonials Slider */
.testimonials-section {
  background-color: var(--light-bg);
  padding: 30px 0 30px 0;
}
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  text-align: center;
}
.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.stars {
  color: #ffbc00;
  margin-bottom: 10px;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
}
.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
}
.gallery-img:hover {
  transform: scale(1.03);
}

/* Call To Action Banner */
.cta-banner {
  background: #011d3a;
  color: #fff;
  padding: 100px 0;
  position: relative;
  clip-path: ellipse(120% 100% at 50% 100%);
}

.cta-banner.is-visible {
  background:
    linear-gradient(rgba(1, 29, 58, 0.7), rgba(1, 29, 58, 0.7)),
    url("../img/skuba_bg.webp") no-repeat center center/cover;
}

/* Footer */

footer {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 20px 0;
  font-size: 15px;
}
.site-footer {
  background-color: #031a2f; /* Deep dark blue ocean backdrop color */
  color: #8fa0b5; /* Soft slate color for description paragraphs */
  font-family: barlow, sans-serif;
}

/* Brand info column adjustments */
.footer-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #a3b8cc;
  font-family: "Barlow Condensed", sans-serif;
}

.footer-meta-link {
  color: #a3b8cc;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.footer-meta-link:hover {
  color: #4ed2ff;
}

/* Header Categories & Underlines */
.footer-heading {
  color: var(--cream-bg); /* Bright cyan typography accent */
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(143, 160, 181, 0.15); /* Thin header divider line */
  display: block;
  font-family: "Cormorant Garamond", serif;
}

/* Navigation Element Links */
.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #a3b8cc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  font-family: "Barlow Condensed", sans-serif;
}

.footer-links-list a:hover {
  color: #ffffff;
  padding-left: 3px; /* Subtle nudge interaction */
}

/* Lower Section Dividers */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.06);
}

.copyright-text {
  color: #9aafc1;
  font-family: "Barlow Condensed", sans-serif;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
}

/* Clean Micro-Outline Badges Components */
.badge-outline {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #9aafc1;
  border: 1px solid rgba(93, 113, 133, 0.3);
  padding: 6px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  background-color: transparent;
  user-select: none;
  transition: all 0.2s ease;
  font-family: "Barlow Condensed", sans-serif;
  background-color: transparent;
  background: #ffffff27;
}

.badge-outline:hover {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}
.badge-outline img {
  width: 100%;
  height: 30px;
  object-fit: contain;
}
.pricing-card .list-unstyled li {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 0.5rem;
}
.list-unstyled li span {
  line-height: 1.3;
}
.list-unstyled li p {
  line-height: 1.3;
  font-family: "Barlow Condensed", sans-serif;
}

.typicaldiv {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 15px 25px;
  height: 100%;
}

/*------------About us--------------*/

.about-hero {
  min-height: 50vh; /* Ensures a premium structural look on tall displays */
}

.hero-media {
  z-index: 0;
  pointer-events: none;
}

.hero-eyebrow {
  color: var(--brand-sky) !important;
}

.hero-accent-rule {
  background-color: var(--brand-orange) !important;
}

.hero-title,
.hero-desc,
.about-hero h1,
.about-hero .lead,
.course-hero h1,
.hero-description-text {
  color: var(--brand-ice) !important;
}

.hero-desc,
.about-hero .lead,
.hero-description-text {
  opacity: 1 !important;
}

.hero-desc a,
.about-hero .lead a,
.hero-description-text a {
  color: var(--brand-sky) !important;
}

/* Bootstrap 5 helper utility fallback for older browsers missing standard styles */
.object-fit-cover {
  object-fit: cover;
}
.border-left {
  border-left: 2px solid var(--brand-orange) !important;
}
.leading-relaxed {
  line-height: 1.45;
}
.about-hero {
  background-size: cover;
  background-position: center center;
  background: #7ce1ff;
}

/*------------Contact us--------------*/

.custom-input-label {
  font-size: 18px;
  font-weight: 700 !important;
  color: #1a2b49;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: capitalize;
  font-family: "Cormorant Garamond", serif;
}

.custom-form-input {
  background-color: #fdfaf4 !important; /* Soft cream inputs to pop off white cards */
  border: 1px solid rgba(26, 43, 73, 0.2) !important;
  padding: 12px 16px;
  font-size: 18px;
  color: #1a2b49;
  border-radius: 8px !important;
  transition: all 0.25s ease-in-out !important;
  box-shadow: none !important;
  font-family: "Barlow Condensed", sans-serif;
}

/* Focused input state adjustments */
.custom-form-input:focus {
  border-color: var(--brand-orange) !important;
  background-color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(242, 101, 34, 0.08) !important;
}
.custom-form-input::placeholder {
  color: #c6c6c6;
}
/* Micro Badge Layouts styling */
.badge-outline-dark {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #1a2b49;
  border: 1px solid rgba(26, 43, 73, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}
.border-warning {
  border: 1px solid var(--primary-orange);
  background: rgba(241, 88, 35, 0.16) !important;
}
.transition-transform {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.transition-transform:hover {
  transform: translateY(-2px);
  background-color: #e05313 !important;
}
.badge {
  font-weight: 400;
  letter-spacing: 0.65;
  font-size: 14px;
}

.value-tier-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 100%;
}

/*------------Courses--------------*/

.title-dark-blue {
  color: #1a2b49;
}

.icon-orange {
  color: var(--orange-text);
}

.section-bg-cream {
  background-color: var(--cream-bg);
}

.section-bg-dark-blue {
  background-color: var(--ocean-ink);
}

/* 1. Hero Structural Rules */
.course-hero {
  padding: 120px 0;
  background: var(--ocean-ink);
}

.hero-glow-element {
  background-color: rgb(1 152 198 / 14%);
  z-index: 0;
}

.container-z-index {
  z-index: 1;
}

.section-pretitle-orange {
  color: var(--brand-sky);
  font-size: 13px;
  letter-spacing: 2px;
}

.hero-main-title {
  line-height: 1.1;
}

.hero-description-text {
  font-size: 1.15rem;
  color: var(--light-bg);
}

.btn-action-orange {
  background-color: var(--primary-orange);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--ocean-ink);
}

.btn-action-orange:hover {
  background-color: var(--brand-sky);
  color: var(--ocean-ink);
  transform: translateY(-1px);
}

.hero-image-decorative-backdrop {
  background-color: var(--brand-orange);
  opacity: 0.1;
  transform: rotate(-3deg) scale(1.02);
  z-index: -1;
}

.hero-card-image {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 2. Essentials Layout Constants */
.section-header-constrained {
  max-width: 680px;
}

.matrix-list-stripes li {
  padding-bottom: 4px;
}

/* 3. Editorial Row Alterations */
.section-pretitle-small-orange {
  color: var(--orange-text);
  font-size: 12px;
}
.text-orange {
  color: var(--primary-orange);
}
.editorial-heading-size {
  font-size: 2.25rem;
}

.custom-dot-list li {
  position: relative;
  padding-left: 0;
  line-height: 1;
}

/* 4. Targeting Profiles Layouts */
.segment-description-max {
  max-width: 550px;
}

.card-meta-tag-orange {
  color: var(--orange-text);
  font-size: 11px;
  letter-spacing: 1px;
}

/* 5. Sub-banner Rules */
.block-banner-width {
  max-width: 680px;
}

/* 6. Closing Call-To-Action Segment */
.cta-inner-wrapper {
  background: var(--ocean-ink);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-micro-title {
  font-size: 11px;
  letter-spacing: 2px;
}

.cta-description-max {
  max-width: 500px;
}

.btn-cta-text {
  font-size: 13px;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.05);
}

.provider-brand {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
}
.provider-brand li {
  display: inline-block;
  margin-right: 10px;
  width: 100px;
  height: 60px;
  background: #ffffff27;
  padding: 10px;
  border-radius: 8px;
}
.provider-brand li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.schedule-section {
  padding: 30px 0 0 0;
  /* background-color: var(--light-bg); */
}

.section-subtitle {
  /* color: var(--dive-teal); */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Swiper Card Styling */
.swiper-container-wrapper {
  padding: 20px 10px 50px 10px; /* Extra space at bottom for pagination */
}

.schedule-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  text-align: center;
  text-decoration: none;
  padding: 15px 10px; /* Adjusted padding for stacked layout balance */
  min-height: 90px; /* Provides uniform height across all pills */
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px; /* Changed to an elegant rounded-card pill look */
  background-color: #fff;
  transition: all 0.25s ease-in-out;
  overflow: hidden;
}
.swiper-slide:nth-child(odd) .schedule-card {
  background-color: #ffffff;
}

.swiper-slide:nth-child(even) .schedule-card {
  background-color: var(--cream-bg);
}
.schedule-card:hover,
.schedule-card.active {
  background: rgba(241, 88, 35, 0.16) !important;
  border: 1px solid rgba(241, 88, 35, 0.3);
  color: var(--dark-bg) !important;
  box-shadow: 0 6px 15px rgba(242, 101, 34, 0.25);
}

.card-day-header {
  background-color: var(--dive-deep-blue);
  color: #ffffff;
  padding: 15px 20px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.day-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--bg-dark) !important;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  background-color: var(--primary-orange);
  padding: 5px 12px;
  border-radius: 0 0 23px 0;
  position: absolute;
  top: 0;
  left: -12px;
  transform: translateY(-50%);
}

.badge-dives {
  background-color: var(--dark-blue);
  color: #ffffff;
  font-size: 0.85rem;
  border-radius: 20px;
  padding: 2px 12px;
  font-weight: 400;
  line-height: 1.2;
}

.card-body-content {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.dive-site-title {
  /* color: var(--dive-deep-blue); */
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
  font-family: "Barlow Condensed", sans-serif;
}

.highlights-heading {
  /* color: var(--dive-teal); */
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.highlights-text {
  color: #555;
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 0;
}

/* Customize Swiper Controls */
.compact-accordion {
  max-width: 100%;
  margin: 0 auto;
}

/* Individual Accordion Item */
.faq-item {
  background-color: #dee2e6;
  border: 1px solid #f2f2f2 !important;
  border-radius: 10px !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover State */
/* .faq-item:hover {
    border-color: var(--primary-orange) !important;
    color: #fff;
    background-color: var(--primary-orange);
} */

/* Trigger / Header Area */
.faq-trigger {
  cursor: pointer;
  user-select: none;
  padding: 8px 20px !important;
  transition: background-color 0.2s ease;
}

.faq-trigger:hover {
  background-color: var(--faq-hover-bg);
}

/* Question Title */
.faq-trigger h5 {
  color: var(--faq-title-color);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Barlow Condensed", sans-serif;
}

/* Toggle Icon (+ / x) */
.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(31, 146, 166, 0.1);
  color: var(--faq-accent);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

/* Active / Open State Adjustments */
.faq-item.is-open {
  background-color: #ffffff;
  border-color: var(--primary-orange) !important;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg); /* Rotates '+' into an 'x' */
  background-color: transparent;
  color: var(--primary-orange);
}

/* .faq-item.is-open .faq-trigger h5 {
    color: var(--faq-accent);
} */

/* Content Panel */
.faq-content {
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 20px 18px 20px !important;
  border-top: 1px solid transparent;
}

/* Divider line above open answer */
.faq-item.is-open .faq-content {
  border-top-color: var(--primary-orange) !important;
  padding-top: 12px !important;
}

.pricingSwiper {
  padding: 0 0 0 55px !important;
}
/* Inline content links (markdown-driven copy) */
.hero-desc a,
.hero-description-text a,
.about-hero .lead a,
.cta-banner p a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-desc a:hover,
.hero-description-text a:hover,
.about-hero .lead a:hover,
.cta-banner p a:hover {
  color: var(--primary-orange);
}

.destination-card p a,
.typicaldiv p a {
  color: var(--dark-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.destination-card p a:hover,
.typicaldiv p a:hover {
  color: var(--primary-orange);
}

/* Prevent AOS offset transforms and negative row margins from widening the page */
html,
body {
  overflow-x: hidden;
}
