:root {
  --color-bg: #f7f8fc;
  --color-surface: #ffffff;
  --color-surface-soft: #f1f4fb;
  --color-text: #1f2a44;
  --color-text-muted: #62708a;
  --color-primary: #2e5eaa;
  --color-accent: #fc9246;
  --color-border: rgba(31, 42, 68, 0.08);
  --shadow-soft: 0 22px 60px rgba(31, 42, 68, 0.1);
  --shadow-card: 0 16px 40px rgba(31, 42, 68, 0.08);
  --max-width: 1200px;
}

/* ========== FLIGHT BOOKING FORM ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.flight-quick-booking {
  padding: 40px 0;
  background: #f5f8ff;
}

.flight-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.flight-header-compact {
  text-align: center;
  margin-bottom: 20px;
}

.badge-flight {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #5170ff;
  background: rgba(81, 112, 255, 0.08);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 8px;
}

.title-flight {
  font-size: 42px;
  font-weight: bold;
  color: #1e293b;
  margin: 0;
}

.title-flight .primary {
  color: #5170ff;
}

.title-flight .secondary {
  color: #fd8f50;
}

.booking-header-compact {
  text-align: center;
  margin-bottom: 25px;
}

.title-sm {
  font-size: 42px;
  font-weight: bold;
  color: #1e293b;
  margin: 0;
}

.title-sm .primary {
  color: #5170ff;
}

.title-sm .secondary {
  color: #fd8f50;
}

.header-subtitle {
  font-size: 16px;
  color: #5a6a7e;
  margin: 0 auto;
  line-height: 1.6;
}

.flight-card-compact {
  background: #fff;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #eef2f8;
  margin-bottom: 15px;
}

.trip-type-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.toggle-container {
  display: inline-flex;
  background: #f0f4ff;
  border-radius: 40px;
  padding: 4px;
  position: relative;
}

.toggle-container input[type="radio"] {
  display: none;
}

.toggle-label {
  padding: 8px 25px;
  font-size: 13px;
  font-weight: 600;
  color: #5a6a7e;
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.toggle-container input[type="radio"]:checked + .toggle-label {
  color: #fff;
}

.toggle-bg {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: #2E5EAA;
  border-radius: 40px;
  transition: transform 0.3s ease;
  z-index: 1;
}

.fake1 {
  margin: 0.35rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.fake2 {
  color: var(--color-text-muted);
}

.fake3 {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
    color: var(--color-text-muted);
}

.toggle-container:has(#roundtrip-flight:checked) .toggle-bg {
  transform: translateX(100%);
}

.flight-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.flight-row-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.flight-row-4col {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.field-group {
  position: relative;
  height: 48px;
}

.field-group input,
.field-group select {
  width: 100%;
  height: 100%;
  padding: 0 15px 0 40px;
  font-size: 13px;
  font-family: "Outfit", sans-serif;
  color: #1e293b;
  background: #f8faff;
  border: 1px solid #eef2f8;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.field-group select {
  appearance: none;
  cursor: pointer;
  padding-right: 30px;
}

.field-group input:focus,
.field-group select:focus {
  outline: none;
  border-color: #5170ff;
  background: #fff;
  box-shadow: 0 3px 10px rgba(81, 112, 255, 0.1);
}

.field-group .field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #2E5EAA;
  font-size: 16px;
  opacity: 0.7;
  pointer-events: none;
}

.field-group input::placeholder,
.field-group select::placeholder,
.location-input::placeholder,
.date-input::placeholder,
.passenger-input::placeholder {
  color: #767676;
  opacity: 1;
}

.location-group {
  position: relative;
}

.suggestions-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #eef2f8;
  z-index: 100;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

.suggestions-dropdown.show {
  display: block;
}

.suggestion-item {
  padding: 10px 15px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.suggestion-item:hover {
  background: #f0f4ff;
  color: #5170ff;
}

.suggestion-item i {
  margin-right: 8px;
  color: #5170ff;
  font-size: 14px;
}

.date-group {
  position: relative;
}

.date-input {
  cursor: pointer;
  background: #f8faff;
}

.calendar-popup {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eef2f8;
  padding: 15px;
  z-index: 100;
  display: none;
}

.calendar-popup.show {
  display: block;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.calendar-header button {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #eef2f8;
  background: #fff;
  color: #5170ff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-header button:hover {
  background: #5170ff;
  color: #fff;
}

.calendar-header span {
  font-weight: 600;
  font-size: 14px;
  color: #1e293b;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 15px;
}

.weekday {
  font-size: 11px;
  font-weight: 600;
  color: #5a6a7e;
  text-align: center;
  padding: 5px;
}

.calendar-day {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.calendar-day:hover {
  background: #f0f4ff;
  color: #5170ff;
}

.calendar-day.selected {
  background: #5170ff;
  color: #fff;
}

.calendar-day.today {
  border: 1px solid #5170ff;
  font-weight: 600;
}

.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

.calendar-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.calendar-footer button {
  padding: 6px 15px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-footer button:first-child {
  background: #f0f4ff;
  color: #5170ff;
  border: 1px solid #eef2f8;
}

.calendar-footer button:last-child {
  background: linear-gradient(135deg, #5170ff, #3a5ae0);
  color: #fff;
  border: none;
}

.passenger-compact-group {
  position: relative;
}

.passenger-dropdown-flight {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eef2f8;
  padding: 15px;
  z-index: 100;
  display: none;
}

.passenger-dropdown-flight.show {
  display: block;
}

.passenger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #eef2f8;
}

.passenger-row:last-child {
  border-bottom: none;
}

.passenger-row span {
  font-size: 12px;
  font-weight: 500;
  color: #1e293b;
}

.passenger-row small {
  font-size: 10px;
  color: #5a6a7e;
  margin-left: 4px;
}

.counter-sm {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-sm button {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #eef2f8;
  background: #fff;
  color: #5170ff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-sm button:hover {
  background: #5170ff;
  color: #fff;
}

.counter-sm span {
  min-width: 20px;
  text-align: center;
}

.passenger-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #eef2f8;
  text-align: right;
}

.passenger-footer button {
  background: linear-gradient(135deg, #5170ff, #3a5ae0);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.flight-submit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.btn-flight-submit {
  background: #2E5EAA;
  color: #fff;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  border: none;
  border-radius: 40px;
  padding: 12px 35px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-flight-submit:disabled {
  cursor: wait;
  opacity: 0.85;
}

.spinning {
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 800px) {
  .flight-row-3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .flight-row-4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .flight-row-3col .date-group:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .flight-card-compact {
    padding: 20px;
  }

  .flight-row-2col,
  .flight-row-3col,
  .flight-row-4col {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flight-row-3col .date-group:last-child {
    grid-column: auto;
  }

  .title-flight,
  .title-sm {
    font-size: 24px;
  }

  .toggle-label {
    padding: 6px 20px;
    font-size: 12px;
  }

  .flight-submit-row {
    flex-direction: column;
    gap: 15px;
  }

  .btn-flight-submit {
    width: 100%;
    justify-content: center;
  }

  .calendar-popup,
  .passenger-dropdown-flight {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 480px) {
  .header-subtitle {
    font-size: 14px;
    padding: 0 15px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--color-text);
  background: #f7f9fe;
}

main {
  display: block;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: #8a96ad;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.5rem;
  border-radius: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.primary-button {
  color: #fff;
  background: #2e5eaa;
}

.secondary-button {
  background: #eaf3ff;
  color: #2e5eaa;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.flight-field:focus-within,
.flight-field-wide:focus-within {
  outline: 3px solid rgba(100, 116, 255, 0.24);
  outline-offset: 2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #2e5eaa;
}

.hero-section {
  --hero-progress: 0;
  --hero-bg-shift: 0px;
  --hero-bg-scale: 1;
  --hero-center-y: 0px;
  --hero-center-scale: 1;
  --hero-left-x: 0px;
  --hero-right-x: 0px;
  --hero-side-blur: 0px;
  --hero-side-opacity: 1;
  --hero-rating-y: 0px;
  --hero-rating-opacity: 1;
  position: relative;
  height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: -4%;
  background:
    linear-gradient(90deg, rgba(17, 11, 9, 0.72) 0%, rgba(27, 18, 15, 0.45) 38%, rgba(18, 11, 9, 0.38) 62%, rgba(17, 11, 9, 0.68) 100%),
    url("/assets/images/blue-1.jpg") center / cover no-repeat;
  transform: translate3d(0, var(--hero-bg-shift), 0) scale(var(--hero-bg-scale));
  transform-origin: center center;
  will-change: transform;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(252, 146, 70, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%, transparent 74%, rgba(0, 0, 0, 0.24));
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.3));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 1280px);
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr minmax(160px, 280px) 1fr;
  align-items: start;
  gap: 1.5rem;
  overflow: hidden;
  transform: translateZ(0);
}

.hero-side {
  max-width: 400px;
  will-change: transform, opacity, filter;
  transition: transform 0.18s linear, opacity 0.18s linear, filter 0.18s linear;
}

.hero-left {
  justify-self: start;
  margin-top: 8rem;
  transform: translate3d(var(--hero-left-x), calc(var(--hero-progress) * -20px), 0);
  opacity: var(--hero-side-opacity);
  filter: blur(var(--hero-side-blur));
}

.hero-right {
  justify-self: end;
  text-align: right;
  align-self: flex-end;
  margin-bottom: 4rem;
  transform: translate3d(var(--hero-right-x), calc(var(--hero-progress) * 24px), 0);
  opacity: var(--hero-side-opacity);
  filter: blur(var(--hero-side-blur));
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-side h1,
.hero-side h2 {
  margin: 0;
  font-size: 3.5rem;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-right h2 {
  font-size: 3.5rem;
}

.hero-copy {
  margin: 0.9rem 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  line-height: 1.02;
  font-weight: 600;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
  height: 60vh;
  padding: 2.9rem 0 0.2rem;
  margin-top: 8rem;
  transform: translate3d(0, var(--hero-center-y), 0) scale(var(--hero-center-scale));
  transform-origin: center top;
  will-change: transform;
  transition: transform 0.18s linear;
}

.hero-center-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-bismillah {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.hero-logo {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(-2.4rem);
}

.hero-button {
  background: #fff;
  color: #181818;
  min-height: 46px;
  padding-inline: 1.35rem;
  box-shadow: none;
}

.google-rating {
  position: absolute;
  left: 0;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  transform: translate3d(0, var(--hero-rating-y), 0);
  opacity: var(--hero-rating-opacity);
  will-change: transform, opacity;
  transition: transform 0.18s linear, opacity 0.18s linear;
}

.google-rating img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.google-rating strong {
  display: block;
}

.google-rating span {
  color: #ffbf43;
  letter-spacing: 0.14em;
}

section:not(.hero-section) {
  padding: 5rem 0;
}

.trust-section {
  background: #ffffff;
}

.trust-intro,
.section-heading,
.faq-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.trust-intro h2,
.section-heading h2,
.faq-intro h2,
.cta-card h2 {
  margin: 0.35rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.trust-intro p,
.section-heading p,
.faq-intro p,
.cta-card p {
  margin: 0 auto;
  color: var(--color-text-muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.trust-card {
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 1)),
    var(--color-surface);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.trust-card:hover,
.destination-card:hover,
.destination-story-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(24, 36, 63, 0.12);
}

.trust-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: #2e5eaa;
  color: white;
  margin-inline: auto;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.trust-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  line-height: 1.15;
}

.trust-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.destination-story-section {
  background:
    radial-gradient(circle at top left, rgba(46, 94, 170, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.destination-story-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.5rem;
  align-items: stretch;
}

.destination-story-card {
  position: relative;
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.destination-story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 16, 37, 0.04), rgba(5, 16, 37, 0.56)),
    linear-gradient(135deg, rgba(252, 146, 70, 0.12), rgba(1, 69, 242, 0.08));
  z-index: 1;
}

.destination-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-overlay {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(7, 19, 43, 0.5);
  color: #fff;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.story-overlay strong {
  display: block;
  margin-bottom: 0.35rem;
}

.destination-story-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.destination-story-copy p {
  margin: 0;
  color: var(--color-text-muted);
}

.story-bullets {
  display: grid;
  gap: 0.9rem;
}

.story-bullet {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(46, 94, 170, 0.08);
  box-shadow: var(--shadow-card);
}

.story-bullet strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #2e5eaa;
}

.booking-section {
  background: #f3f7ff;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.booking-copy,
.booking-form-wrap {
  border-radius: 32px;
  box-shadow: var(--shadow-card);
}

.booking-copy {
  padding: 1rem 0.75rem;
  background: linear-gradient(180deg, #0b1732, #091224);
  color: #fff;
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.booking-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.booking-copy p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.booking-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.booking-list span {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.booking-form-wrap {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(46, 94, 170, 0.08);
}

.flight-form {
  display: grid;
  gap: 1rem;
}

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

.flight-field,
.flight-field-wide {
  display: grid;
  gap: 0.45rem;
}

.flight-field label,
.flight-field-wide label {
  font-weight: 700;
  color: #0f224a;
}

.flight-field input,
.flight-field select,
.flight-field-wide textarea {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(46, 94, 170, 0.12);
  background: #f8fbff;
  color: var(--color-text);
  outline: none;
}

.flight-field-wide textarea {
  min-height: 130px;
  resize: vertical;
}

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

.top-destinations-section {
  background: #fff;
}

.destinations-stack {
  display: grid;
  gap: 1rem;
}

.destinations-row {
  display: grid;
  gap: 1rem;
}

.destinations-row.row-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.destination-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.destination-card-body {
  padding: 1.25rem;
}

.destination-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.destination-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.destination-price {
  color: #2e5eaa;
  font-weight: 800;
}

.destination-card p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.destination-explore-button {
  width: 100%;
}

.faq-section {
  background: #f3f7ff;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(31, 42, 68, 0.1);
  background: #fff;
  border-radius: 22px;
  margin-bottom: 0.8rem;
  padding: 0 1.2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.faq-question {
  width: 100%;
  position: relative;
  padding: 1.2rem 2.5rem 1.2rem 0;
  background: transparent;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-text);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #2e5eaa;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 0 1.2rem;
}

.faq-answer p {
  margin: 0;
  color: var(--color-text-muted);
}

.cta-section {
  background: #fff;
}

.cta-card {
  padding: 2.2rem;
  border-radius: 32px;
  background:#2e5eaa;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.reveal-up {
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1100px) {
  .hero-section {
    height: auto;
    min-height: 100svh;
  }

  .hero-content,
  .destination-story-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    justify-items: center;
    text-align: center;
    padding-top: 7.5rem;
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .hero-left,
  .hero-right {
    justify-self: center;
    max-width: 700px;
    margin-top: 0;
  }

  .hero-right {
    align-self: center;
    text-align: center;
  }

  .hero-copy {
    max-width: 26ch;
    margin-inline: auto;
  }

  .hero-center {
    height: auto;
    gap: 10rem;
    padding: 1rem 0;
  }

  .hero-logo {
    transform: translateY(0);
  }

  .google-rating {
    position: static;
    margin-top: 1rem;
  }

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

  .booking-copy {
    position: static;
  }

  .destinations-row.row-3,
  .destinations-row.row-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .hero-content {
    padding-top: 9.5rem;
    padding-bottom: 2rem;
    min-height: 100svh;
  }

  .hero-section::after {
    inset: -2%;
  }

  .hero-side h1,
  .hero-side h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .hero-copy {
    font-size: 1.05rem;
    max-width: 24ch;
  }

  .hero-center {
    gap: 6rem;
  }

  .hero-bismillah {
    text-align: center;
  }

  .trust-grid,
  .flight-form-grid,
  .destinations-row.row-3,
  .destinations-row.row-4 {
    grid-template-columns: 1fr;
  }

  .destination-card img {
    height: 220px;
  }

  .booking-copy,
  .booking-form-wrap,
  .cta-card {
    padding: 1.4rem;
  }

  section:not(.hero-section) {
    padding: 4.25rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section::after,
  .hero-left,
  .hero-right,
  .hero-center,
  .google-rating,
  .reveal-up {
    transform: none !important;
    transition: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 760px) {
  .hero-section {
    height: 100svh;
    min-height: 100svh;
  }

  .hero-content {
    height: 100svh;
    min-height: 100svh;
    padding-top: 6.6rem;
    padding-bottom: 2rem;
    align-content: space-between;
    justify-items: stretch;
    text-align: initial;
  }

  .hero-left {
    justify-self: start;
    text-align: left;
    max-width: 100%;
  }

  .hero-right {
    justify-self: end;
    text-align: right;
    max-width: 100%;
  }

  .hero-side h1,
  .hero-side h2 {
    font-size: clamp(2rem, 8.2vw, 2.55rem);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 0.96rem;
    line-height: 1.38;
    max-width: 23ch;
  }

  .hero-center {
    gap: 4rem;
    margin-top: 0.5rem;
  }

  .hero-bismillah {
    font-size: 0.94rem;
    margin-bottom: 0.5rem;
  }

  .hero-logo {
    font-size: 1.7rem;
  }

  .google-rating {
    position: absolute;
    left: 0;
    bottom: 1.1rem;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 1.1rem;
    padding-top: 6rem;
    padding-bottom: 1.35rem;
  }

  .hero-left {
    justify-self: center;
    text-align: center;
    width: min(100%, 24rem);
    max-width: 100%;
  }

  .hero-right {
    display: none;
  }

  .hero-copy {
    max-width: 24ch;
    margin-inline: auto;
  }

  .google-rating {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 0.9rem;
    padding-top: 6rem;
    padding-bottom: 1.35rem;
  }

  .hero-left,
  .hero-right {
    width: min(100%, 23rem);
    margin: 0;
    padding: 1rem 1rem 1.05rem;
    margin-top: 50px;
  }

  .hero-kicker {
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .hero-side h1,
  .hero-side h2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    line-height: 1;
  }

  .hero-copy {
    margin-top: 0.55rem;
    font-size: 0.92rem;
    line-height: 1.35;
    max-width: none;
  }

  .hero-center {
    width: 100%;
    gap: 1.5rem;
    height: auto;
    min-height: 0;
    padding: 0;
    margin-top: 0.5rem;
  }

  .hero-center-stack {
    gap: 0.45rem;
    padding: 1rem 1.1rem;
  }

  .hero-bismillah {
    font-size: 0.88rem;
    margin-bottom: 0;
  }

  .hero-logo {
    font-size: 1.55rem;
    letter-spacing: 0.16em;
  }

  .hero-button {
    min-height: 48px;
    width: min(100%, 12rem);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.16);
  }

  .google-rating {
    left: 50%;
    bottom: 0.7rem;
    transform: translateX(-50%);
    width: fit-content;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(7, 17, 35, 0.45);
    backdrop-filter: blur(10px);
    white-space: nowrap;
  }

  .google-rating strong,
  .google-rating span {
    font-size: 0.82rem;
  }
}
