/* ============================================
   CSS VARIABLES â€” All colors controlled here
   ============================================ */
:root {
  --color-primary: #142D47;
  --color-primary-dark: #0f1b33;
  --color-primary-light: #2c3e6b;

  --color-accent: #00C5F0;
  /* Red for CTA border */
  --color-accent-hover: #a52d15;
  --color-accent-light: #e8621a;
  /* Orange */

  --color-white: #ffffff;
  --color-light-gray: #f5f6f8;
  --color-gray: #8c95a6;
  --color-dark-gray: #4a5568;
  --color-black: #111111;

  --header-bg: #ffffff;
  --header-text: #1b2a4a;
  --header-link: #1b2a4a;
  --header-link-hover: #c8371b;
  --header-border: #e8e8e8;
  --header-util-color: #333333;
  --header-util-hover: #c8371b;

  --cta-border: #142D47;
  --cta-text: #142D47;
  --cta-bg: transparent;
  --cta-hover-bg: #00C5F0;
  --cta-hover-text: #ffffff;

  --stripe-1: #e85d24;
  /* Orange */
  --stripe-2: #f5a623;
  /* Amber */
  --stripe-3: #3b7dd8;
  /* Blue */
  --stripe-4: #1b2a4a;
  /* Navy */
  --stripe-5: #6abf4b;
  /* Green */

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);

  --radius-sm: 4px;
  --radius-full: 50px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;

  --font-primary: "Inter", sans-serif;
}

html,
body {
  overflow-x: clip !important;
  padding: 0 !important;
  margin: 0 !IMPORTANT;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--header-text);
  background-color: var(--color-light-gray);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", sans-serif;
}


a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-size: 20px;
  font-family: "karma", serif;
  line-height: 1.7;
}

.section-padding {
  padding: 60px 0;
}

/* ============================================
   HEADER â€” Single white bar
   ============================================ */
.site-header {
  background-color: var(--header-bg);
  border-bottom: unset;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 60px;
}

/* â”€â”€ Left: Logo + Nav â”€â”€ */
.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  padding: 5px 0;
}

/* â”€â”€ Primary Nav â”€â”€ */
.primary-nav {
  display: flex;
  align-items: center;
}

.primary-nav__list {
  display: flex;
  align-items: start;
  gap: 0;
}

.primary-nav__item {
  /* position: relative; */
  /* Removed to allow mega menu to align to header-inner */
}

.primary-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 18px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--header-link);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.primary-nav__link i.fa-chevron-down {
  font-size: 9px;
  margin-left: 2px;
  transition: transform var(--transition-fast);
}

.primary-nav__link:hover {
  color: var(--header-link-hover);
}

.primary-nav__item:hover>.primary-nav__link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* â”€â”€ Dropdown â”€â”€ */
.primary-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--header-bg);
  border: 1px solid var(--header-border);
  border-top: 3px solid var(--color-accent);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base),
    visibility var(--transition-base);
  padding: 6px 0;
  z-index: 100;
}

@media (min-width: 992px) {
  .primary-nav__item:hover>.primary-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.primary-nav__dropdown-link {
    display: block;
    padding: 9px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--header-text);
    transition: background-color var(--transition-fast), color var(--transition-fast);
    font-family: 'Barlow Condensed';
}

.primary-nav__dropdown-link:hover {
  background-color: var(--color-light-gray);
  color: var(--color-accent);
}

/* â”€â”€ Mega Menu (Tabbed) â”€â”€ */
.primary-nav__mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  background-color: var(--header-bg);
  border-top: 1px solid var(--header-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 1000;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

@media (min-width: 992px) {
  .primary-nav__item:hover>.primary-nav__mega-menu {
    opacity: 1;
    visibility: visible;
    /* Removed translateY for cleaner alignment */
  }
}

.mega-menu__tab-wrapper {
  display: flex;
  min-height: 450px;
}

/* Sidebar Tabs */
.mega-menu__sidebar {
  width: 300px;
  /* Increased slightly */
  background-color: #f9fafb;
  border-right: 1px solid var(--header-border);
  padding: 20px 0;
}

.mega-menu__tabs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu__tab-item {
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-left: 4px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu__tab-item:hover {
  background-color: #f3f4f6;
  color: var(--color-accent);
}

.mega-menu__tab-item.active {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-left-color: var(--color-accent-dark);
}

/* Content Area */
.mega-menu__content-area {
  flex: 1;
  padding: 40px;
  background-color: var(--color-white);
}

.mega-menu__tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.mega-menu__tab-panel.active {
  display: block;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.mega-menu-style span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .075rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.mega-menu-style ul li {
  line-height: 2.2;
  font-size: 1rem;
}

.mega-menu__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.mega-menu__card:hover {
  transform: translateY(-5px);
}

.mega-menu__card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.mega-menu__card span {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.mega-menu__card:hover span {
  color: var(--color-accent);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* â”€â”€ Mobile Drill-Down Menu â”€â”€ */
@media (max-width: 991px) {

  /* â”€â”€ Mega menu as FIXED overlay (independent of nav list) â”€â”€ */
  .primary-nav__mega-menu {
    position: fixed !important;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    max-width: none;
    display: block !important;
    opacity: 1;
    visibility: hidden;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
    border: none;
    background: var(--header-bg, #fff);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0.35s;
    overflow: hidden;
    z-index: 1060;
    padding-top: 80px;
    padding-right: 0;
  }

  .primary-nav__mega-menu.mob-mega-active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0s;
  }

  /* â”€â”€ Mega menu internals â”€â”€ */
  .mega-menu__container {
    height: 100%;
    border: none;
  }

  .mega-menu__tab-wrapper {
    flex-direction: column;
    min-height: auto;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  /* Sidebar = Level 1 panel (category list) */
  .mega-menu__sidebar {
    width: 100%;
    border-right: none;
    border-bottom: none;
    padding: 0;
    display: block;
    background: var(--header-bg, #fff);
    overflow-y: auto;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.25s ease;
  }

  .mob-mega-l2 .mega-menu__sidebar {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
  }

  .mega-menu__tabs {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Tab items as clickable list rows with chevron-right */
  .mega-menu__tab-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary, #1a2744);
    border-left: none;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
  }

  .mega-menu__tab-item::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 11px;
    color: #c0c4cc;
    transition: color 0.2s ease;
  }

  .mega-menu__tab-item:active {
    background: #f7f8fa;
  }

  .mega-menu__tab-item.active {
    background: transparent;
    color: var(--color-primary, #1a2744);
    border-left: none;
  }

  /* Content area = Level 2 panel (sub-links) */
  .mega-menu__content-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: var(--header-bg, #fff);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 10;
  }

  .mob-mega-l2 .mega-menu__content-area {
    transform: translateX(0);
  }

  /* Hide all tab panels by default on mobile */
  .mega-menu__tab-panel {
    display: none !important;
  }

  .mega-menu__tab-panel.mob-panel-active {
    display: block !important;
    padding: 5px 24px 30px;
    animation: mobFadeIn 0.3s ease-out;
  }

  @keyframes mobFadeIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Sub-link styling */
  .mega-menu-style span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding-bottom: 6px;
    display: block;
    color: var(--color-accent, #c8371b);
    border-bottom: 1px solid #f0f0f0;
  }

  .mega-menu-style ul {
    padding-left: 0;
  }

  .mega-menu-style ul li {
    line-height: 1.6;
    font-size: 0.9rem;
  }

  .mega-menu-style ul li a {
    color: #374151;
    display: block;
    padding: 6px 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .mega-menu-style ul li a:hover,
  .mega-menu-style ul li a:active {
    color: var(--color-accent, #c8371b);
    padding-left: 4px;
  }

  /* â”€â”€ Back button â”€â”€ */
  .mob-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent, #c8371b);
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.2s ease;
  }

  .mob-back-btn:active {
    background: #fef2f2;
  }

  .mob-back-btn i {
    font-size: 12px;
  }

  /* â”€â”€ Panel heading â”€â”€ */
  .mob-panel-heading {
    padding: 16px 24px 12px;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary, #1a2744);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: 'Barlow Condensed', sans-serif;
    border-bottom: 2px solid var(--color-accent, #c8371b);
  }

  /* Hide on desktop */
  .mob-back-btn,
  .mob-panel-heading {
    list-style: none;
  }

  .mega-menu__card img {
    height: 100px;
  }

  .mega-menu__card span {
    font-size: 13px;
  }
}

/* Hide mobile drill elements on desktop */
@media (min-width: 992px) {

  .mob-back-btn,
  .mob-panel-heading {
    display: none !important;
  }
}

/* â”€â”€ Right: Utility links + CTA â”€â”€ */
.header-right {
  display: flex;
  align-items: end;
  gap: 0;
  flex-direction: column;
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-utils__item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--header-util-color);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-right: 1px solid var(--header-border);
  transition: color var(--transition-fast);
}

.header-utils__item:first-child {
  border-left: 1px solid var(--header-border);
}

.header-utils__item:last-child {
  border-right: none;
}

.header-utils__item i {
  font-size: 11px;
  color: var(--header-util-color);
}

.header-utils__item:hover {
  color: var(--header-util-hover);
}

.header-utils__item:hover i {
  color: var(--header-util-hover);
}

/* â”€â”€ CTA Button (outline) â”€â”€ */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-left: 18px;
  padding: 9px 22px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cta-text);
  background-color: var(--cta-bg);
  border: 2px solid var(--cta-border);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.header-cta:hover {
  background-color: var(--cta-hover-bg);
  color: var(--cta-hover-text);
  box-shadow: 0 2px 10px rgba(200, 55, 27, 0.25);
  border:2px solid var(--accent-color);
}

/* â”€â”€ Colorful Stripe â”€â”€ */
.header-stripe {
  display: flex;
  height: 5px;
  display: none;
}

.header-stripe span {
  flex: 1;
}

.header-stripe span:nth-child(1) {
  background-color: var(--stripe-1);
}

.header-stripe span:nth-child(2) {
  background-color: var(--stripe-2);
}

.header-stripe span:nth-child(3) {
  background-color: var(--stripe-3);
}

.header-stripe span:nth-child(4) {
  background-color: var(--stripe-4);
}

.header-stripe span:nth-child(5) {
  background-color: var(--stripe-5);
}

/* â”€â”€ Mobile Toggle â”€â”€ */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--header-text);
  border-radius: 2px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
  .header-utils__item {
    padding: 6px 10px;
    font-size: 11px;
  }

  .primary-nav__link {
    padding: 18px 12px;
    font-size: 12px;
  }

  .header-left {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .mobile-toggle {
    display: flex;
  }

  .header-utils {
    display: none;
  }

  .header-cta.desktop-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--header-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0 30px;
    transition: right var(--transition-base);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    z-index: 1050;
    border-left: 1px solid var(--header-border);
  }

  .primary-nav.open {
    right: 0;
  }

  .primary-nav__list {
    flex-direction: column;
    width: 100%;
  }

  .primary-nav__link {
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid var(--header-border);
    justify-content: flex-start;
    gap: 8px;
    font-size: 14px;
    text-align: left;
    display: flex;
    justify-content: space-between;
  }

  .primary-nav__link .fa-chevron-down {
    margin-left: auto;
    font-size: 10px;
    color: #9ca3af;
  }

  .primary-nav__dropdown {
    position: fixed !important;
    top: 0;
    right: 0px;
    width: 100%;
    height: 100vh;
    opacity: 1;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0.35s;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
    border: none;
    padding: 80px 0 0;
    background-color: var(--header-bg, #fff);
    z-index: 1060;
    overflow-y: auto;
  }

  .primary-nav__dropdown.mob-dropdown-active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0s;
  }

  .primary-nav__dropdown-link {
    padding: 14px 24px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    display: block;
  }

  /* Mobile util links inside nav */
  .mobile-utils {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--header-border);
    margin-top: 8px;
    padding-top: 8px;
  }

  .mobile-utils a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--header-text);
    border-bottom: 1px solid var(--header-border);
  }

  .mobile-utils a i {
    width: 16px;
    text-align: center;
    color: var(--color-accent);
  }

  .mobile-utils a:hover {
    color: var(--color-accent);
  }

  .header-cta.mobile-cta {
    display: inline-flex;
    margin: 20px 24px;
    width: calc(100% - 48px);
    justify-content: center;
  }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    backdrop-filter: blur(2px);
  }

  .nav-overlay.active {
    display: block;
    z-index: 9;
  }
}

@media (min-width: 992px) {
  .mobile-utils {
    display: none !important;
  }

  .header-cta.mobile-cta {
    display: none !important;
  }

  .nav-overlay {
    display: none !important;
  }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  min-height: 600px;
  background-color: #000;
  overflow: hidden;
}

.hero-slider,
.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  display: flex !important;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 80px;
  padding-left: 120px;
  /* Space for pagination */
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.slick-active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: 1400px;
}

/* Title Wrapper */
.hero-title-wrapper {
  flex-shrink: 0;
  margin-right: 30px;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.4);
  margin: 0;
}

/* Details Wrapper */
.hero-details-wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin-bottom: 25px;
  /* Align with bottom text line visually */
}

.hero-details-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  flex-grow: 1;
  max-width: 150px;
  margin-right: 30px;
}

.hero-details {
  color: var(--color-white);
}

.hero-details-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-details-location {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.hero-details-location span {
  color: var(--color-white);
  font-weight: 600;
}

.hero-details-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition-fast);
}

.hero-details-link:hover {
  color: var(--color-accent);
}

/* Pagination Nav */
.hero-slider-nav {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  color: var(--color-white);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.slider-nav-progress {
  width: 2px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 15px 0;
  position: relative;
}

.slider-nav-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 33.33%;
  /* Will be updated via JS */
  background-color: var(--color-accent);
  transition:
    height 0.3s ease,
    top 0.3s ease;
}

/* Animations */
.hero-title,
.hero-details-line,
.hero-details {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-details-line {
  transform: scaleX(0);
  transform-origin: left;
}

.slick-active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.slick-active .hero-details-line {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.6s;
}

.slick-active .hero-details {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-slide {
    padding-left: 40px;
    padding-bottom: 60px;
  }

  .hero-slider-nav {
    left: 15px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-slide-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-details-wrapper {
    margin-top: 20px;
  }

  .hero-details-line {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    padding-left: 20px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-slider-nav {
    display: none;
  }
}

/* ============================================
   TESTIMONIAL HERO
   ============================================ */
.testimonial-hero {
  position: relative;
  padding: 120px 0 0;
  /* Large bottom padding to show background image */
  background-size: cover;
  background-position: center bottom;
  background-color: unset;
  z-index: 99;
}

.testimonial-hero-overlay {
  position: absolute;
  inset: 0;
  /* This gradient transitions from solid white at top to transparent at bottom */
  background: linear-gradient(to bottom,
      #ffffff 0%,
      #ffffff 40%,
      rgba(255, 255, 255, 0.85) 60%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.testimonial-hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-decorative-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
}

.testimonial-decorative-line span {
  display: inline-block;
  height: 2px;
  background-color: #c0c8d1;
  /* Light grayish blue */
  width: 35px;
}

.testimonial-decorative-line span.active {
  background-color: var(--color-primary-dark);
  height: 3px;
  width: 45px;
}

.testimonial-quote {
  font-family: Karma, serif;
  font-size: clamp(1.2rem, 4vw, 21px);
  line-height: 1.5;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  font-weight: 400 !important;
}

.testimonial-author {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 15px;
  color: var(--color-primary-dark);
}

.testimonial-trip {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.testimonial-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  /* Matching red button color from earlier */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 30px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-primary);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.testimonial-link:hover {
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.testimonial-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

}

.author-img {
  height: 80px;
  width: 80px;
  background: #fff;
  border: 1px solid #fff;
  padding: 5px;
  border-radius: 100%;
}

.author-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 100%;

}

/* Responsive */
@media (max-width: 991px) {
  .testimonial-hero {
    padding: 80px 0 80px;
  }

  .testimonial-quote {
    margin-bottom: 30px;
  }

  .testimonial-quote br {
    display: none;
    /* Let text wrap naturally on smaller screens */
  }
}

/* ============================================
   FEATURED ADVENTURES
   ============================================ */
.featured-section {
  position: relative;
  padding: 100px 0 120px;
  background-color: var(--color-primary-dark);
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  color: var(--color-white);
  overflow: hidden;
  padding-top: 0;
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.95) 100%);
  /* z-index: 1; */
}

.featured-container {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.featured-header {
  margin-bottom: 50px;
  padding-top: 50px;
}


.featured-subtitle {
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.featured-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
}

.btn-primary {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.btn-primary:hover {
  background-color: #c72e39;
  color: #fff;
  transform: translateY(-2px);
}

/* Slider */
.featured-slider-wrapper {
  position: relative;
}

.featured-slider .slick-list {
  margin: 0 -15px;
  /* Adjusting gap */
  padding-bottom: 20px;
}

.trip-card-wrapper {
  padding: 0 15px;
}

/* Card Design */
.trip-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  color: var(--header-text);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.trip-img-box {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.trip-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trip-card:hover .trip-img-box img {
  transform: scale(1.08);
}

.trip-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(15, 27, 51, 0.7);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.trip-badge i {
  font-size: 12px;
}

.trip-favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 14px;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition:
    background-color 0.2s,
    color 0.2s,
    transform 0.2s;
}

.trip-favorite:hover {
  background-color: var(--color-primary);
  color: #fff;
  transform: scale(1.1);
}

.trip-body {
  padding: 25px 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.trip-category {
  font-size: 10px;
  font-weight: 700;
  color: #8c95a6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.trip-name {
  font-family: "karma", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 15px;
  color: var(--color-primary-dark);
}

.trip-stats {
  font-size: 12px;
  color: var(--color-dark-gray);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.trip-stats .sep {
  color: #e8e8e8;
}

.trip-stats .rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trip-stats .rating i {
  color: #e85d24;
  /* Adjusted to match orange star */
  font-size: 10px;
}

.trip-stats .rating .reviews {
  color: #8c95a6;
  font-size: 11px;
}

.trip-details-list {
  margin-top: auto;
  font-size: 11px;
  color: var(--color-dark-gray);
  line-height: 1.7;
}

.trip-details-list li {
  margin-bottom: 5px;
}

.trip-details-list strong {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.trip-footer {
  padding: 18px 25px;
  border-top: 1px solid #f5f6f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.trip-price {
  font-size: 13px;
  color: var(--color-dark-gray);
}

.trip-price strong {
  font-size: 16px;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.trip-compare {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.trip-compare label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
}

.trip-compare input {
  width: 14px;
  height: 14px;
  cursor: pointer;
  margin-top: -2px;
  accent-color: var(--color-primary);
}

/* Slider Controls Bottom */
.featured-slider-controls {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 25px;
}

.featured-nav-arrows {
  display: flex;
  gap: 12px;
}

.featured-nav-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.featured-nav-arrows button:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.featured-nav-arrows button.slick-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.2);
}

.featured-nav-arrows button.slick-disabled:hover {
  background: transparent;
}

.featured-progress-bar {
  flex-grow: 1;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.15);
  position: relative;
  border-radius: 2px;
}

.featured-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  /* controlled by JS */
  background-color: #fff;
  transition:
    left 0.3s ease,
    width 0.3s ease;
  border-radius: 2px;
}

/* story */

.story-container {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

.story {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.block-header {
  font-size: clamp(2rem, 5vw, 56px);
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1.1;
}

.sub-title {
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.block-cta-details__detail {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}


.block-cta-details__detail h3 {
  font-size: 30px;
  font-family: "Barlow Condensed", sans-serif;
}

.block-cta-details__detail p {
  font-size: 18px;
}

.why-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon svg {
  height: 2.1rem;
  width: 2.1rem;
  color: #fff;
}

.icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.why-content {
  flex: 1 1 0%;
}

/* Different background color for each icon */
.block-cta-details__detail:nth-child(1) .icon {
  background: #ff6b6b;
}

.block-cta-details__detail:nth-child(2) .icon {
  background: #4ecdc4;
}

.block-cta-details__detail:nth-child(3) .icon {
  background: #1a73e8;
}

.block-cta-details__detail:nth-child(4) .icon {
  background: #f4a261;
}

.block-cta-details__detail:nth-child(5) .icon {
  background: #2a9d8f;
}

.block-cta-details__detail:nth-child(6) .icon {
  background: #9b5de5;
}


@media (max-width: 767px) {


  .block-cta-details__detail h3 {
    font-size: 24px;
  }
}

/* destination section */
/* â”€â”€â”€ SECTION WRAPPER â”€â”€â”€ */
.destinations-section {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 620px;
  overflow: hidden;
  background: #1a1a1a;
}

/* â”€â”€â”€ LEFT PANEL â”€â”€â”€ */
.left-panel {
  position: relative;
  flex: 0 0 38%;
  max-width: 38%;
  overflow: hidden;
}

.left-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1530866495561-507c9faab2ed?w=900&q=80") center/cover no-repeat;
  filter: brightness(0.55);
  transform: scale(1.04);
  transition: transform 8s ease;
}

.destinations-section:hover .left-bg {
  transform: scale(1);
}

.left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0.75) 100%);
}

.left-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
}


.section-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 36px;
}


/* â”€â”€â”€ RIGHT PANEL (SLIDER) â”€â”€â”€ */
.right-panel {
  flex: 0 0 62%;
  max-width: 62%;
  background: #1a1a1a;
  padding: 28px 30px 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}


/* â”€â”€â”€ CARD COLUMN (2 stacked cards) â”€â”€â”€ */
.card-col {
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  height: 540px;
}

/* â”€â”€â”€ DESTINATION CARD â”€â”€â”€ */
.dest-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  flex: 1;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.dest-card:hover img {
  transform: scale(1.06);
}

/* dark gradient at bottom */
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

/* â”€â”€â”€ CARD LABEL â”€â”€â”€ */
.card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.card-label span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.card-label svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dest-slider .slick-slide {
  padding: 0 10px;
}

/* â”€â”€â”€ CUSTOM ARROWS â”€â”€â”€ */
.custom-arrows {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.arrow-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.arrow-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Slider Controls Bottom */
.dest-slider-controls {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 25px;
}

.dest-nav-arrows {
  display: flex;
  gap: 12px;
}

.dest-nav-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.dest-nav-arrows button:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.dest-nav-arrows button.slick-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.2);
}

.dest-nav-arrows button.slick-disabled:hover {
  background: transparent;
}

.dest-progress-bar {
  flex-grow: 1;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.15);
  position: relative;
  border-radius: 2px;
}

.dest-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  /* controlled by JS */
  background-color: #fff;
  transition:
    left 0.3s ease,
    width 0.3s ease;
  border-radius: 2px;
}


/* blog */

.blog {
  padding-top: 60px;
  padding-bottom: 60px;
}

.blog-card__inner {
  padding-bottom: 1.5rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card__image {
  position: relative;
  padding-bottom: 56.25%;
}

.blog-card__image a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__categories {
  display: flex;
}

.blog-card__title {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-family: Karma, serif;
}

.blog-card__title a {
  color: inherit;
}

.blog-card__meta {
  font-weight: 400;
  font-size: .75rem;
  line-height: 1rem;
  font-family: Karma, serif;

}



.site-footer {
  padding: 70px 0 50px;
}

@media (max-width: 991px) {
  .site-footer {
    padding: 50px 0 30px;
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .phone-group {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom-right {
    justify-content: center;
    margin-top: 15px;
  }
}

/* â”€â”€ Logo â”€â”€ */
.footer-logo {
  display: block;
  margin-bottom: 28px;
}

.footer-logo img {
  width: 140px;
  height: auto;
}

/* â”€â”€ Phone numbers â”€â”€ */
.phone-group {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.phone-block .phone-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.phone-block .phone-number {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.phone-block .phone-number:hover {
  color: var(--color-accent);
  text-decoration: none;
}

/* â”€â”€ Social Icons â”€â”€ */
.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.social-icon:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
}


/* â”€â”€ Nav Column Headings â”€â”€ */
.footer-nav-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* â”€â”€ Nav Links â”€â”€ */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 18px;
}

.footer-nav-list a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-dark-gray);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-nav-list a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-nav-list a .ext-icon {
  font-size: 11px;
  opacity: 0.7;
}

/* â”€â”€ Newsletter â”€â”€ */
.newsletter-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.newsletter-desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.65;
  margin-bottom: 22px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  outline: none;
}

.newsletter-input::placeholder {
  color: #aaa;
}

.newsletter-input:focus {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.3);
}


.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 0 0;
  margin-top: 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-bottom-left p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.8;
  margin: 0;
  font-family: Karma, serif;
  text-align:left;

}

.footer-bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-bottom-right a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-right a:hover {
  color: var(--color-dark-gray);
  text-decoration: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       RESPONSIVE
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 30px;
  }

  .phone-group {
    gap: 24px;
  }

  .footer-bottom-right {
    justify-content: flex-start;
    gap: 16px;
    margin-top: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}




.breadcrumb-bar {
  background: var(--sand);
  border-bottom: 1px solid Â£e5e0d8;
  padding: 11px 0;
  font-size: 13px;
  color: Â£6b7280;
}

.breadcrumb-bar a {
  color: #6b7280;
  text-decoration: none;
}

.breadcrumb-bar a:hover {
  color: var(--color-accent);
}

.breadcrumb-bar span {
  margin: 0 6px;
  opacity: .5;
}

.trip-header {
  text-align: center;
}

.trip-title {
    font-size: 60px;
    font-weight: 700;
    font-family: "Karma", serif;
    margin: 10px 0 24px;
    width: 60%;
    margin-inline: auto;
}

.adventure-single__details-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 40px;
  margin-top: 1rem;
}

.adventure-single__jump-link {
  position: relative;
}

*+.adventure-single__jump-link::before {
  content: "";
  display: block;
  height: .875rem;
  border-left: 1px solid #000;
  opacity: .5;
  position: absolute;
  left: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.adventure-single__reviews {
  flex-basis: auto;
  margin-top: 0;
  position: relative;
}

.adventure-single__stars {
  display: inline-flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  gap: .1875rem;
  color: #ee7623;
}

.adventure-single__details-bottom {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: clamp(2.375rem, 1.7768691589rem + 1.246105919vw, 2.875rem);
}

.adventure-single__details-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(.75rem, .4509345794rem + .6230529595vw, 1rem);
  line-height: 1rem;
  letter-spacing: .0625rem;
  display: block;
  margin-bottom: .5rem;
  text-transform: uppercase;
}

.adventure-single__details-value {
  font-size: 20px;
  font-family: "karma", serif;
}

.adventure-single__details-bottom>span {
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}

@media (min-width: 62rem) {
  .adventure-single__details-bottom>span:first-child {
    padding-left: 0;
  }

  .adventure-single__details-bottom>span:nth-child(n+2) {
    border-left: 6px solid var(--color-accent);
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 6px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
  margin-top: 60px;
}

.gallery-grid .g-main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-grid .g-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #ddd;
}

.gallery-grid .g-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gallery-grid .g-cell:hover img {
  transform: scale(1.05);
}

#gallery img{
    height:300px;
    width:100%;
    object-fit:cover;
}


.trip-tabs {
  border-bottom: none;
  margin-top: 24px;
}

.trip-tabs .nav-link {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 20px;
  border-radius: 0;
  background: none;
  transition: color .2s, border-color .2s;
}

.trip-tabs .nav-link:hover,
.trip-tabs .nav-link.active {
  color: var(--red);
  border-bottom-color: var(--color-accent);
}

.sticky-tabs {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-dark-gray);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.detail-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}


.highlight-ul li {
  position: relative;
}

.highlight-ul>li::before {
  content: "\f00c";
  /* Font Awesome check icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  /* required for solid icons */
  position: absolute;
  left: -1.875rem;
  top: 0;
  color: var(--color-primary-dark);
}

.overview ul li {
  font-family: Karma, serif;
  font-weight: 400;
  font-size: clamp(1rem, .7009345794rem + .6230529595vw, 1.25rem);
  line-height: clamp(1.5rem, .9018691589rem + 1.246105919vw, 2rem);
  margin-bottom: .5rem;
}

.detail-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 130px;
}
.itinerary .overview-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 60px;
}

.detail-sub-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.itinerary-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}


.itinerary-step {
    position: relative;
    z-index: 1;
    margin-bottom: 2px;
}

.itinerary-step .step-header {
    display: flex;
    align-items: center;
    justify-content:space-between;
    gap: 16px;
    padding: 16px 0;
    cursor: pointer;
    border-bottom: 1px solid #EEEAE2;
    transition: background .15s;
}
.itinerary-step .step-header:hover {
    background: rgba(12, 26, 46, .03);
}
.itinerary-step.open .step-header {
    border-bottom-color: transparent;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-primary-dark);
    background:var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    color: #2C6E6A;
    position: relative;
    z-index: 2;
    transition: background .2s, color .2s;
}
.itinerary-step.open .step-dot {
    background: var(--color-primary-dark);
    color: white;
}

.step-title {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0;
    transition: color .2s;
}
.itinerary-step.open .step-title {
    color: var(--color-primary-dark);
}

.step-chevron {
    width: 18px;
    height: 18px;
    color: #C9C9C9;
    flex-shrink: 0;
    transition: transform .25s ease, color .25s;
}
.itinerary-step.open .step-chevron {
    transform: rotate(180deg);
    color: #2C6E6A;
}

.step-body {
    display: none;
    padding: 12px 0 20px 20px;
    border-bottom: 1px solid #EEEAE2;
    animation: itinFadeIn .2s ease both;
}
.itinerary-step.open .step-body {
    display: block;
}
.step-body p, .step-body li {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    font-weight: 400;
}

@keyframes itinFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.map-wrapper {
  position: sticky;
  top: 30px;
}


.iti-img img{
    border-radius:15px;
    position: sticky;
    top: 150px;
}


.chart-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 28px 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
  }

  .chart-header { margin-bottom: 24px; }
  .chart-header h2 { font-size: 18px; font-weight: 700; color: #1a2332; }
  .chart-header p  { font-size: 12px; color: #8c99a8; margin-top: 4px; }

  .chart-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 0;
    height: 220px;
    border-left: 1.5px solid #e2e8f0;
    border-bottom: 1.5px solid #e2e8f0;
    padding: 0 8px 0 40px;
  }

  /* Y-axis labels */
  .y-labels {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    padding-bottom: 0;
  }
  .y-label {
    font-size: 9px;
    color: #aab4c0;
    font-weight: 600;
    line-height: 1;
    transform: translateY(50%);
  }

  /* Horizontal gridlines */
  .gridlines {
    position: absolute;
    left: 40px; right: 8px; top: 0; bottom: 0;
    pointer-events: none;
  }
  .gridline {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: #f0f2f5;
  }

  /* Bars */
  .bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    cursor: pointer;
  }

  .bar {
    width: 70%;
    border-radius: 4px 4px 0 0;
    transition: filter .15s, transform .15s;
    position: relative;
    min-height: 4px;
  }
  .bar-group:hover .bar {
    filter: brightness(1.12);
    transform: scaleY(1.03);
    transform-origin: bottom;
  }

  .bar-val {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    font-weight: 700;
    color: #4a5568;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .15s;
  }
  .bar-group:hover .bar-val { opacity: 1; }

  /* X-axis label */
  .bar-label {
    margin-top: 6px;
    font-size: 9px;
    color: #8c99a8;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
  }
  .bar-label .day-num {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #4a5568;
  }

  /* Tooltip */
  .tooltip {
    position: fixed;
    background: #1a2332;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s;
    z-index: 100;
    max-width: 220px;
    line-height: 1.6;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
  }
  .tooltip.show { opacity: 1; }
  .tooltip strong { display: block; font-size: 13px; margin-bottom: 4px; color: #e2c97e; }
  .tooltip .tt-alt { font-size: 11px; color: #a0aec0; }

  /* Legend */
  .legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #f0f2f5;
  }
  .legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #4a5568;
  }
  .legend-dot {
    width: 10px; height: 10px;
    border-radius: 3px;
  }


/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 51, 0.6);
  /* var(--color-primary-dark) with opacity */
  z-index: 0;
}

.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.4);
}

.page-breadcrumb {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.page-breadcrumb a {
  transition: color var(--transition-fast);
}

.page-breadcrumb a:hover {
  color: var(--color-accent);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background-color: var(--color-light-gray);
}

.contact-info-col {
  padding-right: 3rem;
}

.contact-info-block {
  background-color: var(--color-white);
  padding: 25px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.contact-info-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-info-block .icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(200, 55, 27, 0.1);
  /* light accent */
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-right: 20px;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.contact-info-block:hover .icon-box {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.contact-info-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 5px;
}

.contact-info-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--color-dark-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-info-link {
  color: var(--color-primary-dark);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-info-link:hover {
  color: var(--color-accent);
}

/* Social Icons specific to Contact Page */
.contact-social-icons .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
  margin-right: 10px;
  font-size: 16px;
  transition: all var(--transition-base);
}

.contact-social-icons .social-icon:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrapper {
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  /* height: 100%; */
  padding: 30px;
}

.contact-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 30px;
}

.form-group-custom {
  position: relative;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  display: block;
}

.form-control {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--color-dark-gray);
  background-color: #f8fafc;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(200, 55, 27, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: #a0aec0;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-icon {
  position: absolute;
  right: 16px;
  top: 42px;
  /* Adjusted to vertically center based on label height + input padding */
  font-size: 12px;
  color: #a0aec0;
  pointer-events: none;
}

.submit-btn {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.submit-btn:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 55, 27, 0.3);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  width: 100%;
  display: block;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 768px) {
  .destinations-section {
    flex-direction: column;
    min-height: auto;
  }

  .left-panel,
  .right-panel {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .left-panel {
    height: auto;
    min-height: 250px;
  }

  .left-content {
    padding: 40px 20px;
    align-items: center;
    text-align: center;
  }

  .section-desc {
    max-width: 100%;
  }

  .right-panel {
    padding: 30px 15px;
  }

}

/* Responsive */
@media (max-width: 1400px) {
  .trip-body {
    padding: 20px 20px 15px;
  }

  .trip-name {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .trip-card-wrapper {
    padding: 0 10px;
  }

  .featured-container {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .featured-section {
    padding: 70px 0;
  }

  .featured-slider-controls {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 15px;
  }

  .featured-nav-arrows {
    justify-content: center;
  }
}

/* ============================================
   TRIP DETAILS
   ============================================ */
.need-to-know {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-tabs {
  border-bottom: 1px solid #e0e0e0;
}

.custom-tabs .nav-item {
  margin-bottom: -1px;
}

.custom-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--color-primary-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 20px;
  background-color: transparent;
  border-radius: 0;
  transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
  color: var(--color-accent);
  border-color: transparent;
}

.custom-tabs .nav-link.active {
  color: white;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

@media (max-width: 767px) {
  .custom-tabs .nav-link.active {
    border-radius: 4px;
  }
}

.included-list,
.not-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included-list li,
.not-included-list li {
  font-family: "karma", serif;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--color-primary-dark);
  position: relative;
}

.included-list li i {
  color: var(--color-primary-dark);
  margin-right: 10px;
  font-size: 18px;
}

.not-included-list li, .included-list li  {
  padding-left: 20px;
}

.not-included-list li::before, .included-list li:before {
  content: "â€¢";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary-dark);
  font-size: 20px;
  line-height: 1.6;
}

.border-right-md {
  border-right: 1px solid #dee2e6;
}

.info-wrapper {
    padding: 30px;
    border-radius: 10px;
    background:#f6f6f6;
}

/*.info-wrapper.boat{*/
/*    background:#9EC0D4;*/
/*}*/
/*.info-wrapper.weather{*/
/*    background:#E4D4A6;*/
/*}*/
/*.info-wrapper.pre{*/
/*    background:#C2A3ED;*/
/*}*/

.info-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:20px
}

@media (max-width: 767px) {
  .border-right-md {
    border-right: none;
  }
  .info-wrapper{
    width:100%;
}
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.custom-accordion .btn-link:hover,
.custom-accordion .btn-link:focus {
  text-decoration: none;
}

.custom-accordion .btn-link[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--color-accent);
}

/* ============================================
   ABOUT US PAGE
   ============================================ */

/* Our Story Section */
.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 2;
  font-family: 'Inter', sans-serif;
}

.about-experience-badge h4 {
  font-size: 32px;
}

.about-experience-badge p {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}

.story-text {
  font-family: 'Karma', serif;
  font-size: 18px;
  color: var(--color-dark-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .about-experience-badge {
    right: 20px;
  }
}





/* Core Values Section */
.value-card {
  background-color: var(--color-white);
  padding: 40px 25px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(200, 55, 27, 0.1);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.value-card:hover .value-icon {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.value-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 15px;
}

.value-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--color-dark-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Company Stats Section */
.company-stats {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

.stat-item {
  padding: 10px;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Team Section */
.team-card {
  transition: transform var(--transition-base);
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 5px;
}

.team-role {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.team-desc {
  font-family: 'Karma', serif;
  font-size: 16px;
  color: var(--color-dark-gray);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}


/* blog section */
.post-single__title {
  font-size: 60px;
  color: var(--color-primary-dark);
  font-family: "karma", serif;
  text-align: center;
}

/* ============================================
   TEAM PAGE STYLES (PREMIUM)
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.team-card-v2 {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border-bottom: 4px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-card-v2__image {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.team-card-v2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card-v2:hover .team-card-v2__image img {
  transform: scale(1.08);
}

.team-card-v2__content {
  padding: 25px;
  background: #fff;
  flex-grow: 1;
}

.team-card-v2__name {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
  font-family: 'Barlow Condensed', sans-serif;
}

.team-card-v2__role {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray);
  font-family: 'Inter', sans-serif;
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

li.primary-nav__item.navItem {
  position: relative;
}

/* ============================================
   REVIEWS PAGE STYLES
   ============================================ */
.review-stats {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
}

.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--header-border);
}

.rating-avg {
  font-size: 64px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.rating-stars {
  color: #ffc107;
  font-size: 20px;
  margin: 10px 0;
}

.review-card {
  background: var(--color-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform var(--transition-base);
  border-top: 4px solid transparent;
}

.review-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--color-accent);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.review-location {
  font-size: 13px;
  color: var(--color-gray);
}

.review-text {
  font-family: 'Karma', serif;
  font-size: 16px;
  color: var(--color-dark-gray);
  line-height: 1.6;
  font-style: italic;
}

/* Review Form */
.review-form-container {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 60px 40px;
  border-radius: 15px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  padding: 12px 15px;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: none;
}

.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.star-rating-input input {
  display: none;
}

.star-rating-input label {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input:checked~label {
  color: #ffc107;
}

@media (max-width: 768px) {
  .rating-summary {
    border-right: none;
    border-bottom: 1px solid var(--header-border);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .hero-section {
    position: relative;
    width: 100%;
    height: 300px;
    min-height: 300px;
    background-color: #000;
    overflow: hidden;
  }

  section.featured-section {
    padding-top: 0;
  }
}




/* country */

.hero-banner {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-banner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 100%);
  opacity: .5;
  background-blend-mode: multiply;
}

.hero-banner h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, -.8878504673rem + 8.0996884735vw, 6.25rem);
  line-height: clamp(2.5rem, -.4906542056rem + 6.230529595vw, 5rem);
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 99;
}

/* ============================================
   ANIMATIONS & REVEAL EFFECTS
   ============================================ */

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Reveal Utilities */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger delays for grid items */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* Enhanced Button Hover */
.btn-primary {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover {
  box-shadow: 0 10px 20px rgba(222, 54, 67, 0.3) !important;
  letter-spacing: 0.08em !important;
}

/* Subtle Floating Animation for pagination labels */
.slider-nav-current,
.slider-nav-total {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}


.adventure-details {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}



.adv-cell {
    background: #ffffff;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.adv-cell__label {
  font-size: 10px;
  color: #2f2f2f;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

.adv-cell__value {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a18;
  line-height: 1.2;
  white-space: nowrap;
}

.adv-cell__value--small {
  font-size: 12px;
  white-space: normal;
}

.adv-cell__value a {
  color: #2563eb;
  text-decoration: none;
}

.adv-cell__value a:hover {
  text-decoration: underline;
}

.adv-price {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a18;
}

/* â”€â”€ Tooltip â”€â”€ */
.tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.tooltip-trigger {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #d1cfc8;
  color: #9b9890;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

.tooltip-box {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #d1cfc8;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 400;
  color: #6b6966;
  width: 210px;
  line-height: 1.5;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tooltip-wrap:hover .tooltip-box {
  display: block;
}

.adv-cell__value--flex {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 900px) {
  .adv-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 520px) {
  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  li.primary-nav__item {
    width: 100%;
  }
}


.dif-row img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Premium Activity Tabs Section (Dark Theme)
   ========================================================================== */

.activity-section {
  background-color: #0c0f17;
  padding-bottom: 0px;
  position: relative;
  overflow: hidden;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Full Width Tabs Bar */
.activity-tabs-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.activity-tab {
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: background-color 0.3s ease;
}

.activity-tab:last-child {
  border-right: none;
}

.activity-tab-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.activity-tab:hover .activity-tab-text {
  color: rgba(255, 255, 255, 0.85);
}

/* Active Tab Highlight Underline */
.activity-tab.active {
  background-color: rgba(255, 255, 255, 0.02);
}

.activity-tab.active .activity-tab-text {
  color: #fff;
}

.activity-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  /* Crimson Accent */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.activity-tab.active::after {
  transform: scaleX(1);
}

/* Tab Panels Container */
.activity-content-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}

.activity-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.activity-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Inner Layout */
.activity-panel-inner {
  display: flex;
  align-items: stretch;
  gap: 60px;
  padding-top: 75px;
  padding-bottom: 75px;
  padding-inline: 15px;
}

/* Left Info panel */
.activity-info {
  flex: 0 0 52%;
  max-width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.activity-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-bottom: 25px;
}

.activity-title {
  font-family: "Karma", serif;
  font-size: clamp(2.5rem, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}

.activity-title-line {
  width: 45px;
  height: 3px;
  background-color: var(--color-primary);
  margin-bottom: 35px;
}

.activity-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 45px;
  max-width: 540px;
}

/* Button CTA */
.activity-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-primary);
  color: #fff !important;
  padding: 18px 45px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 4px;
  align-self: flex-start;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(222, 54, 67, 0.25);
  border: none;
  text-decoration: none !important;
}

.activity-btn:hover {
  background-color: #c72e39;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(222, 54, 67, 0.35);
}

.activity-btn .arrow {
  display: inline-block;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.activity-btn:hover .arrow {
  transform: translateX(4px);
}

/* Right Media panel */
.activity-media {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  align-items: center;
}

.activity-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.activity-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}

.activity-image-wrapper img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Sub-slide navigation overlap */
.media-nav-buttons {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 5;
  display: flex;
  gap: 1px;
  /* seamless adjacent block look */
}

.media-nav-buttons button {
  width: 45px;
  height: 45px;
  background-color: rgba(12, 15, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}

.media-nav-buttons button:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* Bottom Stats Area */
.activity-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
}

.stat-col {
  padding: 45px 30px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.stat-col:last-child {
  border-right: none;
}

.stat-number {
  font-family: "Karma", serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--color-primary);
  /* Crimson stat highlight */
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

/* Tablet mode */
@media (max-width: 991px) {
  .activity-tabs-container {
    grid-template-columns: repeat(2, 2fr);
  }

  .activity-tab {
    padding: 20px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .activity-panel-inner {
    flex-direction: column-reverse;
    gap: 45px;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .activity-info,
  .activity-media {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .activity-image-wrapper {
    aspect-ratio: 16 / 10;
  }
}

/* Mobile mode */
@media (max-width: 767px) {
  .activity-tabs-container {
    grid-template-columns: 1fr;
  }

  .activity-tab {
    border-right: none;
    padding: 16px 10px;
  }

  .activity-stats {
    grid-template-columns: 1fr;
  }

  .stat-col {
    padding: 30px 15px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat-col:last-child {
    border-bottom: none;
  }

  .activity-title {
    font-size: 29px;
  }

  .activity-desc {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

/* ==========================================================================
   Premium Why Diverse Grid Layout
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-top: 1px solid #eef0f3;
  border-left: 1px solid #eef0f3;
  margin-top: 20px;
}

.why-grid-item {
  position: relative;
  background: #fff;
  border-right: 1px solid #eef0f3;
  border-bottom: 1px solid #eef0f3;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 330px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

/* Watermark background numbers */
.item-watermark {
  position: absolute;
  right: 10px;
  bottom: -25px;
  font-family: "Karma", serif;
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
  color: rgba(222, 54, 67, 0.025);
  /* Extremely subtle red brand watermark */
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: all 0.4s ease;
}

/* Header line: 01 â”€â”€â”€ LEGACY */
.item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  font-family: "Karma", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.item-num {
  color: var(--color-primary);
  /* Brand crimson color */
}

.item-divider {
  width: 25px;
  height: 1px;
  background-color: rgba(222, 54, 67, 0.35);
  /* Subtle brand divider line */
}

.item-label {
  color: #7b8599;
}

/* Title (karma serif font) */
.item-title {
  font-family: "Karma", serif;
  font-size: 25px;
  font-weight: 700;
  color: #151c2d;
  line-height: 1.28;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

/* Description text */
.item-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #505c73;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* Learn More CTA link */
.item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  text-transform: uppercase;
  text-decoration: none !important;
  margin-top: auto;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.item-link .arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.item-link:hover {
  color: #c72e39;
}

.item-link:hover .arrow {
  transform: translateX(5px);
}

/* Interactivity (Hov / Active highlights) */
.why-grid-item:hover,
.why-grid-item.active {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
  z-index: 5;
  box-shadow: 0 15px 35px rgba(22, 28, 45, 0.08);
}

.why-grid-item:hover .item-watermark,
.why-grid-item.active .item-watermark {
  color: rgba(222, 54, 67, 0.05);
  /* slightly more visible watermark on hover */
  transform: scale(1.03) translateY(-3px);
}

.why-grid-item:hover .item-title,
.why-grid-item.active .item-title {
  color: #000;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

/* 2x3 Grid for Medium Devices (Tablets) */
@media (max-width: 991px) and (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid-item {
    padding: 35px 30px;
    min-height: 310px;
  }
}

/* 1x6 Grid for Mobile Devices */
@media (max-width: 767px) {
  .why-grid {
    grid-template-columns: 1fr;
    border-left: none;
    border-right: none;
  }

  .why-grid-item {
    padding: 35px 25px;
    min-height: auto;
    border-left: 1px solid #eef0f3;
  }
}

.pattern-bg {
  background-image: url(https://summitriver-lodge.com/wp-content/themes/starter/imagio_s/img/elements/background-texture-1.png);
  background-color:#fcfaf1;
  background-repeat:repeat;
}
.go-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.go-top-btn:hover {
    background: #0b5ed7;
    transform: translateY(-3px);
}

/* â”€â”€ LEFT PANEL â”€â”€ */

    .quiz-main{
        background: #0c1a27;
        color: #fff;
        /* min-height: 100vh; */
        padding-top: 60px;
        padding-bottom:60px;
    }

   .quiz-wrap { max-width: 700px; margin: 0 auto; }

  .quiz-header { text-align: center; margin-bottom: 48px; }
  .quiz-header h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
  .quiz-header p { color: rgba(255,255,255,0.45); font-size: 15px; }

  .progress-bar-wrap { background: rgba(255,255,255,0.07); border-radius: 99px; height: 4px; margin-bottom: 40px; }
  .progress-bar { height: 4px; border-radius: 99px; background: #38BDF8; transition: width 0.4s ease; width: 0%; }

  @keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

  /* All question screens hidden by default */
  .screen { display: none; }
  .screen.active { display: block; animation: fadeUp 0.35s ease both; }

  .step-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #38BDF8; margin-bottom: 12px; }
  .q-text { font-size: 22px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
  .q-hint { font-size: 14px; color: rgba(255,255,255,0.38); margin-bottom: 24px; }

  .options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .opt {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px; border-radius: 12px; cursor: pointer;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.08);
    transition: all 0.18s ease; text-align: left; width: 100%;
    font-family: 'DM Sans', sans-serif; color: #fff;
  }
  .opt:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.07); }
  .opt.selected { border-color: #38BDF8; background: rgba(56,189,248,0.1); }
  .opt-icon { font-size: 22px; flex-shrink: 0; width: 40px; text-align: center; }
  .opt-label { font-size: 16px; font-weight: 600; }
  .opt-desc { font-size: 13px; color: rgba(255,255,255,0.38); margin-top: 2px; }
  .opt.selected .opt-desc { color: rgba(56,189,248,0.7); }

  .btn-row { display: flex; gap: 12px; align-items: center; }
  .btn-continue {
    padding: 14px 36px; border-radius: 10px; border: none;
    background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.3);
    font-size: 15px; font-weight: 600; cursor: not-allowed;
    font-family: 'DM Sans', sans-serif; transition: all 0.2s ease;
  }
  .btn-continue.ready { background: #0891B2; color: #fff; cursor: pointer; }
  .btn-continue.ready:hover { background: #0e7490; transform: translateY(-2px); }
  .btn-back {
    padding: 14px 24px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.1);
    background: transparent; color: rgba(255,255,255,0.35);
    font-size: 15px; font-weight: 600; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: all 0.2s ease;
  }
  .btn-back:hover { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); }

  /* Results */
  #results { display: none; margin-top: 56px; animation: fadeUp 0.4s ease both; }
  .results-header { text-align: center; margin-bottom: 32px; }
  .results-header h2 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
  .results-header p { color: rgba(255,255,255,0.4); font-size: 15px; }

  .package-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media (max-width: 560px) { .package-grid { grid-template-columns: 1fr; } }

  .package-card {
    border-radius: 16px; padding: 24px; border: 1.5px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03); transition: transform 0.2s ease, border-color 0.2s ease;
    position: relative; overflow: hidden;
  }
  .package-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.16); }
  .package-card.top-pick { border-color: #38BDF8; background: rgba(56,189,248,0.06); }
  .top-badge {
    position: absolute; top: 16px; right: 16px;
    background: #38BDF8; color: #000; font-size: 10px;
    font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 99px;
  }
  .card-emoji { font-size: 36px; margin-bottom: 14px; }
  .card-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
  .card-type { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; opacity: 0.5; }
  .card-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 18px; }
  .card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
  .card-tag { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 99px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); }
  .card-meta { display: flex; gap: 16px; margin-bottom: 20px; }
  .card-meta-item { font-size: 12px; color: rgba(255,255,255,0.35); }
  .card-meta-item span { display: block; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); margin-top: 2px; }
  .card-btn {
    display: block; width: 100%; padding: 12px; border-radius: 9px; border: none;
    background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.7);
    font-size: 14px; font-weight: 600; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: all 0.2s ease;
  }
  .package-card.top-pick .card-btn { background: #0891B2; color: #fff; }
  .card-btn:hover { opacity: 0.85; }

  .restart-row { text-align: center; margin-top: 32px; }
  .btn-restart {
    background: none; border: 1.5px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.35); padding: 12px 28px; border-radius: 10px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: all 0.2s ease;
  }
  .btn-restart:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
  
  
  
    .cta-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 80%;
        width: 100%;
        margin-inline: auto;
    }

  /* â”€â”€ Left card â”€â”€ */
  .cta-grid .card-left {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 16px;
    padding: 28px 32px;
  }

  .cta-grid .card-label {
    font-size: 9px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .cta-grid .card-left h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0c1a2e;
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .cta-grid .card-left p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 20px;
  }

  .cta-grid .pricing-row {
    display: flex;
    gap: 8px;
  }

  .cta-grid .pricing-pill {
    flex: 1;
    background: rgba(12, 26, 46, 0.05);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
  }

  .cta-grid .pricing-pill.highlight {
    background: #0c1a2e;
  }

  .cta-grid .pill-label_new {
    font-size: 9px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
  }

  .cta-grid .pricing-pill.highlight .pill-label {
    color: rgba(201, 168, 76, 0.75);
  }

  .cta-grid .pill-value {
    font-size: 12px;
    font-weight: 700;
    color: #0c1a2e;
    line-height: 1.4;
  }

  .cta-grid .pricing-pill.highlight .pill-value {
    color: #fff;
  }

  /* â”€â”€ Right card â”€â”€ */
  .cta-grid .card-right {
    background: #0c1a2e;
    border-radius: 16px;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
  }

  .cta-grid .card-right::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.18) 0%, transparent 65%);
    pointer-events: none;
  }

  .cta-grid .card-right .card-label {
    color: rgba(201, 168, 76, 0.7);
    position: relative;
    z-index: 1;
  }

  .cta-grid .card-right h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.25;
    position: relative;
    z-index: 1;
  }

  .cta-grid .card-right p {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
  }

  .cta-grid .contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
  }

  .cta-grid .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .cta-grid .contact-key {
    font-size: 11px;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.65);
    min-width: 68px;
    letter-spacing: 0.5px;
  }

  .cta-grid .contact-val {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    font-weight: 400;
  }

  @media (max-width: 600px) {
    .cta-grid { grid-template-columns: 1fr; }
  }
  
   /*enquiry*/

    #formScreen {
    width: 80%;
    margin-inline: auto;
}
  /* Form */
  .form-wrap { padding: 28px 24px 0; }
  .field-label {
    display: block; font-size: 11px; font-weight: 600;
    color: var(--color-primary); letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 7px; transition: color .15s;
  }
  .field-label .opt { font-weight: 400; letter-spacing: 0; text-transform: none; font-size: 11px; opacity: .6; }
  .form-control {
    background: #fff !important;
    border: 1.5px solid var(--smoke) !important;
    border-radius: 14px !important;
    padding: 15px 18px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important; color: var(--color-primary) !important;
    height: auto !important;
    transition: border-color .15s, box-shadow .15s !important;
    -webkit-appearance: none; appearance: none;
  }
  .form-control:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(184,146,42,.1) !important;
  }
  .form-control::placeholder { color: #B8B0A6 !important; }
  select.form-control {
    cursor: pointer;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    padding-right: 44px !important;
  }
  textarea.form-control { resize: none; line-height: 1.7 !important; min-height: 100px !important; }

  /* Button */
  .btn-submit {
    width: 100%; background: var(--color-primary); border: none;
    border-radius: 14px; padding: 17px;
    font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600;
    color: #fff; cursor: pointer; transition: background .2s, opacity .2s;
  }
  .btn-submit:disabled { background: rgba(12,26,46,.25); cursor: default; }
  .btn-submit:not(:disabled):hover { background: #142040; }

  /* Divider */
  .or-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0 14px; }
  .or-divider hr { flex: 1; border-color: var(--color-primary); margin: 0; }
  .or-divider span { font-size: 12px; color: var(--color-primary); white-space: nowrap; }

  /* Contact buttons */
  .btn-contact {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    border-radius: 12px; padding: 12px; text-decoration: none;
    transition: opacity .15s;
  }
  .btn-contact:hover { opacity: .85; text-decoration: none; }
  .btn-email { background: #fff; border: 1.5px solid var(--color-primary); }
  .btn-email span.label { font-size: 13px; font-weight: 600; color: var(--color-primary); }
  .btn-wa { background: #E8F8F0; border: 1.5px solid rgba(37,211,102,.3); }
  .btn-wa span.label { font-size: 13px; font-weight: 600; color: #128C7E; }

  /* Footer note */
  .footer-note { font-size: 11px; color: var(--color-primary); text-align: center; margin-top: 16px; line-height: 1.6; opacity: .7; }

  /* Bottom area */
  .bottom-area { background: #f5f6f8; padding: 20px 24px 36px; }

  /* Success screen */
  #success { display: none; }
  .check-circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--teal); display: flex; align-items: center;
    justify-content: center; font-size: 28px; color: #fff;
    margin: 0 auto 24px; animation: checkPop .5s cubic-bezier(.34,1.56,.64,1) both;
  }
  @keyframes checkPop {
    0%   { transform: scale(0) rotate(-10deg); }
    65%  { transform: scale(1.15) rotate(2deg); }
    100% { transform: scale(1) rotate(0deg); }
  }
  @keyframes fadeUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
  .fade-up { animation: fadeUp .4s ease both; }
  
  
  
  
  
  
  
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --brand:       #c8371b;
    --brand-dark:  #a02c14;
    --brand-light: #f4e5e2;
    --text-main:   #1a1210;
    --text-muted:  #7a6b67;
    --text-subtle: #b8a8a4;
    --bg:          #fdfaf9;
    --surface:     #ffffff;
    --border:      #ede4e1;
    --radius:      12px;
  }  
/* â”€â”€ Card wrapper â”€â”€ */
  .adv-card {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    max-width: 680px;
    width: 100%;
    box-shadow: 0 4px 32px rgba(200, 55, 27, 0.07);
    margin: 0 auto;
  }
 
  /* â”€â”€ Header banner â”€â”€ */
  .adv-card__header {
    background: var(--brand);
    padding: 1.5rem 1.75rem 1.25rem;
    position: relative;
    overflow: hidden;
  }
  .adv-card__header::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
  }
  .adv-card__header::before {
    content: '';
    position: absolute;
    right: 40px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
  }
 
  .adv-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
  }
  .adv-tag i { font-size: 13px; }
 
  .adv-card__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.01em;
  }
  .adv-card__subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    margin-top: 4px;
  }
 
  .adv-card__body { padding: 1.5rem 1.75rem; }
 
  .adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
    background: white;
     padding: 20px; 
    border: 0;
  }
 
  .adv-cell {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    cursor: default;
  }
  .adv-cell:hover {
    border-color: var(--brand);
    box-shadow: 0 2px 16px rgba(200,55,27,0.10);
    transform: translateY(-1px);
  }
 
  .adv-cell__icon {
    font-size: 20px;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 2px;
  }
  .adv-cell__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .adv-cell__value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
    white-space:normal;
  }
 
  .adv-cell--price {
    grid-column: 1 / -1;
    background: var(--brand);
    border-color: var(--brand);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: var(--radius);
  }
  .adv-cell--price:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    box-shadow: 0 4px 20px rgba(200,55,27,0.3);
    transform: translateY(-1px);
  }
  .adv-cell--price .adv-cell__icon { color: rgba(255,255,255,0.7); font-size: 24px; }
  .adv-cell--price .adv-cell__label { color: rgba(255,255,255,0.65); font-size: 11px; }
  .adv-cell--price .adv-cell__value {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
  }
  .adv-cell--price .adv-cell__left { display: flex; align-items: center; gap: 12px; }
  .adv-cell--price .adv-cell__info { display: flex; flex-direction: column; gap: 2px; }
  .adv-cell--price .adv-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--brand);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    text-decoration: none;
  }
  .adv-cell--price .adv-cta:hover { background: #fdeee9; transform: scale(1.02); }
  .adv-cell--price .adv-cta i { font-size: 16px; }
 
  .adv-card__footer {
    border-top: 1px solid var(--border);
    padding: 1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
  }
  .adv-card__footer i { color: var(--brand); font-size: 15px; }
 

  
  @media (max-width: 480px) {
    body { padding: 1rem; }
    .adv-card__header { padding: 1.25rem; }
    .adv-card__body { padding: 1.25rem; }
    .adv-grid { grid-template-columns: 1fr 1fr; }
    .adv-cell--price { flex-direction: column; align-items: flex-start; gap: 12px; }
    .adv-cell--price .adv-cta { align-self: stretch; justify-content: center; }
  }
  
  

        /* Typography Helper Classes */
        .da-title {
            font-family: 'Barlow Condensed', sans-serif;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 1.5px;
            color: var(--color-primary);
        }

        .da-subtitle {
            font-family: 'Inter', sans-serif;
            color: var(--color-primary);
            text-transform: uppercase;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 12px;
        }

        .da-body-text {
            font-family: 'Inter', sans-serif;
            color: var(--da-text);
            line-height: 1.8;
            font-weight: 400;
        }

        .da-section-padding {
            padding: 100px 0;
        }

        @media (max-width: 768px) {
            .da-section-padding {
                padding: 60px 0;
            }
        }

        /* Premium Buttons */
        .da-btn {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: var(--da-transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 2px solid transparent;
            text-decoration: none !important;
        }

        .da-btn-primary {
            background: var(--accent-color);
            color: #fff !important;
            box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
        }

        .da-btn-primary:hover {
            background: #e0541e;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
        }

        .da-btn-outline {
            background: transparent;
            border-color: #fff;
            color: #fff !important;
        }

        .da-btn-outline:hover {
            background: #fff;
            color: var(--color-primary) !important;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .da-btn-outline-dark {
            background: transparent;
            border-color: var(--color-primary);
            color: var(--color-primary) !important;
        }

        .da-btn-outline-dark:hover {
            background: var(--color-primary);
            color: #fff !important;
            transform: translateY(-3px);
            box-shadow: var(--da-shadow);
        }

        /* Section 1: Hero Banner */
        .da-hero-banner {
            height: 550px;
            position: relative;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .da-hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(180deg, rgba(14, 42, 71, 0.4) 0%, rgba(14, 42, 71, 0.85) 100%);
            z-index: 1;
        }

        .da-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            max-width: 800px;
            padding: 0 20px;
        }

        .da-hero-breadcrumbs {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
            color: rgba(255, 255, 255, 0.8);
        }

        .da-hero-breadcrumbs a {
            color: #fff;
            text-decoration: none;
            transition: var(--da-transition);
        }

        .da-hero-breadcrumbs a:hover {
            color: var(--accent-color);
        }

        .da-hero-title {
            font-size: clamp(2.2rem, 5vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 20px;
            color: #fff;
        }

        .da-hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            font-weight: 300;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .da-scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            color: #fff;
            text-align: center;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: bounce 2s infinite;
        }

        .da-scroll-down i {
            font-size: 1.5rem;
            margin-top: 8px;
            color: var(--color-accent);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-10px) translateX(-50%); }
            60% { transform: translateY(-5px) translateX(-50%); }
        }

        /* Section 2: Our Story */
        .da-collage-wrapper {
            position: relative;
            padding-right: 40px;
            padding-bottom: 40px;
        }

        .da-collage-img-1 {
            width: 85%;
            height: 480px;
            object-fit: cover;
            border-radius: 5px;
        }

        .da-collage-img-2 {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 50%;
            height: 280px;
            object-fit: cover;
            border-radius: 5px;
            border: 8px solid #fff;
        }

        .da-experience-badge {
            position: absolute;
            left: -20px;
            top: 40px;
            background: var(--color-primary);
            color: #fff;
            text-align: center;
            z-index: 3;
            animation: float-badge 6s ease-in-out infinite;
            width: 160px;
            height: 160px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .da-experience-badge h3 {
            font-size: 2.8rem;
            color: var(--color-accent);
            margin-bottom: 2px;
            font-weight: 800;
            line-height: 1.1;
        }

        .da-experience-badge span {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            line-height: 1.3;
        }

        @keyframes float-badge {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .da-story-checklists {
            margin: 30px 0;
        }

        .da-story-check-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 16px;
            font-size: 1.1rem;
        }

        .da-story-check-item i {
            color: var(--color-accent);
            font-size: 1.2rem;
        }

        /* Section 3: Why Choose Us */
        .da-glass-card {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 15px;
            padding: 40px 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .da-glass-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.85);
            border-color: rgba(255, 107, 53, 0.3);
        }

        .da-card-icon-wrap {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--color-primary) 0%, #1e4d7c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            color: #fff;
            font-size: 1.8rem;
        }

        .da-glass-card:hover .da-card-icon-wrap {
            background: linear-gradient(135deg, var(--color-accent) 0%, #ff8c5e 100%);
            transform: rotate(10deg);
        }

        .da-card-title {
            font-size: 1.4rem;
            margin-bottom: 16px;
        }

        /* Section 4: Statistics */
        .da-stats-section {
            background: var(--color-primary);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .da-stats-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .da-stat-number {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: clamp(3.5rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 8px;
        }

        .da-stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
        }

        /* Section 5: Mission & Vision */
        .da-shapes-container {
            position: relative;
            overflow: hidden;
            background: #F1F5F9;
        }

        .da-shape-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 1;
            opacity: 0.6;
        }

        .da-blob-1 {
            width: 300px;
            height: 300px;
            background: rgba(255, 107, 53, 0.2);
            top: 10%;
            left: 5%;
        }

        .da-blob-2 {
            width: 400px;
            height: 400px;
            background: rgba(14, 42, 71, 0.15);
            bottom: 10%;
            right: 5%;
        }

        .da-mv-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 10px;
            padding: 50px 40px;
            z-index: 2;
            position: relative;
        }

        .da-mv-card:hover {
            transform: translateY(-5px);
        }

        .da-mv-title {
            font-size: 2rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .da-mv-title i {
            color: var(--color-accent);
        }

        /* Section 6: Travel Experience Timeline */
        .da-timeline-container {
            position: relative;
            padding: 60px 0;
        }

        .da-timeline-track {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
            background: rgba(14, 42, 71, 0.1);
            transform: translateY(-50%);
            z-index: 1;
        }

        .da-timeline-progress {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
            z-index: 1;
        }

        .da-timeline-wrapper {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }

        .da-timeline-item {
            text-align: center;
            flex: 1;
            padding: 0 15px;
            position: relative;
        }

        .da-timeline-dot {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #fff;
            border: 4px solid var(--color-primary);
            margin: 0 auto 20px;
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
            cursor: pointer;
            z-index: 3;
            position: relative;
        }

        .da-timeline-item:hover .da-timeline-dot {
            transform: scale(1.4);
            background: var(--color-primary);
            box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.3);
        }

        .da-timeline-year {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--color-primary);
            margin-bottom: 6px;
        }

        .da-timeline-desc {
            font-size: 0.95rem;
            color: var(--da-text-light);
            font-weight: 500;
        }

        @media (max-width: 991px) {
            .da-timeline-scroll-wrap {
                overflow-x: auto;
                padding-bottom: 20px;
            }

            .da-timeline-wrapper {
                min-width: 800px;
            }

            .da-timeline-track {
                width: 800px;
            }
        }

        /* Section 7: Meet Our Team */
        .da-team-card {
            background: #fff;
            border-radius: var(--da-border-radius);
            overflow: hidden;
            box-shadow: var(--da-shadow);
            transition: var(--da-transition);
            position: relative;
            margin-bottom: 30px;
        }

        .da-team-img-container {
            position: relative;
            overflow: hidden;
            padding-top: 110%;
        }

        .da-team-img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .da-team-card:hover .da-team-img {
            transform: scale(1.1);
        }

        .da-team-card:hover {
            box-shadow: var(--da-shadow-hover);
            transform: translateY(-5px);
        }

        .da-team-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to top, rgba(14, 42, 71, 0.95) 0%, rgba(14, 42, 71, 0.3) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px 20px;
            color: #fff;
            opacity: 0;
            transform: translateY(100%);
            transition: var(--da-transition);
            z-index: 3;
        }

        .da-team-card:hover .da-team-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .da-team-overlay h4 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 4px;
        }

        .da-team-overlay p {
            color: var(--color-primary);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .da-team-overlay-socials {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .da-team-overlay-socials a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: var(--da-transition);
            backdrop-filter: blur(5px);
            text-decoration: none !important;
        }

        .da-team-overlay-socials a:hover {
            background: var(--color-primary);
            color: #fff;
            transform: translateY(-3px);
        }

        /* Section 8: Why Travel With Us */
        .da-travel-img-wrap {
            border-radius: var(--da-border-radius);
            overflow: hidden;
            box-shadow: var(--da-shadow-hover);
        }

        .da-travel-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: var(--da-transition);
        }

        .da-travel-img-wrap:hover .da-travel-img {
            transform: scale(1.05);
        }

        .da-checklist-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .da-checklist-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--da-shadow);
            border: 1px solid rgba(0, 0, 0, 0.03);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: var(--da-transition);
        }

        .da-checklist-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--da-shadow-hover);
            border-color: rgba(255, 107, 53, 0.1);
        }

        .da-checklist-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 107, 53, 0.1);
            color: var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .da-checklist-card span {
            font-weight: 600;
            color: var(--color-primary);
            font-size: 1rem;
        }

        /* Section 9: Testimonials */
        .da-testimonials-section {
            background: #F8FAFC;
        }

        .da-testimonial-carousel {
            max-width: 850px;
            margin: 0 auto;
        }

        .da-testimonial-card {
            background: #fff;
            border-radius: var(--da-border-radius);
            padding: 50px 40px;
            box-shadow: var(--da-shadow);
            border: 1px solid rgba(0, 0, 0, 0.02);
            text-align: center;
            margin: 15px;
        }

        .da-testimonial-author-img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 4px solid var(--color-primary);
            box-shadow: var(--da-shadow);
        }

        .da-testimonial-rating {
            color: #F59E0B;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .da-testimonial-quote {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            line-height: 1.8;
            font-style: italic;
            color: var(--color-primary);
            margin-bottom: 28px;
            font-weight: 500;
        }

        .da-testimonial-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 4px;
        }

        .da-testimonial-country {
            font-size: 0.85rem;
            color: var(--da-text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .da-testimonial-carousel .slick-dots {
            bottom: -40px;
        }

        .da-testimonial-carousel .slick-dots li button:before {
            font-size: 12px;
            color: var(--color-primary);
            opacity: 0.25;
        }

        .da-testimonial-carousel .slick-dots li.slick-active button:before {
            color: var(--color-primary);
            opacity: 1;
        }

        /* Section 10: Adventure Gallery */
        .da-gallery-masonry {
            column-count: 3;
            column-gap: 24px;
        }

        @media (max-width: 991px) {
            .da-gallery-masonry {
                column-count: 2;
            }
        }

        @media (max-width: 575px) {
            .da-gallery-masonry {
                column-count: 1;
            }
        }

        .da-gallery-item {
            background: #fff;
            border-radius: var(--da-border-radius);
            overflow: hidden;
            margin-bottom: 24px;
            break-inside: avoid;
            position: relative;
            box-shadow: var(--da-shadow);
            transition: var(--da-transition);
        }

        .da-gallery-img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .da-gallery-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(14, 42, 71, 0.75);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--da-transition);
            z-index: 2;
        }

        .da-gallery-icon {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--color-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transform: scale(0.7);
            transition: var(--da-transition);
        }

        .da-gallery-item:hover .da-gallery-img {
            transform: scale(1.08);
        }

        .da-gallery-item:hover .da-gallery-overlay {
            opacity: 1;
        }

        .da-gallery-item:hover .da-gallery-icon {
            transform: scale(1);
        }

        /* Section 11: FAQ */
        .da-faq-accordion .card {
            border: none;
            background: transparent;
            margin-bottom: 18px;
        }

        .da-faq-accordion .card-header {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 16px !important;
            padding: 0;
            transition: var(--da-transition);
            box-shadow: var(--da-shadow);
        }

        .da-faq-accordion .card-header:hover {
            background: rgba(255, 255, 255, 0.9);
            box-shadow: var(--da-shadow-hover);
        }

        .da-faq-btn {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            color: var(--color-primary);
            text-align: left;
            padding: 22px 30px;
            font-size: 1.1rem;
            text-decoration: none !important;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: transparent;
            border: none;
            transition: var(--da-transition);
        }

        .da-faq-btn:hover, .da-faq-btn:focus {
            color: var(--color-primary);
        }

        .da-faq-icon {
            font-size: 1.1rem;
            color: var(--color-primary);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s;
        }

        .da-faq-btn[aria-expanded="true"] .da-faq-icon {
            transform: rotate(180deg);
            color: var(--color-primary);
        }

        .da-faq-accordion .card-body {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            line-height: 1.7;
            color: var(--da-text-light);
            padding: 24px 30px 30px;
            background: transparent;
            border: none;
        }

        /* Section 12: Final CTA */
        .da-cta-section {
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            text-align: center;
            padding: 120px 0;
            overflow: hidden;
        }

        .da-cta-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(180deg, rgba(14, 42, 71, 0.8) 0%, rgba(14, 42, 71, 0.95) 100%);
            z-index: 1;
        }


        .da-cta-content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 800px;
            margin: 0 auto;
        }

        .da-cta-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 20px;
            color: #fff;
        }

        .da-cta-text {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            opacity: 0.9;
            margin-bottom: 40px;
            font-weight: 300;
        }
        .da-team-info {
    padding-left: 17px;
    padding-top: 14px;
}

 @keyframes wsua-float-particle {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.4;
            }
            90% {
                opacity: 0.4;
            }
            100% {
                transform: translateY(-10vh) translateX(50px);
                opacity: 0;
            }
        }

        @keyframes wsua-scroll-pulse {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.3;
            }
            50% {
                transform: translateY(8px);
                opacity: 1;
            }
        }

        @keyframes wsua-float-element {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .wsua-section {
            padding: 100px 0;
            background-color: #F8FAFC;
            overflow: hidden;
            position: relative;
        }

        .wsua-section-dark {
            background-color: #061324;
            color: #FFFFFF;
        }

        .wsua-section-title-wrapper {
            margin-bottom: 60px;
            text-align: center;
        }

        .wsua-subtitle-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.15em;
            color: var(--color-accent);
            text-transform: uppercase;
            margin-bottom: 12px;
            display: inline-block;
        }

        .wsua-section-title {
            font-family: 'Karma', serif;
            font-weight: 700;
            font-size: 2.5rem;
            color: #0B2341;
            margin-bottom: 20px;
        }

        .wsua-section-dark .wsua-section-title {
            color: #FFFFFF;
        }

        .wsua-section-desc {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: #475569;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .wsua-section-dark .wsua-section-desc {
            color: rgba(255, 255, 255, 0.7);
        }

        .wsua-btn {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 14px 32px;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            text-decoration: none !important;
        }

        .wsua-btn-accent {
            background-color: var(--color-accent);
            color: #FFFFFF !important;
        }

        .wsua-btn-accent:hover {
            background-color: #d64718;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(240, 90, 40, 0.35);
        }

        .wsua-btn-outline {
            background-color: transparent;
            border: 2px solid #FFFFFF;
            color: #FFFFFF !important;
        }

        .wsua-btn-outline:hover {
            background-color: #FFFFFF;
            color: #0B2341 !important;
            transform: translateY(-2px);
        }

        .wsua-hero {
            height: 600px;
            position: relative;
            background-image: linear-gradient(180deg, rgba(6, 19, 36, 0.8) 0%, rgba(11, 35, 65, 0.9) 100%), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center 30%;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            overflow: hidden;
        }

        .wsua-hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .wsua-particle {
            position: absolute;
            bottom: -20px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            animation: wsua-float-particle 15s infinite linear;
        }

        .wsua-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            text-align: center;
            padding: 0 20px;
        }

        .wsua-hero-stars {
            color: #FFC107;
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: inline-block;
        }

        .wsua-hero-trust-text {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.7);
            margin-left: 8px;
            vertical-align: middle;
        }

        .wsua-hero-title {
            font-family: 'Karma', serif;
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            line-height: 1.1;
            text-transform: uppercase;
        }

        @media(max-width: 768px) {
            .wsua-hero-title {
                font-size: 2.2rem;
            }
        }

        .wsua-hero-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            font-weight: 300;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
        }

        .wsua-hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: rgba(255, 255, 255, 0.7);
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .wsua-hero-scroll i {
            font-size: 18px;
            margin-top: 8px;
            animation: wsua-scroll-pulse 2s infinite ease-in-out;
        }

        .wsua-hero-breadcrumb {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 25px;
        }

        .wsua-hero-breadcrumb a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .wsua-hero-breadcrumb a:hover {
            color: var(--color-accent);
        }

        .wsua-hero-breadcrumb span {
            color: var(--color-accent);
        }

        .wsua-intro-metrics {
            margin-top: 50px;
        }

        .wsua-metric-card {
            background: #FFFFFF;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
            border-top: 4px solid #0B2341;
            animation: wsua-float-element 6s infinite ease-in-out;
        }

        .wsua-metric-card:nth-child(2) {
            animation-delay: 2s;
            border-top-color: var(--color-accent);
        }

        .wsua-metric-card:nth-child(3) {
            animation-delay: 4s;
        }

        .wsua-metric-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(11, 35, 65, 0.1);
        }

        .wsua-metric-num {
            font-family: 'Karma', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: #0B2341;
            margin-bottom: 5px;
        }

        .wsua-metric-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            color: #475569;
            letter-spacing: 1px;
        }

        .wsua-featured-img-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .wsua-featured-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .wsua-featured-img-container:hover .wsua-featured-img {
            transform: scale(1.05);
        }

        .wsua-story-content {
            padding-left: 30px;
        }

        @media(max-width: 991px) {
            .wsua-story-content {
                padding-left: 0;
                margin-top: 40px;
            }
        }

        .wsua-story-title {
            font-family: 'Karma', serif;
            font-size: 2.2rem;
            color: #0B2341;
            margin-bottom: 20px;
        }

        .wsua-story-desc {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: #475569;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .wsua-feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 35px 0;
        }

        .wsua-feature-item {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: #0B2341;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .wsua-feature-item i {
            color: var(--color-accent);
            font-size: 18px;
            margin-right: 12px;
        }

        .wsua-card-grid {
            margin-top: 20px;
        }

        .wsua-standout-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            padding: 40px 30px;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(11, 35, 65, 0.03);
        }

        .wsua-standout-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(240, 90, 40, 0.3);
            box-shadow: 0 20px 40px rgba(11, 35, 65, 0.12);
        }

        .wsua-card-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            background: linear-gradient(135deg, #0B2341 0%, #1a3f6d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 24px;
            margin-bottom: 25px;
            transition: transform 0.4s ease;
        }

        .wsua-standout-card:hover .wsua-card-icon-wrapper {
            background: linear-gradient(135deg, var(--color-accent) 0%, #f1784e 100%);
            transform: rotateY(180deg);
        }

        .wsua-card-title {
            font-family: 'Karma', serif;
            font-size: 1.5rem;
            color: #0B2341;
            margin-bottom: 15px;
        }

        .wsua-card-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.6;
            margin: 0;
        }

        .wsua-timeline-container {
            position: relative;
            padding: 80px 0;
        }

        .wsua-timeline-line {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            background: #E2E8F0;
            transform: translateY(-50%);
            z-index: 1;
        }

        .wsua-timeline-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, #0B2341 0%, var(--color-accent) 100%);
            transition: width 1.5s ease-out;
        }

        .wsua-timeline-row {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .wsua-timeline-item {
            text-align: center;
            flex: 1;
            position: relative;
        }

        .wsua-timeline-node {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #FFFFFF;
            border: 4px solid #E2E8F0;
            margin: 0 auto 20px auto;
            position: relative;
            transition: all 0.4s ease;
            cursor: pointer;
            z-index: 3;
        }

        .wsua-timeline-item.active .wsua-timeline-node {
            border-color: var(--color-accent);
            background: #0B2341;
            box-shadow: 0 0 15px rgba(240, 90, 40, 0.5);
            transform: scale(1.2);
        }

        .wsua-timeline-year {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: #0B2341;
            margin-bottom: 5px;
            transition: color 0.4s ease;
        }

        .wsua-timeline-item.active .wsua-timeline-year {
            color: var(--color-accent);
        }

        .wsua-timeline-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: #475569;
            max-width: 140px;
            margin: 0 auto;
        }

        @media(max-width: 768px) {
            .wsua-timeline-line {
                left: 20px;
                top: 0;
                width: 4px;
                height: 100%;
                transform: translateX(-50%);
            }
            .wsua-timeline-progress {
                width: 100%;
                height: 0;
                transition: height 1.5s ease-out;
            }
            .wsua-timeline-row {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 40px;
            }
            .wsua-timeline-item {
                text-align: left;
                margin-bottom: 40px;
                width: 100%;
                display: flex;
                align-items: flex-start;
            }
            .wsua-timeline-item:last-child {
                margin-bottom: 0;
            }
            .wsua-timeline-node {
                margin: 6px 20px 0 -34px;
            }
            .wsua-timeline-content {
                text-align: left;
            }
            .wsua-timeline-text {
                max-width: none;
            }
        }

        .wsua-guide-card {
            background: #FFFFFF;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            text-align: center;
            padding: 40px 20px;
            border: 1px solid #E2E8F0;
            height: 100%;
        }

        .wsua-guide-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(11, 35, 65, 0.1);
            border-color: rgba(240, 90, 40, 0.2);
        }

        .wsua-guide-img-wrapper {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 25px auto;
            border: 4px solid #F8FAFC;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            position: relative;
        }

        .wsua-guide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .wsua-guide-card:hover .wsua-guide-img {
            transform: scale(1.15);
        }

        .wsua-guide-name {
            font-family: 'Karma', serif;
            font-size: 1.4rem;
            color: #0B2341;
            margin-bottom: 5px;
        }

        .wsua-guide-role {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 13px;
            text-transform: uppercase;
            color: var(--color-accent);
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .wsua-guide-exp {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            color: #475569;
            margin-bottom: 20px;
        }

        .wsua-guide-socials {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .wsua-guide-social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #F8FAFC;
            color: #0B2341;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none !important;
        }

        .wsua-guide-social-link:hover {
            background: var(--color-accent);
            color: #FFFFFF;
            transform: translateY(-3px);
        }

        .wsua-trust-metric {
            text-align: center;
            padding: 20px;
        }

        .wsua-trust-num {
            font-family: 'Karma', serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--color-accent);
            margin-bottom: 10px;
            line-height: 1;
        }

        .wsua-trust-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 15px;
            text-transform: uppercase;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 1.5px;
        }

        .wsua-testimonials-slider {
            max-width: 850px;
            margin: 0 auto;
        }

        .wsua-testimonial-item {
            text-align: center;
            padding: 0 15px;
        }

        .wsua-testimonial-stars {
            color: #FFC107;
            font-size: 18px;
            margin-bottom: 25px;
        }

        .wsua-testimonial-quote {
            font-family: 'Karma', serif;
            font-size: 1.8rem;
            font-style: italic;
            line-height: 1.5;
            color: #0B2341;
            margin-bottom: 35px;
        }

        @media(max-width: 768px) {
            .wsua-testimonial-quote {
                font-size: 1.3rem;
            }
        }

        .wsua-testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .wsua-testimonial-author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #FFFFFF;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .wsua-testimonial-author-info {
            text-align: left;
        }

        .wsua-testimonial-author-name {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 16px;
            color: #0B2341;
            margin: 0;
        }

        .wsua-testimonial-author-location {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 12px;
            color: var(--color-accent);
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            margin: 0;
        }

        .wsua-slick-dots {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 40px 0 0 0;
            gap: 10px;
        }

        .wsua-slick-dots li button {
            border: none;
            background: #cbd5e1;
            text-indent: -9999px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            padding: 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .wsua-slick-dots li.slick-active button {
            background: var(--color-accent);
            transform: scale(1.3);
        }

        .wsua-gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .wsua-gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 300px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .wsua-gallery-item.wsua-col-span-2 {
            grid-column: span 2;
        }

        .wsua-gallery-item.wsua-row-span-2 {
            height: 620px;
        }

        .wsua-gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .wsua-gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(6, 19, 36, 0.1) 0%, rgba(11, 35, 65, 0.8) 100%);
            opacity: 0.85;
            transition: opacity 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
        }

        .wsua-gallery-item:hover .wsua-gallery-img {
            transform: scale(1.08);
        }

        .wsua-gallery-item:hover .wsua-gallery-overlay {
            opacity: 0.95;
            background: linear-gradient(180deg, rgba(240, 90, 40, 0.1) 0%, rgba(11, 35, 65, 0.9) 100%);
        }

        .wsua-gallery-title {
            font-family: 'Karma', serif;
            font-size: 1.6rem;
            color: #FFFFFF;
            margin-bottom: 5px;
        }

        .wsua-gallery-icon {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s ease;
        }

        .wsua-gallery-item:hover .wsua-gallery-icon {
            opacity: 1;
            transform: translateY(0);
        }

        @media(max-width: 991px) {
            .wsua-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .wsua-gallery-item.wsua-col-span-2 {
                grid-column: span 1;
            }
            .wsua-gallery-item.wsua-row-span-2 {
                height: 300px;
            }
        }

        @media(max-width: 576px) {
            .wsua-gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        .wsua-comp-card {
            border-radius: 12px;
            padding: 45px 35px;
            height: 100%;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
        }

        .wsua-comp-others {
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
        }

        .wsua-comp-us {
            background: linear-gradient(135deg, #0B2341 0%, #061324 100%);
            color: #FFFFFF;
            border: 1px solid rgba(255,255,255,0.05);
            position: relative;
            overflow: hidden;
        }

        .wsua-comp-us::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(240, 90, 40, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .wsua-comp-heading {
            font-family: 'Karma', serif;
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .wsua-comp-us .wsua-comp-heading {
            color: var(--color-accent);
        }

        .wsua-comp-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .wsua-comp-item {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            margin-bottom: 22px;
            display: flex;
            align-items: center;
            font-weight: 500;
        }

        .wsua-comp-item i {
            font-size: 18px;
            margin-right: 15px;
        }

        .wsua-comp-others .wsua-comp-item i {
            color: #dc3545;
        }

        .wsua-comp-us .wsua-comp-item i {
            color: var(--color-accent);
            text-shadow: 0 0 10px rgba(240, 90, 40, 0.5);
        }

        .wsua-comp-others .wsua-comp-item {
            color: #475569;
        }

        .wsua-comp-us .wsua-comp-item {
            color: rgba(255,255,255,0.9);
        }

        .wsua-faq-container {
            max-width: 850px;
            margin: 0 auto;
        }

        .wsua-faq-item {
            background: #FFFFFF;
            border-radius: 8px;
            margin-bottom: 15px;
            border: 1px solid #E2E8F0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .wsua-faq-item:hover, .wsua-faq-item.active {
            box-shadow: 0 10px 25px rgba(11, 35, 65, 0.06);
            border-color: rgba(11, 35, 65, 0.15);
        }

        .wsua-faq-header {
            padding: 22px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .wsua-faq-question {
            font-family: 'Karma', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #0B2341;
            margin: 0;
            transition: color 0.3s;
        }

        .wsua-faq-item.active .wsua-faq-question {
            color: var(--color-accent);
        }

        .wsua-faq-toggle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #F8FAFC;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0B2341;
            transition: all 0.3s ease;
        }

        .wsua-faq-item.active .wsua-faq-toggle {
            background: var(--color-accent);
            color: #FFFFFF;
            transform: rotate(180deg);
        }

        .wsua-faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .wsua-faq-content {
            padding: 0 30px 25px 30px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.6;
        }

        .wsua-final-cta {
            position: relative;
            background-image: linear-gradient(180deg, rgba(6, 19, 36, 0.75) 0%, rgba(11, 35, 65, 0.85) 100%), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 120px 0;
            color: #FFFFFF;
            text-align: center;
        }

        .wsua-cta-glass-panel {
            background: rgba(11, 35, 65, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 60px 40px;
            border-radius: 16px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .wsua-cta-title {
            font-family: 'Karma', serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        @media (min-width: 767px) and (max-width: 991px) {
            .destinations-section {
        flex-direction: column;
        min-height: auto;
    }
    .left-panel {
    position: relative;
    flex: unset;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.col-12.col-md-7.divCenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}
div#page-block-block_698282471878e {
    text-align: center;
    margin: 0 auto;
}
.options {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 32px;
}
div#screen-category {
    text-align: center;
    margin: 0 auto;
}
.btn-continue.ready {
    background: #0891B2;
    color: #fff;
    cursor: pointer;
    margin: 0 auto;
}
.trip-title {
    font-size: 43px;
    font-weight: 700;
    font-family: "Karma", serif;
    margin: 10px 0 24px;
    width: 80%;
    margin-inline: auto;
}
.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    padding: 14px 18px;
    
}
}
        @media(max-width: 768px) {
            .wsua-cta-title {
                font-size: 2rem;
            }
        }

        .wsua-cta-text {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
        }

        .wsua-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        @media(max-width: 576px) {
            .wsua-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .wsua-cta-buttons .wsua-btn {
                width: 100%;
                max-width: 250px;
            }
            .quiz-main {
    background: #0c1a27;
    color: #fff;
    /* min-height: 100vh; */
    padding-top: 60px;
    padding-bottom: 60px;
    padding: 33px;
    margin: 0 auto;
    text-align: center;
}
.btn-row {
    display: flex;
    gap: 12px;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quiz-header {
    text-align: center;
    margin-bottom: 18px;
}

.featured-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    text-shadow: unset;
}
.divCenter {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.activity-btn {
  
  padding: 18px 31px;
 
}
p {
    font-size: 16px;
   
}
.newsletter-input {
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
    margin-bottom: 13px;
    border: 1px solid #8080804f;
    border-radius: 10px;
}
button.btn-primary {
    border: 0;
}
.reveal.reveal-left.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
}
.card-col {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    height: 296px;
}
.item-title {
    font-family: "Karma", serif;
    font-size: 21px;
    font-weight: 700;
    color: #151c2d;
    line-height: 1.28;
    margin-bottom: 2px;
    
}
.hero-title-wrapper {
    flex-shrink: 0;
    margin-right: 0;
    /* text-align: center; */
    /* font-weight: 400; */
}
.hero-title {
        font-size: 2rem;
        text-align: center;
        font-weight: 600;
        text-transform: capitalize;
    }
    .trip-title {
    font-size: 23px;
    font-weight: 600;
    font-family: "Karma", serif;
    margin: 10px 0 24px;
    width: 100%;
    margin-inline: auto;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 86px 113px;
    gap: 6px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 60px;
}
.trip-tabs {
    border-bottom: none;
    margin-top: 24px;
    overflow-x: scroll;
    width: 1200px;
    min-width: 1200px;
}
.overview-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
}
.itinerary .overview-grid {
    display: grid;
    grid-template-columns: 1fr 0fr;
    gap: 0;
}
h2.detail-title.mb-0 {
    font-size: 30px !important;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 9px;
}

}

.info-wrapper table, .info-wrapper td, .info-wrapper tr, .info-wrapper th{
    border:1px solid #000;
    padding:5px;
}

.inner-page img{
    margin-bottom:10px;
}
        
    