@import url('https://fonts.googleapis.com/css2?family=Just+Another+Hand&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --primary: #63ab45;
  /* Vibrant Green */
  --primary-dark: #4f8b36;
  --secondary: #f7921e;
  /* Vibrant Orange */
  --secondary-dark: #d67a15;
  --dark: #1a1a1a;
  --text: #666666;
  --bg-cream: #f9fbf4;
  /* Soft cream/green background */
  --white: #ffffff;
  --border: #e5e5e5;

  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Just Another Hand', cursive;

  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);

  --radius: 16px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.bg-cream {
  background-color: var(--bg-cream);
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 99px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-orange {
  background: var(--secondary);
  color: var(--white) !important;
}

.btn-orange:hover {
  background: var(--secondary-dark);
}

.btn-green {
  background: var(--primary);
  color: var(--white) !important;
}

.btn-green:hover {
  background: var(--primary-dark);
}

.btn-outline-green {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary) !important;
}

.btn-outline-green:hover {
  background: var(--primary);
  color: var(--white) !important;
}

/* Titles */
.sec-title {
  margin-bottom: 50px;
}

.sec-title__tagline {
  font-family: var(--font-accent);
  color: var(--secondary);
  font-size: 36px;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
}

.sec-title__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

/* Header */
.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
}

.main-header__logo img {
  height: 40px;
}

.main-menu__list {
  display: flex;
  gap: 30px;
}

.main-menu__list a {
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
}

.main-menu__list a:hover {
  color: var(--primary);
}

/* Hero Section (Split Layout) */
.hero {
  background: linear-gradient(135deg, #f4f9f0 0%, #eaf4e2 100%);
  position: relative;
  overflow: hidden;
  padding: 160px 0 160px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  padding-right: 50px;
  z-index: 2;
}

.hero-text .sec-title__tagline {
  color: var(--secondary);
  font-size: 42px;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}

.hero-image img {
  max-height: 600px;
  object-fit: contain;
}

/* Abstract shapes in hero */
.hero-shape-1 {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px dashed rgba(99, 171, 69, 0.2);
}

.hero-shape-2 {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.1;
}

/* Floating Search Form (Pill Shaped) */
.search-pill-wrapper {
  position: relative;
  margin-top: -60px;
  z-index: 10;
}

.search-pill {
  background: var(--white);
  border-radius: 999px;
  padding: 15px 15px 15px 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-field {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-right: 1px solid var(--border);
  padding-right: 20px;
  margin-right: 20px;
}

.search-field:nth-last-child(2) {
  border-right: none;
}

.search-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-field label i {
  color: var(--primary);
}

.search-field select,
.search-field input {
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--text);
  outline: none;
  font-family: inherit;
}

.search-btn {
  padding: 15px 40px;
  font-size: 16px;
  margin: 0;
}

/* About Section */
.about-split {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-images {
  flex: 1;
  position: relative;
}

.about-img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 8px solid var(--white);
}

.about-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
  z-index: 4;
  transform: rotate(15deg);
  font-family: var(--font-accent);
  font-size: 24px;
}

.about-bg-shape {
  position: absolute;
  top: 10%;
  left: -20px;
  width: 80%;
  height: 80%;
  background: var(--primary);
  border-radius: var(--radius);
  z-index: 1;
}

.about-text {
  flex: 1;
}

/* Arched Destinations */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.arch-card {
  text-align: center;
}

.arch-img-wrap {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 999px 999px 20px 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 5px solid var(--white);
}

.arch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.arch-card:hover .arch-img-wrap img {
  transform: scale(1.1);
}

.arch-card :is(h3,h4) {
  font-family: var(--font-accent);
  font-size: 32px;
  color: var(--secondary);
}

/* Tour/Sail Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.pkg-img {
  position: relative;
  height: 200px;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
}

.pkg-content {
  padding: 20px;
}

.pkg-stars {
  color: var(--secondary);
  font-size: 12px;
  margin-bottom: 8px;
}

.pkg-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pkg-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 20px;
}

.pkg-meta i {
  color: var(--primary);
}

.pkg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 15px;
}

/* Promo Banner (Wide) */
.promo-wide {
  background: #fdf6ec;
  padding: 60px;
  border-radius: var(--radius);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.promo-wide h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  width: 40%;
}

.promo-badge {
  width: 140px;
  height: 140px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 4px dashed var(--white);
  padding: 10px;
  box-sizing: border-box;
}

/* Split Banners */
.split-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.split-banner {
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.split-banner-green {
  background: var(--primary);
}

.split-banner-orange {
  background: var(--secondary);
}

.split-banner img {
  max-width: 40%;
  position: relative;
  z-index: 2;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.split-banner-content {
  z-index: 2;
}

.split-banner-content h4 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Parallax Adventure Block */
.parallax-block {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/parallax.webp') center center / cover fixed;
  padding: 150px 0;
  text-align: center;
  position: relative;
}

.parallax-text {
  font-size: clamp(60px, 10vw, 150px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 10px;
  line-height: 1;
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.testi-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-content i.fa-quote-left {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 10px;
  opacity: 0.5;
}

.testi-content p {
  font-style: italic;
  margin-bottom: 15px;
}

.testi-stars {
  color: var(--secondary);
  font-size: 12px;
  margin-bottom: 5px;
}

.testi-content :is(h3,h5) {
  font-weight: 800;
  color: var(--dark);
  /* Pinned to what h5 rendered at. This rule never set a size, so the name
     was riding the browser default (h5 = .83em); an h3 would jump to 1.17em. */
  font-size: 0.83rem;
}

/* Same reason: these sit on the browser default for h4 (1em) with no rule of
   their own, so the size has to be stated before the tag can change. */
.about-text :is(h3, h4) {
  font-size: 1rem;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #a3a3a3;
  padding: 80px 0 0;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer :is(h2,h4) {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul a {
  color: #a3a3a3;
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  background: var(--primary);
  padding: 20px 0;
  text-align: center;
  color: var(--white);
  font-weight: 500;
}

/* Responsive Details */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding: 0;
    margin-bottom: 40px;
  }

  .hero-btns {
    justify-content: center;
  }

  .search-pill {
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    gap: 15px;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin: 0;
    width: 100%;
  }

  .arch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-split {
    flex-direction: column;
  }

  .split-banners {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-menu__list {
    display: none;
  }
}
/* About Page Specifics */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/parallax.webp') center center / cover;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header .breadcrumb {
  font-size: 14px;
  font-weight: 500;
}

.page-header .breadcrumb a {
  color: var(--white);
  text-decoration: none;
  margin-right: 5px;
}

.page-header .breadcrumb span {
  color: var(--secondary);
  margin-left: 5px;
}

/* Discount Banner */
.discount-banner {
  background: url('../images/europe.webp') center center / cover fixed;
  padding: 100px 0;
  display: flex;
  justify-content: flex-end;
}

.discount-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  width: 450px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.discount-box h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin: 15px 0;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.countdown-item {
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.countdown-item span {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.countdown-item small {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Step by Step */
.step-grid {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.step-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed var(--border);
  z-index: 0;
}

.step-item {
  text-align: center;
  width: 250px;
  position: relative;
  z-index: 1;
  background: var(--white);
}

.step-icon {
  width: 80px;
  height: 80px;
  border: 2px dashed var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary);
  margin: 0 auto 20px;
  background: var(--white);
  position: relative;
}

.step-num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 24px;
  height: 24px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item :is(h3,h4) {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 13px;
  color: var(--text);
}

/* Instagram */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 20px;
}

.insta-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* Contact Info Cards */
.contact-info-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.contact-box {
  background: #f8fbfb;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-box:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: #eee;
}

.contact-box i {
  font-size: 50px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.contact-box :is(h2,h4) {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.contact-box p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

/* Contact Form Section */
.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-form-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.contact-form-desc {
  color: var(--text);
  margin-bottom: 30px;
  line-height: 1.6;
}

.gotur-input {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 15px 20px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 20px;
  outline: none;
  transition: var(--transition);
}

.gotur-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 171, 69, 0.1);
}

textarea.gotur-input {
  height: 150px;
  resize: none;
}

/* Destination Grid */
.dest-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.dest-card-new {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3/4;
}

.dest-card-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.dest-card-new:hover img {
  transform: scale(1.1);
}

.dest-label-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 40%, rgba(15, 23, 42, 0) 100%);
  pointer-events: none;
}

.dest-label-svg {
  display: none !important;
  /* Remove childish waves for premium luxury look */
}

.dest-label-text {
  position: absolute;
  bottom: 25px;
  left: 20px;
  right: 20px;
  text-align: left;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-main), sans-serif;
  letter-spacing: 0.5px;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Policy FAQ Layout */
.policy-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin: 60px 0;
}

.policy-sidebar-nav {
  background: #f8fbfb;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.policy-sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-sidebar-nav li {
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}

.policy-sidebar-nav li:last-child {
  border-bottom: none;
}

.policy-sidebar-nav a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.policy-sidebar-nav a:hover {
  color: var(--primary);
}

.policy-promo {
  background: linear-gradient(rgba(99, 171, 69, 0.9), rgba(99, 171, 69, 0.9)), url('../images/pool.webp') center/cover;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}

.policy-promo h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Brush Script MT', cursive, sans-serif;
  line-height: 1.2;
}

/* Native Accordion */
.policy-accordion {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 15px;
}

.policy-accordion summary {
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.policy-accordion summary::-webkit-details-marker {
  display: none;
}

.policy-accordion summary::after {
  content: '\f101';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--text);
  transition: transform 0.3s;
}

.policy-accordion[open] summary::after {
  transform: rotate(90deg);
  color: var(--primary);
}

.policy-accordion[open] summary {
  color: var(--primary);
}

.policy-accordion-content {
  padding: 0 30px 20px 30px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.policy-accordion-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 15px 0 10px;
  color: var(--dark);
}

.policy-accordion-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }
}
/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  .dest-grid-new {
    grid-template-columns: 1fr;
  }

  .contact-info-boxes {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    grid-template-columns: 1fr;
  }

  .step-grid {
    flex-direction: column;
    gap: 40px;
  }

  .step-grid::before {
    display: none;
  }

  .step-item {
    width: 100%;
  }
}










@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}






.mp-card {
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  border-radius: 12px;
  padding: 15px 10px;
  text-align: center;
  transition: var(--transition);
}

.mp-card i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 10px;
}

.mp-card :is(h4,h5) {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.2;
}

.mp-card p {
  font-size: 11px;
  color: var(--text);
  line-height: 1.3;
}

.mp-btn {
  background: var(--secondary);
  color: #fff;
  width: 100%;
  border: none;
  padding: 16px;
  border-radius: 16px;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(247, 146, 30, 0.4);
  margin-bottom: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.mp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(247, 146, 30, 0.5);
}

.mp-hold-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.mp-helpline {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.mp-footer {
  font-size: 10px;
  /* Client-specified 30%-visibility fine print. Low contrast by intent. */
  color: #6b6b6b91;
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
}

.mp-footer a {
  color: #6b6b6b91;
  text-decoration: underline;
}

@media (min-width: 769px) {

}
/* Home Page Mobile UI Overrides */
@media (max-width: 768px) {

  .hero {

    padding: 60px 0 160px;
  }

  /* Hero */
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

  /* Destinations */
  .arch-grid {
    grid-template-columns: 1fr !important;
  }

  /* Packages */
  .package-grid {
    grid-template-columns: 1fr !important;
  }

  /* Promo Wide */
  .promo-wide {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .promo-wide h3 {
    width: 100%;
    font-size: 28px;
    margin-bottom: 30px;
  }

  .promo-badge {
    position: relative;
    margin: 0 auto;
    left: 0;
    transform: none;
    width: 110px;
    height: 110px;
    font-size: 16px;
    border-width: 3px;
    line-height: 1.1;
  }

  /* Split Banners */
  .split-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .split-banner img {
    max-width: 100%;
    margin-top: 25px;
    width: 100%;
  }

  .split-banner-content h4 {
    font-size: 24px;
  }

  /* Parallax */
  .parallax-text {
    font-size: 40px !important;
    letter-spacing: 2px !important;
    padding: 0 10px;
  }

  .parallax-block {
    padding: 80px 0;
  }

  /* Testimonials */
  .testi-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* About badge */
  .about-badge {
    width: 80px;
    height: 80px;
    font-size: 18px;
    right: 0;
    top: -10px;
  }
}

/* Additional Mobile Fixes based on Screenshots */
@media (max-width: 768px) {

  /* Header Fix: Hide massive book now button on mobile to prevent overlap */
  .header-actions .btn {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    font-size: 24px;
  }

  /* Promo Wide Badge Fix: Prevent overlap with the button */
  .promo-wide .promo-badge {
    margin: 20px auto 25px !important;
    width: 100px !important;
    height: 100px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  /* Split Banner Fixes: Ensure button doesn't crowd the image */
  .split-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .split-banner-content .btn {
    margin-bottom: 20px;
    display: inline-flex;
  }

  .split-banner-content h4 {
    font-size: 28px !important;
    line-height: 1.2;
  }
}

/* Mobile Hamburger Menu CSS */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {

  /* Attractive premium hamburger button */
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 18px;
    cursor: pointer;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(99, 171, 69, 0.4);
    transition: var(--transition);
  }

  .mobile-menu-toggle:active {
    transform: scale(0.95);
  }

  .main-header {
    position: relative;
    z-index: 1000;
  }

  /* Override the display:none that was previously hiding the menu on mobile */
  .main-header__nav .main-menu__list {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    text-align: left;
    gap: 0 !important;
    /* Override the 40px desktop gap */
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-radius: 0 0 16px 16px;
    z-index: 1000;
  }

  .main-header__nav .main-menu__list.active {
    display: flex !important;
  }

  .main-menu__list li {
    border-bottom: 1px solid #f0f0f0;
  }

  .main-menu__list li:last-child {
    border-bottom: none;
  }

  .main-menu__list li a {
    padding: 16px 25px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark) !important;
  }

  .main-menu__list li a::after {
    content: '\f105';
    /* FontAwesome right angle bracket */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 14px;
    opacity: 0.5;
  }

  .main-menu__list li a:hover,
  .main-menu__list li a:active {
    background: #f8fbfa;
    color: var(--primary) !important;
  }
}
/* Reverse order of Split Banners on mobile */
@media (max-width: 768px) {
  .split-banner {
    display: flex;
    flex-direction: column;
  }

  .split-banner-content {
    order: 2;
  }

  .split-banner img {
    order: 1;
    margin-top: 0 !important;
    margin-bottom: 25px !important;
  }

  .split-banner-content .btn {
    margin-bottom: 0 !important;
  }
}

/* Master Mobile Grid Fixes for All Pages */
@media (max-width: 768px) {

  .insta-grid,
  .contact-info-boxes,
  .contact-form-section,
  .dest-grid-new,
  .policy-layout,
  .stats-grid,
  .team-grid,
  .services-grid,
  .pricing-grid,
  .about-split,
  .faq-layout {
    grid-template-columns: 1fr !important;
  }

  /* For layouts that might use flex instead of grid */
  .policy-layout,
  .about-split {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* About Page Specific Responsive Fixes */
.about-features-row {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.about-actions-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.discount-container {
  display: flex;
  justify-content: flex-end;
}

.feedback-split {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 768px) {
  .about-features-row {
    flex-direction: column;
    gap: 20px;
  }

  .about-actions-row {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  /* Make sure they fit side-by-side on small mobile screens */
  .about-actions-row .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .about-actions-row strong {
    font-size: 16px !important;
  }

  .about-actions-row i.fa-phone-alt {
    font-size: 20px !important;
  }

  .discount-container {
    justify-content: center;
  }

  .feedback-split {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .feedback-split>div {
    width: 100%;
  }

  /* Fix discount box internal spacing on mobile */
  .discount-box {
    padding: 30px 20px !important;
    text-align: center;
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Center feedback avatar on mobile */
  .feedback-split>div:nth-child(2)>div:last-child {
    justify-content: center;
  }
}
/* Final Polish for About Us Mobile View */
@media (max-width: 768px) {

  /* Reduce massive section titles on mobile */
  .sec-title__title {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }

  /* Make the instagram feed a beautiful 3-column grid instead of 1 giant column */
  .insta-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px;
  }

  /* Ensure step items are perfectly centered */
  .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Fix spacing in client feedback */
  .bg-cream {
    padding: 40px 20px !important;
  }
}

/* Polish the Premium Actions Row on Mobile */
@media (max-width: 768px) {
  .about-actions-row {
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: space-between;
    width: 100%;
  }

  .about-actions-row .btn-orange {
    flex: 1;
    padding: 12px 0 !important;
    font-size: 14px !important;
    text-align: center;
    justify-content: center;
  }

  .about-actions-row .phone-pill {
    flex: 1;
    padding: 6px 12px 6px 6px !important;
  }

  .about-actions-row .phone-pill>div:first-child {
    width: 34px !important;
    height: 34px !important;
    font-size: 14px !important;
  }

  .about-actions-row .phone-pill strong {
    font-size: 13px !important;
  }

  .about-actions-row .phone-pill span {
    font-size: 9px !important;
  }
}

/* Professional Corporate Actions Row on Mobile */
@media (max-width: 768px) {
  .about-actions-row {
    flex-wrap: nowrap !important;
    gap: 12px !important;
    justify-content: space-between;
    width: 100%;
  }

  .about-actions-row .btn-orange {
    flex: 1;
    padding: 14px 0 !important;
    font-size: 14px !important;
    text-align: center;
    justify-content: center;
  }

  .about-actions-row .phone-block {
    flex: 1;
    padding: 10px 12px !important;
  }

  .about-actions-row .phone-block>div:first-child {
    font-size: 22px !important;
  }

  .about-actions-row .phone-block strong {
    font-size: 13px !important;
  }

  .about-actions-row .phone-block span {
    font-size: 9px !important;
  }
}

/* Services Page Mobile Overrides */
@media (max-width: 768px) {

  /* Fix giant destination cards by forcing 2 columns */
  .dest-grid-new {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  /* Scale down the wavy label for small 2-col cards */
  .dest-label-wrap {
    height: 60px !important;
  }

  .dest-label-text {
    font-size: 14px !important;
    bottom: 5px !important;
  }

  /* Hide the floating ship icon on mobile as it overlaps text */
  .about-float-ship {
    display: none !important;
  }

  /* Stack the checkmarks neatly on mobile */
  .services-checks-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* Make the main text smaller */
  .about-text .sec-title__title {
    font-size: 28px !important;
  }
}

/* Global Mobile Fix for Destination Cards Text Visibility */
@media (max-width: 768px) {
  .dest-label-wrap {
    height: 100px !important;
    /* Make wave taller to accommodate two lines */
  }

  .dest-label-text {
    font-size: 16px !important;
    /* Slightly smaller */
    bottom: 15px !important;
    padding: 0 5px !important;
    line-height: 1.1 !important;
    /* Add text shadow for perfect visibility even if it bleeds into the image */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5), 0px 0px 8px rgba(0, 0, 0, 0.4) !important;
  }
}

/* Premium Luxury Mobile Overrides for Destination Cards */
@media (max-width: 768px) {
  .dest-label-wrap {
    height: 70% !important;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0) 100%) !important;
  }

  .dest-label-text {
    font-size: 14px !important;
    bottom: 15px !important;
    left: 12px !important;
    right: 12px !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    text-align: left !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  }
}

/* Contact Page Mobile Overrides */
@media (max-width: 768px) {

  /* Prevent long email addresses from breaking out of the box */
  .contact-box :is(h2,h4) {
    font-size: 15px !important;
    word-break: break-word;
    margin-bottom: 5px !important;
  }

  /* Give the icon some breathing room from the text */
  .contact-box i {
    margin-bottom: 10px !important;
  }

  /* Stack Name and Email inputs vertically */
  .contact-form-row {
    flex-direction: column !important;
    gap: 15px !important;
  }

  /* Ensure form image has correct bottom margin on mobile */
  .contact-form-section>div:first-child img {
    margin-bottom: 20px;
  }
}

/* Premium Mobile Overrides for Contact Page */
@media (max-width: 768px) {

  /* Transform tall boxes into sleek horizontal cards */
  .contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .contact-box {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 15px 20px !important;
    gap: 15px;
    border-radius: 16px !important;
    box-shadow: var(--shadow-sm) !important;
    border: 1px solid var(--border);
    background: #fff;
    min-height: auto !important;
    /* Remove tall min-height */
  }

  .contact-box i {
    font-size: 20px !important;
    margin-bottom: 0 !important;
    background: linear-gradient(135deg, rgba(99, 171, 69, 0.15), rgba(99, 171, 69, 0.05));
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(99, 171, 69, 0.2);
  }

  .contact-box :is(h2,h4) {
    margin: 0 0 4px 0 !important;
    font-size: 15px !important;
    font-weight: 800;
  }

  .contact-box p {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  /* Form section polishing */
  .contact-form-section {
    padding: 20px !important;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
  }

  .contact-form-title {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }

  .gotur-input {
    border-radius: 8px !important;
    border: 1px solid var(--border) !important;
    background: var(--bg-cream) !important;
  }
}

/* Premium Mobile Overrides for Policy Pages */
@media (max-width: 768px) {
  .policy-layout {
    display: flex !important;
    /* Move sidebar to the bottom so users can read the policy first */
    flex-direction: column-reverse !important;
    gap: 30px !important;
    margin: 30px 0 !important;
  }

  /* Reduce excessive padding inside accordions for mobile screens */
  .policy-accordion summary {
    padding: 15px 20px !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  .policy-accordion-content {
    padding: 0 20px 20px !important;
    font-size: 14px !important;
  }

  /* Ensure the sidebar nav doesn't have huge margins on mobile */
  .policy-sidebar-nav {
    padding: 20px !important;
    margin-bottom: 20px !important;
  }
}

/* Mobile Overrides for Page Headers */
@media (max-width: 768px) {
  .page-header {
    height: 200px !important;
  }

  .page-header h1 {
    font-size: 32px !important;
  }
}

/* Mobile Overrides for Footer Grid Layout */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "intro intro"
      "destinations policies"
      "contact contact";
  }

  .footer-grid>div:nth-child(1) {
    grid-area: intro;
  }

  .footer-grid>div:nth-child(2) {
    grid-area: destinations;
  }

  .footer-grid>div:nth-child(3) {
    grid-area: policies;
  }

  .footer-grid>div:nth-child(4) {
    grid-area: contact;
  }
}

/* Mobile Overrides for Policy Pages Paragraphs */
@media (max-width: 768px) {
  .policy-layout p {
    text-align: justify !important;
  }
}

/* Premium Policy Contact Styling */
.premium-policy-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.premium-policy-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--bg-cream);
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.premium-policy-contact li i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 3px;
}

.premium-policy-contact li a,
.premium-policy-contact li span {
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.4;
}

.premium-policy-contact li a:hover {
  color: var(--primary);
}

/* GOTUR 3-PANEL CURVED HEADER */
.gotur-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 !important;
  /* Override .main-header padding */
}

.gotur-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary);
  height: 90px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0;
}

/* Left Panel */
.gotur-header-left {
  background: var(--white);
  padding: 0 30px 0 50px;
  display: flex;
  align-items: center;
  border-radius: 0 45px 45px 0;
  height: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.05);
}

.gotur-header-left .main-header__logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Center Panel (Navigation) */
.gotur-header-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px;
  height: 100%;
}

.gotur-header-center .main-menu__list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gotur-header-center .main-menu__list a {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .gotur-header-center .main-menu__list a {
    color: var(--dark) !important;
    padding: 16px 25px !important;
  }
}
.gotur-header-center .main-menu__list a:hover {
  opacity: 0.8;
}

/* Right Panel (Call to Action) */
.gotur-header-right {
  background: var(--white);
  padding: 0 50px 0 30px;
  display: flex;
  align-items: center;
  border-radius: 45px 0 0 45px;
  height: 100%;
  position: relative;
  z-index: 2;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
}

.header-phone-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-phone-box .icon-circle {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.header-phone-box .phone-text {
  display: flex;
  flex-direction: column;
}

.header-phone-box .call-us {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}

.header-phone-box .phone-number {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
}

@media (min-width: 992px) {
  .gotur-header-left .mobile-menu-toggle {
    display: none !important;
  }
}
/* Mobile Fallback */
@media (max-width: 991px) {
  .gotur-header {
    position: sticky;
    top: 0;
    margin-top: 0;
  }

  .gotur-header-inner {
    background: var(--white);
    border-radius: 0;
    height: auto;
    padding: 15px 20px;
    margin-top: 0;
  }

  .gotur-header-left {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    justify-content: space-between;
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
  }

  .gotur-header-center,
  .gotur-header-right {
    display: none;
  }
}

/* Display mobile menu container when active */
@media (max-width: 991px) {
  .gotur-header-center.active {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0;
    height: auto;
    background: transparent;
  }
}

/* Service-provider disclosure (Google Ads UBP) Must be legible, not hidden fine print — a disclosure nobody can read is treated as no disclosure at all. */
.ubp-disclosure {
    background: rgba(0, 0, 0, 0.22);
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ubp-disclosure .ubp-summary {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 600;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.92);
}

.ubp-disclosure .ubp-detail {
    font-size: 0.82rem;
    line-height: 1.65;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.ubp-disclosure a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: underline;
}

.ubp-disclosure a:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .ubp-disclosure { padding: 18px 0; }
    .ubp-disclosure .ubp-detail { font-size: 0.78rem; }
}

/* Accreditations the business holds: IATA, CLIA, TRUE CCRA, D&B.
   Kept next to the disclosure rather than in a hero badge, so a credential and
   the independence statement that qualifies it are always read together. */
.footer-creds {
    padding: 16px 0 4px;
}

.footer-creds-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.footer-creds-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.86);
}

.footer-creds-list i {
    font-size: 0.8rem;
    opacity: 0.75;
}

@media (max-width: 600px) {
    .footer-creds-list { gap: 8px 16px; }
    .footer-creds-list li { font-size: 0.8rem; }
}

/* Accreditations & Certifications Logos in images/accreditations are PLACEHOLDERS — see the README there. */
.accred-section {
    background: transparent;
}

.accred-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.accred-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 22px 18px;
    background: #ffffff;
    border: 1px solid #e6e8eb;
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.accred-card:hover {
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    transform: translateY(-2px);
}

.accred-logo {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.accred-name {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark, #1a1a1a);
    
}

@media (max-width: 992px) {
    .accred-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
    .accred-grid { grid-template-columns: 1fr; }
    .accred-card { justify-content: flex-start; }
}
/* --- Decorative floats must not escape the viewport ----------------------
   .about-img-float is deliberately hung 30px outside .about-images to get the
   overlapped-photo look, and the inline-styled .about-float-ship sits 50px
   outside its grid. That works while the container is centred with margin to
   spare, but once the layout goes full-bleed the offsets poke past the screen
   edge: about.html overflowed by 6px at 414px and 768px, services.html by 35px
   at 1024px. Pulling them in below 1100px; the desktop overlap is untouched.
   The existing 768px rule already hid the ship on phones - this widens that to
   the point where it actually has room.                                     */
@media (max-width: 1100px) {
  .about-img-float { right: 0; bottom: -18px; }
  .about-float-ship { display: none !important; }
}



/* ---------------------------------------------------------------------------
   Mobile support popup. Additive only: every selector is wtp-* prefixed and
   the block is gated at 900px, so nothing above is touched and the desktop
   never renders it.
   ------------------------------------------------------------------------ */
.wtp,
.wtp-backdrop { display: none; }

@media (max-width: 900px) {
  .wtp-backdrop {
    display: block; position: fixed; inset: 0; z-index: 1400;
    background: rgba(26, 26, 26, 0.55);
    opacity: 0; transition: opacity 0.3s ease;
  }
  .wtp-backdrop[hidden] { display: none; }
  body.wtp-open .wtp-backdrop { opacity: 1; }

  .wtp {
    display: block; position: fixed; top: 50%; left: 50%; z-index: 1500;
    width: min(92vw, 430px); max-height: calc(100dvh - 32px);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 24px 22px 12px; text-align: center;
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden;
    transform: translate(-50%, -42%) scale(0.96);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1), visibility 0s 0.35s;
  }
  .wtp[hidden] { display: none; }
  body.wtp-open .wtp {
    opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1), visibility 0s 0s;
  }
  body.wtp-open { overflow: hidden; }

  .wtp-close {
    position: absolute; top: 8px; right: 8px; width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 0; border-radius: 50%; background: transparent;
    color: #9a9a9a; cursor: pointer;
  }
  .wtp-close svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 2; }
  .wtp-close:hover { color: var(--dark); }

  .wtp-avatar {
    width: 64px;
    margin: 4px auto 12px;
  }
  .wtp-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
  }

  .wtp-mark {
    width: 64px; height: 64px; margin: 4px auto 12px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--primary-dark); color: var(--white);
    font-family: var(--font-main); font-size: 23px; font-weight: 800; letter-spacing: -0.02em;
    box-shadow: var(--shadow-md);
  }
  .wtp-status {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: #3d7a2c;
  }
  .wtp-status i {
    width: 7px; height: 7px; border-radius: 50%; background: #3d7a2c;
    box-shadow: 0 0 0 3px rgba(61, 122, 44, 0.18);
  }

  /* The script face is the brand's own accent; used large, where it is legible. */
  .wtp-eyebrow {
    display: block; margin: 10px 0 0;
    font-family: var(--font-accent); font-size: 27px; line-height: 1;
    color: #b06a09;
  }
  .wtp-title {
    font-family: var(--font-main); font-size: 24px; font-weight: 800; line-height: 1.18;
    color: var(--dark); margin: 2px 0 18px; letter-spacing: -0.02em;
  }

  .wtp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .wtp-tile {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    min-height: 48px; padding: 12px; border-radius: 12px;
    background: var(--bg-cream); border: 1px solid var(--border);
    font-size: 12.5px; font-weight: 600; text-align: left; text-decoration: none;
    color: var(--dark); transition: var(--transition);
  }
  .wtp-tile svg { width: 17px; height: 17px; flex: 0 0 17px; stroke: var(--primary-dark); fill: none; stroke-width: 1.7; }
  .wtp-tile:hover { background: #eef6e6; border-color: var(--primary); }
  .wtp-tile:focus-visible { outline: 3px solid var(--primary-dark); outline-offset: 2px; }

  .wtp-call {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 56px; margin-top: 14px; padding: 16px 20px; border-radius: 12px;
    background: #487f31; box-shadow: 0 10px 24px -12px rgba(79, 139, 54, 0.85);
    font-size: 16px; font-weight: 700; color: var(--white); text-decoration: none;
  }
  .wtp-call svg { width: 17px; height: 17px; fill: currentColor; flex: 0 0 17px; }
  .wtp-call:hover { background: #3f6e2a; color: var(--white); }
  .wtp-call:active { transform: translateY(1px); }
  .wtp-call:focus-visible { outline: 3px solid var(--dark); outline-offset: 3px; }

  .wtp-note { margin: 10px 0 0; font-size: 12.5px; color: #5c5c5c; }
  .wtp-legal {
    margin: 12px 0 0; padding-top: 10px; border-top: 1px solid var(--border);
    font-size: 10.5px; line-height: 1.62; color: #5c5c5c; text-align: left;
  }
  .wtp-legal a { color: #3d7a2c; font-weight: 600; }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .wtp, .wtp-backdrop { transition: none; }
  body.wtp-open .wtp { transform: translate(-50%, -50%); }
}


/* ---------------------------------------------------------------------------
   Cruise search — contact row.

   The pill files an enquiry rather than running a search, so it has to collect
   somebody to reply to. Eight controls will not sit on one line at any width,
   so it stacks into two rows and the radius softens from a stadium to a card —
   999px on a two-row block reads as a mistake. The cells are unchanged
   .search-field, so they keep the same label, icon and underline treatment.
   ------------------------------------------------------------------------ */
.search-pill {
  flex-direction: column;
  align-items: stretch;
  border-radius: 28px;
  padding: 18px 24px;
  gap: 0;
}

.sp-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.sp-row--contact {
  border-top: 1px solid var(--border);
  margin-top: 14px;
  padding-top: 16px;
}

/* The last cell of each row sits at the card edge, so it needs no divider. */
.sp-row .search-field:last-of-type {
  border-right: none;
  padding-right: 0;
}

.sp-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.sp-tel select {
  /* min-width:0 or the select is sized by its widest option and swallows the
     number field — the same trap worldztravel fell into. */
  flex: 0 0 104px;
  min-width: 0;
}
.sp-tel input {
  flex: 1 1 auto;
  min-width: 0;
}

.sp-row--contact .search-btn {
  flex: 0 0 auto;
  margin-left: 18px;
}

@media (max-width: 1024px) {
  .search-pill {
    border-radius: 20px;
    padding: 20px;
  }
  .sp-row,
  .sp-row--contact {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .sp-row--contact {
    margin-top: 15px;
    padding-top: 15px;
  }
  /* the dial code and the number are one value, so they stay paired */
  .sp-tel {
    flex-direction: row;
  }
  .sp-row--contact .search-btn {
    margin-left: 0;
    width: 100%;
  }
  /* 16px minimum, or iOS Safari zooms on focus and never returns */
  .sp-row input,
  .sp-row select {
    font-size: 16px;
  }
}


/* Outcome of a cruise search enquiry. Sits inside the pill so the answer
   appears where the question was asked. */
.sp-status {
  margin: 14px 0 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--dark);
}
.sp-status[hidden] { display: none; }
.sp-status--ok { border-left: 3px solid #487f31; }
.sp-status--bad { border-left: 3px solid #b3261e; color: #7a1c16; }
