:root {
  color-scheme: light;
  --navy: #0b2d5b;
  --navy-2: #082348;
  --orange: #ff7a30;
  --orange-2: #e96117;
  --white: #ffffff;
  --gray: #f5f7fa;
  --ink: #102033;
  --muted: #627083;
  --line: #dbe3ec;
  --shadow: 0 14px 34px rgba(11, 45, 91, 0.1);
  --soft-shadow: 0 8px 22px rgba(11, 45, 91, 0.06);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: Poppins, Inter, sans-serif;
  letter-spacing: 0;
}

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

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

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

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 227, 236, 0.86);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: Poppins, Inter, sans-serif;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(11, 45, 91, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:not(.btn) {
  position: relative;
}

.nav-links a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 180ms ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(255, 122, 48, 0.24);
}

.btn-primary:hover {
  background: var(--orange-2);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.section .btn-secondary,
.dashboard .btn-secondary,
.admin-page .btn-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88vh;
  padding: 132px 16px 58px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffb36d 0%, #f7d5a1 32%, #65bed2 60%, #0b5278 100%);
}

#oceanScene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 26, 54, 0.78), rgba(6, 26, 54, 0.18) 62%, rgba(255, 122, 48, 0.08));
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(11, 45, 91, 0.62), transparent);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1060px, 100%);
  margin: 0 auto;
  color: var(--white);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
}

.hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1180px, calc(100% - 32px));
  margin: -30px auto 0;
  padding: 18px;
  position: relative;
  z-index: 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.trust-strip span {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--gray);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.section,
.quote-band,
.admin-section {
  padding: 70px 16px;
}

.section-muted,
.quote-band,
.admin-section {
  background: var(--gray);
}

.section-intro,
.quote-form,
.split,
.card-grid,
.gallery-grid,
.faq-list,
.contact-section,
.steps,
.admin-shell {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.section-intro {
  margin-bottom: 26px;
}

.section-intro.compact {
  text-align: center;
}

.section-intro.compact h2,
.section-intro.compact p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.section-intro h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.12;
}

.section-intro h1 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.section-intro p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.quote-form,
.contact-form,
.admin-login,
.dashboard-panel,
.trust-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(18px, 4vw, 30px);
}

.quote-form.streamlined {
  max-width: 980px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

label span {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 48, 0.13);
}

.full {
  grid-column: 1 / -1;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 30px;
  align-items: center;
}

.trust-panel {
  padding: 30px;
}

.simple-panel {
  background: var(--gray);
}

.trust-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-family: Poppins, Inter, sans-serif;
  font-size: 24px;
}

.trust-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.service-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(960px, 100%);
  margin: 0 auto;
}

.service-pill {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.service-pill .card-icon {
  display: none;
}

.service-pill h3 {
  margin: 0;
  color: var(--navy);
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.info-card,
.destination-card,
.testimonial-card {
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover,
.destination-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(255, 122, 48, 0.12);
  color: var(--orange);
  font-weight: 900;
}

.info-card h3,
.destination-card h3,
.testimonial-card h3,
.step-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
}

.info-card p,
.destination-card p,
.testimonial-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.step-card {
  min-height: 156px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}

.step-card span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--orange);
  font-family: Poppins, Inter, sans-serif;
  font-weight: 800;
}

.step-card h3 {
  color: var(--white);
}

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

.gallery-item {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: none;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-column: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(11, 45, 91, 0.82);
  color: var(--white);
  font-weight: 800;
}

.testimonial-card .review {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 17px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-weight: 800;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open p {
  display: block;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 30px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-cards a {
  padding: 16px;
  border-radius: 10px;
  background: var(--gray);
  color: var(--navy);
  font-weight: 800;
}

.contact-cards span {
  padding: 16px;
  border-radius: 10px;
  background: var(--gray);
  color: var(--navy);
  font-weight: 800;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.seo-copy {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.seo-copy h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.seo-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.seo-link-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.seo-link-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 20px;
}

.seo-link-card a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 122, 48, 0.55);
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(18px, 4vw, 30px);
}

.admin-shell {
  display: grid;
  gap: 20px;
}

.admin-page {
  background: var(--gray);
}

.admin-section.standalone {
  min-height: 100vh;
  padding-top: 120px;
}

.admin-login {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 20px;
}

.admin-hint {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.hidden {
  display: none !important;
}

.dashboard {
  display: grid;
  gap: 18px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.admin-tabs button,
.status-select,
.export-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.admin-tabs button {
  flex: 0 0 auto;
  padding: 0 14px;
}

.admin-tabs button.active {
  border-color: var(--orange);
  background: rgba(255, 122, 48, 0.12);
  color: var(--orange-2);
}

.dashboard-panel {
  padding: 20px;
  overflow-x: auto;
}

.table-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

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

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

.admin-table th {
  color: var(--navy);
  font-size: 13px;
}

.status-select {
  padding: 0 10px;
}

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

.manager-card,
.metric-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--gray);
}

.manager-card h3,
.metric-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.manager-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 18px;
}

.metric-card strong {
  color: var(--orange);
  font-family: Poppins, Inter, sans-serif;
  font-size: 34px;
}

.footer {
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 120px;
  margin: 0 auto;
}

.footer .brand {
  color: var(--white);
}

.footer .brand-mark {
  background: var(--orange);
}

.footer-links,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links:not(.static) {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 200ms ease;
  }

  .nav-links:not(.static).open {
    transform: translateY(0);
  }

  .nav-links.static {
    display: flex;
  }

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

  .split,
  .contact-section,
  .card-grid,
  .steps,
  .manager-grid,
  .analytics-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .seo-link-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }
}

@media (max-width: 680px) {
  .nav-shell {
    width: min(100% - 24px, 1180px);
  }

  .brand span:last-child {
    font-size: 14px;
  }

  .hero {
    min-height: 82vh;
    padding-top: 118px;
  }

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

  .section,
  .quote-band,
  .admin-section {
    padding: 64px 12px;
  }

  .trust-strip {
    margin-top: -22px;
  }

  .quote-form,
  .contact-form,
  .split,
  .card-grid,
  .steps,
  .contact-section,
  .manager-grid,
  .analytics-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: auto;
    min-height: 230px;
  }

  .dashboard-top {
    align-items: stretch;
    flex-direction: column;
  }

  .manager-form {
    grid-template-columns: 1fr;
  }
}

/* Premium coastal upgrade */
.site-header {
  background: rgba(255, 255, 255, 0.72);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(11, 45, 91, 0.08);
}

.premium-hero {
  min-height: 94vh;
  background: #0b2d5b;
  isolation: isolate;
}

.hero-scene,
.hero-photo,
.sun-glow,
.palm,
.dhow-boat,
.wave-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-scene {
  transform: translate3d(var(--scene-x, 0), var(--scene-y, 0), 0) rotateY(var(--scene-rotate, 0));
  transform-style: preserve-3d;
  transition: transform 160ms ease-out;
}

.hero-photo {
  background:
    linear-gradient(90deg, rgba(5, 24, 51, 0.78), rgba(5, 24, 51, 0.24) 52%, rgba(255, 122, 48, 0.08)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=82&fm=webp") center / cover;
  transform: translateZ(-24px) scale(1.08);
}

.sun-glow {
  width: 18vw;
  height: 18vw;
  min-width: 130px;
  min-height: 130px;
  inset: 16% 12% auto auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 48, 0.78), rgba(255, 179, 109, 0.28) 48%, transparent 70%);
  filter: blur(2px);
  transform: translateZ(28px);
}

.palm::before,
.palm::after {
  position: absolute;
  content: "";
  width: 170px;
  height: 42px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(90deg, rgba(17, 104, 75, 0.9), rgba(43, 145, 95, 0.5));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transform-origin: 0 50%;
  animation: palmBreeze 7s ease-in-out infinite;
}

.palm-left::before {
  top: 16%;
  left: -22px;
  transform: rotate(18deg);
}

.palm-left::after {
  top: 22%;
  left: -30px;
  transform: rotate(-10deg);
}

.palm-right::before {
  top: 14%;
  right: -20px;
  transform: rotate(160deg);
}

.palm-right::after {
  top: 22%;
  right: -34px;
  transform: rotate(190deg);
}

.dhow-boat {
  inset: auto auto 27% 8%;
  width: 132px;
  height: 72px;
  transform: translateZ(42px);
  animation: dhowDrift 30s linear infinite;
}

.dhow-boat::before {
  position: absolute;
  left: 12px;
  bottom: 8px;
  width: 92px;
  height: 18px;
  border-radius: 0 0 80px 80px;
  background: #4f2d1b;
  content: "";
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

.dhow-boat::after {
  position: absolute;
  left: 50px;
  bottom: 22px;
  width: 0;
  height: 0;
  border-bottom: 54px solid rgba(255, 255, 255, 0.88);
  border-right: 36px solid transparent;
  content: "";
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.18));
}

.wave-layer {
  top: auto;
  height: 28%;
  background:
    radial-gradient(80px 18px at 10% 40%, rgba(255, 255, 255, 0.45), transparent 70%),
    radial-gradient(120px 18px at 34% 52%, rgba(255, 255, 255, 0.34), transparent 70%),
    radial-gradient(100px 16px at 78% 46%, rgba(255, 255, 255, 0.38), transparent 70%);
  opacity: 0.7;
  transform: translateZ(34px);
  animation: waveMove 12s ease-in-out infinite;
}

.wave-two {
  height: 22%;
  opacity: 0.44;
  animation-duration: 17s;
  animation-direction: reverse;
}

.premium-hero::before {
  background: linear-gradient(90deg, rgba(5, 24, 51, 0.72), rgba(5, 24, 51, 0.12) 64%);
}

.premium-hero .hero-content {
  width: min(1120px, 100%);
}

.premium-hero h1 {
  max-width: 760px;
  text-wrap: balance;
}

.trust-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: -46px auto 0;
  position: relative;
  z-index: 8;
}

.trust-card {
  padding: 22px;
  border: 1px solid rgba(219, 227, 236, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trust-card:hover,
.group-type-card:hover,
.destination-image-card:hover {
  transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
  box-shadow: var(--shadow);
}

.trust-card span {
  color: var(--orange);
  font-weight: 900;
}

.trust-card h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.two-step-form {
  max-width: 920px;
  overflow: hidden;
}

.full-info-form {
  max-width: 980px;
}

.form-progress {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.progress-step {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.progress-step.active {
  color: var(--orange);
}

.progress-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--line));
}

.form-step {
  grid-column: 1 / -1;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.form-step.active {
  display: grid;
  opacity: 1;
  transform: translateX(0);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.group-type-card {
  min-height: 100%;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.group-type-card > .card-icon {
  display: none;
}

.group-type-card > a {
  display: grid;
  min-height: 100%;
  padding: 22px;
  color: inherit;
}

.floating-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 122, 48, 0.18), rgba(11, 45, 91, 0.08));
  color: var(--orange);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 24px rgba(11, 45, 91, 0.1);
  animation: iconFloat 6s ease-in-out infinite;
}

.group-type-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
}

.group-type-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.destination-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.destination-image-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--soft-shadow);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.destination-image-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 400ms ease;
}

.destination-image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 24, 51, 0.78), rgba(5, 24, 51, 0.06) 62%);
  content: "";
}

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

.destination-image-card div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.destination-image-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 24px;
}

.destination-image-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.map-pin {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 24px;
  height: 24px;
  border: 6px solid var(--orange);
  border-radius: 50% 50% 50% 0;
  background: var(--white);
  transform: rotate(-45deg);
  animation: pinPulse 2.8s ease-in-out infinite;
}

.connected-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1000px, 100%);
  margin: 0 auto;
}

.connected-steps::before {
  position: absolute;
  top: 50%;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 122, 48, 0.18));
  content: "";
}

.connected-steps .step-card {
  position: relative;
  z-index: 2;
}

.testimonial-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  width: min(1040px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 18px;
}

.testimonial-slider .testimonial-card {
  scroll-snap-align: center;
  box-shadow: var(--soft-shadow);
  transform: perspective(900px) rotateY(-1deg);
}

.final-cta {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: 90px 16px;
  overflow: hidden;
  isolation: isolate;
}

.final-cta-bg {
  position: absolute;
  inset: -10%;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 24, 51, 0.76), rgba(5, 24, 51, 0.22)),
    url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1800&q=82&fm=webp") center / cover;
  animation: slowParallax 18s ease-in-out infinite alternate;
}

.final-cta-content {
  width: min(900px, 100%);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
}

.final-cta .hero-actions {
  justify-content: center;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #24d366;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(36, 211, 102, 0.32);
}

.whatsapp-pulse {
  animation: whatsappPulse 4s ease-in-out infinite;
}

.footer-premium {
  grid-template-columns: 1.2fr 1fr 1fr auto;
  align-items: start;
  padding: 34px 0;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
}

.landing-page {
  min-height: 100vh;
  padding-top: 90px;
  background: var(--gray);
}

.landing-page .section-intro,
.landing-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.landing-wrap {
  display: grid;
  gap: 22px;
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-page .section {
  padding-top: 40px;
}

.landing-page .section-intro {
  width: 100%;
}

.landing-page .section-intro h1 {
  max-width: 820px;
}

.landing-card h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
}

.landing-card p,
.landing-card li {
  color: var(--muted);
  line-height: 1.75;
}

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

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

.landing-links a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
}

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

.landing-faq article {
  padding: 18px;
  border-radius: 12px;
  background: var(--gray);
}

.landing-faq h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

@media (max-width: 680px) {
  .landing-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .section-intro,
  .landing-card {
    padding: 22px;
  }
}

@keyframes palmBreeze {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 8px 2px;
  }
}

@keyframes dhowDrift {
  0% {
    translate: -12vw 0;
  }
  100% {
    translate: 92vw -12px;
  }
}

@keyframes waveMove {
  0%,
  100% {
    translate: -18px 0;
  }
  50% {
    translate: 28px 8px;
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes pinPulse {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0) scale(1);
  }
  50% {
    transform: rotate(-45deg) translateY(-4px) scale(1.04);
  }
}

@keyframes slowParallax {
  from {
    transform: scale(1.04) translateY(-8px);
  }
  to {
    transform: scale(1.09) translateY(8px);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(36, 211, 102, 0.24);
  }
  50% {
    box-shadow: 0 16px 34px rgba(36, 211, 102, 0.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .trust-highlights,
  .destination-image-grid,
  .connected-steps,
  .footer-premium {
    grid-template-columns: 1fr 1fr;
  }

  .connected-steps::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .premium-hero {
    min-height: 88vh;
  }

  .hero-photo {
    background-position: center;
  }

  .palm::before,
  .palm::after {
    width: 110px;
  }

  .trust-highlights,
  .destination-image-grid,
  .connected-steps,
  .footer-premium,
  .form-step {
    grid-template-columns: 1fr;
  }

  .trust-highlights {
    margin-top: -28px;
  }

  .form-progress {
    grid-template-columns: 1fr;
  }

  .progress-line {
    display: none;
  }

  .form-actions {
    flex-direction: column;
  }

  .final-cta {
    min-height: 380px;
  }
}
