:root {
  --blue: #0f72b6;
  --blue-dark: #074f86;
  --sky: #0ca0d0;
  --sun: #ffcf2e;
  --coral: #f36b4f;
  --green: #0b8f72;
  --ink: #18202b;
  --muted: #667085;
  --line: #d9e2ea;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --admin-bg: #eef3f7;
  --shadow: 0 18px 50px rgba(15, 42, 74, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 234, 0.8);
  backdrop-filter: blur(14px);
}

.transparent-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
  border-bottom: 0;
  color: #fff;
  backdrop-filter: none;
}

.header-social-row {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 900;
}

.social-links,
.header-auth {
  display: flex;
  align-items: center;
  gap: 22px;
}

.social-links span {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.38);
}

.transparent-header .topbar-inner {
  min-height: 98px;
}

.transparent-header .brand img {
  width: 222px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

.transparent-header .site-nav > a,
.transparent-header .nav-item > a {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.transparent-header .site-nav > a:hover,
.transparent-header .site-nav > a.active,
.transparent-header .nav-item:hover > a,
.transparent-header .nav-item > a.active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.transparent-header .header-call {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.18);
}

.transparent-header .header-call span,
.transparent-header .header-call strong {
  color: #fff;
}

.transparent-header .mega-panel {
  top: calc(100% - 12px);
  color: var(--ink);
}

.topbar-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr) 132px;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 158px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}

.site-nav > a,
.nav-item > a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 9px;
  border-radius: var(--radius);
  color: #314052;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.admin-sidebar nav a {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #314052;
  font-weight: 700;
  font-size: 14px;
}

.site-nav > a:hover,
.site-nav > a.active,
.nav-item:hover > a,
.nav-item > a.active,
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  background: #e8f4fb;
  color: var(--blue-dark);
}

.nav-item {
  position: static;
  display: inline-flex;
  align-items: center;
}

.mega-panel {
  position: absolute;
  left: 50%;
  top: calc(100% - 10px);
  transform: translateX(-50%) translateY(8px);
  width: min(1120px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  white-space: normal;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.mega-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  height: 34px;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-intro {
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #e8f4fb, #fff8d8);
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.mega-intro .btn {
  justify-self: start;
  width: auto;
}

.mega-intro strong {
  font-size: 26px;
  line-height: 1;
  color: var(--blue-dark);
}

.mega-intro p {
  margin: 0;
  color: #516070;
  max-width: 220px;
  overflow-wrap: anywhere;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.mega-columns h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--coral);
}

.mega-columns a {
  display: block;
  padding: 7px 0;
  color: #344154;
  font-size: 13px;
  font-weight: 800;
}

.mega-columns a:hover {
  color: var(--blue);
}

.header-call {
  display: grid;
  align-items: center;
  gap: 0;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  height: 46px;
}

.header-call span {
  font-size: 12px;
  color: var(--muted);
}

.header-call strong {
  color: var(--blue-dark);
  font-size: 13px;
  line-height: 1.1;
  white-space: nowrap;
}

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

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  min-height: 640px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.video-hero {
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  background: #0b5f87;
}

.hero-media,
.hero-overlay,
.hero-video {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 102%;
  height: 102%;
  left: -1%;
  top: -1%;
  object-fit: cover;
  object-position: center;
}

.hero-media {
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background: rgba(4, 22, 34, 0.34);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-bottom: 54px;
}

.hero-content.centered {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 120px;
}

.hero h1 {
  width: min(760px, 100%);
  margin: 8px 0 16px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

.video-hero .hero h1,
.video-hero h1 {
  width: min(980px, 100%);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.02;
  font-weight: 900;
}

.hero p {
  width: min(650px, 100%);
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-content.centered p {
  width: min(760px, 100%);
  margin: 0 auto;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 700;
}

.hero-content.centered .hero-search {
  margin-top: 44px;
}

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

.hero .eyebrow,
.page-hero .eyebrow,
.tour-hero .pill {
  color: var(--sun);
}

.hero-search {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: 1fr 170px 140px;
  gap: 10px;
  margin-top: 34px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

textarea {
  resize: vertical;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: #314052;
}

.btn {
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue-dark);
  min-height: 44px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
}

.btn.primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn.primary:hover {
  background: var(--blue-dark);
}

.btn.ghost {
  background: #f7fbfd;
  color: var(--blue-dark);
  border-color: var(--line);
}

.btn.small {
  min-height: 34px;
  padding: 6px 10px;
  font-size: 13px;
}

.btn.danger {
  background: #fff0ed;
  color: #a63a25;
  border-color: #ffc5ba;
}

.btn.full {
  width: 100%;
}

.stats-strip {
  background: var(--blue-dark);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 26px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-grid strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--sun);
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 72px 0;
}

.section.tinted {
  background: linear-gradient(180deg, #f5f8fb 0%, #edf7f4 100%);
}

.section-head,
.admin-head,
.result-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.link-arrow {
  color: var(--green);
  font-weight: 900;
}

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

.tour-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 42, 74, 0.08);
  display: flex;
  flex-direction: column;
}

.tour-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

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

.tour-image span,
.pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 79, 134, 0.92);
  color: #fff;
  padding: 6px 10px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.tour-body {
  padding: 18px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.tour-body > p:first-child {
  color: var(--coral);
  margin: 0;
  font-weight: 800;
  font-size: 13px;
}

.tour-body h3 {
  font-size: 22px;
}

.tour-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-meta span,
.feature-list span,
.filter-pills a {
  background: #eef6fb;
  color: var(--blue-dark);
  border-radius: var(--radius);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.tour-summary {
  color: var(--muted);
  margin: 0;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.tour-footer strong {
  color: var(--green);
  font-size: 19px;
}

.tour-detail-section {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.tour-detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tour-detail-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 42, 74, 0.08);
}

.tour-detail-panel.international {
  border-top: 4px solid var(--green);
}

.tour-detail-panel:not(.international) {
  border-top: 4px solid var(--sun);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.panel-head span {
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 900;
}

.panel-head a {
  color: var(--green);
  font-weight: 900;
}

.detail-tour-item {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.detail-tour-item img {
  width: 98px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
}

.detail-tour-item span {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.detail-tour-item small {
  color: var(--coral);
  font-weight: 900;
}

.detail-tour-item strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.detail-tour-item em {
  color: var(--muted);
  font-style: normal;
  overflow-wrap: anywhere;
}

.detail-tour-item b {
  color: var(--green);
  white-space: nowrap;
}

.travel-style-section {
  background:
    linear-gradient(135deg, rgba(7, 79, 134, 0.96), rgba(11, 143, 114, 0.9)),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: #fff;
}

.travel-style-section h2 {
  color: #fff;
}

.travel-style-section .eyebrow {
  color: var(--sun);
}

.travel-style-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.travel-style-card {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.travel-style-card span {
  color: var(--sun);
  font-weight: 900;
}

.travel-style-card strong {
  font-size: 28px;
  line-height: 1;
}

.travel-style-card small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.short-break-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.short-break-strip a {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.short-break-strip img {
  width: 72px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
}

.short-break-strip span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.short-break-strip strong {
  line-height: 1.15;
}

.short-break-strip small {
  color: var(--green);
  font-weight: 900;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 46px;
  align-items: center;
}

.split-feature p {
  color: var(--muted);
  font-size: 17px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.enquiry-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--sun);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.enquiry-panel form,
.enquiry-panel {
  display: grid;
  gap: 12px;
}

.enquiry-panel h3 {
  font-size: 24px;
}

.form-row,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.compact-tour-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.compact-tour-list a {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.compact-tour-list img {
  width: 92px;
  height: 66px;
  object-fit: cover;
  border-radius: 6px;
}

.compact-tour-list span {
  font-weight: 900;
}

.compact-tour-list strong {
  color: var(--green);
  font-size: 13px;
}

.faq-preview-section {
  background: #f8fbfd;
}

.faq-preview-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.faq-visual-card {
  min-height: 360px;
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  align-content: end;
  gap: 12px;
  color: #fff;
  background:
    linear-gradient(155deg, rgba(7, 79, 134, 0.92), rgba(11, 143, 114, 0.72)),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=900&q=80') center/cover;
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(-6deg);
}

.faq-visual-card span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sun);
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.faq-visual-card strong {
  font-size: 34px;
  line-height: 1.05;
}

.faq-visual-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 42, 74, 0.06);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 54px 18px 18px;
  position: relative;
  font-weight: 900;
  color: var(--ink);
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f4fb;
  color: var(--blue-dark);
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--blue);
  color: #fff;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-hero {
  background:
    linear-gradient(90deg, rgba(7, 79, 134, 0.94), rgba(11, 143, 114, 0.78)),
    url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.faq-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.faq-tabs {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 42, 74, 0.06);
}

.faq-tabs a {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 900;
  color: #344154;
}

.faq-tabs a:hover {
  background: #e8f4fb;
  color: var(--blue-dark);
}

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

.faq-category {
  scroll-margin-top: 120px;
}

.faq-category-head {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 16px;
}

.faq-category-head span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sun);
  color: var(--blue-dark);
  font-weight: 900;
}

.faq-category-head h2 {
  font-size: 34px;
}

.faq-category-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.social-proof-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 207, 46, 0.32), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(243, 107, 79, 0.2), transparent 26%),
    linear-gradient(135deg, #071d31 0%, #0f4c74 48%, #0b735f 100%);
  color: #fff;
  overflow: hidden;
}

.social-proof-section .eyebrow {
  color: var(--sun);
}

.social-proof-section h2 {
  color: #fff;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.insta-stage,
.review-3d-panel {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.phone-3d {
  width: min(390px, 100%);
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: rotateY(-14deg) rotateX(7deg);
  transform-style: preserve-3d;
}

.phone-3d::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 16px;
}

.phone-top span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun), var(--coral));
}

.phone-top strong {
  color: #fff;
  font-size: 18px;
}

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

.insta-grid a {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-card {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 126px;
  min-height: 58px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-dark);
  font-weight: 900;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.orbit-card.one {
  top: 36px;
  right: 18px;
  transform: rotate(5deg);
}

.orbit-card.two {
  left: 12px;
  bottom: 96px;
  transform: rotate(-8deg);
}

.orbit-card.three {
  right: 30px;
  bottom: 24px;
  background: var(--sun);
}

.review-3d-panel {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
}

.rating-orb {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  background: radial-gradient(circle at 35% 25%, #fff9d7, var(--sun) 40%, #f39a23 100%);
  color: #142334;
  box-shadow: inset -20px -24px 44px rgba(83, 49, 0, 0.16), 0 24px 68px rgba(0, 0, 0, 0.3);
  transform: rotateY(16deg) translateZ(24px);
}

.rating-orb span {
  font-weight: 900;
}

.rating-orb strong {
  font-size: 64px;
  line-height: 0.95;
}

.rating-orb small {
  color: #553f00;
  font-weight: 900;
}

.review-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  transform: rotateY(8deg);
  transform-style: preserve-3d;
}

.review-card-3d {
  min-height: 162px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.review-card-3d:nth-child(2n) {
  transform: translateY(18px) translateZ(22px);
}

.review-card-3d div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card-3d div span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f4fb;
  color: var(--blue-dark);
  font-weight: 900;
}

.review-card-3d p {
  margin: 12px 0;
  color: #4a5968;
}

.review-card-3d small {
  color: #e6a100;
  letter-spacing: 0;
}

.page-hero {
  background: linear-gradient(90deg, rgba(7, 79, 134, 0.94), rgba(11, 143, 114, 0.78)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: #fff;
  padding: 120px 0 86px;
}

.page-hero.compact {
  padding: 86px 0 58px;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 66px);
  width: min(820px, 100%);
}

.page-hero p {
  width: min(680px, 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}

.filters form {
  display: grid;
  gap: 12px;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.tour-hero {
  min-height: 560px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.tour-hero > img,
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tour-hero > img {
  object-fit: cover;
}

.tour-hero-overlay {
  background: linear-gradient(0deg, rgba(4, 28, 49, 0.92), rgba(4, 28, 49, 0.16));
}

.tour-hero-content {
  position: relative;
  color: #fff;
  padding: 160px 0 54px;
}

.tour-hero-content .pill {
  position: static;
  display: inline-flex;
  background: var(--coral);
  color: #fff;
}

.tour-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  margin: 14px 0 12px;
}

.tour-hero p {
  width: min(700px, 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.tour-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tour-hero-meta span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-weight: 900;
}

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

.tour-detail {
  display: grid;
  gap: 28px;
}

.detail-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.check-list,
.plain-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li,
.plain-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--green);
  border-radius: 50%;
}

.timeline {
  display: grid;
  gap: 12px;
  counter-reset: day;
}

.timeline div {
  counter-increment: day;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 15px 15px 58px;
  position: relative;
  background: #fff;
}

.timeline div::before {
  content: counter(day);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.sticky {
  position: sticky;
  top: 104px;
}

.muted,
.result-head span {
  color: var(--muted);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 14px;
  align-items: end;
}

.image-stack img {
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-stack img:last-child {
  height: 280px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
}

.contact-info {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-cards a,
.contact-cards div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display: grid;
  gap: 4px;
}

.contact-cards span {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  background: #101923;
  color: #dce7ef;
  padding: 52px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 34px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 16px;
}

.footer-grid h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  color: #dce7ef;
  margin: 7px 0;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #b8c7d3;
  font-size: 14px;
}

.flash,
.alert {
  width: min(960px, calc(100% - 32px));
  margin: 16px auto;
  border-radius: var(--radius);
  padding: 13px 16px;
  font-weight: 800;
}

.flash.success,
.alert.success {
  background: #e7f7f1;
  color: #0a684f;
}

.flash.danger,
.alert.danger {
  background: #fff0ed;
  color: #a63a25;
}

.setup-hero,
.install-page,
.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e7f6fc, #fff7d6 48%, #edf7f4);
}

.install-shell,
.login-card {
  width: min(520px, calc(100% - 32px));
}

.install-logo,
.login-card img {
  width: 260px;
  margin: 0 auto 18px;
}

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

.login-card form {
  display: grid;
  gap: 12px;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Admin */
.admin-body {
  background: var(--admin-bg);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 18px;
}

.admin-brand img {
  width: 210px;
  margin-bottom: 24px;
}

.admin-sidebar nav {
  display: grid;
  gap: 6px;
}

.admin-main {
  min-width: 0;
}

.admin-top {
  min-height: 70px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 0 26px;
}

.admin-top span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.admin-section {
  margin: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15, 42, 74, 0.06);
}

.admin-section h1 {
  font-size: 34px;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #f8fbfd;
}

.admin-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.admin-card strong {
  font-size: 34px;
  color: var(--blue-dark);
}

.table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.admin-table th {
  color: #435268;
  background: #f7fafc;
  font-size: 13px;
}

.admin-table td span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.actions-cell {
  display: flex;
  gap: 8px;
  align-items: center;
}

.actions-cell form {
  margin: 0;
}

.status {
  display: inline-flex !important;
  width: max-content;
  border-radius: var(--radius);
  padding: 5px 9px;
  background: #eef6fb;
  color: var(--blue-dark) !important;
  font-weight: 900;
}

.status.new,
.status.draft,
.status.inactive {
  background: #fff5d1;
  color: #806100 !important;
}

.status.contacted,
.status.quoted,
.status.published,
.status.active {
  background: #e7f7f1;
  color: #0a684f !important;
}

.status.closed {
  background: #edf0f3;
  color: #49576a !important;
}

.admin-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-control input {
  width: auto;
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.filter-pills a.active {
  background: var(--blue);
  color: #fff;
}

code {
  background: #f2f5f7;
  padding: 2px 5px;
  border-radius: 4px;
}

@media (max-width: 980px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 172px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    padding-bottom: 14px;
  }

  .site-nav.open .nav-item {
    display: grid;
  }

  .site-nav.open .mega-panel {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    grid-template-columns: 1fr;
    box-shadow: none;
    padding: 14px;
    margin-top: 6px;
  }

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

  .hero-search,
  .split-feature,
  .catalogue-layout,
  .tour-detail-layout,
  .contact-layout,
  .footer-grid,
  .compact-tour-list,
  .tour-detail-columns,
  .social-proof-grid,
  .review-3d-panel,
  .faq-preview-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .tour-grid,
  .stats-grid,
  .admin-cards,
  .form-grid,
  .form-grid.two,
  .travel-style-grid,
  .short-break-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters,
  .sticky {
    position: static;
  }

  .insta-stage,
  .review-3d-panel {
    min-height: auto;
  }

  .phone-3d,
  .review-stack,
  .rating-orb,
  .faq-visual-card {
    transform: none;
  }

  .faq-tabs {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orbit-card {
    display: none;
  }

  .admin-body {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1160px);
  }

  .hero {
    min-height: 640px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-search,
  .tour-grid,
  .stats-grid,
  .form-row,
  .detail-columns,
  .footer-bottom,
  .admin-cards,
  .form-grid,
  .form-grid.two,
  .review-stack,
  .travel-style-grid,
  .short-break-strip {
    grid-template-columns: 1fr;
  }

  .detail-tour-item {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .detail-tour-item img {
    width: 84px;
    height: 64px;
  }

  .detail-tour-item b {
    grid-column: 2;
  }

  .phone-3d {
    border-radius: 22px;
  }

  .faq-tabs {
    grid-template-columns: 1fr;
  }

  .faq-category-head {
    grid-template-columns: 1fr;
  }

  .insta-grid a {
    border-radius: 12px;
  }

  .section {
    padding: 46px 0;
  }

  .section-head,
  .admin-head,
  .result-head {
    display: grid;
    align-items: start;
  }

  .admin-section {
    margin: 12px;
    padding: 16px;
  }

  .admin-sidebar nav {
    grid-template-columns: 1fr 1fr;
  }

  .mega-columns {
    grid-template-columns: 1fr;
  }

  .admin-top {
    justify-content: space-between;
    padding: 0 14px;
  }

  .compact-tour-list a {
    grid-template-columns: 82px 1fr;
  }

  .compact-tour-list strong {
    grid-column: 2;
  }
}
