:root {
  --navy: #061b33;
  --blue-900: #062a4f;
  --blue-700: #075d9a;
  --blue-500: #0aa5df;
  --gold: #f2c45f;
  --gold-dark: #b88222;
  --text: #162033;
  --muted: #667085;
  --bg: #f5fbff;
  --card: #ffffff;
  --line: rgba(6, 42, 79, 0.12);
  --shadow: 0 24px 70px rgba(6, 27, 51, 0.16);
  --radius: 24px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(10, 165, 223, 0.14), transparent 35%),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 38%, #f4f8fb 100%);
  line-height: 1.8;
}

body.menu-open,
body.splash-active {
  overflow: hidden;
}

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

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

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

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

.section {
  padding: 90px 0;
}

.skip-link {
  position: fixed;
  inset-inline-start: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 15%, rgba(10, 165, 223, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(6, 27, 51, 0.96), rgba(7, 93, 154, 0.94));
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-card {
  width: min(940px, 100%);
  max-height: calc(100vh - 40px);
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.splash-poster {
  width: 100%;
  max-height: calc(100vh - 40px);
  object-fit: contain;
  background: #fffaf1;
}

.splash-content {
  position: absolute;
  inset-inline: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  padding: 15px 18px;
  border-radius: 24px;
  color: #fff;
  background: rgba(6, 42, 79, 0.82);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(16px);
}

.splash-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  padding: 4px;
  border-radius: 20px;
  background: #fff;
}

.splash-content h2,
.splash-content p {
  margin: 0;
}

.splash-content h2 {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.splash-content p {
  color: rgba(255,255,255,0.78);
  font-weight: 800;
}

.splash-content .btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffe4a0);
  color: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 251, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-900);
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 auto;
  padding: 5px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 42, 79, 0.14);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #fff0bd);
  box-shadow: 0 10px 28px rgba(184, 130, 34, 0.25);
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  margin-top: -4px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--blue-900);
}

.nav-links a {
  font-weight: 700;
  color: rgba(6, 42, 79, 0.86);
}

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

.nav-cta {
  color: var(--navy) !important;
  background: var(--gold);
  padding: 10px 18px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--blue-900);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
}


.brand-hero {
  padding: 24px 0 0;
  background: #f5fbff;
}

.brand-hero-wrap {
  width: var(--container);
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: #dff3ff;
  border: 1px solid rgba(6, 42, 79, 0.08);
}

.brand-hero img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.brand-hero-actions {
  position: absolute;
  top: 28px;
  left: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 500px;
}

.brand-hero-actions .btn {
  min-height: 44px;
  padding: 10px 18px;
  box-shadow: 0 12px 28px rgba(6, 27, 51, 0.16);
}

.brand-hero .btn-ghost {
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(6, 42, 79, 0.12);
  backdrop-filter: blur(14px);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding-top: 70px;
  background:
    linear-gradient(135deg, rgba(6, 27, 51, 0.94), rgba(6, 42, 79, 0.88)),
    radial-gradient(circle at 80% 10%, rgba(242, 196, 95, 0.26), transparent 34%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 52px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  color: var(--gold);
  background: rgba(242, 196, 95, 0.13);
  border: 1px solid rgba(242, 196, 95, 0.34);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 5.1rem);
  line-height: 1.12;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--blue-900);
}

.hero h1,
.hero h2 {
  color: #fff;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.86);
  max-width: 720px;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  box-shadow: 0 15px 35px rgba(10, 165, 223, 0.25);
}

.hero .btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffe4a0);
  color: var(--navy);
}

.btn-ghost {
  color: inherit;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.booking .btn-ghost,
.packages .btn-ghost {
  color: var(--blue-900);
  border-color: var(--line);
  background: #fff;
}

.btn-gold {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #ffe4a0);
  box-shadow: 0 15px 35px rgba(184, 130, 34, 0.20);
}

.btn-disabled {
  background: #e7eef5;
  color: #8a98a9;
  cursor: not-allowed;
}

.btn-disabled:hover {
  transform: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.trust-strip div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
  border-radius: inherit;
  pointer-events: none;
}

.hero-card img {
  width: 100%;
  height: min(720px, 72vh);
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  inset-inline: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(6, 27, 51, 0.76);
  color: #fff;
  border: 1px solid rgba(242, 196, 95, 0.36);
  border-radius: 22px;
  backdrop-filter: blur(16px);
}

.hero-card-badge strong {
  color: var(--gold);
  font-size: 1.35rem;
}

.intro {
  padding-bottom: 60px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.intro-copy {
  font-size: 1.14rem;
  color: var(--muted);
}

.section-heading.center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 46px;
}

.section-heading.center p {
  color: var(--muted);
}

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

.package-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(6, 27, 51, 0.08);
  display: flex;
  flex-direction: column;
}

.package-card.highlighted {
  border-color: rgba(10, 165, 223, 0.38);
  box-shadow: 0 26px 70px rgba(10, 165, 223, 0.13);
}

.package-card.royal {
  background:
    linear-gradient(180deg, rgba(6, 27, 51, 0.03), rgba(255,255,255,1)),
    var(--card);
  border-color: rgba(242, 196, 95, 0.55);
}

.package-card.vip {
  border-color: rgba(10, 165, 223, 0.34);
  background:
    linear-gradient(180deg, rgba(10, 165, 223, 0.05), rgba(255,255,255,1)),
    var(--card);
}

.package-image-contain {
  background: linear-gradient(135deg, #e6f7ff, #ffffff);
}

.package-card.vip .package-image img {
  object-fit: cover;
}

.package-card.muted {
  opacity: 0.82;
}

.package-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e7eef5;
}

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

.package-card:hover .package-image img {
  transform: scale(1.035);
}

.status-badge,
.pill {
  display: inline-flex;
  align-self: flex-start;
  color: var(--blue-900);
  background: #e9f7ff;
  border: 1px solid rgba(10, 165, 223, 0.20);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 800;
  font-size: 0.86rem;
}

.status-badge {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: #fff1f1;
  border-color: rgba(220, 53, 69, 0.18);
  color: #b42318;
}

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

.package-body.no-image {
  min-height: 315px;
}

.package-body h3 {
  color: var(--blue-900);
  font-size: 1.35rem;
  margin: 0;
}

.package-body p {
  color: var(--muted);
  margin: 0;
}

.package-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text);
}

.package-body li {
  position: relative;
  padding-inline-start: 20px;
  margin: 5px 0;
}

.package-body li::before {
  content: "✓";
  color: var(--blue-500);
  font-weight: 900;
  position: absolute;
  inset-inline-start: 0;
}

.price {
  color: var(--blue-900);
  font-size: 1.45rem;
  font-weight: 900;
  margin-top: auto;
}

.features-grid,
.steps,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature,
.step,
.faq-grid details,
.quote-card,
.policy-card,
.booking-form,
.invoice {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(6, 27, 51, 0.07);
}

.feature,
.step,
.faq-grid details {
  padding: 24px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #e9f7ff;
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.feature h3,
.step h3 {
  color: var(--blue-900);
  margin-bottom: 8px;
}

.feature p,
.step p {
  color: var(--muted);
  margin: 0;
}

.quote-card {
  max-width: 820px;
  margin: 34px auto 0;
  padding: 30px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(6, 42, 79, 0.96), rgba(7, 93, 154, 0.92));
  color: #fff;
}

.quote-card p {
  font-size: 1.35rem;
}

.quote-card strong {
  color: var(--gold);
}


.testimonials {
  background: linear-gradient(180deg, #ffffff, #f2f9ff);
}

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

.testimonial-card {
  margin: 0;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(6, 27, 51, 0.08);
}

.testimonial-card img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(6, 27, 51, 0.10);
}

.testimonial-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.testimonials-cta {
  width: min(760px, 100%);
  margin: 30px auto 0;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(6, 27, 51, 0.07);
}

.testimonials-cta p {
  margin: 0;
  color: var(--blue-900);
  font-weight: 900;
  font-size: 1.08rem;
}

.process {
  background: linear-gradient(180deg, #ffffff, #f2f9ff);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 16px;
  font-weight: 900;
  margin-bottom: 14px;
}

.policy-card {
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(6, 42, 79, 0.03), rgba(242, 196, 95, 0.08)),
    var(--card);
}

.policy-content {
  color: var(--muted);
  font-size: 1.06rem;
}

.notice {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: #fff8e7;
  border: 1px solid rgba(242, 196, 95, 0.45);
  color: var(--blue-900);
  margin: 18px 0;
}

.booking {
  background:
    linear-gradient(135deg, rgba(6, 27, 51, 0.96), rgba(6, 42, 79, 0.92));
  color: #fff;
}

.booking h2 {
  color: #fff;
}

.booking-copy p {
  color: rgba(255,255,255,0.75);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 26px;
  align-items: start;
}

.booking-form {
  color: var(--text);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full,
.money-panel.full,
.check-row.full,
.form-actions.full,
.error-msg.full {
  grid-column: 1 / -1;
}

label {
  color: var(--blue-900);
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--text);
  background: #fff;
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(10, 165, 223, 0.12);
}

textarea {
  resize: vertical;
}

.error-msg {
  min-height: 18px;
  color: #b42318;
  font-size: 0.84rem;
}

.has-error input,
.has-error textarea,
.has-error select {
  border-color: #ef4444;
}

.money-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: #f7fbfe;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  cursor: pointer;
}

.check-row input {
  width: auto;
  margin-top: 8px;
}

.booking .btn-ghost {
  color: var(--blue-900);
  border-color: var(--line);
  background: #f7fbfe;
}

.status-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.status-flow span {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.9rem;
}

.invoice {
  grid-column: 2 / 3;
  color: var(--text);
  padding: 24px;
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--blue-900);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.invoice-header strong {
  color: var(--gold-dark);
}

.invoice dl {
  margin: 0;
  display: grid;
  gap: 8px;
}

.invoice dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  border-bottom: 1px dashed rgba(6, 42, 79, 0.15);
  padding-bottom: 8px;
}

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

.invoice dd {
  margin: 0;
  color: var(--text);
  word-break: break-word;
}

.invoice-note {
  margin: 16px 0 0;
  padding: 12px;
  border-radius: 16px;
  background: #fff8e7;
  color: var(--blue-900);
  font-weight: 800;
}

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

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

.faq-grid summary {
  cursor: pointer;
  color: var(--blue-900);
  font-weight: 900;
  padding: 18px 20px;
}

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

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  color: #fff;
}

.site-footer h3 {
  color: #fff;
}

.site-footer a {
  display: inline-block;
  color: rgba(255,255,255,0.84);
  margin: 4px 0;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding-top: 20px;
}

.floating-whatsapp {
  position: fixed;
  inset-inline-start: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .intro-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .invoice {
    grid-column: auto;
  }

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

  .hero-card img {
    height: auto;
    max-height: 680px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 68px 12px auto 12px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.menu-open .nav-links {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }


  .splash-screen {
    padding: 12px;
  }

  .splash-card {
    border-radius: 24px;
  }

  .splash-content {
    inset-inline: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .splash-logo {
    width: 56px;
    height: 56px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .brand-hero {
    padding-top: 14px;
  }

  .brand-hero-wrap {
    border-radius: 22px;
  }

  .brand-hero-actions {
    position: static;
    padding: 12px;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
  }

  .brand-hero-actions .btn {
    width: 100%;
    min-height: 42px;
  }

  .hero {
    min-height: auto;
    padding: 58px 0;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

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

  .package-grid,
  .features-grid,
  .steps,
  .testimonial-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-form,
  .money-panel {
    grid-template-columns: 1fr;
  }

  .invoice dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media print {
  body * {
    visibility: hidden !important;
  }

  .invoice,
  .invoice * {
    visibility: visible !important;
  }

  .invoice {
    position: absolute;
    inset: 24px;
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .floating-whatsapp,
  .splash-screen,
  .site-header,
  .site-footer {
    display: none !important;
  }
}
