:root {
  --navy: #0a2342;
  --navy-2: #06172c;
  --gold: #d4af37;
  --gold-2: #f3d77a;
  --white: #ffffff;
  --paper: #f6f7fb;
  --ink: #111827;
  --muted: #64748b;
  --line: rgba(10, 35, 66, 0.12);
  --glass: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(7, 23, 44, 0.16);
  --soft-gold: rgba(212, 175, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(212, 175, 55, 0.08), transparent 28%),
    radial-gradient(circle at 92% 24%, rgba(10, 35, 66, 0.08), transparent 30%),
    var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.dark {
  --paper: #071827;
  --ink: #f8fafc;
  --muted: #b7c4d7;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.7);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
  animation: pulse 1.2s ease-in-out infinite;
}

.header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 14px clamp(14px, 4vw, 46px);
  transition: 0.25s ease;
}

.header.scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 7px 10px 7px 9px;
  background:
    linear-gradient(135deg, rgba(6, 23, 44, 0.86), rgba(10, 35, 66, 0.66)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  object-fit: contain;
  padding: 2px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18), 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.brand small {
  color: var(--gold-2);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  margin-top: 2px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-panel a:not(.btn) {
  position: relative;
  border-radius: 999px;
  padding: 8px 10px;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-action {
  min-height: 38px;
  padding: 10px 16px;
}

.nav-panel a:not(.btn)::after {
  display: none;
}

.nav-panel a:not(.btn):hover {
  color: #071827;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.18);
}

.menu-toggle,
.theme-toggle {
  border: 0;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
}

.theme-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-gold {
  color: #071827;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn-outline.dark {
  color: var(--navy);
  border-color: rgba(10, 35, 66, 0.24);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: 130px clamp(18px, 6vw, 90px) 58px;
  overflow: hidden;
  color: var(--white);
}

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

.hero-bg {
  overflow: hidden;
  background: #dfeef7;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  animation: heroSlide 24s infinite;
}

.slide-one {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=88");
}

.slide-two {
  background-image: url("https://images.unsplash.com/photo-1595815771614-ade9d652a65d?auto=format&fit=crop&w=2200&q=88");
  animation-delay: 6s;
}

.slide-three {
  background-image: url("https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=2200&q=88");
  animation-delay: 12s;
}

.slide-four {
  background-image: url("https://images.unsplash.com/photo-1512343879784-a960bf40e7f2?auto=format&fit=crop&w=2200&q=88");
  animation-delay: 18s;
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 26%, rgba(255, 255, 255, 0.28), transparent 26%),
    linear-gradient(90deg, rgba(6, 23, 44, 0.82), rgba(6, 23, 44, 0.38) 56%, rgba(255, 255, 255, 0.08)),
    linear-gradient(0deg, rgba(6, 23, 44, 0.42), rgba(255, 255, 255, 0.04) 48%);
}

.plane {
  position: absolute;
  top: 23%;
  right: 13%;
  z-index: 1;
  color: var(--gold-2);
  font-size: clamp(2.5rem, 6vw, 5rem);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
  animation: floatPlane 7s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 7vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span {
  color: var(--gold-2);
  text-shadow: 0 10px 36px rgba(212, 175, 55, 0.24);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-kicker {
  display: inline-flex;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(10, 35, 66, 0.42);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  font-weight: 800;
}

.hero-kicker strong {
  color: var(--gold-2);
}

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

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

.contact-emails a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  overflow-wrap: anywhere;
}

.contact-emails strong {
  color: var(--gold-2);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  font-size: 0.85rem;
  font-weight: 800;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats span {
  min-width: 150px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.35rem;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section:nth-of-type(odd) {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

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

.section-head h2 {
  position: relative;
}

.section-head h2::after {
  display: block;
  width: 72px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.section-head p:last-child {
  color: var(--muted);
}

.offer-section {
  background:
    linear-gradient(135deg, rgba(10, 35, 66, 0.06), rgba(212, 175, 55, 0.1)),
    var(--paper);
}

.offer-section .section-head h2 {
  background: linear-gradient(135deg, var(--navy), #174a78 48%, #a87308);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.offer-grid {
  display: grid;
  max-width: 1040px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0 auto;
}

.offer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: var(--shadow);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.offer-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.92));
  content: "";
}

.offer-card.couples {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.offer-card > * {
  position: relative;
  z-index: 1;
}

.offer-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 9px 14px;
  color: #071827;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.22);
  font-weight: 900;
}

.offer-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.offer-card p {
  max-width: 520px;
  color: #26374d;
}

.offer-highlight {
  width: fit-content;
  max-width: 100%;
  margin: 8px 0 10px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 8px;
  padding: 10px 12px;
  color: #071827;
  background: linear-gradient(135deg, rgba(243, 215, 122, 0.92), rgba(255, 255, 255, 0.82));
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.18);
  font-weight: 900;
}

.offer-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 900;
}

body.dark .offer-section {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.02)),
    #081d31;
}

.destination-grid,
.package-grid,
.feature-grid,
.hotel-grid,
.blog-grid {
  display: grid;
  max-width: 1240px;
  margin: 0 auto;
  gap: 22px;
}

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

.destination-card,
.package-card,
.feature,
.blog-card,
.testimonial-card,
.booking-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

body.dark .destination-card,
body.dark .package-card,
body.dark .feature,
body.dark .blog-card,
body.dark .testimonial-card,
body.dark .booking-form,
body.dark .faq-list details {
  background: rgba(255, 255, 255, 0.06);
}

.destination-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.destination-card:hover,
.package-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
}

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

.card-content {
  padding: 18px;
}

.card-content div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-content h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.card-content span,
.stars {
  color: var(--gold);
  font-weight: 900;
}

.card-content p {
  margin-bottom: 4px;
  color: var(--navy);
  font-weight: 900;
}

body.dark .card-content p {
  color: var(--gold-2);
}

.card-content small {
  color: var(--muted);
}

.card-content a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 900;
}

body.dark .card-content a {
  color: var(--gold-2);
}

.packages {
  background:
    linear-gradient(135deg, rgba(6, 23, 44, 0.98), rgba(3, 13, 28, 0.96)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
}

.packages .section-head h2 {
  color: var(--white);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.packages .section-head p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

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

.package-card {
  display: block;
  min-height: 250px;
  padding: 28px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(6, 23, 44, 0.78);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.package-card::after {
  position: absolute;
  inset: auto -30% -45% 18%;
  height: 120px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  content: "";
  filter: blur(20px);
}

.package-card span,
.feature span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 1.45rem;
  font-weight: 900;
}

.package-card p {
  color: rgba(255, 255, 255, 0.9);
}

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

.feature {
  padding: 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature:hover {
  border-color: rgba(212, 175, 55, 0.42);
  transform: translateY(-6px);
}

.feature p {
  color: var(--muted);
}

.hotel-deals {
  background: var(--white);
}

body.dark .hotel-deals {
  background: #081d31;
}

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

.hotel-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 247, 251, 0.82));
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.hotel-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
  content: "";
}

body.dark .hotel-card {
  background: rgba(255, 255, 255, 0.06);
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(7, 23, 44, 0.2);
}

.hotel-logo {
  display: inline-grid;
  min-width: 142px;
  min-height: 58px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 8px;
  color: var(--navy);
  background: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 32px rgba(10, 35, 66, 0.12);
}

.hotel-logo.taj,
.hotel-logo.itc {
  color: #9a6b08;
}

.hotel-logo.hyatt {
  color: #234b84;
}

.hotel-logo.leela {
  color: #6f2f1f;
}

.hotel-card p {
  color: var(--muted);
}

.hotel-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 900;
}

body.dark .hotel-card a {
  color: var(--gold-2);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 640px;
}

.about-image {
  min-height: 520px;
  background: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1400&q=80") center/cover;
  position: relative;
}

.about-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 35, 66, 0.12), rgba(212, 175, 55, 0.14));
  content: "";
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px);
  background: var(--white);
}

body.dark .about-copy {
  background: #0b2239;
}

.about-copy p {
  color: var(--muted);
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.about-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--navy);
  background: var(--paper);
  font-weight: 800;
}

body.dark .about-points span {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.06);
}

.testimonials {
  background: var(--white);
}

body.dark .testimonials {
  background: #081d31;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: 52px minmax(0, 760px) 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-card {
  min-height: 260px;
  padding: clamp(26px, 5vw, 46px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 247, 251, 0.86));
}

.testimonial-card p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.slider-btn {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 2rem;
  box-shadow: var(--shadow);
}

body.dark .slider-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.masonry {
  display: grid;
  max-width: 1240px;
  grid-auto-flow: dense;
  grid-auto-rows: 190px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.masonry img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.masonry img:hover {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.015);
}

.masonry .tall {
  grid-row: span 2;
}

.masonry .wide {
  grid-column: span 2;
}

.faq {
  background: var(--white);
}

body.dark .faq {
  background: #081d31;
}

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

.faq-list details {
  padding: 22px 24px;
  margin-bottom: 14px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

body.dark .faq-list summary {
  color: var(--gold-2);
}

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

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

.blog-card {
  overflow: hidden;
}

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

.blog-card div {
  padding: 22px;
}

.blog-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.blog-card p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 23, 44, 0.92), rgba(6, 23, 44, 0.76)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.contact-copy,
.booking-form {
  max-width: 620px;
  width: 100%;
}

.contact-copy {
  align-self: center;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
  backdrop-filter: blur(18px);
  justify-self: end;
  background: rgba(255, 255, 255, 0.86);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

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

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 50px clamp(18px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

.newsletter h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.newsletter-form {
  display: flex;
  width: min(520px, 100%);
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
  padding: 60px clamp(18px, 5vw, 72px) 28px;
  color: rgba(255, 255, 255, 0.82);
  background: #06172c;
}

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

.footer h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.footer a {
  display: block;
  margin-bottom: 10px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a,
.floating-actions a {
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.socials a {
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: var(--gold);
}

.copyright {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  width: 48px;
  height: 48px;
  color: #071827;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.login-page {
  min-height: 100svh;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6, 23, 44, 0.94), rgba(10, 35, 66, 0.74)),
    url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=2200&q=90") center/cover fixed;
}

.login-shell {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  justify-content: center;
  padding: 110px clamp(18px, 5vw, 72px) clamp(28px, 5vw, 72px);
}

.login-brand {
  position: fixed;
  top: 24px;
  left: clamp(18px, 5vw, 72px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.login-brand strong,
.login-brand small {
  display: block;
  line-height: 1.05;
}

.login-brand small {
  color: var(--gold-2);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-top: 2px;
}

.login-visual {
  display: none;
}

.login-visual h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5.1rem);
}

.login-visual p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.login-highlights {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.login-highlights span {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.82);
}

.login-highlights strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
}

.login-card {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  color: var(--ink);
  backdrop-filter: blur(22px);
}

.login-card-head {
  margin-bottom: 24px;
}

.login-card-head h2 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.login-card-head p {
  color: var(--muted);
}

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

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.auth-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1.15;
  padding: 8px;
}

.auth-tabs button.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.18);
}

.auth-panel {
  display: none;
}

.auth-panel.active {
  display: grid;
  gap: 16px;
}

.login-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.remember-row {
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px !important;
}

.remember-row input {
  width: 16px;
  height: 16px;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.login-divider::before,
.login-divider::after {
  flex: 1;
  height: 1px;
  background: var(--line);
  content: "";
}

.login-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.login-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.dashboard-page {
  min-height: 100svh;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(10, 35, 66, 0.92) 0, rgba(10, 35, 66, 0.78) 360px, transparent 361px),
    var(--paper);
}

.dashboard-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(6, 23, 44, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.dashboard-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 700;
}

.dashboard-nav a {
  white-space: nowrap;
}

.dashboard-main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px) 0 70px;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 26px;
  color: var(--white);
}

.dashboard-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

.dashboard-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.reward-balance {
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.reward-balance span {
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.reward-balance strong {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 4.7rem);
  line-height: 1;
}

.dashboard-grid,
.redeem-grid {
  display: grid;
  gap: 20px;
}

.dashboard-grid {
  grid-template-columns: 0.9fr 1.25fr 0.95fr;
}

.dashboard-card,
.redeem-card,
.history-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.dashboard-card {
  padding: 26px;
}

.dashboard-card h2,
.dashboard-section h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.dashboard-card p {
  color: var(--muted);
}

.tier-pill,
.trip-status {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy);
  background: rgba(212, 175, 55, 0.18);
  font-weight: 900;
}

.progress-wrap {
  margin-top: 24px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.progress-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(10, 35, 66, 0.1);
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.reward-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.reward-list strong {
  color: var(--navy);
}

.trip-card .btn {
  margin-top: 16px;
}

.dashboard-section {
  margin-top: 34px;
}

.dashboard-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

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

.redeem-card {
  padding: 24px;
}

.redeem-card span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 900;
}

.redeem-card p {
  color: var(--muted);
}

.redeem-card button {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--paper);
  cursor: pointer;
  font-weight: 900;
}

.history-table {
  overflow: hidden;
}

.history-table > div {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.7fr;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.history-table span,
.history-table strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.history-table > div:last-child {
  border-bottom: 0;
}

.history-head {
  color: var(--navy) !important;
  background: rgba(212, 175, 55, 0.14);
  font-weight: 900;
}

.history-table strong {
  color: var(--gold);
}

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

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

@keyframes pulse {
  50% {
    transform: scale(1.08);
  }
}

@keyframes floatPlane {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  50% {
    transform: translate3d(-28px, 22px, 0) rotate(5deg);
  }
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  8%,
  25% {
    opacity: 1;
  }
  33%,
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@media (max-width: 1180px) {
  .nav-panel {
    gap: 12px;
    font-size: 0.86rem;
  }

  .nav-panel .btn {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .trip-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1240px) {
  .menu-toggle {
    display: flex;
  }

  .nav-panel {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: grid;
    max-height: calc(100svh - 98px);
    overflow: auto;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(6, 23, 44, 0.98), rgba(10, 35, 66, 0.94));
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav-panel a:not(.btn) {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel .btn,
  .theme-toggle {
    width: 100%;
  }

  .destination-grid,
  .package-grid,
  .feature-grid,
  .hotel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 92svh;
    padding-right: clamp(18px, 5vw, 54px);
    padding-left: clamp(18px, 5vw, 54px);
  }

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

  .hero-actions {
    max-width: 620px;
  }

  .hotel-grid,
  .package-grid,
  .feature-grid,
  .offer-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .booking-form {
    max-width: 760px;
  }

  .booking-form {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-stats span {
    min-width: 0;
    padding: 12px 14px;
  }

  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 360px;
  }

  .testimonial-slider {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
  }

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

  .blog-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .login-shell {
    grid-template-columns: 1fr;
    padding-top: 105px;
  }

  .login-visual {
    padding-top: 0;
  }

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

  .dashboard-header,
  .dashboard-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .dashboard-hero,
  .dashboard-grid,
  .redeem-grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter-form {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .navbar,
  .dashboard-header {
    gap: 14px;
  }

  .brand strong {
    font-size: 0.85rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.1rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.45rem);
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-kicker {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .hero-actions,
  .contact-actions,
  .newsletter-form {
    flex-direction: column;
  }

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

  .hero-actions .btn:first-child {
    grid-column: 1 / -1;
  }

  .hero-badges {
    display: none;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .newsletter-form .btn {
    width: 100%;
  }

  .plane {
    display: none;
  }

  .offer-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .offer-grid {
    gap: 18px;
  }

  .offer-card {
    min-height: auto;
    justify-content: flex-start;
    border-color: rgba(212, 175, 55, 0.38);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
      var(--white);
    box-shadow: 0 14px 34px rgba(7, 23, 44, 0.12);
  }

  .offer-card::before {
    display: none;
  }

  .offer-tag {
    border-radius: 999px;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #071827;
    font-size: 0.86rem;
    line-height: 1;
  }

  .offer-card a {
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px 14px;
    color: #071827;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
  }

  .offer-highlight {
    width: 100%;
    text-align: center;
  }

  .hero-stats,
  .destination-grid,
  .offer-grid,
  .package-grid,
  .feature-grid,
  .hotel-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-stats span {
    padding: 12px 10px;
    text-align: center;
  }

  .hero-stats strong {
    font-size: 1.18rem;
  }

  .booking-form .full {
    grid-column: auto;
  }

  .booking-form label,
  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
  }

  .masonry {
    grid-auto-rows: 170px;
    grid-template-columns: 1fr;
  }

  .masonry .wide,
  .masonry .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-actions a {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }

  .login-shell {
    padding: 102px 16px 26px;
  }

  .login-brand {
    top: 18px;
    left: 16px;
  }

  .login-actions,
  .login-options {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-main {
    width: min(100% - 28px, 1180px);
  }

  .dashboard-header .brand {
    width: 100%;
  }

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

  .dashboard-nav a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    white-space: normal;
    text-align: center;
  }

  .dashboard-nav .btn {
    width: 100%;
  }

  .history-table > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (max-width: 420px) {
  .section,
  .contact-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.74rem;
  }

  .brand small {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-stats {
    margin-top: 18px;
    grid-template-columns: 1fr;
  }

  .hero-stats span,
  .offer-card,
  .hotel-card,
  .package-card,
  .feature,
  .dashboard-card,
  .redeem-card,
  .faq-list details {
    padding: 18px;
  }

  .offer-tag {
    margin-bottom: 12px;
  }

  .offer-card h3 {
    font-size: 1.35rem;
  }

  .offer-card p {
    font-size: 0.95rem;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    margin: 0 auto;
  }

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

  .hotel-logo {
    min-width: 120px;
    min-height: 50px;
    font-size: 1.05rem;
  }

  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .login-brand {
    max-width: calc(100% - 32px);
  }

  .login-options {
    gap: 10px;
  }

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

  .dashboard-hero h1,
  .reward-balance strong {
    font-size: 2.4rem;
  }

  .history-table > div {
    padding: 16px;
  }
}
