* {
  box-sizing: border-box;
}

:root {
  --navy: #003580;
  --navy-2: #0071c2;
  --navy-3: #00224f;
  --yellow: #febb02;
  --yellow-2: #f5a623;
  --bg: #f5f5f5;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #595959;
  --line: #e7e7e7;
  --line-2: #d4d4d4;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lift: 0 12px 32px rgba(0, 53, 128, 0.18);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand-logo {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 8px;
  flex: 0 0 36px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}

.brand-text small {
  display: block;
  margin-top: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.nav-links a {
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.nav-links a:hover {
  border-bottom-color: var(--yellow);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 4px;
  background: var(--navy-2);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.15s ease;
}

.nav-button:hover {
  background: #0089e6;
}

.menu-button {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease;
}

.button.primary {
  background: var(--navy-2);
  color: #fff;
}

.button.primary:hover {
  background: #0089e6;
}

.button.accent {
  background: var(--yellow);
  color: var(--navy-3);
}

.button.accent:hover {
  background: #ffc524;
}

.button.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  background: #fff;
  color: var(--navy);
}

.button.full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 110px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 113, 194, 0.4), transparent 38%),
    radial-gradient(circle at 90% 10%, rgba(254, 187, 2, 0.15), transparent 32%);
  pointer-events: none;
}

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

.hero-copy .kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

h1, h2, h3 {
  margin-top: 0;
  letter-spacing: -0.02em;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  color: var(--navy-3);
  line-height: 1.15;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-3);
}

p {
  margin-top: 0;
}

.hero-text {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.trust-list div {
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-list span {
  display: block;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.trust-list strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-panel {
  position: relative;
}

.image-stack {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.image-stack .main-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.floating-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  max-width: 320px;
}

.floating-note svg {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 8px;
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  color: var(--navy-3);
  font-size: 0.92rem;
  margin-top: 2px;
  line-height: 1.3;
}

/* Booking shell - lifted card overlapping hero */
.booking-shell {
  margin-top: -68px;
  position: relative;
  z-index: 5;
}

.booking-card {
  background: #fff;
  border-radius: 10px;
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow-lift);
  padding: 24px;
}

.booking-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.booking-heading.compact {
  margin-bottom: 14px;
}

.kicker {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow-2);
}

.kicker.dark {
  color: var(--navy-2);
}

.booking-heading h2 {
  margin-bottom: 4px;
  font-size: 1.5rem;
}

.booking-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.small-link {
  flex: 0 0 auto;
  color: var(--navy-2);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.small-link:hover {
  text-decoration: underline;
}

.widget-frame {
  min-height: 180px;
  padding: 14px;
  border-radius: 8px;
  background: #f7f9fc;
  border: 1px solid var(--line);
}

.widget-frame.results-frame {
  min-height: 220px;
}

#tpwl-search,
#tpwl-tickets {
  width: 100%;
}

/* Results */
.results-shell {
  margin-top: 28px;
}

.results-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

/* Generic section */
.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
  align-items: end;
  max-width: none;
}

.section-heading.split p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}

/* Process / How it works */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-grid article {
  padding: 26px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}

.process-grid h3 {
  margin: 0 0 6px;
  color: var(--navy-3);
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Featured */
.featured-section {
  padding: 72px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.destination-grid article {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.destination-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.destination-grid img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.destination-grid div {
  padding: 18px 20px 22px;
}

.destination-grid h3 {
  margin: 0 0 6px;
  color: var(--navy-3);
}

.destination-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* Support */
.support-section {
  padding: 72px 0;
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #fff;
  box-shadow: var(--shadow);
}

.support-card .kicker {
  color: var(--yellow);
}

.support-card h2 {
  color: #fff;
  margin-bottom: 6px;
}

.support-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.support-card a:not(.button) {
  color: var(--yellow);
  font-weight: 700;
}

.support-card a:not(.button):hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 44px 0 28px;
  background: var(--navy-3);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

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

.footer .brand {
  margin-bottom: 14px;
}

.footer .brand-text strong {
  color: #fff;
}

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

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 360px;
}

.footer h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer a:not(.brand):hover {
  color: var(--yellow);
}

/* Inner pages */
.page-hero {
  padding: 56px 0 36px;
  color: #fff;
  background: linear-gradient(180deg, var(--navy), var(--navy-3));
}

.page-hero .kicker {
  color: var(--yellow);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.page-content {
  padding: 40px 0 80px;
}

.page-card,
.contact-panel,
.quote-form {
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.page-card,
.contact-panel {
  padding: 32px;
}

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

.page-card h2 {
  margin-top: 26px;
  font-size: 1.6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.quote-form {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-3);
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid var(--line-2);
  outline: 0;
  background: #fff;
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(0, 113, 194, 0.18);
}

.form-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 980px) {
  .nav-button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

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

  .nav-links a {
    color: var(--navy-3);
    width: 100%;
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding: 40px 0 96px;
  }

  .hero-grid,
  .destination-grid,
  .process-grid,
  .footer-grid,
  .contact-grid,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .image-stack .main-image {
    height: 320px;
  }

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

  .booking-heading,
  .support-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-card,
  .results-card {
    padding: 18px;
  }
}

/* Hotels & cars extra booking section */
.extra-booking {
  margin-top: 8px;
}

.extra-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #f1f4f9;
  border: 1px solid var(--line);
}

.extra-tab {
  flex: 1 1 0;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--navy-3);
  font: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.extra-tab:hover {
  background: #fff;
  border-color: var(--line);
}

.extra-tab.active {
  background: #fff;
  color: var(--navy);
  border-color: var(--yellow);
  box-shadow: 0 2px 6px rgba(0, 53, 128, 0.08);
}

.extra-panel {
  padding: 4px 0 0;
}

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

.extra-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-3);
}

.extra-form label.span-2 {
  grid-column: span 2;
}

.extra-form input,
.extra-form select {
  width: 100%;
  border: 1px solid var(--line-2);
  outline: 0;
  background: #fff;
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
}

.extra-form input:focus,
.extra-form select:focus {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(0, 113, 194, 0.18);
}

.extra-form button[type="submit"] {
  grid-column: 1 / -1;
  justify-self: start;
}

@media (max-width: 720px) {
  .extra-form {
    grid-template-columns: 1fr;
  }

  .extra-form label.span-2 {
    grid-column: auto;
  }
}
