
:root {
  /* Core brand palette */
  --bg:            #f0fdfa;   /* Mint White page background */
  --dark:          #005f73;   /* Deep Lagoon — primary headings */
  --accent:        #ee9b00;   /* Sunset Gold — buttons & highlights */
  --teal:          #0a9396;   /* Crystal Teal — secondary accent */
  --text:          #2d3748;   /* Cool Grey — body copy */

  /* Extended lagoon scale */
  --lagoon-900:    #003845;
  --lagoon-800:    #004e5f;
  --lagoon-700:    #005f73;
  --lagoon-600:    #0a9396;

  /* Gold scale */
  --gold-500:      #ee9b00;
  --gold-600:      #ca6702;

  /* Ink / neutral scale */
  --ink-900:       #0b1320;
  --ink-800:       #1f2937;
  --ink-700:       #2d3748;
  --ink-600:       #4a5568;

  /* Surface colours */
  --mint-50:       #f0fdfa;
  --mint-100:      #d9fff6;
  --sand-50:       #fff9f0;
  --card:          #ffffff;
  --line:          #e2e8f0;

  /* Border radii */
  --radius-2xl:    28px;
  --radius-xl:     24px;
  --radius-lg:     18px;

  /* Shadows */
  --shadow-soft:   0 18px 60px rgba(0, 95, 115, 0.10);
  --shadow-med:    0 25px 80px rgba(0, 95, 115, 0.15);
  --shadow-strong: 0 30px 90px rgba(0, 95, 115, 0.22);

  /* Night-tour accent (orange/warm) */
  --night-accent:  #ff6b35;
  --night-gradient: linear-gradient(135deg, #ff8c42, #ff6b35);

  /* Layout */
  --container:     1400px;
}


/* ============================================================
   2. BASE / RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

body,
.dmBody {
  background: var(--bg) !important;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;
}

h1, h2, h3 {
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Lazy-load fade-in (used sitewide) */
img.lazy {
  opacity: 0;
  transition: opacity 1s ease;
}


/* ============================================================
   3. FONT FALLBACKS
   ============================================================ */
@font-face {
  font-family: "League Spartan Fallback";
  src: local("Arial");
}
@font-face {
  font-family: "Roboto Fallback";
  src: local("Arial");
}


#wsn-main-header {
  position: sticky;
  top: 0;
  z-index: 100000;
  background: #ffffff;
  color: #000000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.wsn-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Logo */
.wsn-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
  min-width: 150px;
}

.wsn-logo-img {
  height: 100%;
  width: auto;
  transition: opacity 0.2s ease;
  display: block;
}

.wsn-logo-img.hover-version {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.wsn-logo:hover .wsn-logo-img.default-version { opacity: 0; }
.wsn-logo:hover .wsn-logo-img.hover-version   { opacity: 1; }
.wsn-logo:hover img                            { transform: none !important; }

.wsn-logo-text-fallback {
  display: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 20px;
  color: #000000 !important;
  white-space: nowrap;
}
.wsn-logo-text-fallback span { color: #38bdf8; }

/* Nav links */
.wsn-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.wsn-nav-link,
.wsn-submenu-link {
  color: #000000 !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  padding: 4px 0;
  border-bottom: 2px solid transparent !important;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
}

.wsn-nav-link:hover,
.wsn-submenu-link:hover {
  color: #38bdf8 !important;
  border-bottom: 2px solid #38bdf8 !important;
}

.wsn-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wsn-nav-link--parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.wsn-caret {
  font-size: 11px;
  opacity: 0.6;
}

/* Dropdown submenu */
.wsn-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  padding: 8px 0;
  margin-top: 6px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 100001;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.wsn-submenu::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.wsn-submenu-link {
  display: block;
  padding: 6px 14px;
}

.wsn-nav-item.wsn-has-sub:hover .wsn-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wsn-nav-item.wsn-has-sub:hover .wsn-nav-link--parent {
  border-bottom: 2px solid #38bdf8 !important;
  color: #38bdf8 !important;
}

/* Mobile toggle button */
.wsn-nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 6px 10px;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}

.wsn-nav-toggle-icon {
  width: 16px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: inline-block;
}

.wsn-nav-toggle-icon::before,
.wsn-nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.wsn-nav-toggle-icon::before { top: -5px; }
.wsn-nav-toggle-icon::after  { top:  5px; }

/* Duda hamburger wrapper reset */
#dm-outer-wrapper[dmtemplateid="Hamburger"],
#dm-outer-wrapper[dmtemplateid="Hamburger"] .dmOuter,
#dm-outer-wrapper[dmtemplateid="Hamburger"] .dmInner,
#dm-outer-wrapper[dmtemplateid="Hamburger"] .dmLayoutWrapper,
#dm-outer-wrapper[dmtemplateid="Hamburger"] #site_content {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}


/* ============================================================
   5. GLOBAL LAYOUT UTILITIES
   ============================================================ */
.wsn-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.page-wrapper {
  background: var(--bg);
  min-height: 100vh;
  padding-top: 40px;
}

/* Subtle premium background glow (used on tour/rental pages) */
.wsn-page-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.wsn-page-bg::before {
  content: "";
  position: absolute;
  inset: -220px -220px auto -220px;
  height: 560px;
  background:
    radial-gradient(closest-side at 24% 36%, rgba(10, 147, 150, 0.18), transparent 70%),
    radial-gradient(closest-side at 74% 44%, rgba(238, 155, 0, 0.14),  transparent 70%),
    radial-gradient(closest-side at 50% 78%, rgba(0,  95, 115, 0.12),  transparent 72%);
  filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}

.wsn-page-bg::after {
  content: "";
  position: absolute;
  inset: auto -240px -260px -240px;
  height: 560px;
  background:
    radial-gradient(closest-side at 25% 40%, rgba(238, 155, 0, 0.10),  transparent 72%),
    radial-gradient(closest-side at 70% 30%, rgba(10,  147, 150, 0.12), transparent 70%);
  filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}


/* ============================================================
   6. TYPOGRAPHY HELPERS
   ============================================================ */
.wsn-h2 {
  font-size: 56px;
  color: var(--lagoon-700);
  margin-bottom: 60px;
  font-weight: 950;
  letter-spacing: -0.9px;
}

.section-title {
  text-align: center;
  font-size: 52px;
  font-weight: 900;
  color: var(--dark);
  margin: 10px 0 70px;
}

.wsn-sub {
  font-size: 22px;
  color: var(--teal);
  font-weight: 700;
  margin: 0 0 16px;
}

.wsn-body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-600);
}


/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn-cta {
  background: var(--accent) !important;
  color: white !important;
  box-shadow: 0 15px 40px rgba(238, 155, 0, 0.35) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
  text-decoration: none;
  border-radius: 60px;
  padding: 20px 24px;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(238, 155, 0, 0.50) !important;
}

/* Gradient variant used on some CTA sections */
.btn-cta-gradient {
  background: linear-gradient(135deg, var(--accent), var(--gold-600)) !important;
  color: white !important;
  box-shadow: 0 18px 55px rgba(238, 155, 0, 0.32) !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn-cta-gradient:hover {
  transform: translateY(-3px);
  filter: saturate(1.05);
}

.big-book-btn {
  background: var(--night-accent);
  color: white;
  font-size: 26px;
  font-weight: 900;
  padding: 22px 40px;
  border-radius: 60px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}
.big-book-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.5);
}

.cross-sell-btn {
  background: var(--teal) !important;
  box-shadow: 0 15px 40px rgba(10, 147, 150, 0.35) !important;
  color: white;
  padding: 20px 30px;
  border-radius: 70px;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* WSN nav-style CTA (used in hero sections) */
.wsn-cta {
  background: linear-gradient(135deg, var(--accent), var(--gold-600));
  color: white !important;
  padding: 18px 22px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 950;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 55px rgba(238, 155, 0, 0.30);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wsn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 65px rgba(238, 155, 0, 0.45);
}

/* Floating CTA (fixed bottom) */
.floating-cta {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: max-content;
}

.floating-cta a {
  background: linear-gradient(135deg, #ee9b00, #ca6702) !important;
  color: white !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800 !important;
  font-size: 18px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none !important;
  box-shadow: 0 12px 30px rgba(238, 155, 0, 0.4);
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}
.floating-cta a:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 45px rgba(238, 155, 0, 0.55);
}

/* Back to top button */
#myBtn {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 99;
  background: var(--dark);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.trust-bar2 {
  background: linear-gradient(135deg, #07b5d9, #02a4c4);
  box-shadow: 0 10px 40px rgba(0, 95, 115, 0.28) !important;
  color: #03353f !important;
  font-weight: bold;
  padding: 14px 18px !important;
  top: 0;
  z-index: 999;
  text-align: center;
  backdrop-filter: blur(10px);
}

.trust-bar2.trust-bar--night {
  background: #02a2c2 !important;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.trust-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  white-space: nowrap;
}

.tour-info {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 10px;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.tour-info strong {
  color: #00041f;
  font-weight: 900;
}


/* ============================================================
   9. HERO CARD (tour/rental page top section)
   ============================================================ */
.wsn-hero {
  max-width: var(--container);
  margin: 0 auto 70px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(0, 95, 115, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.90));
}

.wsn-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.wsn-hero-media {
  display: block;
  overflow: hidden;
}

.wsn-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.wsn-hero-media:hover img { transform: scale(1.04); }

.wsn-hero-content {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wsn-hero-price {
  margin-top: 18px;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(0,95,115,0.06), rgba(10,147,150,0.06));
  border: 1px solid rgba(0, 95, 115, 0.10);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.wsn-hero-price .left  { font-size: 16px; font-weight: 850; color: #555; }
.wsn-hero-price .right { font-size: 42px; font-weight: 950; color: var(--dark); line-height: 1; }

/* Night-tour hero card variant */
.hero-tour-card {
  max-width: 1100px;
  margin: 40px auto 80px;
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.hero-top-bar {
  background: var(--night-gradient);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1px;
}

.hero-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-image img:hover { transform: scale(1.05); }

.hero-content {
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--dark);
}

.location {
  font-size: 24px;
  color: var(--night-accent);
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
}

.details {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: bold;
  color: #555;
  margin: 30px 0;
}

.price-duration {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 20px;
  font-weight: bold;
  color: #555;
  margin: 25px 0;
}

.price {
  font-size: 48px;
  color: var(--night-accent);
  font-weight: 900;
}

/* Card top label strip */
.card-top {
  background: linear-gradient(135deg, #00d4ff, #0d8ba9);
  font-weight: 900 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px !important;
  padding: 12px 16px;
  color: white;
  text-align: center;
  position: relative;
}

.card-top::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.20);
}

/* Card content area (night tour) */
.card-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* ============================================================
   10. TOUR / LOCATION GRID CARDS
       Used on st-pete-fl.php and sarasota-fl.php hub pages
   ============================================================ */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: stretch;
}

.tour-card {
  width: 100%;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}

.tour-card:hover { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18); }

.tour-badge {
  display: block;
  color: #fff;
  text-align: center;
  padding: 18px;
  font-weight: 900;
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.tour-image-container {
  display: block;
  height: 460px;
  width: 100%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  border-radius: 0;
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
}

.tour-card:hover .tour-image { transform: scale(1.08); }

/* Old-style tour-card-img (used on sarasota-fl.php) */
.tour-card-img {
  width: 100%;
  height: 460px !important;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.tour-content {
  padding: 24px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  z-index: 2;
  position: relative;
}

.tour-title-link {
  color: #0a1f2e;
  text-decoration: none;
  transition: color 0.2s ease;
}
.tour-title-link:hover { color: var(--dark); }

/* Tour card heading alignment */
.tour-card h3 {
  margin: 0 !important;
  font-size: 20px !important;
  line-height: 1.3 !important;
  padding: 28px 20px;
  text-align: center;
}

.tour-card h3 a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100px;
  color: #0a1f2e !important;
  text-decoration: none !important;
}

.tour-card h3 a span {
  display: block;
  margin-top: 10px;
}

.tour-card h3 a br { display: none; }


/* ============================================================
   11. FEATURE GRID (WHY CHOOSE US / HIGHLIGHTS)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}

/* Sarasota hub page uses 4-col — keeping as override via modifier */
.feature-grid--4col { grid-template-columns: repeat(4, 1fr); }

.feature-box {
  text-align: center;
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.86));
  border: 1px solid rgba(0, 95, 115, 0.08);
  box-shadow: 0 10px 30px rgba(0, 95, 115, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 95, 115, 0.10);
  border-color: rgba(0, 95, 115, 0.14);
}

.feature-box h4 {
  color: var(--dark) !important;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 950;
  min-height: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1.2;
}

.feature-box p {
  color: #555;
  line-height: 1.65;
  font-size: 16px;
  margin: 0;
}

/* Night-tour feature cards (plain white, no gradient bg) */
.feature-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 16px;
}


/* ============================================================
   12. GALLERY CARDS
   ============================================================ */
.gallery-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 95, 115, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  transform: translateZ(0);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-med);
  border-color: rgba(0, 95, 115, 0.16);
}

.gallery-card img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.001);
}

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

/* Night-tour gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-grid .gallery-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-grid .gallery-card img:hover { transform: scale(1.08); }


/* ============================================================
   13. WSN CARD / CONTENT WRAPPERS
   ============================================================ */
.wsn-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 95, 115, 0.08);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-med);
  overflow: hidden;
}


/* ============================================================
   14. BOOKING DASHBOARD
   ============================================================ */
.booking-dashboard {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.urgency-text {
  font-size: 26px;
  font-weight: 950;
  color: var(--lagoon-700);
  margin-bottom: 24px;
  line-height: 1.35;
  letter-spacing: -0.4px;
}

.info-card {
  background: var(--sand-50);
  border: 2px dashed var(--gold-500);
  border-radius: 18px;
  padding: 26px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 18px 50px rgba(238, 155, 0, 0.08);
}

.info-title {
  color: var(--gold-500);
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.info-details {
  color: var(--lagoon-700);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.6;
  margin: 0;
}

/* Info grid (Plan Your Adventure section) */
.info-item { padding: 15px; }

.info-item h3 {
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 950;
}

.info-item p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}


/* ============================================================
   15. COLLAPSIBLE / FAQ ACCORDIONS
   ============================================================ */
.collapsible {
  border: 1px solid rgba(0, 95, 115, 0.12);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
  box-shadow: 0 14px 40px rgba(0, 95, 115, 0.06);
}

.collapsible-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  font-size: 18px;
  color: var(--dark);
  background: linear-gradient(90deg, rgba(0,95,115,0.06), rgba(10,147,150,0.05));
  border-bottom: 1px solid rgba(0, 95, 115, 0.10);
  user-select: none;
}

.collapsible-header span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 95, 115, 0.10);
  border: 1px solid rgba(0, 95, 115, 0.14);
  font-weight: 900;
  color: var(--lagoon-700);
  flex: 0 0 auto;
}

.collapsible-content {
  padding: 16px 20px 18px;
  display: none;
  color: #555;
  line-height: 1.75;
  font-size: 16px;
}

.collapsible-content ul  { margin: 10px 0 0 18px; }
.collapsible-content li  { margin: 8px 0; }
.collapsible.active .collapsible-content { display: block; }

/* Night-tour FAQ variant (uses .faq-item classes) */
.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.faq-header {
  padding: 20px;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  user-select: none;
}

.faq-content {
  display: none;
  padding: 0 20px 20px;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}


/* ============================================================
   16. COLOUR GRADIENT UTILITIES
       Shared across tour badge labels
   ============================================================ */
.grad-blue   { background: linear-gradient(135deg, #00d4ff, #0099cc); }
.grad-orange { background: linear-gradient(135deg, #ff8c42, #ff6b35); }
.grad-green  { background: #2ecc71; }
.grad-night  { background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737); }
.grad-teal   { background: linear-gradient(135deg, #07b5d9, #02a4c4); }


/* ============================================================
   17. HOMEPAGE HERO (index.php)
   ============================================================ */
#wsn-hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: #000;
}

.wsn-media-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* YouTube embed */
#wsn-yt-player {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1s ease;
}

.video-playing #wsn-yt-player { opacity: 1; }

#wsn-desktop-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 1s ease;
  z-index: 1;
}

.video-playing #wsn-desktop-poster { opacity: 0; }

#wsn-mobile-poster {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.wsn-hero-content {
  position: relative;
  z-index: 10;
  padding: 20px;
  max-width: 1400px;
  width: 100%;
}


/* ============================================================
   18. HOMEPAGE CTA BUTTONS ROW
   ============================================================ */
.wsn-button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  gap: 30px;
}

.wsn-btn-link {
  flex: 1 1 300px;
  max-width: 380px;
  width: 100%;
  background: #00d4ff;
  color: #000;
  padding: 12px 10px;
  border-radius: 60px;
  font-family: 'League Spartan', sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.35);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-sizing: border-box;
}

.wsn-btn-gift    { background: #e0501b; color: #fff; box-shadow: 0 15px 40px rgba(224,80,27,0.4); }
.wsn-btn-reviews { background: var(--ink-900, #020817); color: #fff; box-shadow: 0 15px 40px rgba(10,31,46,0.5); }


/* ============================================================
   19. ABOUT SECTION (index.php)
   ============================================================ */
.wsn-about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: white;
  padding: 60px 20px;
  gap: 40px;
}

.wsn-about-col { flex: 1 1 500px; width: 100%; }

.wsn-slider-container {
  position: relative;
  width: 100%;
  max-width: 660px;
  min-height: 680px;
  aspect-ratio: 4/3;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.wsn-slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.wsn-slider-img.active { opacity: 1; }
.wsn-about-p { margin-bottom: 20px; }


/* ============================================================
   20. GLOBAL FONT SIZE UTILITIES (from Duda)
   ============================================================ */
.font-size-24, .size-24, .size-24 > font { font-size: 24px !important; }
.font-size-18, .size-18, .size-18 > font { font-size: 18px !important; }
.font-size-20, .size-20, .size-20 > font { font-size: 20px !important; }


/* ============================================================
   21. RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .feature-grid        { grid-template-columns: repeat(2, 1fr); }
  .feature-grid--4col  { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   22. RESPONSIVE — MOBILE (max 968px)
   ============================================================ */
@media (max-width: 968px) {
  /* Hero grids stack */
  .wsn-hero-grid,
  .hero-tour-card {
    grid-template-columns: 1fr;
  }

  .wsn-hero-media { order: -1; }
  .wsn-hero-content { padding: 30px 22px; }
  .wsn-hero h1 { font-size: 38px; }
  .wsn-hero-price .right { font-size: 44px; }

  /* Inline grid overrides (matching existing inline style selectors) */
  div[style*="grid-template-columns:1fr 1fr"]      { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns: 1fr 1fr"]     { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1fr 1fr"] > a  { order: -1; }
  div[style*="grid-template-columns: 1fr 1fr"] > a { order: -1; }

  .card-top { border-radius: 28px 28px 0 0; }
}


/* ============================================================
   23. RESPONSIVE — MOBILE (max 850px) — Duda overrides
   ============================================================ */
@media (max-width: 850px) {
  .dmRespRow,
  .dmRespColsWrapper,
  .dmContent,
  #dm_content,
  .dmFullRowRespTmpl {
    padding-left:  0 !important;
    padding-right: 0 !important;
    margin-left:   0 !important;
    margin-right:  0 !important;
  }

  .about-text-col  { order: 1 !important; width: 100% !important; }
  .about-image-col { order: 2 !important; width: 100% !important; margin-top: 50px !important; }
  #home-slider img { width: 100% !important; height: auto !important; }

  h2 { font-size: 32px !important; line-height: 1.2 !important; margin: 30px 0 !important; }
  h3 { font-size: 22px !important; }
  p, li, .tour-info strong { font-size: 17px !important; line-height: 1.6 !important; }

  .dmFooterContainer > div > div {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 50px;
  }
}


/* ============================================================
   24. RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Header */
  #wsn-main-header {
    position: sticky;
    top: 0;
    z-index: 100000;
    background: #fff;
  }

  .wsn-header-inner {
    padding: 8px 10px !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .wsn-logo {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 90px) !important;
    height: 44px !important;
    overflow: hidden !important;
  }

  .wsn-logo-img {
    height: 44px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
  }

  .wsn-logo-text-fallback {
    font-size: 16px !important;
    line-height: 1.1 !important;
  }

  .wsn-nav-toggle {
    flex: 0 0 auto !important;
    min-width: 78px !important;
    height: 38px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }

  .wsn-nav-toggle-icon {
    width: 14px !important;
    height: 2px !important;
  }

  .wsn-nav-toggle-icon::before,
  .wsn-nav-toggle-icon::after {
    width: 14px !important;
    height: 2px !important;
  }

  .wsn-nav-links {
    position: fixed !important;
    top: 58px !important;
    left: 10px !important;
    right: 10px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 50px rgba(0,0,0,0.18) !important;
    flex-direction: column !important;
    padding: 12px 16px 16px !important;
    gap: 2px !important;
    max-height: calc(100vh - 72px) !important;
    overflow-y: auto !important;
    align-items: stretch !important;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .wsn-nav-links.wsn-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .wsn-nav-link,
  .wsn-nav-link--parent,
  .wsn-submenu-link {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    padding: 12px 4px !important;
    margin: 0 !important;
    border: 0 !important;
  }

  .wsn-nav-item {
    width: 100% !important;
    display: block !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .wsn-nav-link--parent {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-weight: 800 !important;
    font-weight: bold;
  }

  .wsn-submenu {
    position: static !important;
    display: none !important;
    width: 100% !important;
    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 2px 0 8px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    border-radius: 0 !important;
  }

  .wsn-nav-item.wsn-sub-open .wsn-submenu {
    display: block !important;
  }

  .wsn-submenu::before {
    display: none !important;
  }

  .wsn-submenu-link {
    padding: 10px 4px 10px 18px !important;
    font-size: 15px !important;
    color: #222 !important;
  }

  .wsn-caret {
    margin-left: 10px !important;
    font-size: 12px !important;
    opacity: 0.8 !important;
  }

  .wsn-nav-link:hover,
  .wsn-nav-link--parent:hover,
  .wsn-submenu-link:hover {
    color: inherit !important;
    border: 0 !important;
  }

  /* Hero */
  #wsn-hero-section     { min-height: 60vh !important; }
  #wsn-yt-player,
  #wsn-desktop-poster   { display: none !important; }
  #wsn-mobile-poster    { display: block !important; }

  /* Buttons */
  .wsn-btn-link {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    margin-bottom: 10px;
    font-size: 22px !important;
  }

  /* Typography */
  h2[style*="font-size"] { font-size: 32px !important; }
  div[style*="font-size:20px"] { font-size: 18px !important; }

  /* Trust bar */
  .trust-features { gap: 10px; font-size: 12px; }
  .tour-info { font-size: 14px !important; }

  /* Floating CTA */
  .floating-cta a { padding: 13px 18px; font-size: 14px !important; }

  /* Feature grid */
  .feature-box h4 { min-height: auto; }

  /* Map responsive */
  div[style*="padding-bottom:56.25%"] { padding-bottom: 70% !important; }
}


/* ============================================================
   25. RESPONSIVE — MOBILE (max 600px)
   ============================================================ */
@media (max-width: 600px) {
  .feature-grid,
  .feature-grid--4col { grid-template-columns: 1fr; }

  /* Padding reductions */
  div[style*="padding:44px 40px"],
  div[style*="padding:40px 30px"] { padding: 22px 18px !important; }
  div[style*="padding:50px"]       { padding: 26px 18px !important; }

  /* Price row stacking */
  div[style*="font-size:20px"][style*="font-weight:bold"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
  div[style*="font-size:20px"][style*="font-weight:bold"] span[style*="float:right"] {
    float: none !important;
    align-self: flex-start !important;
    font-size: 40px !important;
  }

  /* Headings */
  h1 { font-size: 34px !important; line-height: 1.15 !important; }
  p[style*="font-size:28px"] { font-size: 20px !important; }
  .wsn-h2 { font-size: 42px; }
  .card-top { font-size: 12px; padding: 12px; }
}


/* ============================================================
   26. RESPONSIVE — MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  h1  { font-size: 36px !important; }
  .card-top { font-size: 14px; padding: 12px; }
  .wsn-h2 { font-size: 42px; }
}


/* ============================================================
   27. RESPONSIVE — VERY SMALL (max 420px)
      Force grid columns that use auto-fit/minmax to stack
   ============================================================ */
@media (max-width: 420px) {
  div[style*="grid-template-columns:repeat(auto-fit,minmax(380px,1fr))"],
  div[style*="grid-template-columns:repeat(auto-fit,minmax(360px,1fr))"] {
    grid-template-columns: 1fr !important;
  }
}


/* ============================================================
   28. NIGHT TOUR — MOSAIC GRID (2fr 1fr layout)
   ============================================================ */
@media (max-width: 768px) {
  div[style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  div[style*="grid-row: 1 / span 2"] {
    grid-row: auto !important;
    height: 300px !important;
  }
}

@media (max-width: 768px) {
  div[style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  div[style*="grid-row: 1 / span 2"] {
    grid-row: auto !important;
    height: 300px !important;
  }
}
/* ============================================================
   29. ST PETE HIDDEN GEM SECTION
   ============================================================ */
@media (max-width: 900px) {
  .stp-hidden-gem-card {
    padding: 24px 16px !important;
  }

  .stp-hidden-gem-grid {
    display: block !important;
  }

  .stp-hidden-gem-grid > div {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .stp-hidden-gem-photo-wrap {
    margin-top: 18px !important;
  }

  .stp-hidden-gem-photo {
    display: block !important;
    width: 100% !important;
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
    object-fit: cover !important;
  }
}

@media (max-width: 768px) {
  .stp-hidden-gem-card {
    padding: 24px 16px !important;
  }
}

/* ============================================================
   30. ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }

  .gallery-card,
  .feature-box,
  .btn-cta,
  .floating-cta a,
  .wsn-cta,
  .tour-card { transition: none !important; }

  .gallery-card img,
  .tour-card-img,
  .wsn-hero-media img,
  .hero-image img { transition: none !important; }
}

/* Visually hidden (screen reader only) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.feature-grid--with-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.feature-box--image {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(0,95,115,0.10);
  border: 1px solid rgba(0,95,115,0.08);
  text-align: left;
  padding: 0 !important;
}

.feature-box--image .feature-box-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 0;
  flex-shrink: 0;
}

.feature-box--image h4 {
  margin: 0;
  padding: 22px 22px 10px;
  color: #005f73;
  line-height: 1.2;
}

.feature-box--image p {
  margin: 0;
  padding: 0 22px 22px;
  flex-grow: 1;
}

@media (max-width: 1100px) {
  .feature-grid--with-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .feature-grid--with-images {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-box--image h4 {
    padding: 18px 18px 8px;
  }

  .feature-box--image p {
    padding: 0 18px 18px;
  }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.wsn-about-page {
  background: var(--bg);
  padding: 40px 0 80px;
}

.wsn-about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.wsn-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.wsn-about-hero {
  position: relative;
  padding: 30px 0 50px;
  background:
    linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    url('../images/background+water.png') center/cover no-repeat;
}

.wsn-about-locations {
  position: relative;
  padding: 50px 0 20px;
  background:
    linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)),
    url('../images/20230307_134944.jpg') center/cover no-repeat;
}

.wsn-about-copy,
.wsn-about-content-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,95,115,0.08);
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(0,95,115,0.10);
  padding: 38px 34px;
}

.wsn-about-title,
.wsn-about-content-card h2 {
  margin: 0 0 22px;
  color: var(--dark);
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.7px;
}

.wsn-about-copy p,
.wsn-about-content-card p,
.wsn-about-content-card li {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
}

.wsn-about-copy p,
.wsn-about-content-card p {
  margin: 0 0 18px;
}

.wsn-about-content-card ol {
  margin: 0 0 18px 22px;
  padding: 0;
}

.wsn-about-content-card li {
  margin-bottom: 12px;
}

.wsn-about-slider-card,
.wsn-about-image-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,95,115,0.16);
  border: 1px solid rgba(0,95,115,0.10);
  background: #fff;
}

.wsn-about-slider {
  position: relative;
  width: 100%;
  min-height: 620px;
}

.wsn-about-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: block;
}

.wsn-about-slider img.active {
  opacity: 1;
}

.wsn-about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

@media (max-width: 968px) {
  .wsn-about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wsn-about-slider {
    min-height: 420px;
  }

  .wsn-about-image-card img {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .wsn-about-page {
    padding: 24px 0 60px;
  }

  .wsn-about-copy,
  .wsn-about-content-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .wsn-about-title,
  .wsn-about-content-card h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .wsn-about-copy p,
  .wsn-about-content-card p,
  .wsn-about-content-card li {
    font-size: 17px;
    line-height: 1.7;
  }

  .wsn-about-slider {
    min-height: 300px;
  }

  .wsn-about-image-card img {
    min-height: 300px;
  }
}
/* ============================================================
   SAFETY INFO PAGE
   ============================================================ */
.wsn-safety-page {
  background: var(--bg);
  padding: 40px 0 80px;
}

.wsn-safety-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.wsn-safety-hero {
  padding: 20px 0 36px;
}

.wsn-safety-video-card,
.wsn-safety-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,95,115,0.08);
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(0,95,115,0.10);
  overflow: hidden;
}

.wsn-safety-video-card {
  padding: 34px 30px 30px;
  text-align: center;
}

.wsn-safety-title {
  margin: 0 0 8px;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 900;
  color: var(--dark);
}

.wsn-safety-subtitle {
  margin: 0 0 24px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--teal);
}

.wsn-safety-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0,95,115,0.12);
  background: #000;
}

.wsn-safety-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.wsn-safety-credit {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-600);
}

.wsn-safety-credit a {
  color: var(--teal);
  word-break: break-word;
}

.wsn-safety-briefing {
  padding-top: 10px;
}

.wsn-safety-card {
  padding: 34px 28px;
}

.wsn-safety-intro {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 2px solid rgba(0,95,115,0.10);
}

.wsn-safety-intro h2 {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.1;
  color: var(--dark);
  font-weight: 900;
}

.wsn-safety-intro p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.wsn-safety-section {
  margin-top: 32px;
}

.wsn-safety-section:first-of-type {
  margin-top: 0;
}

.wsn-safety-section h3 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.2;
  color: var(--dark);
  font-weight: 800;
}

.wsn-safety-section p,
.wsn-safety-section li {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
}

.wsn-safety-section ul {
  margin: 0;
  padding-left: 24px;
}

.wsn-safety-section li {
  margin-bottom: 12px;
}

.wsn-safety-note {
  margin-top: 16px;
  padding: 18px 18px 4px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(10,147,150,0.06), rgba(0,95,115,0.03));
  border: 1px solid rgba(0,95,115,0.08);
}

.wsn-safety-note p {
  margin: 0 0 12px;
}

@media (max-width: 768px) {
  .wsn-safety-page {
    padding: 24px 0 60px;
  }

  .wsn-safety-video-card,
  .wsn-safety-card {
    border-radius: 22px;
  }

  .wsn-safety-video-card,
  .wsn-safety-card {
    padding: 24px 18px;
  }

  .wsn-safety-title {
    font-size: 34px;
  }

  .wsn-safety-subtitle {
    font-size: 26px;
  }

  .wsn-safety-intro h2 {
    font-size: 30px;
  }

  .wsn-safety-section h3 {
    font-size: 24px;
  }

  .wsn-safety-section p,
  .wsn-safety-section li,
  .wsn-safety-intro p {
    font-size: 16px;
    line-height: 1.75;
  }

  .wsn-safety-note {
    padding: 16px 14px 2px;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.wsn-contact-page {
  background: #fff;
  padding: 56px 0 80px;
}

.wsn-contact-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.wsn-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: start;
}

.wsn-contact-form-card {
  background: #fff;
  border-radius: 28px;
  padding: 20px 10px 20px 0;
}

.wsn-contact-title {
  margin: 0 0 16px;
  font-size: 36px;
  color: #0a1f2e;
  line-height: 1.1;
  font-weight: 900;
}

.wsn-contact-intro {
  margin: 0 0 34px;
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

.wsn-contact-form {
  display: grid;
  gap: 20px;
}

.wsn-contact-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #0a1f2e;
}

.wsn-contact-field input,
.wsn-contact-field textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  color: #2d3748;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wsn-contact-field input:focus,
.wsn-contact-field textarea:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.10);
}

.wsn-contact-field textarea {
  resize: vertical;
  min-height: 140px;
}

.wsn-contact-consent {
  margin-top: 4px;
}

.wsn-contact-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.wsn-contact-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.wsn-contact-consent span {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.wsn-contact-submit {
  background: #00d4ff;
  color: #000;
  font-weight: 900;
  font-size: 20px;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 8px;
}

.wsn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 212, 255, 0.48);
}

.wsn-contact-legal {
  font-size: 14px;
  color: #777;
  margin: 20px 0 0;
  line-height: 1.65;
}

.wsn-contact-legal a {
  color: #0a9396;
}

.wsn-contact-alert {
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.wsn-contact-alert--success {
  background: #d4edda;
  color: #155724;
}

.wsn-contact-alert--error {
  background: #f8d7da;
  color: #721c24;
}

.wsn-contact-hidden-success {
  margin-top: 30px;
  padding: 20px;
  background: #e6f7ff;
  border-radius: 12px;
  display: none;
}

.wsn-contact-info-card {
  background: #0a1f2e;
  color: #fff;
  border-radius: 28px;
  padding: 50px 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.wsn-contact-info-title {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  text-align: center;
  margin: 0 0 45px;
}

.wsn-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 42px;
}

.wsn-contact-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 36px;
  font-weight: bold;
}

.wsn-contact-icon--cyan {
  background: #00d4ff;
  color: #000;
}

.wsn-contact-icon--orange {
  background: #ff6b35;
  color: #fff;
}

.wsn-contact-info-label {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 5px;
}

.wsn-contact-info-link {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  word-break: break-word;
}

.wsn-contact-info-link--phone {
  font-size: 30px;
  font-weight: 900;
}

.wsn-contact-info-meta {
  font-size: 16px;
  opacity: 0.9;
  margin-top: 6px;
  line-height: 1.6;
}

.wsn-contact-social {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.wsn-contact-social-title {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.wsn-contact-social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.wsn-contact-social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.wsn-contact-social-links a:nth-child(1) { background: #1877f2; }
.wsn-contact-social-links a:nth-child(2) { background: #e4405f; }
.wsn-contact-social-links a:nth-child(3) { background: #00af87; }

@media (max-width: 1024px) {
  .wsn-contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wsn-contact-form-card {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .wsn-contact-page {
    padding: 28px 0 60px;
  }

  .wsn-contact-title {
    font-size: 32px;
  }

  .wsn-contact-intro {
    font-size: 17px;
    margin-bottom: 26px;
  }

  .wsn-contact-info-card {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .wsn-contact-info-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .wsn-contact-info-item {
    gap: 16px;
    margin-bottom: 28px;
  }

  .wsn-contact-icon {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }

  .wsn-contact-info-link--phone {
    font-size: 24px;
  }
}

/* ============================================================
   LEGAL PAGES (PRIVACY + TERMS)
   ============================================================ */
.wsn-legal-page {
  background: #fff;
  padding: 56px 0 80px;
}

.wsn-legal-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.wsn-legal-card {
  background: #f8fdfc;
  border: 1px solid rgba(0,95,115,0.08);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  padding: 44px;
}

.wsn-legal-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(0,95,115,0.10);
}

.wsn-legal-header h1 {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  color: #0a1f2e;
}

.wsn-legal-updated {
  margin: 0;
  color: #666;
  font-size: 16px;
}

.wsn-legal-section + .wsn-legal-section {
  margin-top: 34px;
}

.wsn-legal-section h2 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: #0a1f2e;
}

.wsn-legal-section p,
.wsn-legal-section li {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.wsn-legal-section p {
  margin: 0 0 14px;
}

.wsn-legal-section ul {
  margin: 0;
  padding-left: 24px;
}

.wsn-legal-section li {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .wsn-legal-page {
    padding: 28px 0 60px;
  }

  .wsn-legal-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .wsn-legal-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
  }

  .wsn-legal-header h1 {
    font-size: 32px;
  }

  .wsn-legal-updated {
    font-size: 15px;
  }

  .wsn-legal-section h2 {
    font-size: 22px;
  }

  .wsn-legal-section p,
  .wsn-legal-section li {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.wsn-404-page {
  background: var(--bg);
  padding: 40px 0 80px;
}

.wsn-404-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.wsn-404-hero {
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
  border: 1px solid rgba(0,95,115,0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-med);
  padding: 50px 28px;
  margin-bottom: 40px;
}

.wsn-404-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(238,155,0,0.12);
  color: var(--gold-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wsn-404-hero h1 {
  margin: 0 0 16px;
  font-size: 52px;
  line-height: 1.08;
  color: var(--dark);
  font-weight: 950;
  letter-spacing: -0.8px;
}

.wsn-404-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.75;
  color: var(--ink-600);
}

.wsn-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.wsn-404-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.4px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wsn-404-btn:hover {
  transform: translateY(-2px);
}

.wsn-404-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--gold-600));
  color: #fff !important;
  box-shadow: 0 16px 40px rgba(238,155,0,0.28);
}

.wsn-404-btn-secondary {
  background: #fff;
  color: var(--dark) !important;
  border: 1px solid rgba(0,95,115,0.12);
  box-shadow: 0 12px 32px rgba(0,95,115,0.08);
}

.wsn-404-cards-section {
  margin-top: 10px;
}

.wsn-404-cards-section h2,
.wsn-404-help h2 {
  text-align: center;
  font-size: 38px;
  color: var(--dark);
  font-weight: 900;
  margin: 0 0 28px;
}

.wsn-404-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.wsn-404-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none !important;
  box-shadow: 0 16px 45px rgba(0,95,115,0.10);
  border: 1px solid rgba(0,95,115,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.wsn-404-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0,95,115,0.16);
}

.wsn-404-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.wsn-404-card-content {
  padding: 18px 18px 20px;
}

.wsn-404-card-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.wsn-404-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
  color: #0a1f2e;
  font-weight: 900;
}

.wsn-404-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.wsn-404-help {
  margin-top: 42px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
  border: 1px solid rgba(0,95,115,0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 34px 22px;
}

.wsn-404-help p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-600);
}

@media (max-width: 1100px) {
  .wsn-404-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .wsn-404-page {
    padding: 24px 0 60px;
  }

  .wsn-404-hero {
    padding: 32px 18px;
    border-radius: 22px;
  }

  .wsn-404-hero h1 {
    font-size: 34px;
  }

  .wsn-404-hero p,
  .wsn-404-help p {
    font-size: 17px;
    line-height: 1.7;
  }

  .wsn-404-cards-section h2,
  .wsn-404-help h2 {
    font-size: 30px;
  }

  .wsn-404-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wsn-404-help {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .wsn-404-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================================================
   SHARED MINI TOUR CARDS (HOME + 404 + OTHER HUBS)
   ============================================================ */
.wsn-mini-tours-section {
  padding: 40px 0 80px;
}

.wsn-tour-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.wsn-tour-mini-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none !important;
  box-shadow: 0 16px 45px rgba(0,95,115,0.10);
  border: 1px solid rgba(0,95,115,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.wsn-tour-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0,95,115,0.16);
}

.wsn-tour-mini-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.wsn-tour-mini-card-content {
  padding: 18px 18px 20px;
}

.wsn-tour-mini-card-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.wsn-tour-mini-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
  color: #0a1f2e;
  font-weight: 900;
}

.wsn-tour-mini-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 1100px) {
  .wsn-tour-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .wsn-mini-tours-section {
    padding: 24px 0 60px;
  }

  .wsn-tour-mini-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.wsn-tour-hero-card {
  max-width: 1400px;
  margin: 0 auto 80px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,95,115,0.18);
  border: 1px solid rgba(0,95,115,0.10);
}

.wsn-tour-hero-badge {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wsn-tour-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.wsn-tour-hero-media {
  display: block;
}

.wsn-tour-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.wsn-tour-hero-content {
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wsn-tour-hero-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ee9b00;
}

.wsn-tour-hero-title {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.08;
  color: #005f73;
  font-weight: 950;
  letter-spacing: -0.8px;
}

.wsn-tour-hero-subtitle {
  margin: 0 0 18px;
  font-size: 22px;
  color: #0a9396;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.wsn-tour-hero-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  color: #4a5568;
}

.wsn-tour-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.wsn-tour-hero-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10,147,150,0.08);
  border: 1px solid rgba(0,95,115,0.10);
  color: #005f73;
  font-size: 14px;
  font-weight: 800;
}

.wsn-tour-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.wsn-tour-hero-chip {
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(0,95,115,0.06), rgba(10,147,150,0.06));
  border: 1px solid rgba(0,95,115,0.10);
}

.wsn-tour-hero-chip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #666;
}

.wsn-tour-hero-chip span {
  font-size: 18px;
  font-weight: 900;
  color: #005f73;
  line-height: 1.25;
}

.wsn-tour-hero-actions {
  margin-top: 22px;
}

.wsn-tour-hero-cta {
  background: linear-gradient(135deg, #ee9b00, #ca6702);
  color: #fff !important;
  padding: 18px 22px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 950;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 55px rgba(238,155,0,0.30);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  border: 1px solid rgba(255,255,255,0.18);
}

@media (max-width: 968px) {
  .wsn-tour-hero-grid {
    grid-template-columns: 1fr;
  }

  .wsn-tour-hero-media {
    order: -1;
  }

  .wsn-tour-hero-media img {
    min-height: 320px;
  }

  .wsn-tour-hero-content {
    padding: 28px 22px;
  }

  .wsn-tour-hero-title {
    font-size: 30px;
  }

  .wsn-tour-hero-meta {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FINAL MOBILE AUDIT PATCH
   ============================================================ */

@media (max-width: 900px) {
  .wsn-h2,
  .section-title {
    font-size: 36px !important;
    line-height: 1.12 !important;
    margin-bottom: 28px !important;
  }

  .wsn-sub {
    font-size: 18px !important;
    line-height: 1.4 !important;
  }

  .wsn-body {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  .btn-cta,
  .btn-cta-gradient,
  .big-book-btn,
  .cross-sell-btn,
  .wsn-cta {
    width: 100%;
    max-width: 100%;
    padding: 16px 18px !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
  }

  .trust-bar2 {
    padding: 12px 12px !important;
  }

  .trust-features {
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .trust-features span {
    font-size: 11px !important;
    padding: 7px 10px !important;
  }

  .tour-info {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .hero-top-bar {
    font-size: 18px !important;
    padding: 14px 12px !important;
    line-height: 1.25 !important;
  }

  .hero-content,
  .card-content {
    padding: 26px 18px !important;
  }

  .hero-content h1 {
    font-size: 32px !important;
    line-height: 1.1 !important;
  }

  .location {
    font-size: 19px !important;
    margin-bottom: 14px !important;
  }

  .hero-content p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 18px !important;
  }

  .details,
  .price-duration {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 17px !important;
    margin: 18px 0 !important;
  }

  .price {
    font-size: 36px !important;
  }

  .tour-grid,
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .tour-image-container,
  .tour-card-img {
    height: 280px !important;
  }

  .tour-content {
    padding: 18px 16px !important;
  }

  .tour-card h3 {
    font-size: 18px !important;
    padding: 20px 16px !important;
  }

  .tour-card h3 a {
    min-height: auto !important;
  }

  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .feature-box {
    padding: 18px 16px !important;
  }

  .feature-box h4 {
    font-size: 18px !important;
    min-height: auto !important;
    margin-bottom: 10px !important;
  }

  .feature-box p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .info-card {
    padding: 18px 16px !important;
    border-radius: 16px !important;
  }

  .info-title {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  .info-details,
  .info-item p {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  .info-item h3 {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }

  .collapsible-header,
  .faq-header {
    font-size: 16px !important;
    line-height: 1.4 !important;
    padding: 14px 14px !important;
  }

  .collapsible-content,
  .faq-content {
    padding: 14px 14px 16px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  .wsn-404-hero,
  .wsn-404-help,
  .wsn-legal-card,
  .wsn-safety-video-card,
  .wsn-safety-card,
  .wsn-about-copy,
  .wsn-about-content-card,
  .wsn-contact-info-card,
  .wsn-tour-hero-card {
    border-radius: 22px !important;
  }

  .wsn-404-hero h1,
  .wsn-tour-hero-title {
    font-size: 32px !important;
    line-height: 1.1 !important;
  }

  .wsn-404-hero p,
  .wsn-404-help p,
  .wsn-tour-hero-text {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  .wsn-tour-mini-grid,
  .wsn-404-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .wsn-tour-mini-card h3,
  .wsn-404-card h3 {
    font-size: 18px !important;
  }

  .wsn-tour-mini-card p,
  .wsn-404-card p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .wsn-tour-hero-content {
    padding: 24px 18px !important;
  }

  .wsn-tour-hero-subtitle {
    font-size: 18px !important;
    margin-bottom: 14px !important;
  }

  .wsn-tour-hero-highlights {
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .wsn-tour-hero-highlights span {
    font-size: 12px !important;
    padding: 7px 10px !important;
  }

  .wsn-tour-hero-meta {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  .wsn-tour-hero-chip {
    padding: 12px !important;
  }

  .wsn-tour-hero-chip span {
    font-size: 16px !important;
  }
}

@media (max-width: 600px) {
  .wsn-container,
  .wsn-about-container,
  .wsn-safety-container,
  .wsn-contact-container,
  .wsn-legal-container,
  .wsn-404-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .wsn-h2,
  .section-title {
    font-size: 30px !important;
    line-height: 1.1 !important;
  }

  .hero-content h1,
  .wsn-404-hero h1,
  .wsn-tour-hero-title {
    font-size: 28px !important;
  }

  .wsn-404-cards-section h2,
  .wsn-404-help h2,
  .wsn-contact-title,
  .wsn-contact-info-title,
  .wsn-safety-intro h2,
  .wsn-about-title,
  .wsn-about-content-card h2 {
    font-size: 26px !important;
    line-height: 1.15 !important;
  }

  .wsn-tour-mini-card-content,
  .wsn-404-card-content {
    padding: 16px !important;
  }

  .wsn-tour-hero-media img,
  .wsn-hero-media img {
    min-height: 240px !important;
  }

  .wsn-about-slider,
  .wsn-about-image-card img {
    min-height: 240px !important;
  }

  .wsn-contact-info-item {
    gap: 12px !important;
  }

  .wsn-contact-icon {
    width: 46px !important;
    height: 46px !important;
    font-size: 22px !important;
  }

  .wsn-contact-info-link--phone {
    font-size: 20px !important;
  }

  .floating-cta {
    left: 16px !important;
    right: 16px !important;
    transform: none !important;
    width: auto !important;
  }

  .floating-cta a {
    width: 100% !important;
    text-align: center !important;
  }
}