:root {
  --blue: #0097a9;
  --blue-dark: #061936;
  --brand-teal: #0097a9;
  --brand-orange: #ff8a00;
  --brand-sunset: #ff4f1f;
  --ink: #101828;
  --muted: #667085;
  --line: #e6edf6;
  --soft: #f4f8ff;
  --white: #fff;
  --shadow: 0 22px 60px rgba(31, 111, 219, 0.16);
  --radius: 8px;
  --container: min(1240px, calc(100% - 48px));
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 46%, #fff 100%);
  overflow-x: hidden;
}

html,
body {
  max-width: 100%;
}

img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: var(--container); margin: 0 auto; }

.top-strip {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fbfdff, #f6faff);
  color: var(--muted);
  font-size: 13px;
}

.strip-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 34px rgba(16, 43, 78, .06);
}

.nav-wrap {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 30px;
}

.brand-logo {
  width: auto;
  max-width: 178px;
  height: 92px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 8px 16px rgba(6, 25, 54, .10));
}

.footer-brand .brand-logo {
  max-width: 176px;
  height: 108px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .22));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
  color: #1d2939;
}

.nav-links a.active,
.nav-links a:hover { color: var(--blue); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.nav-cta,
.btn,
.newsletter-form button,
.package-card a,
.enquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-teal), var(--blue-dark));
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(31, 111, 219, 0.22);
}

.nav-cta { padding: 0 20px; }
.btn { padding: 0 22px; }
.btn.small { min-height: 38px; }
.btn.light { background: #fff; color: var(--blue); border: 1px solid var(--line); }
.btn.primary:hover, .nav-cta:hover, .package-card a:hover { background: linear-gradient(135deg, var(--blue-dark), var(--brand-orange)); }
.btn.block { width: 100%; margin-top: 12px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero,
.detail-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero > img,
.detail-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 44%, rgba(255,255,255,.94), rgba(255,255,255,.62) 28%, transparent 48%),
    linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.68) 44%, rgba(0,151,169,0.08));
}

.hero-content,
.detail-hero .container {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin: 0; }
h1, h2 { font-family: "Cormorant Garamond", Georgia, serif; color: #0b1b35; }
h1 { max-width: 720px; font-size: clamp(46px, 7vw, 72px); line-height: 0.98; }
h2 { font-size: clamp(32px, 4vw, 44px); line-height: 1; }

.hero-content p:not(.eyebrow),
.page-hero p,
.confidence p,
.detail-content p,
.about-grid p {
  max-width: 650px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero .btn {
  min-height: 52px;
  padding: 0 28px;
}

.trust-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -56px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 74px rgba(16, 43, 78, .16);
  backdrop-filter: blur(16px);
}

.trust-row article {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.trust-row strong { display: block; margin-bottom: 8px; }
.trust-row span,
.package-card p,
.package-card small,
.footer-grid p,
.footer-grid a { color: var(--muted); font-size: 14px; line-height: 1.7; }

.section { padding: 92px 0; }
.pale {
  width: 100%;
  background:
    linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.section-head { margin-bottom: 28px; }
.section-head.center { text-align: center; }

.destination-grid,
.package-grid,
.gallery-grid,
.about-grid,
.contact-grid,
.detail-layout,
.feature-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.destination-grid { grid-template-columns: repeat(3, 1fr); }
.destination-card,
.package-card,
.gallery-grid article,
.contact-card,
.enquiry-form,
.detail-content,
.enquiry-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 54px rgba(16, 43, 78, .11);
  overflow: hidden;
}

.destination-card,
.package-card,
.testimonial-card,
.feature-grid article {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.destination-card:hover,
.package-card:hover,
.testimonial-card:hover,
.feature-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(16, 43, 78, .16);
}

.destination-card img { height: 265px; object-fit: cover; }
.destination-card div { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; }
.destination-card a { color: var(--blue); font-size: 28px; }

.package-grid { grid-template-columns: repeat(4, 1fr); }
.package-card img { height: 215px; object-fit: cover; }
.package-body { padding: 20px; }
.duration {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9fbfd;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.package-card h3 { font-size: 20px; }
.amenities { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.amenities span { font-size: 12px; color: var(--muted); }
.package-card strong { display: block; margin: 10px 0 14px; font-size: 22px; }
.package-card a { width: 100%; min-height: 40px; }

.center-action { display: flex; justify-content: center; margin-top: 28px; }

.confidence {
  grid-template-columns: .78fr 1.55fr;
  align-items: center;
  gap: 34px;
  padding: 44px;
  border-radius: var(--radius);
  background: linear-gradient(105deg, #f2f7ff 0%, #fbfdff 50%, #f4f9ff 100%);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(31, 111, 219, .11);
}

.confidence h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 40px);
}

.confidence .btn {
  margin-top: 24px;
  margin-bottom: 22px;
  min-width: 190px;
  min-height: 44px;
  padding: 0 18px;
  justify-content: space-between;
}

.confidence .btn::after {
  content: "→";
  margin-left: 14px;
  font-size: 18px;
  line-height: 1;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid article {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 13px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 43, 78, .07);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9fbfd;
  color: var(--blue);
}

.feature-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.feature-grid article div span {
  display: block;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.55;
}

.feature-grid.compact { margin-top: 24px; }

.page-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #eef5ff, #fff);
}

.filter-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.filter-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue);
  font-weight: 800;
}

.detail-hero { min-height: 430px; color: #fff; }
.detail-hero .hero-overlay { background: linear-gradient(90deg, rgba(11,27,53,.88), rgba(11,27,53,.38)); }
.detail-hero h1, .detail-hero p, .detail-hero .eyebrow, .detail-hero strong { color: #fff; }
.detail-hero strong { display: block; margin-top: 18px; font-size: 28px; }
.seat-pill {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-weight: 900;
}
.detail-layout { grid-template-columns: minmax(0, 1fr) 380px; align-items: start; }
.detail-content, .enquiry-box, .contact-card, .enquiry-form { padding: 26px; }
.detail-content h2 { margin: 26px 0 12px; font-size: 32px; }
.detail-content h2:first-child { margin-top: 0; }
.detail-content ul { color: var(--muted); line-height: 1.9; }
.itinerary p { padding: 12px 0; border-bottom: 1px solid var(--line); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
input, textarea, select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
}
textarea { min-height: 120px; resize: vertical; }
.enquiry-form h2, .enquiry-box h2, .contact-card h2 { margin-bottom: 18px; font-size: 32px; }
.enquiry-form textarea, .enquiry-box textarea { margin: 14px 0; }
.enquiry-box form { display: grid; gap: 12px; }
.narrow { max-width: 820px; }
.contact-grid { grid-template-columns: .85fr 1.15fr; }
.contact-card a, .contact-card p { display: block; margin: 0 0 14px; color: var(--muted); }

.about-grid { grid-template-columns: .9fr 1.1fr; align-items: center; }
.about-grid img { height: 430px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid img { height: 250px; object-fit: cover; }
.gallery-grid h3 { padding: 16px; }

.testimonials-section {
  padding: 82px 0 42px;
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.testimonial-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 45px rgba(16, 43, 78, .11);
}

.stars {
  margin-bottom: 14px;
  color: #f4b400;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #344054;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.traveler {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

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

.traveler strong,
.traveler span {
  display: block;
}

.traveler strong {
  font-size: 14px;
}

.traveler span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testimonial-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7e3f4;
}

.testimonial-dots span:first-child {
  width: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-orange));
}

.site-footer {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #061936;
  color: #fff;
  box-shadow: 0 -16px 45px rgba(16, 43, 78, .14);
}

.footer-newsletter {
  width: 100%;
  margin: 0 auto;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 26px;
  padding: 24px max(34px, calc((100vw - 1240px) / 2 + 24px));
  background:
    linear-gradient(90deg, rgba(233, 251, 253, .96), rgba(255, 242, 221, .78)),
    url("https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=1400&q=80") center 42% / cover;
  color: var(--ink);
}

.footer-newsletter h2 {
  font-size: 30px;
}

.footer-newsletter p {
  margin-top: 7px;
  color: #475467;
  font-size: 14px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 136px;
  gap: 10px;
}

.newsletter-form button {
  min-height: 46px;
  padding: 0 18px;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1.25fr;
  gap: 34px;
  padding: 34px 34px 28px;
}

.footer-grid h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 15px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.76);
}

.footer-grid p {
  color: rgba(255,255,255,.76);
}

.footer-brand {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand small {
  color: rgba(255,255,255,.65);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: rgba(0, 151, 169, .20);
  color: #7ce6ef;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: #fff;
  color: var(--brand);
}

.social-icon.facebook { background: rgba(24, 119, 242, .22); color: #8dbbff; }
.social-icon.instagram { background: rgba(225, 48, 108, .22); color: #ff9fc1; }
.social-icon.threads, .social-icon.x { background: rgba(255,255,255,.14); color: #fff; }
.social-icon.linkedin { background: rgba(10, 102, 194, .24); color: #9fd0ff; }
.social-icon.youtube { background: rgba(255, 0, 0, .22); color: #ff9a9a; }
.social-icon.whatsapp { background: rgba(37, 211, 102, .22); color: #8ef5b5; }

.social-card-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.social-card,
.blog-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.social-card .social-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
}

.social-card h3,
.blog-card h3 {
  margin-bottom: 8px;
}

.social-card p,
.blog-card p {
  color: var(--muted);
}

.blog-card a,
.social-card a:last-child {
  color: var(--brand);
  font-weight: 900;
}

.legal-content,
.payment-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin: 28px 0 12px;
  font-size: 28px;
}

.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  max-width: none;
  color: var(--muted);
  line-height: 1.85;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.payment-card h2 { margin-bottom: 18px; }
.payment-list {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.payment-list div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.payment-list dt {
  color: var(--muted);
  font-weight: 800;
}

.payment-list dd {
  margin: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.qr-card {
  text-align: center;
}

.qr-card img,
.qr-placeholder {
  width: min(250px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  background: #f8fbff;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 44px;
  font-weight: 900;
}

.qr-card p {
  color: var(--muted);
}

.footer-bottom {
  width: var(--container);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

.chatbot-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange), var(--blue-dark));
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(31, 111, 219, .34);
}

.chatbot-panel {
  position: fixed;
  right: 26px;
  bottom: 92px;
  z-index: 69;
  width: min(420px, calc(100vw - 32px));
  max-height: min(560px, calc(100vh - 112px));
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d7e6fa;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(11, 27, 53, .22);
}

.chatbot-panel.open {
  display: flex;
}

.chatbot-head {
  display: grid;
  grid-template-columns: 48px 1fr 34px;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, var(--brand-teal), var(--blue-dark));
  color: #fff;
}

.chatbot-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .18);
  font-weight: 900;
}

.chatbot-head strong,
.chatbot-head span {
  display: block;
}

.chatbot-head span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.chatbot-head button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.chatbot-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f7fbff;
}

.bot-message,
.user-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.bot-message {
  align-self: flex-start;
  border: 1px solid #dceafa;
  background: #fff;
  color: #1d2939;
}

.user-message {
  align-self: flex-end;
  background: var(--blue);
  color: #fff;
}

.chatbot-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.chatbot-chips button {
  min-height: 40px;
  border: 1px solid #cfe1f8;
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font-weight: 900;
}

.chatbot-input-row {
  display: grid;
  grid-template-columns: 1fr 82px;
  gap: 10px;
  padding: 10px 14px 14px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.chatbot-input-row input {
  min-width: 0;
  min-height: 46px;
}

.chatbot-input-row button,
.chatbot-actions button,
.chat-contact {
  border: 0;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.chatbot-input-row button {
  min-height: 46px;
}

.chatbot-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.chatbot-actions button {
  grid-column: 1 / -1;
  min-height: 38px;
  background: linear-gradient(135deg, var(--brand-teal), var(--blue-dark));
}

.chat-contact {
  display: flex;
  min-height: 66px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 12px;
}

.chat-contact strong,
.chat-contact span {
  display: block;
}

.chat-contact strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.chat-contact span {
  font-size: 14px;
  font-weight: 700;
}

.chat-contact.whatsapp {
  background: #17a873;
}

.chat-contact.call {
  background: #ff6b2b;
}

.success { min-height: 460px; }

.premium-page-block {
  position: relative;
}

.service-showcase,
.contact-quick-grid,
.enquiry-layout,
.faq-layout {
  display: grid;
  gap: 24px;
}

.service-showcase {
  grid-template-columns: repeat(3, 1fr);
}

.service-showcase .section-head {
  grid-column: 1 / -1;
}

.service-showcase article,
.contact-quick-grid article,
.info-panel,
.faq-list details,
.empty-state,
.blog-featured article {
  border: 1px solid rgba(6, 36, 63, .09);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}

.service-showcase article,
.contact-quick-grid article {
  padding: 24px;
}

.service-showcase strong,
.contact-quick-grid strong {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-dark);
  font-size: 18px;
}

.service-showcase span,
.contact-quick-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.contact-premium {
  align-items: stretch;
}

.contact-card .eyebrow {
  margin-bottom: 18px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 20px 0 22px;
}

.contact-methods a,
.contact-methods p {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(6,36,63,.08);
  border-radius: 14px;
  background: #f8fcfc;
}

.contact-methods strong,
.contact-methods span {
  display: block;
}

.contact-methods strong {
  margin-bottom: 4px;
  color: var(--blue-dark);
}

.contact-methods span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-card .btn,
.info-panel .btn {
  color: #fff;
}

.contact-card .btn {
  width: 100%;
  margin-top: 4px;
  transform: none;
  text-align: center;
  justify-content: center;
}

.contact-card .btn:hover {
  transform: translateY(-2px);
}

.contact-quick-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-featured {
  padding-bottom: 0;
}

.blog-featured article {
  padding: 36px;
  background:
    linear-gradient(120deg, rgba(6,36,63,.96), rgba(0,169,183,.84), rgba(255,122,26,.78));
  color: #fff;
}

.blog-featured h2,
.blog-featured p {
  color: #fff;
}

.blog-featured article > p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(255,255,255,.84);
  line-height: 1.8;
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: calc(100% + 48px);
  height: 210px;
  margin: -24px -24px 20px;
  object-fit: cover;
}

.package-listing-section {
  padding-top: 70px;
}

.empty-state {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 34px;
  text-align: center;
}

.empty-state p {
  margin: 12px auto 20px;
  color: var(--muted);
  line-height: 1.8;
}

.gallery-premium {
  align-items: stretch;
}

.gallery-premium article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.gallery-premium h3 {
  min-height: 70px;
  display: flex;
  align-items: center;
}

.about-owner-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 26px;
  align-items: stretch;
}

.owner-card,
.about-story-card {
  border: 1px solid rgba(6, 36, 63, .09);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.owner-card img {
  height: 420px;
  object-fit: cover;
  object-position: center 18%;
}

.owner-card > div,
.about-story-card {
  padding: 30px;
}

.owner-card strong {
  display: inline-flex;
  margin: 8px 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff2dd;
  color: #b4490f;
}

.owner-card p:not(.eyebrow),
.about-story-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.85;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.about-stat-grid div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(6,36,63,.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f8fcfc);
}

.about-stat-grid strong,
.about-stat-grid span {
  display: block;
}

.about-stat-grid strong {
  color: var(--blue-dark);
  font-size: 18px;
}

.about-stat-grid span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.enquiry-layout,
.faq-layout {
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
}

.info-panel {
  position: sticky;
  top: 132px;
  padding: 32px;
  background:
    linear-gradient(140deg, rgba(255,255,255,.96), rgba(255,248,238,.92));
}

.info-panel h2 {
  font-size: clamp(30px, 3.4vw, 44px);
}

.info-panel p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.info-panel .btn {
  margin-top: 22px;
}

.feature-grid.compact article {
  grid-template-columns: 1fr;
  min-height: 102px;
}

.feature-grid.compact strong {
  color: var(--blue-dark);
  font-size: 14px;
}

.feature-grid.compact span {
  font-size: 14px;
}

.mini-checks {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mini-checks span {
  padding: 12px 14px;
  border: 1px solid rgba(6,36,63,.08);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--blue-dark);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand-orange);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.8;
}

/* Premium Zyvora theme */
:root {
  --blue: #009fb1;
  --blue-dark: #06243f;
  --brand-teal: #00a9b7;
  --brand-orange: #ff7a1a;
  --brand-sunset: #f0441f;
  --brand: #00a9b7;
  --brand-gold: #ffd36b;
  --ink: #0d1d2f;
  --muted: #607087;
  --line: #dfe9ef;
  --soft: #f6fbfb;
  --shadow: 0 26px 70px rgba(6, 36, 63, .14);
  --radius: 18px;
}

body {
  background:
    linear-gradient(180deg, #fffaf3 0%, #f2fbfb 42%, #ffffff 72%);
}

.top-strip {
  border: 0;
  background: linear-gradient(90deg, #06243f 0%, #0b5a76 52%, #ff7a1a 140%);
  color: #fff;
}

.strip-inner {
  min-height: 46px;
  justify-content: space-between;
}

.strip-contact,
.header-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.strip-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.strip-contact span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 5px rgba(255,211,107,.16);
}

.strip-contact a {
  color: #fff;
  font-weight: 800;
}

.site-header {
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(6,36,63,.08);
  box-shadow: 0 18px 50px rgba(6,36,63,.08);
}

.nav-wrap {
  min-height: 96px;
}

.brand {
  min-width: 190px;
  padding: 8px 14px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,250,243,.84));
  box-shadow: 0 22px 55px rgba(6,36,63,.12);
}

.brand-logo {
  max-width: 120px;
  height: 74px;
  object-fit: contain;
  transform: scale(1.12);
  filter: drop-shadow(0 14px 18px rgba(6,36,63,.18));
}

.footer-brand .brand-logo {
  max-width: 132px;
  height: 112px;
  transform: scale(1.08);
}

.nav-links {
  gap: clamp(16px, 2.4vw, 34px);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links a {
  color: #28425e;
  font-size: 12px;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--brand-orange);
}

.nav-links a.active::after {
  bottom: 18px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-orange));
}

.nav-cta,
.btn,
.newsletter-form button,
.package-card a,
.enquiry-form button {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-sunset));
  box-shadow: 0 18px 38px rgba(240,68,31,.24);
}

.nav-cta {
  min-height: 52px;
  padding: 0 26px;
}

.btn.light {
  color: var(--blue-dark);
  border: 1px solid rgba(6,36,63,.12);
  background: #fff;
  box-shadow: 0 16px 34px rgba(6,36,63,.10);
}

.btn.primary:hover,
.nav-cta:hover,
.package-card a:hover,
.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--brand-teal), var(--blue-dark));
}

.hero {
  min-height: 720px;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-gold), var(--brand-orange));
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6,36,63,.86) 0%, rgba(6,36,63,.55) 38%, rgba(0,169,183,.10) 70%, rgba(255,122,26,.26) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
}

.hero-content {
  color: #fff;
}

.hero-content h1 {
  color: #fff;
  text-shadow: 0 16px 45px rgba(0,0,0,.26);
}

.hero-content p:not(.eyebrow) {
  color: rgba(255,255,255,.88);
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(0,169,183,.18);
  border-radius: 999px;
  background: rgba(0,169,183,.10);
  color: var(--brand-orange);
  letter-spacing: .14em;
}

.hero .eyebrow {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.14);
  color: var(--brand-gold);
  backdrop-filter: blur(10px);
}

h1, h2 {
  color: var(--blue-dark);
}

h1 {
  font-size: clamp(54px, 7.8vw, 88px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(36px, 4.8vw, 56px);
}

.section {
  position: relative;
}

.trust-row,
.confidence,
.destination-card,
.package-card,
.testimonial-card,
.gallery-grid article,
.contact-card,
.enquiry-form,
.detail-content,
.enquiry-box,
.legal-content,
.payment-card,
.social-card,
.blog-card {
  border: 1px solid rgba(6,36,63,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}

.trust-row {
  margin-top: -76px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 30px 90px rgba(6,36,63,.20);
}

.trust-row article,
.feature-grid article {
  border-radius: 18px;
  background:
    linear-gradient(180deg, #fff, #fff8ef);
}

.pale {
  background:
    linear-gradient(180deg, #fff8ef 0%, #effbfb 100%);
}

.destination-card,
.package-card {
  position: relative;
}

.destination-card::after,
.package-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-orange));
}

.destination-card img,
.package-card img,
.gallery-grid img {
  filter: saturate(1.08) contrast(1.02);
}

.duration {
  background: #fff2dd;
  color: #b4490f;
}

.amenities span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f1fbfb;
  color: #28546a;
  font-weight: 800;
}

.confidence {
  background:
    linear-gradient(120deg, rgba(6,36,63,.96), rgba(0,169,183,.86) 58%, rgba(255,122,26,.88));
  color: #fff;
  overflow: hidden;
}

.confidence h2,
.confidence p,
.confidence .eyebrow {
  color: #fff;
}

.confidence .eyebrow {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.14);
}

.confidence p {
  color: rgba(255,255,255,.84);
}

.feature-grid article {
  background: rgba(255,255,255,.95);
}

.feature-icon {
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-orange));
  color: #fff;
}

.page-hero {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(6,36,63,.96), rgba(0,169,183,.82) 58%, rgba(255,122,26,.80)),
    url("https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero h1,
.page-hero p {
  color: #fff;
}

.page-hero p {
  color: rgba(255,255,255,.84);
}

.page-hero .eyebrow {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.15);
  color: var(--brand-gold);
}

.filter-links a {
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 14px 30px rgba(6,36,63,.07);
}

.filter-links a:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-orange));
}

.detail-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(6,36,63,.92), rgba(6,36,63,.54), rgba(255,122,26,.18));
}

input,
textarea,
select {
  border-color: rgba(6,36,63,.12);
  border-radius: 14px;
  background: #fffdfa;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 4px rgba(0,169,183,.12);
}

.footer-newsletter {
  min-height: 132px;
  background:
    linear-gradient(100deg, rgba(6,36,63,.92), rgba(0,169,183,.76), rgba(255,122,26,.78)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1600&q=80") center / cover;
  color: #fff;
}

.footer-newsletter h2,
.footer-newsletter p {
  color: #fff;
}

.site-footer {
  background:
    linear-gradient(145deg, #051a2f 0%, #072a49 48%, #0d3f52 100%);
}

.footer-grid {
  padding-top: 48px;
}

.footer-grid h3 {
  color: var(--brand-gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: #fff;
}

.social-links,
.header-socials {
  gap: 11px;
}

.social-links a,
.header-socials a,
.social-card .social-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.header-socials a {
  width: 34px;
  height: 34px;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon.youtube svg path:last-child,
.social-icon.facebook svg path {
  fill: currentColor;
  stroke: none;
}

.social-icon.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.social-icon.facebook { background: #1877f2; color: #fff; }
.social-icon.threads, .social-icon.x { background: #111; color: #fff; }
.social-icon.linkedin { background: #0a66c2; color: #fff; }
.social-icon.youtube { background: #ff0033; color: #fff; }
.social-icon.whatsapp { background: #25d366; color: #fff; }

.social-links a:hover,
.header-socials a:hover {
  transform: translateY(-3px) scale(1.04);
  color: #fff;
}

.chatbot-toggle {
  background: linear-gradient(135deg, var(--brand-orange), var(--blue-dark));
  box-shadow: 0 18px 44px rgba(240,68,31,.35);
}

@media (max-width: 1020px) {
  .nav-links {
    position: fixed;
    inset: 115px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .trust-row,
  .destination-grid,
  .package-grid,
  .testimonial-grid,
  .confidence,
  .detail-layout,
  .about-grid,
  .contact-grid,
  .gallery-grid,
  .social-card-grid,
  .blog-grid,
  .footer-newsletter,
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout,
  .payment-layout,
  .confidence,
  .about-grid,
  .contact-grid,
  .footer-newsletter { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 22px, 1240px); }
  .strip-inner { flex-wrap: wrap; gap: 10px; padding: 8px 0; }
  .hero, .detail-hero { min-height: 590px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.7)); }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .trust-row,
  .destination-grid,
  .package-grid,
  .testimonial-grid,
  .feature-grid,
  .gallery-grid,
  .social-card-grid,
  .blog-grid,
  .newsletter-form,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }
  .payment-list div { grid-template-columns: 1fr; }
  .trust-row { margin-top: 0; }
  .section { padding: 52px 0; }
  .confidence { padding: 24px; }
  .newsletter-form button,
  .btn,
  .hero-actions a { width: 100%; }
  .site-footer {
    width: 100%;
    border-radius: 0;
  }
  .footer-newsletter,
  .footer-grid {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
  .footer-bottom {
    width: calc(100% - 36px);
    flex-direction: column;
    margin: 0 18px;
  }
  .chatbot-panel {
    right: 10px;
    bottom: 88px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 108px);
  }
  .chatbot-chips,
  .chatbot-actions {
    grid-template-columns: 1fr;
  }
  .chatbot-input-row {
    grid-template-columns: minmax(0, 1fr) 76px;
  }
}

/* Client-ready polish pass */
:root {
  --premium-navy: #061b31;
  --premium-ink: #0b1828;
  --premium-copper: #df6f28;
  --premium-teal: #009fb1;
  --premium-cream: #fff8ee;
  --premium-card: rgba(255, 255, 255, .94);
  --radius: 16px;
  --shadow: 0 24px 70px rgba(6, 27, 49, .13);
}

body {
  color: var(--premium-ink);
  background:
    linear-gradient(180deg, #fff 0%, #f7fbfb 36%, #fff8ee 68%, #fff 100%);
}

.top-strip {
  background: linear-gradient(90deg, #061b31 0%, #0a5168 56%, #d96523 124%);
  font-size: 12px;
}

.strip-inner {
  min-height: 42px;
}

.strip-contact {
  min-width: 0;
}

.strip-contact a {
  opacity: .94;
  transition: opacity .2s ease, color .2s ease;
}

.strip-contact a:hover {
  opacity: 1;
  color: var(--brand-gold);
}

.site-header {
  top: 0;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(6, 27, 49, .08);
  box-shadow: 0 18px 55px rgba(6, 27, 49, .09);
}

.nav-wrap {
  min-height: 88px;
}

.brand {
  min-width: 0;
  padding: 7px 16px;
  border: 1px solid rgba(6, 27, 49, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 44px rgba(6, 27, 49, .10);
}

.brand-logo {
  max-width: 136px;
  height: 68px;
  transform: none;
  filter: drop-shadow(0 12px 18px rgba(6, 27, 49, .14));
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-brand .brand-logo {
  max-width: 144px;
  height: 86px;
  transform: none;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.22));
}

.nav-links {
  padding: 0 12px;
  border: 1px solid rgba(6, 27, 49, .07);
  border-radius: 999px;
  background: rgba(255, 255, 255, .70);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.nav-links a {
  padding: 18px 0;
  color: #233a54;
  font-size: 11px;
  letter-spacing: .10em;
}

.nav-links a.active::after {
  bottom: 10px;
  height: 3px;
}

.nav-cta,
.btn,
.newsletter-form button,
.package-card a,
.enquiry-form button {
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #df6f28, #f0441f);
  box-shadow: 0 16px 36px rgba(223, 111, 40, .24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta:hover,
.btn:hover,
.newsletter-form button:hover,
.package-card a:hover,
.enquiry-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(6, 27, 49, .18);
}

.hero {
  min-height: 700px;
  isolation: isolate;
}

.hero > img,
.detail-hero > img {
  transform: scale(1.01);
  filter: saturate(1.08) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 27, 49, .90) 0%, rgba(6, 27, 49, .66) 42%, rgba(0, 159, 177, .18) 68%, rgba(223, 111, 40, .25) 100%),
    radial-gradient(circle at 18% 38%, rgba(255, 211, 107, .24), transparent 34%);
}

.hero-content {
  max-width: 820px;
}

.hero-content h1 {
  max-width: 800px;
  font-size: clamp(52px, 7.2vw, 84px);
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255,255,255,.88);
}

.hero-actions .btn {
  min-width: 178px;
}

.btn.light {
  background: rgba(255,255,255,.94);
  color: var(--premium-navy);
}

.trust-row {
  gap: 14px;
  padding: 16px;
  border-color: rgba(6, 27, 49, .08);
  border-radius: 22px;
  background: rgba(255,255,255,.84);
}

.trust-row article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(6, 27, 49, .08);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #fff8ee);
}

.trust-row article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--premium-teal), var(--premium-copper));
}

.trust-row strong,
.package-card h3,
.destination-card h3,
.testimonial-card strong {
  color: var(--premium-navy);
}

.section {
  padding: 88px 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 760px;
  margin: 0 auto;
}

.offer-strip {
  width: min(1050px, calc(100% - 40px));
  margin: 42px auto 0;
  overflow: hidden;
  border: 1px solid rgba(0,159,177,.18);
  border-radius: 999px;
  background: linear-gradient(90deg, #061b31, #0a6673 54%, #df6f28);
  box-shadow: 0 18px 46px rgba(6, 27, 49, .14);
}

.offer-strip a {
  display: flex;
  width: max-content;
  min-height: 48px;
  align-items: center;
  gap: 42px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: offer-marquee 24s linear infinite;
}

.offer-strip span {
  position: relative;
  padding-left: 42px;
  white-space: nowrap;
}

.offer-strip span::before {
  content: "Limited Offer";
  display: inline-flex;
  margin-right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: var(--brand-gold);
  letter-spacing: .08em;
}

@keyframes offer-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.destination-card,
.package-card,
.testimonial-card,
.gallery-grid article,
.contact-card,
.enquiry-form,
.detail-content,
.enquiry-box,
.legal-content,
.payment-card,
.social-card,
.blog-card {
  border-radius: 16px;
  background: var(--premium-card);
  box-shadow: var(--shadow);
}

.destination-card img {
  height: 286px;
  background: linear-gradient(135deg, #eaf7f8, #fff2dd);
}

.destination-card div {
  min-height: 82px;
  padding: 20px 22px;
}

.destination-card a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #effafa;
  color: var(--premium-teal);
  font-size: 24px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.destination-card:hover a {
  background: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
  color: #fff;
  transform: translateX(2px);
}

.package-card {
  display: flex;
  flex-direction: column;
}

.package-card img {
  height: 228px;
  background: linear-gradient(135deg, #eaf7f8, #fff2dd);
}

.package-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.package-card p {
  margin-top: 8px;
}

.amenities {
  margin-top: 18px;
}

.package-card strong {
  margin-top: auto;
}

.package-card strong small {
  color: var(--muted);
  font-size: 12px;
}

.confidence {
  padding: 72px 56px;
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(6, 27, 49, .97), rgba(0, 117, 136, .90) 58%, rgba(223, 111, 40, .92)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1500&q=80") center / cover;
  box-shadow: 0 28px 84px rgba(6, 27, 49, .22);
}

.confidence.section {
  padding: 72px 56px;
}

.confidence > div:first-child {
  padding-right: 18px;
}

.confidence .feature-grid {
  margin-top: 10px;
}

.feature-grid article {
  border-color: rgba(6, 27, 49, .08);
  background: rgba(255,255,255,.96);
}

.feature-grid strong {
  color: var(--premium-navy);
}

.page-hero {
  padding: 104px 0;
  background:
    linear-gradient(115deg, rgba(6,27,49,.96), rgba(0,117,136,.83) 58%, rgba(223,111,40,.74)),
    url("https://images.unsplash.com/photo-1517824806704-9040b037703b?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.filter-links {
  justify-content: center;
}

.filter-links a {
  padding: 11px 18px;
  border-color: rgba(6,27,49,.08);
}

.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 18% 16%, rgba(0,159,177,.20), transparent 28%),
    linear-gradient(145deg, #041526 0%, #061f38 48%, #0a3d4b 100%);
}

.footer-newsletter {
  width: var(--container);
  min-height: 176px;
  margin: 0 auto;
  transform: translateY(-1px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 0 0 22px 22px;
  background:
    linear-gradient(100deg, rgba(6,27,49,.90), rgba(0,159,177,.74), rgba(223,111,40,.78)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.newsletter-form input {
  min-height: 52px;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.94);
}

.footer-grid {
  gap: 30px;
  padding: 64px 0 38px;
}

.footer-grid > div {
  min-width: 0;
}

.footer-grid h3 {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 11px;
  color: var(--brand-gold);
  font-size: 12px;
}

.footer-grid h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--premium-teal), var(--premium-copper));
}

.footer-grid a {
  width: fit-content;
  transition: color .2s ease, transform .2s ease;
}

.footer-grid a:hover {
  transform: translateX(3px);
}

.footer-package-roll {
  position: relative;
  max-height: 178px;
  overflow: hidden;
}

.footer-package-roll::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42px;
  background: linear-gradient(180deg, rgba(6,31,56,0), rgba(6,31,56,.96));
  pointer-events: none;
}

.footer-package-roll a {
  animation: footer-package-float 18s ease-in-out infinite alternate;
}

@keyframes footer-package-float {
  from { transform: translateY(0); }
  to { transform: translateY(-28px); }
}

.social-links a,
.header-socials a,
.social-card .social-icon {
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

.site-footer .social-links a {
  width: 32px;
  height: 32px;
  margin: 0;
}

.site-footer .social-links {
  gap: 11px;
  align-items: center;
}

.header-socials a {
  width: 32px;
  height: 32px;
}

.social-icon svg {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  padding: 24px 0 34px;
  justify-content: center;
  text-align: center;
}

.site-footer .footer-grid > div:first-child h3 {
  font-size: 18px;
  color: #fff;
}

.site-footer .footer-grid > div:first-child {
  padding-top: 2px;
}

.chatbot-toggle {
  font-size: 13px;
  letter-spacing: .04em;
}

.offer-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(3, 15, 28, .68);
  backdrop-filter: blur(10px);
}

.offer-popup.open {
  display: grid;
}

.offer-popup-card {
  position: relative;
  width: min(860px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: .9fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 36px 110px rgba(0,0,0,.34);
}

.offer-popup-card img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.offer-popup-card > div {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 44px;
}

.offer-popup-card h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.offer-popup-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.offer-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(6,27,49,.88);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.testimonial-slider {
  overflow: hidden;
  padding: 8px 0 14px;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testimonial-scroll 34s linear infinite;
}

.testimonial-card {
  width: 360px;
  flex: 0 0 360px;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}

@media (max-width: 1120px) {
  .nav-wrap {
    gap: 14px;
  }

  .nav-links {
    gap: 16px;
  }

  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }
}

@media (max-width: 1020px) {
  .nav-links {
    inset: 104px 18px auto;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .top-strip {
    font-size: 11px;
  }

  .strip-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .strip-contact,
  .header-socials {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .strip-contact {
    overflow: hidden;
    white-space: nowrap;
  }

  .strip-contact span,
  .strip-contact a[href^="mailto:"] {
    display: none;
  }

  .site-header {
    position: sticky;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: auto 44px;
    min-height: 78px;
    justify-content: space-between;
    position: relative;
  }

  .brand {
    max-width: 148px;
    padding: 5px 10px;
  }

  .brand-logo {
    max-width: 112px;
    height: 58px;
  }

  .nav-links {
    inset: 126px 12px auto;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    position: absolute;
    left: min(calc(100% - 44px), 330px);
    right: auto;
    top: 17px;
    z-index: 3;
    justify-self: end;
  }

  .hero,
  .detail-hero {
    min-height: 620px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6,27,49,.88), rgba(6,27,49,.68) 58%, rgba(223,111,40,.28)),
      radial-gradient(circle at 22% 24%, rgba(255,211,107,.22), transparent 34%);
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero-content h1 {
    width: min(100%, 348px);
    font-size: 35px;
    line-height: 1.05;
    overflow-wrap: normal;
  }

  .hero-content p:not(.eyebrow) {
    width: min(100%, 348px);
    max-width: 348px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 10px;
  }

  .trust-row {
    margin-top: -28px;
    padding: 12px;
  }

  .section {
    padding: 58px 0;
  }

  .destination-card img,
  .package-card img,
  .gallery-grid img {
    height: 230px;
  }

  .confidence {
    padding: 34px 22px;
    border-radius: 18px;
  }

  .confidence.section {
    padding: 34px 22px;
  }

  .confidence > div:first-child {
    padding-right: 0;
  }

  .page-hero {
    padding: 72px 0;
  }

  .page-hero h1,
  .page-hero p:not(.eyebrow) {
    width: min(100%, 340px);
    max-width: 340px;
    overflow-wrap: break-word;
  }

  .page-hero .eyebrow {
    width: fit-content;
    max-width: 100%;
  }

  .page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .contact-card,
  .enquiry-form,
  .info-panel,
  .faq-list details {
    overflow: hidden;
  }

  .contact-card .btn,
  .info-panel .btn {
    width: 100%;
  }

  .footer-newsletter {
    width: 100%;
    border-radius: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .service-showcase,
  .contact-quick-grid,
  .enquiry-layout,
  .faq-layout,
  .about-owner-section {
    grid-template-columns: 1fr;
  }

  .blog-featured article,
  .info-panel {
    padding: 24px;
  }

  .info-panel {
    position: static;
  }

  .blog-card img {
    height: 190px;
  }

  .gallery-premium h3 {
    min-height: 56px;
  }

  .owner-card img {
    height: 320px;
  }

  .owner-card > div,
  .about-story-card {
    padding: 22px;
  }

  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    width: 300px;
    flex-basis: 300px;
  }

  .offer-strip {
    width: var(--container);
    margin-top: 28px;
    border-radius: 18px;
  }

  .offer-strip a {
    min-height: 44px;
    font-size: 11px;
  }

  .offer-popup-card {
    grid-template-columns: 1fr;
    width: min(100%, 346px);
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 44px);
    overflow-y: auto;
    border-radius: 18px;
  }

  .offer-popup-card img {
    min-height: 190px;
    height: 190px;
  }

  .offer-popup-card > div {
    padding: 24px;
  }

  .offer-popup-card .btn {
    width: 100%;
    min-width: 0;
  }

  .offer-popup-close {
    top: 10px;
    right: 10px;
  }
}

/* Final launch QA overrides */
.site-header .brand {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-header .brand-logo {
  width: auto;
  max-width: 176px;
  height: 98px;
  object-fit: contain;
  transform: none;
  background: transparent;
  filter: drop-shadow(0 14px 20px rgba(6, 27, 49, .16));
}

.footer-bottom {
  justify-content: space-between;
}

.contact-card a.btn,
.contact-card .btn.primary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  line-height: 1;
  text-align: center;
  white-space: normal;
}

@media (max-width: 680px) {
  .site-header .brand-logo {
    max-width: 136px;
    height: 72px;
  }

  .footer-bottom {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .filter-links {
    justify-content: flex-start;
    overflow-x: visible;
  }

  .filter-links a {
    flex: 1 1 100%;
    text-align: center;
  }

  .package-grid,
  .destination-grid,
  .gallery-grid,
  .blog-grid,
  .social-card-grid,
  .contact-grid,
  .footer-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .package-card,
  .destination-card,
  .gallery-grid article,
  .blog-card,
  .social-card {
    width: 100%;
  }
}
