:root {
  --bg: #05070d;
  --bg2: #080d15;
  --panel: rgba(10, 14, 20, 0.86);
  --panel2: rgba(15, 19, 28, 0.92);
  --text: #f8f4ec;
  --muted: #c8c0b3;
  --gold: #d8a33a;
  --gold2: #f7c75e;
  --gold3: #ffe4a4;
  --line: rgba(216, 163, 58, 0.38);
  --soft-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 18px 18px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 66px;
  background: rgba(4, 7, 12, 0.78);
  border-bottom: 1px solid rgba(216, 163, 58, 0.18);
  backdrop-filter: blur(20px);
}

.brand {
  display: grid;
  gap: 2px;
}

.brand-main {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 35px;
  letter-spacing: -0.06em;
}

.brand-main span {
  color: var(--gold2);
}

.brand-main::after {
  content: "âœˆ";
  color: var(--gold2);
  font-size: 18px;
  margin-left: 4px;
  vertical-align: top;
}

.brand small {
  color: var(--gold3);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 10px;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a {
  position: relative;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold2);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 2px;
  background: var(--gold2);
}

.login-btn {
  border: 1px solid var(--gold);
  color: var(--text);
  background: rgba(6, 9, 14, 0.8);
  border-radius: 10px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.login-btn.big {
  margin-top: 22px;
  padding: 15px 28px;
}

.icon-user {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.icon-user::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 12px;
  width: 24px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 20px 20px;
}

.hero-section {
  min-height: 940px;
  position: relative;
  isolation: isolate;
  padding-top: 88px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.92), rgba(5, 7, 13, 0.58), rgba(5, 7, 13, 0.24)),
    url("https://images.unsplash.com/photo-1573843981267-be1999ff37cd?auto=format&fit=crop&w=2200&q=80") center/cover;
  filter: saturate(1.08) contrast(1.06);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 35%, rgba(216, 163, 58, 0.22), transparent 32%),
    linear-gradient(180deg, transparent 68%, var(--bg) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  padding: 88px 66px 40px;
  align-items: start;
}

.eyebrow,
.small-title {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--gold3);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 8px 14px;
  background: rgba(10, 14, 20, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 24px 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-copy h1 span {
  color: var(--gold2);
}

.hero-description {
  color: var(--muted);
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin: 26px 0 34px;
}

.primary-btn,
.submit-btn,
.wide-form button {
  border: 0;
  border-radius: 8px;
  color: #111;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold2), #ffd987, var(--gold));
  padding: 15px 24px;
  box-shadow: 0 18px 36px rgba(216, 163, 58, 0.2);
}

.video-btn {
  border: 0;
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.video-btn span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  color: var(--gold2);
  border-radius: 50%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 18px;
  max-width: 760px;
}

.hero-stats div {
  padding: 16px 0;
  border-right: 1px solid var(--soft-line);
}

.hero-stats strong {
  display: block;
  font-size: 20px;
  color: var(--text);
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.callback-card,
.lead-slide-panel,
.package-modal,
.login-modal {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 20, 28, 0.96), rgba(8, 11, 17, 0.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.callback-card {
  position: sticky;
  top: 110px;
  border-radius: 18px;
  padding: 28px;
}

.callback-card h2,
.lead-slide-panel h2,
.package-modal h2,
.login-modal h2,
.wide-lead-copy h2,
.member-copy h2,
.section-title h2 {
  font-family: "Playfair Display", serif;
  color: var(--gold3);
  font-size: 34px;
  margin: 12px 0 8px;
  letter-spacing: -0.03em;
}

.callback-card p,
.lead-slide-panel p,
.package-modal p,
.login-modal p {
  color: var(--muted);
  line-height: 1.7;
}

.close-card,
.panel-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 32px;
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
}

.lead-form input,
.lead-form select,
.login-form input,
.wide-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 9px;
  padding: 14px 15px;
  outline: none;
}

.lead-form select option {
  color: #111;
}

.lead-form input:focus,
.lead-form select:focus,
.login-form input:focus,
.wide-form input:focus {
  border-color: var(--gold2);
  box-shadow: 0 0 0 4px rgba(216, 163, 58, 0.1);
}

.privacy-note {
  text-align: center;
  color: var(--muted);
}

.section {
  padding: 70px 66px;
}

.section-title {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 34px;
}

.section-title h2 {
  font-size: 34px;
  color: var(--text);
}

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

.row-title {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  text-align: left;
}

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

.category-card,
.package-card,
.testimonial-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.category-card img,
.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.category-card::after,
.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(5, 7, 13, 0.96) 76%);
  pointer-events: none;
}

.category-icon {
  position: absolute;
  top: 138px;
  left: 24px;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #111;
  border-radius: 50%;
  font-size: 23px;
  font-weight: 900;
}

.card-body,
.package-body {
  position: relative;
  z-index: 2;
  padding: 26px 22px 24px;
}

.card-body h3,
.package-body h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.card-body p,
.package-body p {
  color: var(--muted);
  line-height: 1.65;
}

.card-body button,
.package-body button,
.outline-btn {
  border: 0;
  background: transparent;
  color: var(--gold2);
  font-weight: 800;
  padding: 0;
}

.trust-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(216, 163, 58, 0.3);
  border-radius: 14px;
  background: rgba(11, 15, 22, 0.78);
}

.trust-strip div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  padding: 20px;
  border-right: 1px solid var(--soft-line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  color: var(--gold2);
  border-radius: 50%;
  font-size: 22px;
}

.trust-strip strong {
  color: var(--gold2);
  font-size: 14px;
}

.trust-strip small {
  color: var(--muted);
  line-height: 1.5;
}

.package-body .meta {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.price {
  color: var(--gold2);
  font-size: 22px;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.how-section {
  background: radial-gradient(circle at center, rgba(216, 163, 58, 0.09), transparent 34%);
}

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

.step {
  text-align: center;
  position: relative;
}

.step span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold2);
  background: rgba(13, 17, 24, 0.92);
  font-weight: 900;
}

.step h3 {
  margin: 0 0 8px;
}

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

.wide-lead-section {
  margin: 28px 66px 70px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(8, 11, 17, 0.95), rgba(8, 11, 17, 0.72)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=80") center/cover;
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 30px;
  align-items: center;
}

.wide-form {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.membership-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.member-visual {
  min-height: 300px;
  position: relative;
}

.device {
  position: absolute;
  border: 1px solid rgba(216, 163, 58, 0.35);
  background: linear-gradient(180deg, #171b24, #05070d);
  box-shadow: var(--shadow);
  color: var(--gold2);
  font-weight: 800;
}

.device span {
  color: var(--muted);
  font-weight: 500;
}

.device.desktop {
  left: 20px;
  top: 70px;
  width: 390px;
  height: 220px;
  border-radius: 18px;
  padding: 38px;
  font-size: 30px;
}

.device.mobile {
  right: 40px;
  top: 20px;
  width: 150px;
  height: 250px;
  border-radius: 28px;
  padding: 42px 20px;
  line-height: 2;
}

.member-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.member-features div {
  padding: 18px;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.member-features strong,
.member-features span {
  display: block;
}

.member-features span {
  color: var(--muted);
  margin-top: 6px;
}

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

.testimonial-grid article {
  padding: 24px;
}

.testimonial-grid div {
  color: var(--gold2);
}

.testimonial-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding: 48px 66px;
  background: #04070c;
  border-top: 1px solid rgba(216, 163, 58, 0.18);
}

.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.8;
}

.footer a {
  display: block;
}

.footer h4 {
  color: var(--gold2);
}

.lead-slide-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(110%, -50%);
  z-index: 100;
  width: min(430px, calc(100vw - 28px));
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 20px 0 0 20px;
  padding: 30px;
  transition: transform 0.5s ease;
}

.lead-slide-panel.show {
  transform: translate(0, -50%);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.modal-backdrop.show {
  display: grid;
}

.package-modal,
.login-modal {
  width: min(980px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 22px;
  padding: 32px;
  position: relative;
}

.login-modal {
  width: min(620px, 100%);
}

.modal-package-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.modal-package {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.modal-package img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.modal-package div {
  padding: 18px;
}

.modal-package h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
}

.login-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.dashboard-preview div {
  padding: 16px;
  border: 1px solid var(--soft-line);
  border-radius: 12px;
}

.dashboard-preview strong,
.dashboard-preview span {
  display: block;
}

.dashboard-preview span {
  color: var(--muted);
  margin-top: 5px;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hero-content,
  .membership-section,
  .wide-lead-section {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }

  .callback-card {
    position: relative;
    top: 0;
  }

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

  .wide-lead-section {
    margin-left: 24px;
    margin-right: 24px;
  }

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

  .footer {
    grid-template-columns: 1fr 1fr;
    padding: 42px 24px;
  }
}

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

  .hero-content {
    padding-top: 52px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .brand-main {
    font-size: 28px;
  }

  .login-btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero-stats,
  .category-grid,
  .package-grid,
  .steps,
  .trust-strip,
  .wide-form,
  .member-features,
  .testimonial-grid,
  .footer,
  .modal-package-list,
  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 20px;
  }

  .wide-lead-section {
    margin: 20px;
  }

  .row-title {
    display: grid;
    gap: 18px;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }
}


/* =========================
   YouGoVibes Bridge Section
========================= */
.vibes-bridge-section {
  position: relative;
  margin: 40px 66px 80px;
  min-height: 430px;
  border: 1px solid rgba(216, 163, 58, 0.38);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 54px;
  background:
    radial-gradient(circle at 85% 24%, rgba(255, 69, 164, 0.30), transparent 26%),
    radial-gradient(circle at 65% 78%, rgba(79, 70, 229, 0.30), transparent 30%),
    linear-gradient(135deg, rgba(12, 13, 20, 0.98), rgba(23, 23, 31, 0.92));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.vibes-bridge-copy {
  position: relative;
  z-index: 2;
}

.vibes-bridge-copy h2 {
  margin: 20px 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.vibes-bridge-copy p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.vibes-bridge-btn {
  margin-top: 24px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-radius: 999px;
  padding: 16px 24px;
  color: #121212;
  font-weight: 900;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
  box-shadow: 0 20px 40px rgba(216, 163, 58, 0.22);
}

.vibes-floating-card {
  position: relative;
  z-index: 2;
  min-height: 280px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(8, 10, 18, 0.58);
  backdrop-filter: blur(24px);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.44);
  transform: rotate(-2deg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.vibes-floating-card:hover {
  transform: rotate(0deg) translateY(-8px);
  border-color: #ffe4a4;
}

.vibes-badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 69, 164, 0.22);
  color: #ffd6ef;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 900;
}

.vibes-floating-card h3 {
  margin: 26px 0 10px;
  font-size: 44px;
  font-family: "Playfair Display", serif;
  color: #ffe4a4;
}

.vibes-floating-card p {
  color: rgba(255,255,255,0.74);
  line-height: 1.7;
}

.vibes-floating-card strong {
  display: inline-flex;
  margin-top: 20px;
  color: #ffe4a4;
}

.vibes-mini-glow,
.vibes-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.vibes-mini-glow {
  inset: auto 24px 24px auto;
  width: 120px;
  height: 120px;
  background: rgba(255, 69, 164, 0.35);
}

.orb-one {
  width: 260px;
  height: 260px;
  right: 11%;
  top: -90px;
  background: rgba(255, 214, 102, 0.20);
}

.orb-two {
  width: 340px;
  height: 340px;
  left: 30%;
  bottom: -170px;
  background: rgba(79, 70, 229, 0.20);
}

@media (max-width: 950px) {
  .vibes-bridge-section {
    margin: 28px 20px 58px;
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

/* =========================
   YouGoVibes AI Page
========================= */
.vibes-page {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 69, 164, 0.22), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(45, 62, 255, 0.25), transparent 27%),
    radial-gradient(circle at 65% 78%, rgba(216, 163, 58, 0.16), transparent 28%),
    #070712;
  color: #fff;
}

.vibes-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 58px;
  background: rgba(5, 5, 13, 0.68);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.vibes-logo {
  display: grid;
  gap: 2px;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 32px;
}

.vibes-logo span {
  color: #ff5ab8;
}

.vibes-logo small {
  font-family: Inter, sans-serif;
  font-size: 10px;
  color: #ffe4a4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vibes-nav {
  display: flex;
  gap: 28px;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
}

.vibes-nav a:hover {
  color: #ffe4a4;
}

.vibes-back {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
}

.vibes-hero {
  min-height: 100vh;
  padding: 160px 58px 90px;
  position: relative;
  overflow: hidden;
}

.vibes-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.vibes-hero h1 {
  margin: 18px 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(58px, 9vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.vibes-hero h1 span {
  background: linear-gradient(135deg, #ffe4a4, #ff5ab8, #7c6cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vibes-hero p {
  max-width: 680px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-size: 18px;
}

.vibes-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.vibes-chip-row span {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  font-weight: 700;
}

.vibes-hero-card {
  min-height: 480px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: 0 45px 110px rgba(0,0,0,0.45);
}

.vibes-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6,7,18,0.94));
}

.vibes-card-caption {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 30px;
}

.vibes-card-caption strong {
  color: #ffe4a4;
  font-size: 26px;
}

.vibes-scroll-cue {
  margin-top: 44px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #ffe4a4;
  font-weight: 900;
}

.vibes-section {
  padding: 84px 58px;
}

.vibes-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}

.vibes-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  margin: 0 0 16px;
}

.vibes-title p {
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
}

.vibe-builder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.vibe-prompt-card,
.vibe-result-card,
.destination-card,
.tips-card {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  background: rgba(255,255,255,0.075);
  backdrop-filter: blur(24px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.32);
}

.vibe-prompt-card {
  padding: 30px;
  position: sticky;
  top: 104px;
}

.vibe-prompt-card label {
  display: grid;
  gap: 10px;
  color: #ffe4a4;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.vibe-prompt-card textarea,
.vibe-prompt-card input,
.vibe-prompt-card select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.22);
  color: #fff;
  border-radius: 20px;
  padding: 16px;
  outline: none;
}

.vibe-prompt-card textarea {
  min-height: 150px;
  resize: vertical;
}

.vibe-prompt-grid {
  display: grid;
  gap: 16px;
}

.vibe-generate-btn {
  border: 0;
  width: 100%;
  border-radius: 20px;
  margin-top: 18px;
  padding: 17px;
  font-weight: 1000;
  color: #090911;
  background: linear-gradient(135deg, #ffe4a4, #ff5ab8);
  box-shadow: 0 20px 44px rgba(255, 90, 184, 0.25);
}

.vibe-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.vibe-suggestions button {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 999px;
  padding: 9px 12px;
}

.vibe-result-card {
  padding: 30px;
  min-height: 520px;
}

.vibe-status {
  color: #ffe4a4;
  font-weight: 800;
  margin-bottom: 20px;
}

.vibe-trip-summary {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.vibe-trip-summary h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin: 0;
}

.vibe-trip-summary p {
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.vibe-days {
  display: grid;
  gap: 14px;
}

.vibe-day {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 20px;
  background: rgba(0,0,0,0.22);
}

.vibe-day span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 90, 184, 0.2);
  color: #ffd6ef;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.vibe-day h4 {
  margin: 14px 0 8px;
  font-size: 20px;
}

.vibe-day ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

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

.destination-card {
  padding: 24px;
  min-height: 260px;
  display: grid;
  align-content: end;
  overflow: hidden;
  position: relative;
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dest-img) center/cover;
  opacity: 0.34;
  filter: saturate(1.1);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5,5,13,0.94));
}

.destination-card > * {
  position: relative;
  z-index: 2;
}

.destination-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin: 0 0 10px;
  color: #ffe4a4;
}

.destination-card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

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

.tips-card {
  padding: 24px;
}

.tips-card strong {
  color: #ffe4a4;
  font-size: 20px;
}

.tips-card p {
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.vibes-footer {
  padding: 46px 58px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.62);
}

@media (max-width: 1050px) {
  .vibes-header {
    padding: 0 22px;
  }

  .vibes-nav {
    display: none;
  }

  .vibes-hero,
  .vibes-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .vibes-hero-grid,
  .vibe-builder,
  .destination-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .vibe-prompt-card {
    position: relative;
    top: 0;
  }

  .vibes-footer {
    display: grid;
    gap: 12px;
    padding: 34px 22px;
  }
}


/* =========================
   YouGoVibes Dropdown Fix
   Fixes native select dropdown contrast
========================= */
.vibe-prompt-card select,
.vibe-prompt-card select option,
.vibe-prompt-card select optgroup {
  background-color: #10111d;
  color: #ffffff;
}

.vibe-prompt-card select {
  color-scheme: dark;
  appearance: auto;
  -webkit-appearance: menulist;
}

.vibe-prompt-card select option {
  padding: 12px;
}

.vibe-prompt-card select option:checked,
.vibe-prompt-card select option:hover {
  background-color: #d8a33a;
  color: #090911;
}


/* =========================
   YouGoVibes Finalize Floating CTA
========================= */
.vibe-finalize-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 120;
  width: min(390px, calc(100vw - 32px));
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 228, 164, 0.45);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 90, 184, 0.26), transparent 32%),
    linear-gradient(145deg, rgba(18, 18, 32, 0.96), rgba(8, 8, 18, 0.96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58), 0 0 38px rgba(255, 90, 184, 0.12);
  backdrop-filter: blur(24px);
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.vibe-finalize-float.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.vibe-finalize-float span {
  display: inline-flex;
  color: #090911;
  background: linear-gradient(135deg, #ffe4a4, #ff5ab8);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 12px;
}

.vibe-finalize-float h3 {
  margin: 16px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: #ffe4a4;
  line-height: 1;
}

.vibe-finalize-float p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
  font-size: 14px;
}

.vibe-finalize-float button:not(.vibe-finalize-close) {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  color: #090911;
  font-weight: 1000;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
  box-shadow: 0 16px 34px rgba(216, 163, 58, 0.20);
}

.vibe-finalize-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 720px) {
  .vibe-finalize-float {
    right: 16px;
    bottom: 16px;
  }
}


/* =========================
   Trip Date Fields
========================= */
.date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.date-row label {
  min-width: 0;
}

.lead-form input[type="date"],
.wide-form input[type="date"],
.vibe-prompt-card input[type="date"] {
  color-scheme: dark;
}

.lead-form input[type="date"]::-webkit-calendar-picker-indicator,
.wide-form input[type="date"]::-webkit-calendar-picker-indicator,
.vibe-prompt-card input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.8;
  cursor: pointer;
}

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


/* =========================
   YouGoVibes Travel Guide Card
========================= */
.vibe-guide-card {
  grid-column: 1 / -1;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 90, 184, 0.18), transparent 26%),
    radial-gradient(circle at 10% 100%, rgba(216, 163, 58, 0.12), transparent 28%),
    rgba(255,255,255,0.075);
  backdrop-filter: blur(24px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.32);
  padding: 30px;
}

.vibe-guide-header span {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 228, 164, 0.14);
  color: #ffe4a4;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vibe-guide-header h3 {
  margin: 14px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #ffe4a4;
  line-height: 1;
}

.vibe-guide-header p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.vibe-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vibe-guide-grid article {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 20px;
  background: rgba(0,0,0,0.22);
}

.vibe-guide-grid strong {
  display: block;
  color: #ffe4a4;
  margin-bottom: 12px;
  font-size: 18px;
}

.vibe-guide-grid ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.74);
  line-height: 1.75;
}

@media (max-width: 1050px) {
  .vibe-guide-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   YouGoVibes Travel Guide Overlap Fix
   Keeps the guide section below the prompt/result area
========================= */
.vibe-builder {
  align-items: start;
}

.vibe-prompt-card {
  position: relative;
  top: auto;
}

.vibe-guide-card {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin-top: 42px;
  clear: both;
}

.vibe-result-card {
  position: relative;
  z-index: 2;
}

@media (min-width: 1051px) {
  .vibe-guide-card {
    margin-top: 54px;
  }
}


/* =========================
   Live Packages From Admin
========================= */
.dynamic-packages-section {
  position: relative;
}

.package-filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 28px;
}

.package-filter {
  border: 1px solid rgba(216, 163, 58, 0.28);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  color: var(--text, #ffffff);
  font-weight: 900;
}

.package-filter.active,
.package-filter:hover {
  color: #111;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
}

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

.live-package-card,
.package-loading-card {
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.065);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.package-loading-card {
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
  color: rgba(255,255,255,0.72);
}

.live-package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: rgba(0,0,0,0.2);
}

.live-package-body {
  padding: 24px;
}

.live-package-body .package-category {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 11px;
  color: #111;
  font-size: 12px;
  font-weight: 1000;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
  margin-bottom: 14px;
}

.live-package-body h3 {
  margin: 0 0 10px;
  color: #ffe4a4;
  font-size: 24px;
}

.live-package-body p {
  color: rgba(255,255,255,0.74);
  line-height: 1.7;
}

.live-package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.live-package-meta span {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 800;
}

.live-package-highlights {
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.live-package-card .package-btn {
  width: 100%;
  margin-top: 18px;
}

@media (max-width: 1050px) {
  .live-package-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   Seasonal Packages
========================= */
.seasonal-packages-section {
  position: relative;
}

.package-loading-card {
  grid-column: 1 / -1;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.055);
}

/* Hide old live package section if cached HTML exists */
.dynamic-packages-section {
  display: none !important;
}


/* =========================
   Customer Login/Profile
========================= */
.customer-auth-page,
.customer-dashboard-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 8%, rgba(216, 163, 58, 0.18), transparent 26%),
    radial-gradient(circle at 12% 88%, rgba(101, 183, 255, 0.12), transparent 28%),
    #060911;
  color: #f8f4ec;
}

.customer-auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: center;
  padding: 60px 8%;
}

.customer-auth-brand h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.95;
  margin: 24px 0;
  max-width: 760px;
}

.customer-auth-brand p {
  color: rgba(255,255,255,0.72);
  font-size: 20px;
  line-height: 1.7;
  max-width: 620px;
}

.customer-logo {
  color: #ffe4a4;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 800;
}

.customer-back-link {
  display: inline-flex;
  margin-top: 26px;
  color: #ffe4a4;
  font-weight: 900;
  text-decoration: none;
}

.customer-auth-card,
.customer-profile-card,
.customer-panel,
.customer-modal-card {
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 30px;
  background: rgba(255,255,255,0.065);
  box-shadow: 0 34px 90px rgba(0,0,0,0.34);
  backdrop-filter: blur(22px);
}

.customer-auth-card {
  padding: 30px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.auth-tabs button,
.social-auth-grid button,
.customer-auth-form button,
.customer-profile-form button,
.customer-dashboard-header button,
.customer-data-card button {
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 1000;
  cursor: pointer;
}

.auth-tabs button {
  background: rgba(255,255,255,0.08);
  color: #f8f4ec;
}

.auth-tabs button.active,
.customer-auth-form button,
.customer-profile-form button {
  color: #111;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
}

.social-auth-grid {
  display: grid;
  gap: 10px;
}

.social-auth-grid button {
  color: #f8f4ec;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.13);
}

.auth-divider {
  display: grid;
  place-items: center;
  margin: 20px 0;
  color: rgba(255,255,255,0.55);
  font-weight: 800;
}

.customer-auth-form {
  display: none;
  gap: 14px;
}

.customer-auth-form.active {
  display: grid;
}

.customer-auth-form label,
.customer-profile-form {
  display: grid;
  gap: 9px;
  color: #ffe4a4;
  font-weight: 800;
}

.customer-auth-form input,
.customer-profile-form input {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.30);
  color: #fff;
  border-radius: 13px;
  padding: 11px 13px;
  outline: none;
}

.customer-auth-form small {
  min-height: 20px;
  color: #ff6b6b;
  font-weight: 800;
}

.customer-dashboard-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 8%;
  background: rgba(6,9,17,0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.customer-dashboard-header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.customer-dashboard-header a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-weight: 900;
}

.customer-dashboard-header button {
  background: rgba(255,255,255,0.09);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.13);
}

.customer-dashboard-shell {
  padding: 44px 8% 80px;
  display: grid;
  gap: 24px;
}

.customer-profile-card {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}

.customer-profile-card h1,
.customer-panel h2,
.customer-modal-card h2 {
  font-family: "Playfair Display", serif;
  color: #ffe4a4;
  margin: 0 0 10px;
}

.customer-profile-card p {
  color: rgba(255,255,255,0.72);
}

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

.customer-profile-grid article,
.customer-data-card,
.customer-empty-card,
.customer-day-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 18px;
  background: rgba(0,0,0,0.22);
}

.customer-profile-grid span,
.customer-data-card span {
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-profile-grid strong {
  display: block;
  margin-top: 7px;
  color: #fff;
}

.customer-panel {
  padding: 28px;
}

.customer-profile-form {
  grid-template-columns: repeat(4, 1fr);
}

.customer-data-grid {
  display: grid;
  gap: 14px;
}

.customer-data-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.customer-data-card h3 {
  margin: 8px 0;
}

.customer-data-card p {
  margin: 6px 0;
  color: rgba(255,255,255,0.68);
}

.customer-data-card strong {
  color: #111;
  border-radius: 999px;
  padding: 9px 12px;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
  white-space: nowrap;
}

.customer-data-card button {
  color: #111;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
}

.customer-empty-card {
  color: rgba(255,255,255,0.68);
}

.coming-soon-panel p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.customer-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,0.68);
}

.customer-modal.show {
  display: grid;
}

.customer-modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  padding: 30px;
  background: #0c111d;
}

.customer-modal-card > button {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.customer-day-card {
  margin-top: 14px;
}

.customer-day-card ul {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .customer-auth-shell,
  .customer-profile-card {
    grid-template-columns: 1fr;
  }

  .customer-profile-grid,
  .customer-profile-form {
    grid-template-columns: 1fr;
  }

  .customer-dashboard-header {
    display: grid;
    gap: 14px;
  }

  .customer-dashboard-header nav {
    flex-wrap: wrap;
  }
}


/* =========================
   Old Member Modal Disabled
   Login/Signup now opens customer-login.html page directly
========================= */
#membershipModal,
#memberModal,
#loginModal,
.membership-modal,
.member-modal,
.login-modal {
  display: none !important;
}


/* =========================
   Login / Signup Golden Button Fix
========================= */
.main-nav a[href="customer-login.html"],
.navbar a[href="customer-login.html"],
header a[href="customer-login.html"],
.member-btn,
.customer-login-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(255, 212, 111, 0.8) !important;
  border-radius: 16px !important;
  color: #f8f4ec !important;
  background: rgba(8, 10, 18, 0.72) !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22) !important;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease !important;
}

.main-nav a[href="customer-login.html"]::before,
.navbar a[href="customer-login.html"]::before,
header a[href="customer-login.html"]::before,
.member-btn::before,
.customer-login-btn::before {
  content: "" !important;
  width: 28px !important;
  height: 28px !important;
  border: 3px solid #ffffff !important;
  border-radius: 50% !important;
  display: inline-block !important;
  box-shadow: inset -8px 0 0 rgba(255,255,255,0.12) !important;
}

.main-nav a[href="customer-login.html"]:hover,
.navbar a[href="customer-login.html"]:hover,
header a[href="customer-login.html"]:hover,
.member-btn:hover,
.customer-login-btn:hover {
  transform: translateY(-2px) !important;
  border-color: #ffd46f !important;
  background: linear-gradient(135deg, rgba(255, 228, 164, 0.18), rgba(216, 163, 58, 0.14)) !important;
}

@media (max-width: 900px) {
  .main-nav a[href="customer-login.html"],
  .navbar a[href="customer-login.html"],
  header a[href="customer-login.html"],
  .member-btn,
  .customer-login-btn {
    min-height: 44px !important;
    padding: 0 16px !important;
  }
}


/* =========================
   Customer Login Welcome Vibe
========================= */
.customer-vibe-greeting {
  margin: 28px 0 4px;
  max-width: 560px;
  border: 1px solid rgba(255, 212, 111, 0.22);
  border-radius: 24px;
  padding: 22px;
  background:
    radial-gradient(circle at 90% 0%, rgba(216, 163, 58, 0.18), transparent 35%),
    rgba(255,255,255,0.045);
  box-shadow: 0 18px 60px rgba(0,0,0,0.24);
}

.customer-vibe-greeting span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #111;
  border-radius: 999px;
  padding: 7px 11px;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.customer-vibe-greeting strong {
  display: block;
  color: #ffe4a4;
  font-size: 22px;
  margin-bottom: 8px;
}

.customer-vibe-greeting p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.customer-auth-mini-heading {
  margin: 0 0 14px;
  color: #ffe4a4;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.customer-auth-brand h1 {
  max-width: 720px;
}

.customer-auth-brand h1::after {
  content: " Your dashboard is ready.";
  color: #d8a33a;
}


/* =========================
   Logged-in Customer Button
========================= */
.logged-in-customer-btn {
  border-color: rgba(255, 212, 111, 0.95) !important;
  background: linear-gradient(135deg, rgba(255, 228, 164, 0.18), rgba(216, 163, 58, 0.14)) !important;
  color: #ffe4a4 !important;
}

.logged-in-customer-btn::before {
  content: "ðŸ‘¤" !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 18px !important;
}


/* =========================
   Clean Customer Login Button
   One premium button only, no duplicate icons
========================= */
.customer-login-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(255, 212, 111, 0.86) !important;
  border-radius: 16px !important;
  color: #f8f4ec !important;
  background: rgba(8, 10, 18, 0.72) !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22) !important;
}

.customer-login-btn::before {
  content: "" !important;
  width: 28px !important;
  height: 28px !important;
  border: 3px solid #ffffff !important;
  border-radius: 50% !important;
  display: inline-block !important;
  box-shadow: inset -8px 0 0 rgba(255,255,255,0.12) !important;
  flex: 0 0 auto !important;
}

.customer-login-btn:hover {
  transform: translateY(-2px) !important;
  border-color: #ffd46f !important;
  background: linear-gradient(135deg, rgba(255, 228, 164, 0.18), rgba(216, 163, 58, 0.14)) !important;
}

.customer-login-btn.logged-in-customer-btn::before {
  content: "ðŸ‘¤" !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 18px !important;
}

/* =========================
   FINAL Header Customer Buttons + Popup
========================= */
.header-auth-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.site-header > .customer-login-btn,
.site-header > .member-btn {
  display: none !important;
}

.header-auth-actions .customer-login-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(255, 212, 111, 0.86) !important;
  border-radius: 16px !important;
  color: #f8f4ec !important;
  background: rgba(8, 10, 18, 0.72) !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22) !important;
  cursor: pointer !important;
  font: inherit !important;
}

.header-auth-actions .customer-login-btn::before {
  content: "" !important;
  width: 28px !important;
  height: 28px !important;
  border: 3px solid #ffffff !important;
  border-radius: 50% !important;
  display: inline-block !important;
  box-shadow: inset -8px 0 0 rgba(255,255,255,0.12) !important;
  flex: 0 0 auto !important;
}

.header-auth-actions .customer-login-btn:hover {
  transform: translateY(-2px) !important;
  border-color: #ffd46f !important;
  background: linear-gradient(135deg, rgba(255, 228, 164, 0.18), rgba(216, 163, 58, 0.14)) !important;
}

.header-auth-actions .logged-in-customer-btn::before {
  content: "ðŸ‘¤" !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 18px !important;
}

.customer-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.customer-popup-backdrop.show {
  display: grid;
}

.customer-popup-card {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(255, 212, 111, 0.32);
  border-radius: 24px;
  padding: 24px;
  background: radial-gradient(circle at 90% 0%, rgba(216, 163, 58, 0.18), transparent 35%), #0c111d;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
  color: #f8f4ec;
}

.customer-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.customer-popup-card h2 {
  margin: 10px 0;
  color: #ffe4a4;
  font-family: "Playfair Display", serif;
  font-size: 38px;
}

.customer-popup-subtitle {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.74);
  line-height: 1.7;
}

#customerPopupLoginForm {
  display: grid;
  gap: 10px;
}

#customerPopupLoginForm label {
  display: grid;
  gap: 6px;
  color: #ffe4a4;
  font-weight: 800;
  font-size: 14px;
}

#customerPopupLoginForm input {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.30);
  color: #fff;
  border-radius: 13px;
  padding: 11px 13px;
  outline: none;
}

#customerPopupLoginForm button {
  border: 0;
  border-radius: 13px;
  padding: 12px 16px;
  color: #111;
  font-weight: 1000;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
  cursor: pointer;
}

#popupLoginError {
  min-height: 20px;
  color: #ff6b6b;
  font-weight: 800;
}

.customer-popup-footer {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: rgba(255,255,255,0.70);
  font-weight: 700;
}

.customer-popup-footer a {
  color: #ffe4a4;
  font-weight: 1000;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .header-auth-actions {
    gap: 10px;
  }

  .header-auth-actions .customer-login-btn {
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 720px) {
  .header-auth-actions {
    display: none;
  }
}


/* =========================
   FINAL Header Customer Buttons + Popup
========================= */
.header-auth-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.site-header > .customer-login-btn,
.site-header > .member-btn {
  display: none !important;
}

.header-auth-actions .customer-login-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(255, 212, 111, 0.86) !important;
  border-radius: 16px !important;
  color: #f8f4ec !important;
  background: rgba(8, 10, 18, 0.72) !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22) !important;
  cursor: pointer !important;
  font: inherit !important;
}

.header-auth-actions .customer-login-btn::before {
  content: "" !important;
  width: 28px !important;
  height: 28px !important;
  border: 3px solid #ffffff !important;
  border-radius: 50% !important;
  display: inline-block !important;
  box-shadow: inset -8px 0 0 rgba(255,255,255,0.12) !important;
  flex: 0 0 auto !important;
}

.header-auth-actions .customer-login-btn:hover {
  transform: translateY(-2px) !important;
  border-color: #ffd46f !important;
  background: linear-gradient(135deg, rgba(255, 228, 164, 0.18), rgba(216, 163, 58, 0.14)) !important;
}

.header-auth-actions .logged-in-customer-btn::before {
  content: "ðŸ‘¤" !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 18px !important;
}

.customer-popup-backdrop {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: none !important;
  place-items: center !important;
  padding: 24px !important;
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: blur(16px) !important;
}

.customer-popup-backdrop.show {
  display: grid !important;
}

.customer-popup-card {
  position: relative !important;
  width: min(520px, 100%) !important;
  border: 1px solid rgba(255, 212, 111, 0.32) !important;
  border-radius: 30px !important;
  padding: 34px !important;
  background: radial-gradient(circle at 90% 0%, rgba(216, 163, 58, 0.18), transparent 35%), #0c111d !important;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55) !important;
  color: #f8f4ec !important;
}

.customer-popup-close {
  position: absolute !important;
  top: 16px !important;
  right: 20px !important;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 34px !important;
  cursor: pointer !important;
}

.customer-popup-card h2 {
  margin: 10px 0 !important;
  color: #ffe4a4 !important;
  font-family: "Playfair Display", serif !important;
  font-size: 38px !important;
}

.customer-popup-subtitle {
  margin: 0 0 22px !important;
  color: rgba(255,255,255,0.74) !important;
  line-height: 1.7 !important;
}

#customerPopupLoginForm {
  display: grid !important;
  gap: 15px !important;
}

#customerPopupLoginForm label {
  display: grid !important;
  gap: 8px !important;
  color: #ffe4a4 !important;
  font-weight: 800 !important;
}

#customerPopupLoginForm input {
  width: 100% !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  background: rgba(0,0,0,0.30) !important;
  color: #fff !important;
  border-radius: 16px !important;
  padding: 15px !important;
  outline: none !important;
}

#customerPopupLoginForm button {
  border: 0 !important;
  border-radius: 16px !important;
  padding: 15px 18px !important;
  color: #111 !important;
  font-weight: 1000 !important;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a) !important;
  cursor: pointer !important;
}

#popupLoginError {
  min-height: 20px !important;
  color: #ff6b6b !important;
  font-weight: 800 !important;
}

.customer-popup-footer {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 16px !important;
  color: rgba(255,255,255,0.70) !important;
  font-weight: 700 !important;
}

.customer-popup-footer a {
  color: #ffe4a4 !important;
  font-weight: 1000 !important;
  text-decoration: none !important;
}

/* =========================
   FINAL Seasonal Packages Category Grouping
========================= */
#seasonalPackages {
  display: block !important;
}

.seasonal-category-block {
  width: 100%;
  margin: 0 0 42px;
}

.seasonal-category-block:last-child {
  margin-bottom: 0;
}

.seasonal-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(216, 163, 58, 0.24);
}

.seasonal-category-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #ffe4a4;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seasonal-category-heading h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  color: #f8f4ec;
  line-height: 1;
}

.seasonal-category-heading small {
  flex: 0 0 auto;
  border: 1px solid rgba(216, 163, 58, 0.38);
  border-radius: 999px;
  padding: 9px 13px;
  color: #ffe4a4;
  background: rgba(216, 163, 58, 0.08);
  font-weight: 900;
}

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

@media (max-width: 1180px) {
  .header-auth-actions {
    gap: 10px;
  }

  .header-auth-actions .customer-login-btn {
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
  }

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

@media (max-width: 720px) {
  .header-auth-actions {
    display: none;
  }

  .seasonal-category-heading {
    display: grid;
    align-items: start;
  }

  .seasonal-category-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   Seamless Customer Auth UI
========================= */
.header-auth-actions,
.vibes-auth-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.header-auth-actions .customer-login-btn,
.vibes-auth-actions .vibes-login-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(255, 212, 111, 0.86) !important;
  border-radius: 16px !important;
  color: #f8f4ec !important;
  background: rgba(8, 10, 18, 0.72) !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22) !important;
  cursor: pointer !important;
  font: inherit !important;
}

.header-auth-actions .customer-login-btn::before,
.vibes-auth-actions .vibes-login-btn::before {
  content: "" !important;
  width: 28px !important;
  height: 28px !important;
  border: 3px solid #ffffff !important;
  border-radius: 50% !important;
  display: inline-block !important;
  box-shadow: inset -8px 0 0 rgba(255,255,255,0.12) !important;
  flex: 0 0 auto !important;
}

.logged-in-customer-btn::before,
.header-auth-actions .logged-in-customer-btn::before,
.vibes-auth-actions .logged-in-customer-btn::before {
  content: "ðŸ‘¤" !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 18px !important;
}

.customer-popup-backdrop {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: none !important;
  place-items: center !important;
  padding: 24px !important;
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: blur(16px) !important;
}

.customer-popup-backdrop.show {
  display: grid !important;
}

.customer-popup-card {
  position: relative !important;
  width: min(520px, 100%) !important;
  border: 1px solid rgba(255, 212, 111, 0.32) !important;
  border-radius: 30px !important;
  padding: 34px !important;
  background: radial-gradient(circle at 90% 0%, rgba(216, 163, 58, 0.18), transparent 35%), #0c111d !important;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55) !important;
  color: #f8f4ec !important;
}

.customer-popup-close {
  position: absolute !important;
  top: 16px !important;
  right: 20px !important;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 34px !important;
  cursor: pointer !important;
}

.customer-popup-card h2 {
  margin: 10px 0 !important;
  color: #ffe4a4 !important;
  font-family: "Playfair Display", serif !important;
  font-size: 38px !important;
}

.customer-popup-subtitle {
  margin: 0 0 22px !important;
  color: rgba(255,255,255,0.74) !important;
  line-height: 1.7 !important;
}

#customerPopupLoginForm {
  display: grid !important;
  gap: 15px !important;
}

#customerPopupLoginForm label {
  display: grid !important;
  gap: 8px !important;
  color: #ffe4a4 !important;
  font-weight: 800 !important;
}

#customerPopupLoginForm input {
  width: 100% !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  background: rgba(0,0,0,0.30) !important;
  color: #fff !important;
  border-radius: 16px !important;
  padding: 15px !important;
  outline: none !important;
}

#customerPopupLoginForm button {
  border: 0 !important;
  border-radius: 16px !important;
  padding: 15px 18px !important;
  color: #111 !important;
  font-weight: 1000 !important;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a) !important;
  cursor: pointer !important;
}

#popupLoginError {
  min-height: 20px !important;
  color: #ff6b6b !important;
  font-weight: 800 !important;
}

.customer-popup-footer {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 16px !important;
  color: rgba(255,255,255,0.70) !important;
  font-weight: 700 !important;
}

.customer-popup-footer a {
  color: #ffe4a4 !important;
  font-weight: 1000 !important;
  text-decoration: none !important;
}

@media (max-width: 1180px) {
  .header-auth-actions,
  .vibes-auth-actions {
    gap: 10px;
  }

  .header-auth-actions .customer-login-btn,
  .vibes-auth-actions .vibes-login-btn {
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 720px) {
  .header-auth-actions,
  .vibes-auth-actions {
    display: none;
  }
}


/* =========================
   Logged-in Enquiry Success Toast
========================= */
.ygt-enquiry-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  display: grid;
  gap: 6px;
  min-width: min(360px, calc(100vw - 48px));
  border: 1px solid rgba(255, 212, 111, 0.55);
  border-radius: 18px;
  padding: 18px 20px;
  color: #f8f4ec;
  background: radial-gradient(circle at 100% 0%, rgba(216, 163, 58, 0.22), transparent 35%), #0c111d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.28s ease;
}

.ygt-enquiry-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.ygt-enquiry-toast strong {
  color: #ffe4a4;
  font-size: 16px;
}

.ygt-enquiry-toast span {
  color: rgba(255,255,255,0.74);
  line-height: 1.45;
}


/* =========================
   Customer Login Button Repair CSS
========================= */
.customer-popup-backdrop {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: none !important;
  place-items: center !important;
  padding: 24px !important;
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: blur(16px) !important;
}

.customer-popup-backdrop.show {
  display: grid !important;
}

.customer-popup-card {
  position: relative !important;
  width: min(520px, 100%) !important;
  border: 1px solid rgba(255, 212, 111, 0.32) !important;
  border-radius: 30px !important;
  padding: 34px !important;
  background: radial-gradient(circle at 90% 0%, rgba(216, 163, 58, 0.18), transparent 35%), #0c111d !important;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55) !important;
  color: #f8f4ec !important;
}

.header-auth-actions {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.header-auth-actions .customer-login-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(255, 212, 111, 0.86) !important;
  border-radius: 16px !important;
  color: #f8f4ec !important;
  background: rgba(8, 10, 18, 0.72) !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}


/* =========================
   Customer Dashboard Record Details
========================= */
.clickable-record {
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.clickable-record:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 212, 111, 0.45);
  background: rgba(255, 255, 255, 0.045);
}

.ai-itinerary-record {
  border-color: rgba(216, 163, 58, 0.32);
}

.customer-record-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.customer-record-modal.show {
  display: grid;
}

.customer-record-modal-card {
  position: relative;
  width: min(980px, 100%);
  max-height: 88vh;
  overflow: auto;
  border: 1px solid rgba(255, 212, 111, 0.32);
  border-radius: 28px;
  padding: 34px;
  color: #f8f4ec;
  background: radial-gradient(circle at 100% 0%, rgba(216, 163, 58, 0.16), transparent 36%), #0c111d;
  box-shadow: 0 40px 130px rgba(0,0,0,0.58);
}

.customer-record-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 34px;
  cursor: pointer;
}

.customer-record-modal-body h2 {
  margin: 10px 0 20px;
  color: #ffe4a4;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
}

.customer-record-modal-body h3 {
  margin: 26px 0 12px;
  color: #ffe4a4;
  font-size: 22px;
}

.record-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.record-detail-item {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.035);
}

.record-detail-item span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.record-detail-item strong {
  color: #fff;
  word-break: break-word;
}

.customer-record-modal-body pre {
  white-space: pre-wrap;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
  color: rgba(255,255,255,0.82);
  background: rgba(0,0,0,0.28);
  line-height: 1.55;
}

.dashboard-itinerary-days {
  display: grid;
  gap: 16px;
}

.dashboard-itinerary-days article {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.035);
}

.dashboard-itinerary-days article span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #111;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
  font-size: 12px;
  font-weight: 1000;
}

.dashboard-itinerary-days article h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
}

.dashboard-itinerary-days article ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.dashboard-itinerary-days article li {
  margin-bottom: 6px;
  color: rgba(255,255,255,0.76);
}

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

  .customer-record-modal-card {
    padding: 26px 18px;
  }
}


/* =========================
   AI Itinerary Dashboard Cards + Modal
========================= */
.clickable-record {
  cursor: pointer;
}

.customer-record-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.customer-record-modal.show {
  display: grid;
}

.customer-record-modal-card {
  position: relative;
  width: min(980px, 100%);
  max-height: 88vh;
  overflow: auto;
  border: 1px solid rgba(255, 212, 111, 0.32);
  border-radius: 28px;
  padding: 34px;
  color: #f8f4ec;
  background: radial-gradient(circle at 100% 0%, rgba(216, 163, 58, 0.16), transparent 36%), #0c111d;
  box-shadow: 0 40px 130px rgba(0,0,0,0.58);
}

.customer-record-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 34px;
  cursor: pointer;
}

.record-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.record-detail-item {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.035);
}

.record-detail-item span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-itinerary-days {
  display: grid;
  gap: 16px;
}

.dashboard-itinerary-days article {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.035);
}

.dashboard-itinerary-days article span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #111;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
  font-size: 12px;
  font-weight: 1000;
}

.dashboard-itinerary-days article li {
  margin-bottom: 6px;
  color: rgba(255,255,255,0.76);
}

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


/* =========================
   Final AI Dashboard Repair Styles
========================= */
.clickable-record {
  cursor: pointer !important;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.clickable-record:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 212, 111, 0.45) !important;
  background: rgba(255,255,255,0.045) !important;
}

.customer-record-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.customer-record-modal.show {
  display: grid;
}

.customer-record-modal-card {
  position: relative;
  width: min(980px, 100%);
  max-height: 88vh;
  overflow: auto;
  border: 1px solid rgba(255, 212, 111, 0.32);
  border-radius: 28px;
  padding: 34px;
  color: #f8f4ec;
  background: radial-gradient(circle at 100% 0%, rgba(216, 163, 58, 0.16), transparent 36%), #0c111d;
  box-shadow: 0 40px 130px rgba(0,0,0,0.58);
}

.customer-record-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 34px;
  cursor: pointer;
}

.customer-record-modal-body h2 {
  margin: 10px 0 20px;
  color: #ffe4a4;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
}

.record-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.record-detail-item {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.035);
}

.record-detail-item span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-itinerary-days {
  display: grid;
  gap: 16px;
}

.dashboard-itinerary-days article {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.035);
}

.dashboard-itinerary-days article span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #111;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
  font-size: 12px;
  font-weight: 1000;
}

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


/* =========================
   YouGoVibes Top Itinerary Notice
========================= */
.ai-top-itinerary-notice {
  width: 100%;
  margin: 0 0 22px;
  border: 1px solid rgba(255, 212, 111, 0.42);
  border-radius: 18px;
  padding: 16px 18px;
  color: #ffe4a4;
  background: rgba(216, 163, 58, 0.10);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.01em;
}


/* =========================
   Clean Publish Content Pages
========================= */
.compact-header {
  position: sticky;
  top: 0;
  z-index: 90;
}

.content-page {
  min-height: 70vh;
  padding: 140px 8vw 70px;
  color: #f8f4ec;
  background:
    radial-gradient(circle at top right, rgba(216,163,58,0.16), transparent 34%),
    linear-gradient(180deg, #07101c, #05070d);
}

.content-hero {
  max-width: 980px;
  margin: 0 auto 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,0.035);
}

.content-hero h1 {
  margin: 8px 0 16px;
  color: #ffe4a4;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
}

.content-hero p,
.policy-block p,
.content-grid p,
.contact-card p,
.content-grid li,
.policy-block li {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.75;
}

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

.content-grid article,
.contact-card,
.policy-block {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 26px;
  background: rgba(255,255,255,0.035);
}

.content-grid h2,
.contact-card h2,
.policy-block h2 {
  color: #ffe4a4;
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 30px;
}

.policy-block {
  max-width: 980px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 15px 16px;
  color: #fff;
  background: rgba(0,0,0,0.28);
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-consent,
.form-message {
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.full-footer {
  align-items: start;
}

.chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  border: 1px solid rgba(255,212,111,0.55);
  border-radius: 999px;
  padding: 14px 18px;
  color: #111;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 14px 50px rgba(0,0,0,0.35);
}

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 9999;
  width: min(360px, calc(100vw - 32px));
  display: none;
  border: 1px solid rgba(255,212,111,0.35);
  border-radius: 24px;
  padding: 18px;
  color: #fff;
  background: #0c111d;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

.chat-panel.show {
  display: block;
}

.chat-panel h3 {
  margin: 0 0 8px;
  color: #ffe4a4;
}

.chat-panel p {
  color: rgba(255,255,255,0.75);
}

.chat-panel input,
.chat-panel textarea {
  width: 100%;
  margin: 8px 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px;
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.chat-panel button {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .content-page {
    padding: 120px 18px 60px;
  }
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}


/* =========================
   UI Refinement Pack: Lightweight + Interaction
========================= */
:root {
  --gold: #a68b57;
  --gold2: #cbb279;
  --gold3: #e6d7b2;
  --line: rgba(255, 255, 255, 0.16);
}

.brand-main span,
.vibes-logo span {
  color: #f1d27a;
}

button svg,
a svg {
  width: 17px;
  height: 17px;
  vertical-align: -3px;
  margin-left: 6px;
}

.vibes-back svg {
  margin-left: 0;
  margin-right: 6px;
}

.vibes-back,
.customer-login-btn,
.vibes-login-btn {
  border-color: rgba(255,255,255,0.18) !important;
  color: rgba(255,255,255,0.9) !important;
  background: rgba(255,255,255,0.035) !important;
}

.vibes-logo {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 35px !important;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.vibes-logo small {
  font-family: Inter, sans-serif;
  font-size: 9px !important;
  letter-spacing: 0.18em;
}

.vibes-hero p,
.vibes-title p {
  max-width: 760px;
}

.vibes-form input,
.vibes-form select,
.vibes-form textarea,
#vibesPlannerForm input,
#vibesPlannerForm select,
#vibesPlannerForm textarea {
  font-weight: 400 !important;
  color: rgba(255,255,255,0.92) !important;
}

#vibesPlannerForm label,
.vibes-form label {
  color: rgba(255,255,255,0.78) !important;
  font-weight: 600 !important;
}

#vibesPlannerForm input[type="date"] {
  color-scheme: dark;
  accent-color: #dcd7ca;
}

#vibesPlannerForm input[type="date"].date-selected {
  border-color: rgba(255,255,255,0.44) !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.065) !important;
}

.selected-date-range-chip {
  display: none;
  grid-column: 1 / -1;
  margin: -4px 0 4px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.045);
  font-size: 13px;
  font-weight: 500;
}

.selected-date-range-chip.show {
  display: inline-flex;
  width: fit-content;
}

.single-emoji {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 999px;
  font-size: 0;
  vertical-align: -2px;
}

.single-emoji.green { background: #55d38a; }
.single-emoji.red { background: #ff6b6b; }
.single-emoji.blue { background: #b9c5ff; }
.single-emoji.pink { background: #ff83b7; }

.vibes-guide-grid article strong {
  color: rgba(255,255,255,0.92) !important;
}

.ai-top-itinerary-notice {
  width: 100%;
  margin: 0 0 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  padding: 14px 16px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.055);
  font-weight: 500;
  line-height: 1.55;
}

.vibe-style-text {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

#vibesStatus {
  color: rgba(255,255,255,0.78) !important;
  background: rgba(255,255,255,0.045) !important;
  border-color: rgba(255,255,255,0.12) !important;
  font-weight: 500 !important;
}

/* Destination insight cards: only image + name upfront, details on hover */
.destination-card {
  position: relative;
  overflow: visible;
  min-height: 230px;
}

.destination-card h3 {
  position: relative;
  z-index: 2;
}

.destination-card p {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 5;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 14px;
  color: rgba(255,255,255,0.86);
  background: rgba(6, 8, 12, 0.92);
  box-shadow: 0 20px 60px rgba(0,0,0,0.38);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.22s ease;
}

.destination-card:hover p,
.destination-card:focus-within p {
  opacity: 1;
  transform: translateY(0);
}

/* Compact package cards */
.compact-package-card .package-body {
  gap: 12px;
}

.compact-package-card .meta span:not(:first-child),
.compact-package-card .price {
  display: none !important;
}

.package-category-pill {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 6px 10px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 700;
}

.package-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.package-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  font-weight: 800;
}

.package-details-popup {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
}

.package-details-popup.show {
  display: grid;
}

.package-details-card {
  position: relative;
  width: min(980px, 100%);
  max-height: 88vh;
  overflow: auto;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  padding: 26px;
  color: #fff;
  background: #0b101b;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
}

.package-details-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 8px;
}

.package-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
}

.package-detail-hero img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
}

.package-detail-hero h2 {
  margin: 10px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.package-detail-hero p,
.package-popup-note {
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.package-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin: 20px 0;
}

.package-detail-grid div,
.detail-list-block {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
}

.package-detail-grid span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-detail-grid strong {
  color: #fff;
  font-weight: 700;
}

.detail-list-block {
  margin: 12px 0;
}

.detail-list-block h4 {
  margin: 0 0 8px;
}

.detail-list-block li {
  margin: 6px 0;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 760px) {
  .package-detail-hero,
  .package-detail-grid {
    grid-template-columns: 1fr;
  }

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

/* =========================
   Publish Ready Final UI Overrides
========================= */
:root { --gold:#a68b57; --gold2:#cbb279; --gold3:#e6d7b2; --line:rgba(255,255,255,.16); }
button svg,a svg{width:17px;height:17px;vertical-align:-3px;margin-left:6px}.vibes-back svg{margin-left:0;margin-right:6px}
.vibes-back,.nav-login-btn,.customer-login-btn,.vibes-login-btn{border-color:rgba(255,255,255,.18)!important;color:rgba(255,255,255,.9)!important;background:rgba(255,255,255,.035)!important}
.vibes-logo{font-family:"Playfair Display",serif;font-weight:800;font-size:36px!important;line-height:.92;letter-spacing:-.06em}.vibes-logo small{font-family:Inter,sans-serif;font-size:9px!important;letter-spacing:.18em}
.vibes-form input,.vibes-form select,.vibes-form textarea,#vibesPlannerForm input,#vibesPlannerForm select,#vibesPlannerForm textarea{font-weight:400!important;color:rgba(255,255,255,.92)!important}
#vibesPlannerForm label,.vibes-form label{color:rgba(255,255,255,.78)!important;font-weight:600!important}
#vibesPlannerForm input[type=date]{color-scheme:dark}#vibesPlannerForm input[type=date].date-selected{border-color:rgba(255,255,255,.44)!important;box-shadow:0 0 0 3px rgba(255,255,255,.08);background:rgba(255,255,255,.065)!important}
.selected-date-range-chip{display:none;grid-column:1/-1;margin:-4px 0 4px;border:1px solid rgba(255,255,255,.18);border-radius:999px;padding:10px 14px;color:rgba(255,255,255,.82);background:rgba(255,255,255,.045);font-size:13px;font-weight:500}.selected-date-range-chip.show{display:inline-flex;width:fit-content}
.single-emoji{display:inline-grid;place-items:center;width:18px;height:18px;margin-right:8px;border-radius:999px;font-size:0;vertical-align:-2px}.single-emoji.green{background:#55d38a}.single-emoji.red{background:#ff6b6b}.single-emoji.blue{background:#b9c5ff}.single-emoji.pink{background:#ff83b7}
.ai-top-itinerary-notice{width:100%;margin:0 0 16px;border:1px solid rgba(255,255,255,.16);border-radius:16px;padding:14px 16px;color:rgba(255,255,255,.86);background:rgba(255,255,255,.055);font-weight:500;line-height:1.55}.vibe-style-text{display:inline-block;color:rgba(255,255,255,.7);font-weight:500}
#vibesStatus{color:rgba(255,255,255,.78)!important;background:rgba(255,255,255,.045)!important;border-color:rgba(255,255,255,.12)!important;font-weight:500!important}
.destination-card{position:relative;overflow:visible;min-height:230px}.destination-card h3{position:relative;z-index:2}.destination-card p{position:absolute;left:22px;right:22px;bottom:18px;z-index:5;margin:0;border:1px solid rgba(255,255,255,.18);border-radius:16px;padding:14px;color:rgba(255,255,255,.86);background:rgba(6,8,12,.94);box-shadow:0 20px 60px rgba(0,0,0,.38);opacity:0;transform:translateY(10px);pointer-events:none;transition:.22s ease}.destination-card:hover p,.destination-card:focus-within p{opacity:1;transform:translateY(0)}
.compact-package-card .package-body{gap:12px}.compact-package-card .meta span:not(:first-child),.compact-package-card .price{display:none!important}.package-category-pill{display:inline-flex;width:fit-content;border:1px solid rgba(255,255,255,.14);border-radius:999px;padding:6px 10px;color:rgba(255,255,255,.72);font-size:12px;font-weight:700}.package-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:6px}.secondary-btn{border:1px solid rgba(255,255,255,.16);border-radius:999px;padding:12px 16px;color:rgba(255,255,255,.9);background:rgba(255,255,255,.06);font-weight:800}.inline-action{display:inline-flex;align-items:center;margin-top:10px;text-decoration:none}
.package-details-popup{position:fixed;inset:0;z-index:100000;display:none;place-items:center;padding:24px;background:rgba(0,0,0,.72);backdrop-filter:blur(14px)}.package-details-popup.show{display:grid}.package-details-card{position:relative;width:min(980px,100%);max-height:88vh;overflow:auto;border:1px solid rgba(255,255,255,.14);border-radius:28px;padding:26px;color:#fff;background:#0b101b;box-shadow:0 40px 120px rgba(0,0,0,.55)}.package-details-close{position:absolute;right:18px;top:18px;border:0;background:transparent;color:#fff;padding:8px}.package-detail-hero{display:grid;grid-template-columns:minmax(0,320px) 1fr;gap:22px;align-items:start;margin-bottom:22px}.package-detail-hero img{width:100%;height:240px;object-fit:cover;border-radius:20px}.package-detail-hero h2{margin:10px 0 12px;font-family:"Playfair Display",serif;font-size:clamp(34px,5vw,56px);line-height:1}.package-detail-hero p,.package-popup-note{color:rgba(255,255,255,.72);line-height:1.6}.package-detail-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin:20px 0}.package-detail-grid div,.detail-list-block{border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:14px;background:rgba(255,255,255,.04)}.package-detail-grid span{display:block;margin-bottom:6px;color:rgba(255,255,255,.55);font-size:12px;font-weight:800;text-transform:uppercase}.package-detail-grid strong{color:#fff;font-weight:700}.detail-list-block{margin:12px 0}.detail-list-block h4{margin:0 0 8px}.detail-list-block li{margin:6px 0;color:rgba(255,255,255,.75)}
.footer-legal-inline{grid-column:1/-1;display:flex;flex-wrap:wrap;gap:14px;margin-top:18px;padding-top:18px;border-top:1px solid rgba(255,255,255,.1)}.footer-legal-inline a{color:rgba(255,255,255,.72);text-decoration:none;font-size:13px}
@media(max-width:760px){.package-detail-hero,.package-detail-grid{grid-template-columns:1fr}.package-actions{flex-direction:column}}


/* Final package day-wise itinerary styling */
.package-daywise-block {
  display: grid;
  gap: 12px;
}
.package-day-item {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.035);
}
.package-day-item strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.92);
}
.package-day-item p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.compact-modal-package .package-actions {
  margin-top: 14px;
}
/* =========================================================
   YGT Package Details Hover/Button Patch
   No grid/header/mobile layout changes.
========================================================= */

.package-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  border-color: rgba(214, 178, 103, 0.65);
}

.package-card-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}

.package-details-btn {
  border: 1px solid rgba(214, 178, 103, 0.75);
  background: transparent;
  color: var(--gold);
}

.package-details-btn:hover {
  background: rgba(214, 178, 103, 0.12);
}

.ygt-details-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.ygt-details-modal.show {
  display: flex;
}

.ygt-details-box {
  position: relative;
  width: min(980px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(214, 178, 103, 0.35);
  border-radius: 28px;
  background: #0b0f17;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.ygt-details-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

#ygtPackageDetailsContent {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: start;
}

.ygt-details-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px;
}

.ygt-details-info h2 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.ygt-details-label {
  display: inline-flex;
  border: 1px solid rgba(214, 178, 103, 0.6);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ygt-details-duration {
  color: var(--gold);
  font-weight: 800;
}

.ygt-details-price {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 900;
}
/* Package card clickable details only */
.package-card[data-ygt-package] {
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.package-card[data-ygt-package]:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  border-color: rgba(214, 178, 103, 0.65);
}

.package-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}

.secondary-btn {
  border: 1px solid rgba(214, 178, 103, 0.75);
  background: transparent;
  color: var(--gold);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}

.secondary-btn:hover {
  background: rgba(214, 178, 103, 0.12);
}

.ygt-package-details-modal {
  z-index: 9999;
}

.ygt-package-details-box {
  width: min(1050px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
}

.ygt-details-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}

.ygt-details-layout img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px;
}

.detail-list {
  margin-top: 22px;
}

.detail-list h3,
.detail-itinerary h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

.detail-list span {
  display: inline-flex;
  margin: 0 10px 10px 0;
  padding: 10px 14px;
  border: 1px solid rgba(214, 178, 103, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.detail-itinerary article {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(214, 178, 103, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}
/* Hero blank-space memory note */
.hero-memory-note {
  margin-top: 80px;
  max-width: 620px;
  color: #fff;
  opacity: 0.95;
}

.hero-memory-note p {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.95;
  margin: 0 0 20px;
  color: var(--cream);
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.hero-memory-note span {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-memory-note i {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  color: var(--gold);
  animation: ygtScrollBounce 1.5s infinite;
}

@keyframes ygtScrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.55;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}
/* =========================================================
   Our Partners Section
   Only partner panel styling
========================================================= */

.partners-section {
  padding-top: 90px;
}

.partners-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 36px;
  padding: 28px;
  border: 1px solid rgba(214, 178, 103, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(9, 13, 20, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.partner-logo-card {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(214, 178, 103, 0.18);
  border-radius: 22px;
  background: #ffffff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.partner-logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 178, 103, 0.65);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
  display: block;
}

.partner-logo-wide img {
  max-height: 105px;
}

@media (max-width: 1100px) {
  .partners-panel {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

@media (max-width: 700px) {
  .partners-panel {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    padding: 18px;
    gap: 14px;
  }

  .partner-logo-card {
    min-height: 110px;
    padding: 14px;
  }

  .partner-logo-card img {
    max-height: 72px;
  }
}
/* ================================
   SAFE RESPONSIVE BASE FIXES
   Desktop design remains unchanged
================================ */

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}
/* ================================
   TABLET RESPONSIVE FIX
   Applies only below 1024px
================================ */

@media (max-width: 1024px) {
  .container,
  .section-container,
  .hero-container,
  .packages-container,
  .categories-container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero,
  .hero-section {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-content,
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(48px, 8vw, 82px);
    line-height: 0.95;
  }

  .hero-side-text,
  .hero-scroll-text {
    position: static;
    margin-top: 30px;
    max-width: 100%;
  }

  .category-grid,
  .packages-grid,
  .featured-grid,
  .partners-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-panel,
  .lead-form,
  .booking-form {
    max-width: 100%;
  }

  .navbar,
  .site-header,
  .main-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-menu {
    gap: 18px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-actions .btn,
  .login-btn,
  .signup-btn {
    padding: 10px 16px;
    font-size: 14px;
    white-space: nowrap;
  }
}
/* ================================
   MOBILE RESPONSIVE FIX
   Applies only below 768px
================================ */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .site-header,
  .main-header,
  .navbar {
    position: relative;
    width: 100%;
    padding: 16px;
    flex-wrap: wrap;
    gap: 14px;
  }

  .logo,
  .brand-logo {
    max-width: 170px;
  }

  .nav-menu {
    width: 100%;
    order: 3;
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .nav-menu::-webkit-scrollbar {
    display: none;
  }

  .nav-menu a {
    white-space: nowrap;
    font-size: 14px;
  }

  .nav-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
  }

  .nav-actions .btn,
  .login-btn,
  .signup-btn,
  .customer-login-btn {
    padding: 8px 12px;
    font-size: 13px;
    min-height: 38px;
  }

  .hero,
  .hero-section {
    padding: 60px 18px 50px;
    min-height: auto;
  }

  .hero-content,
  .hero-grid {
    display: block;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 64px);
    line-height: 0.95;
    word-break: normal;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.6;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero-actions .btn,
  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats,
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 34px;
  }

  .category-grid,
  .packages-grid,
  .featured-grid,
  .reviews-grid,
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .category-card,
  .package-card,
  .review-card,
  .partner-card {
    width: 100%;
  }

  .package-card img,
  .category-card img {
    height: 220px;
    object-fit: cover;
  }

  .section-title,
  section h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1;
    text-align: center;
  }

  .section-subtitle,
  section > p {
    text-align: center;
    font-size: 16px;
  }

  .lead-panel,
  .booking-form,
  .form-card {
    width: 100%;
    padding: 22px;
  }

  .form-row,
  .date-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .modal,
  .modal-content,
  .package-modal {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    max-height: 86vh;
    overflow-y: auto;
    padding: 24px;
  }

  .footer,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* ================================
   SMALL PHONE FIX
   Applies only below 480px
================================ */

@media (max-width: 480px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-stats,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .nav-actions .btn,
  .login-btn,
  .signup-btn,
  .customer-login-btn {
    font-size: 12px;
    padding: 8px 10px;
  }

  .package-card img,
  .category-card img {
    height: 190px;
  }

  .section-title,
  section h2 {
    font-size: 36px;
  }
}
/* =========================================================
   SIMPLE HEADER AUTH BUTTON DESIGN
   Only changes Customer Login and Signup/Login buttons
   Does not affect packages, hero, forms, admin, or layout
========================================================= */

.site-header .customer-login-btn,
.site-header .member-btn,
.header-auth-actions .customer-login-btn,
.header-auth-actions .member-btn,
.signup-login-btn,
.customer-popup-login-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  height: 38px !important;
  padding: 0 14px !important;
  gap: 7px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 212, 111, 0.65) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: #f8f4ec !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease !important;
}

/* Remove old large circular icon */
.site-header .customer-login-btn::before,
.site-header .member-btn::before,
.header-auth-actions .customer-login-btn::before,
.header-auth-actions .member-btn::before,
.signup-login-btn::before,
.customer-popup-login-btn::before {
  display: none !important;
  content: none !important;
}

/* Remove old extra arrow/icon if any */
.site-header .customer-login-btn::after,
.site-header .member-btn::after,
.header-auth-actions .customer-login-btn::after,
.header-auth-actions .member-btn::after,
.signup-login-btn::after,
.customer-popup-login-btn::after {
  display: none !important;
  content: none !important;
}

/* Hide inner old icon inside Signup/Login button */
.site-header .member-btn .icon-user,
.header-auth-actions .member-btn .icon-user {
  display: none !important;
}

.site-header .customer-login-btn:hover,
.site-header .member-btn:hover,
.header-auth-actions .customer-login-btn:hover,
.header-auth-actions .member-btn:hover,
.signup-login-btn:hover,
.customer-popup-login-btn:hover {
  transform: translateY(-1px) !important;
  border-color: #ffd46f !important;
  color: #ffe4a4 !important;
  background: rgba(255, 212, 111, 0.10) !important;
}

/* Slightly smaller on small laptops */
@media (max-width: 1180px) {
  .site-header .customer-login-btn,
  .site-header .member-btn,
  .header-auth-actions .customer-login-btn,
  .header-auth-actions .member-btn,
  .signup-login-btn,
  .customer-popup-login-btn {
    min-height: 36px !important;
    height: 36px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }
}
/* =========================================================
   TIGHTER HOMEPAGE SECTION SPACING PATCH
========================================================= */

.categories-section,
.featured-section,
.seasonal-packages-section,
.how-section {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.featured-section .section-title,
.seasonal-packages-section .section-title,
.how-section .section-title {
  margin-bottom: 16px !important;
}

.trust-strip {
  margin-top: 12px !important;
  margin-bottom: 18px !important;
}

.package-grid,
.category-grid,
.seasonal-category-grid {
  row-gap: 14px !important;
}

.seasonal-category-block {
  margin-bottom: 18px !important;
}

.featured-section,
.seasonal-packages-section {
  margin-bottom: -24px !important;
}

.how-section {
  margin-top: -28px !important;
}

.how-section .steps {
  margin-top: 10px !important;
}

@media (max-width: 720px) {
  .categories-section,
  .featured-section,
  .seasonal-packages-section,
  .how-section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .featured-section,
  .seasonal-packages-section,
  .how-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
/* =========================================================
   UNIQUE LUXURY AESTHETIC HEADER
   Floating concierge-style premium travel header
========================================================= */

.site-header {
  top: 18px !important;
  left: 50% !important;
  width: calc(100% - 72px) !important;
  height: 86px !important;
  transform: translateX(-50%) !important;
  padding: 0 28px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 226, 166, 0.20) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 219, 143, 0.18), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(8, 11, 18, 0.84), rgba(14, 18, 28, 0.66)) !important;
  backdrop-filter: blur(30px) saturate(1.35) !important;
  -webkit-backdrop-filter: blur(30px) saturate(1.35) !important;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -1px 0 rgba(255, 226, 166, 0.07) !important;
  overflow: visible !important;
}

/* luxury outer golden glow */
.site-header::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 232, 177, 0.42) 18%,
    rgba(216, 163, 58, 0.18) 38%,
    transparent 58%,
    rgba(255, 232, 177, 0.28) 82%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* floating shadow aura */
.site-header::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -34px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 163, 58, 0.16), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

/* brand: luxury wordmark */
.brand {
  position: relative;
  z-index: 2;
  gap: 4px !important;
  padding-right: 20px;
}

.brand-main {
  font-size: 34px !important;
  line-height: 0.9 !important;
  letter-spacing: -0.065em !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8e8c0 42%, #d0a14a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.brand-main span {
  color: transparent !important;
  background: linear-gradient(180deg, #ffe9ad 0%, #d8a33a 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-main::after {
  content: "✦" !important;
  color: #f6cb6d !important;
  font-size: 15px !important;
  margin-left: 8px !important;
  vertical-align: top !important;
  filter: drop-shadow(0 0 10px rgba(246, 203, 109, 0.5));
}

.brand small {
  color: rgba(255, 235, 190, 0.84) !important;
  font-size: 9px !important;
  letter-spacing: 0.32em !important;
  font-weight: 900 !important;
}

/* nav as a refined floating menu */
.nav-links {
  position: relative;
  z-index: 2;
  display: flex !important;
  align-items: center !important;
  gap: 3px !important;
  padding: 6px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.075) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 28px rgba(0,0,0,0.16) !important;
}

.nav-links a {
  position: relative !important;
  padding: 10px 13px !important;
  border-radius: 999px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  transition: all 0.22s ease !important;
}

.nav-links a::after {
  display: none !important;
}

.nav-links a:hover {
  color: #fff0c7 !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 225, 165, 0.20), rgba(255,255,255,0.045)) !important;
  transform: translateY(-1px);
}

/* unique active state: luxury pearl-gold pill */
.nav-links a.active {
  color: #15110a !important;
  background:
    linear-gradient(135deg, #fff4d2 0%, #e5bd65 45%, #a87822 100%) !important;
  box-shadow:
    0 12px 26px rgba(216, 163, 58, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.58),
    inset 0 -1px 0 rgba(92, 60, 12, 0.18) !important;
}

/* tiny luxury diamond marker under active nav */
.nav-links a.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 7px;
  height: 7px;
  background: #e5bd65;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 1px;
  box-shadow: 0 0 14px rgba(229, 189, 101, 0.65);
}

/* auth area */
.header-auth-actions {
  position: relative;
  z-index: 2;
  gap: 10px !important;
  padding-left: 14px;
}

/* luxury outline buttons */
.header-auth-actions .customer-login-btn,
.header-auth-actions .signup-login-btn {
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 17px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 226, 166, 0.36) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)) !important;
  color: rgba(255, 244, 218, 0.92) !important;
  font-size: 12.5px !important;
  font-weight: 900 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 26px rgba(0,0,0,0.18) !important;
  white-space: nowrap !important;
  transition: all 0.22s ease !important;
}

/* remove old icon styling */
.header-auth-actions .customer-login-btn::before,
.header-auth-actions .signup-login-btn::before,
.header-auth-actions .customer-login-btn::after,
.header-auth-actions .signup-login-btn::after {
  display: none !important;
  content: none !important;
}

.header-auth-actions .customer-login-btn:hover,
.header-auth-actions .signup-login-btn:hover {
  transform: translateY(-2px) !important;
  color: #15110a !important;
  border-color: transparent !important;
  background:
    linear-gradient(135deg, #fff4d2 0%, #d8a33a 100%) !important;
  box-shadow:
    0 16px 34px rgba(216, 163, 58, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.55) !important;
}

/* make signup the primary luxury CTA */
.header-auth-actions .signup-login-btn {
  color: #15110a !important;
  background:
    linear-gradient(135deg, #fff4d2 0%, #d8a33a 100%) !important;
  border-color: transparent !important;
  box-shadow:
    0 14px 30px rgba(216, 163, 58, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.48) !important;
}

.header-auth-actions .signup-login-btn:hover {
  background:
    linear-gradient(135deg, #ffffff 0%, #f0c765 100%) !important;
}

/* because header is floating, give hero breathing space */
.hero-section {
  padding-top: 122px !important;
}

/* laptop fit */
@media (max-width: 1280px) {
  .site-header {
    width: calc(100% - 36px) !important;
    padding: 0 18px !important;
    height: 82px !important;
  }

  .brand-main {
    font-size: 30px !important;
  }

  .brand small {
    font-size: 8px !important;
  }

  .nav-links a {
    padding: 9px 9px !important;
    font-size: 12.5px !important;
  }

  .header-auth-actions .customer-login-btn,
  .header-auth-actions .signup-login-btn {
    height: 37px !important;
    min-height: 37px !important;
    padding: 0 12px !important;
    font-size: 11.5px !important;
  }
}

/* mobile clean fallback */
@media (max-width: 720px) {
  .site-header {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    border-radius: 0 0 24px 24px !important;
    padding: 16px 18px !important;
    position: relative !important;
  }

  .hero-section {
    padding-top: 60px !important;
  }

  .nav-links,
  .header-auth-actions {
    display: none !important;
  }

  .brand-main {
    font-size: 31px !important;
  }
}
/* =========================================================
   ABOUT / CONTENT PAGE LUXURY CLEAN FIX
   Fixes distorted header + improves About page layout
========================================================= */

/* Reset floating homepage header behavior only on content pages */
.compact-header {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 86px !important;
  transform: none !important;
  border-radius: 0 !important;
  padding: 0 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  background:
    linear-gradient(180deg, rgba(5, 8, 15, 0.96), rgba(7, 10, 18, 0.86)) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(216, 178, 103, 0.26) !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28) !important;
}

/* Clean About page nav */
.compact-header .main-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 7px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  flex: 0 1 auto !important;
}

.compact-header .main-nav a {
  display: inline-flex !important;
  align-items: center !important;
  height: 38px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.compact-header .main-nav a:hover {
  color: #ffe4a4 !important;
  background: rgba(255, 228, 164, 0.08) !important;
}

.compact-header .main-nav a.active {
  color: #111 !important;
  background: linear-gradient(135deg, #fff2c8, #d8a33a) !important;
}

/* Clean signup button on About page */
.compact-header .nav-login-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 226, 166, 0.45) !important;
  color: #15110a !important;
  background: linear-gradient(135deg, #fff4d2, #d8a33a) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: 0 12px 28px rgba(216, 163, 58, 0.20) !important;
}

.compact-header .nav-login-btn::before,
.compact-header .nav-login-btn::after {
  display: none !important;
  content: none !important;
}

/* Improve About page spacing */
.content-page {
  padding: 140px 8vw 80px !important;
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 163, 58, 0.14), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(101, 183, 255, 0.10), transparent 32%),
    linear-gradient(180deg, #07101c 0%, #05070d 100%) !important;
}

/* Make hero section balanced */
.content-hero {
  max-width: 1120px !important;
  margin: 0 auto 32px !important;
  padding: 46px !important;
  border-radius: 34px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.070), rgba(255,255,255,0.026)) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,0.30) !important;
}

.content-hero h1 {
  max-width: 900px !important;
  font-size: clamp(44px, 5.4vw, 78px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
  color: #ffe4a4 !important;
}

.content-hero p:not(.eyebrow) {
  max-width: 920px !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.74) !important;
}

/* Better cards below hero */
.content-grid {
  max-width: 1120px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.content-grid article {
  border-radius: 26px !important;
  padding: 28px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.060), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.11) !important;
  box-shadow: 0 20px 55px rgba(0,0,0,0.20) !important;
}

.content-grid article h2 {
  color: #ffe4a4 !important;
  font-size: 30px !important;
  margin-bottom: 12px !important;
}

.content-grid article p,
.content-grid article li {
  color: rgba(255,255,255,0.74) !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
}

/* Responsive fix */
@media (max-width: 1050px) {
  .compact-header {
    height: auto !important;
    padding: 18px 24px !important;
    flex-wrap: wrap !important;
  }

  .compact-header .main-nav {
    order: 3 !important;
    width: 100% !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
  }

  .content-page {
    padding: 120px 24px 70px !important;
  }

  .content-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .compact-header {
    padding: 16px 18px !important;
  }

  .compact-header .main-nav,
  .compact-header .nav-login-btn {
    display: none !important;
  }

  .content-page {
    padding: 96px 18px 60px !important;
  }

  .content-hero {
    padding: 28px !important;
    border-radius: 26px !important;
  }

  .content-hero h1 {
    font-size: 42px !important;
  }
}
/* =========================================================
   REQUIRED FIELD + FORM CLEANUP PATCH
========================================================= */

.field-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

.required-star {
  color: #ff6b6b;
  font-weight: 900;
  line-height: 1;
}

/* Wide lead form labels after adding mandatory markers */
.wide-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  min-width: 0;
}

/* Wide form select styling */
.wide-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 9px;
  padding: 14px 15px;
  outline: none;
}

.wide-form select option {
  color: #111;
}

/* Since bottom form now has 7 fields + button */
.wide-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wide-form button {
  grid-column: 1 / -1;
}

@media (max-width: 1180px) {
  .wide-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* =========================================================
   YGT Destination Memory Board + Hero Video Modal
   Place photos in: assets/trip-memories/{Destination}/{File}.jpeg
========================================================= */
.ygt-memory-board {
  position: relative;
  align-self: start;
  width: min(620px, 100%);
  min-height: 430px;
  margin-top: 18px;
  padding: 28px 26px 34px;
  border: 1px solid rgba(255, 228, 164, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 163, 58, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(12, 15, 22, 0.30), rgba(6, 8, 13, 0.18));
  backdrop-filter: blur(4px);
  overflow: visible;
  isolation: isolate;
}

.ygt-board-pin {
  position: absolute;
  top: -15px;
  left: 50%;
  width: 32px;
  height: 32px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff5cf, #d8a33a 55%, #7d5211);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45), 0 0 0 8px rgba(216, 163, 58, 0.08);
  z-index: 10;
}

.ygt-board-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: 2px;
  height: 56px;
  transform: translateX(-50%);
  background: linear-gradient(#d8a33a, transparent);
}

.ygt-board-copy {
  max-width: 380px;
  margin-bottom: 18px;
}

.ygt-board-copy span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 228, 164, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffe4a4;
  background: rgba(0,0,0,0.22);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ygt-board-copy h2 {
  margin: 12px 0 8px;
  color: #f8f4ec;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.ygt-board-copy p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

.ygt-memory-destinations {
  position: relative;
  min-height: 285px;
}

.ygt-memory-stack {
  position: absolute;
  width: 150px;
  height: 198px;
  cursor: pointer;
  outline: none;
  transition: transform 0.28s ease, z-index 0.28s ease;
}

.ygt-memory-stack:nth-child(1) { left: 10px; top: 28px; transform: rotate(-8deg); z-index: 4; }
.ygt-memory-stack:nth-child(2) { left: 138px; top: 68px; transform: rotate(6deg); z-index: 5; }
.ygt-memory-stack:nth-child(3) { left: 270px; top: 26px; transform: rotate(-4deg); z-index: 4; }
.ygt-memory-stack:nth-child(4) { left: 395px; top: 76px; transform: rotate(8deg); z-index: 3; }

.ygt-memory-stack:hover,
.ygt-memory-stack.is-open {
  z-index: 20;
  transform: translateY(-16px) rotate(0deg);
}

.ygt-memory-polaroid {
  position: absolute;
  inset: 0;
  padding: 9px 9px 36px;
  border-radius: 12px;
  background: #fffaf0;
  box-shadow: 0 18px 45px rgba(0,0,0,0.42);
  transform-origin: top center;
  transition: transform 0.34s ease, opacity 0.25s ease;
}

.ygt-memory-polaroid::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff4c8, #d8a33a 60%, #7d5211);
  box-shadow: 0 5px 14px rgba(0,0,0,0.28);
}

.ygt-memory-polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  background: rgba(0,0,0,0.12);
}

.ygt-memory-polaroid strong {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  color: #1c1b18;
  font-size: 13px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.ygt-memory-polaroid:not(:first-child) {
  opacity: 0;
  pointer-events: none;
}

.ygt-memory-stack:hover .ygt-memory-polaroid,
.ygt-memory-stack.is-open .ygt-memory-polaroid {
  opacity: 1;
  pointer-events: auto;
}

.ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(1),
.ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(1) { transform: translateX(-170px) rotate(-8deg); }
.ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(2),
.ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(2) { transform: translateX(-85px) translateY(-16px) rotate(-4deg); }
.ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(3),
.ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(3) { transform: translateX(0) translateY(-24px) rotate(0deg); }
.ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(4),
.ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(4) { transform: translateX(85px) translateY(-16px) rotate(4deg); }
.ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(5),
.ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(5) { transform: translateX(170px) rotate(8deg); }
.ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(n+6),
.ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(n+6) { transform: translateX(255px) rotate(10deg); }

.ygt-video-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  place-items: center;
  padding: 24px;
}

.ygt-video-modal.show { display: grid; }

.ygt-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px);
}

.ygt-video-box {
  position: relative;
  z-index: 2;
  width: min(980px, 94vw);
  border: 1px solid rgba(255, 228, 164, 0.28);
  border-radius: 26px;
  padding: 14px;
  background: #060911;
  box-shadow: 0 40px 120px rgba(0,0,0,0.58);
}

.ygt-video-box video {
  width: 100%;
  max-height: 76vh;
  display: block;
  border-radius: 18px;
  background: #000;
}

.ygt-video-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 228, 164, 0.36);
  border-radius: 50%;
  color: #fff;
  background: #0c111d;
  font-size: 30px;
  line-height: 1;
  z-index: 3;
}

@media (max-width: 1180px) {
  .ygt-memory-board {
    width: 100%;
    min-height: 390px;
    overflow: hidden;
  }

  .ygt-memory-destinations {
    min-height: 250px;
  }

  .ygt-memory-stack:nth-child(1) { left: 4%; top: 24px; }
  .ygt-memory-stack:nth-child(2) { left: 28%; top: 54px; }
  .ygt-memory-stack:nth-child(3) { left: 52%; top: 24px; }
  .ygt-memory-stack:nth-child(4) { left: 72%; top: 58px; }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(1),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(1) { transform: translateX(-120px) rotate(-8deg); }
  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(2),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(2) { transform: translateX(-60px) translateY(-12px) rotate(-4deg); }
  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(4),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(4) { transform: translateX(60px) translateY(-12px) rotate(4deg); }
  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(5),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(5) { transform: translateX(120px) rotate(8deg); }
}

@media (max-width: 720px) {
  .ygt-memory-board {
    min-height: auto;
    padding: 24px 18px 26px;
  }

  .ygt-memory-destinations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-height: auto;
  }

  .ygt-memory-stack,
  .ygt-memory-stack:nth-child(n) {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 184px;
    transform: none;
  }

  .ygt-memory-stack:hover,
  .ygt-memory-stack.is-open {
    transform: translateY(-6px);
  }

  .ygt-memory-polaroid:not(:first-child) {
    display: none;
  }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(1),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(1) {
    transform: none;
  }
}

/* =========================================================
   FINAL MEMORY BOARD POSITION FIX
   Moves the destination memory board slightly left and keeps
   photo stacks inside the visible hero area on desktop.
========================================================= */
@media (min-width: 1181px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 28px;
  }

  .ygt-memory-board {
    width: 470px;
    max-width: 470px;
    min-height: 405px;
    margin-left: -84px;
    margin-top: 26px;
    padding: 26px 24px 30px;
    overflow: hidden;
  }

  .ygt-board-copy {
    max-width: 360px;
    margin-bottom: 14px;
  }

  .ygt-board-copy h2 {
    font-size: clamp(30px, 2.6vw, 42px);
  }

  .ygt-memory-destinations {
    min-height: 250px;
  }

  .ygt-memory-stack {
    width: 126px;
    height: 170px;
  }

  .ygt-memory-stack:nth-child(1) { left: 26px; top: 28px; transform: rotate(-8deg); z-index: 4; }
  .ygt-memory-stack:nth-child(2) { left: 118px; top: 62px; transform: rotate(6deg); z-index: 5; }
  .ygt-memory-stack:nth-child(3) { left: 225px; top: 28px; transform: rotate(-4deg); z-index: 4; }
  .ygt-memory-stack:nth-child(4) { left: 315px; top: 66px; transform: rotate(8deg); z-index: 3; }

  .ygt-memory-polaroid {
    padding: 8px 8px 32px;
  }

  .ygt-memory-polaroid strong {
    font-size: 12px;
  }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(1),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(1) { transform: translateX(-118px) rotate(-8deg); }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(2),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(2) { transform: translateX(-58px) translateY(-12px) rotate(-4deg); }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(3),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(3) { transform: translateX(0) translateY(-18px) rotate(0deg); }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(4),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(4) { transform: translateX(58px) translateY(-12px) rotate(4deg); }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(5),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(5) { transform: translateX(118px) rotate(8deg); }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(n+6),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(n+6) { transform: translateX(145px) rotate(10deg); }
}

/* =========================================================
   FINAL MEMORY BOARD VISIBILITY FIX
   Keeps every opened polaroid inside the board and keeps the
   main board pin clean above the glass panel.
========================================================= */
.ygt-board-pin {
  top: -18px !important;
  z-index: 120 !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.ygt-board-pin::after {
  top: 26px !important;
  height: 70px !important;
  background: linear-gradient(180deg, rgba(216, 163, 58, 0.95), rgba(216, 163, 58, 0.18), transparent) !important;
  filter: none !important;
}

.ygt-memory-polaroid::before {
  z-index: 5 !important;
  filter: none !important;
}

.ygt-memory-polaroid img {
  object-fit: contain !important;
  background: #f3eee4 !important;
}

@media (min-width: 1181px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) 620px !important;
    gap: 24px !important;
  }

  .ygt-memory-board {
    width: 610px !important;
    max-width: 610px !important;
    min-height: 500px !important;
    margin-left: -120px !important;
    margin-top: 26px !important;
    padding: 30px 28px 36px !important;
    overflow: visible !important;
  }

  .ygt-board-copy {
    max-width: 440px !important;
    margin-bottom: 22px !important;
  }

  .ygt-board-copy h2 {
    font-size: clamp(34px, 3vw, 48px) !important;
  }

  .ygt-memory-destinations {
    min-height: 330px !important;
    overflow: visible !important;
  }

  .ygt-memory-stack {
    width: 126px !important;
    height: 176px !important;
  }

  .ygt-memory-stack:nth-child(1) { left: 42px !important; top: 72px !important; transform: rotate(-7deg) !important; z-index: 4 !important; }
  .ygt-memory-stack:nth-child(2) { left: 178px !important; top: 98px !important; transform: rotate(5deg) !important; z-index: 5 !important; }
  .ygt-memory-stack:nth-child(3) { left: 314px !important; top: 72px !important; transform: rotate(-4deg) !important; z-index: 4 !important; }
  .ygt-memory-stack:nth-child(4) { left: 448px !important; top: 98px !important; transform: rotate(7deg) !important; z-index: 3 !important; }

  .ygt-memory-stack:hover,
  .ygt-memory-stack.is-open {
    left: calc(50% - 63px) !important;
    top: 136px !important;
    transform: translateY(-10px) rotate(0deg) !important;
    z-index: 60 !important;
  }

  .ygt-memory-polaroid {
    padding: 8px 8px 32px !important;
  }

  .ygt-memory-polaroid strong {
    font-size: 12px !important;
    bottom: 9px !important;
  }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(1),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(1) { transform: translateX(-216px) translateY(8px) rotate(-8deg) !important; }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(2),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(2) { transform: translateX(-108px) translateY(-10px) rotate(-4deg) !important; }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(3),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(3) { transform: translateX(0) translateY(-22px) rotate(0deg) !important; }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(4),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(4) { transform: translateX(108px) translateY(-10px) rotate(4deg) !important; }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(5),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(5) { transform: translateX(216px) translateY(8px) rotate(8deg) !important; }

  .ygt-memory-stack:hover .ygt-memory-polaroid:nth-child(n+6),
  .ygt-memory-stack.is-open .ygt-memory-polaroid:nth-child(n+6) { transform: translateX(248px) translateY(20px) rotate(10deg) !important; }
}

@media (max-width: 1180px) and (min-width: 721px) {
  .ygt-memory-board {
    min-height: 500px !important;
    overflow: visible !important;
  }

  .ygt-memory-destinations {
    min-height: 330px !important;
    overflow: visible !important;
  }

  .ygt-memory-stack:hover,
  .ygt-memory-stack.is-open {
    left: calc(50% - 75px) !important;
    top: 120px !important;
    transform: translateY(-10px) rotate(0deg) !important;
    z-index: 60 !important;
  }
}

/* =========================================================
   FINAL MEMORY BOARD HOVER STABILITY + RIGHT POSITION FIX
   Fixes flicker by making hover open through JS-added .is-open,
   and shifts the board slightly right so the hero word does not sit under it.
========================================================= */
@media (min-width: 1181px) {
  .ygt-memory-board {
    margin-left: -48px !important;
  }
}

/* Keep non-open cards in their original spots even while the mouse crosses them. */
@media (min-width: 1181px) {
  .ygt-memory-stack:not(.is-open):hover:nth-child(1) { left: 42px !important; top: 72px !important; transform: rotate(-7deg) !important; z-index: 4 !important; }
  .ygt-memory-stack:not(.is-open):hover:nth-child(2) { left: 178px !important; top: 98px !important; transform: rotate(5deg) !important; z-index: 5 !important; }
  .ygt-memory-stack:not(.is-open):hover:nth-child(3) { left: 314px !important; top: 72px !important; transform: rotate(-4deg) !important; z-index: 4 !important; }
  .ygt-memory-stack:not(.is-open):hover:nth-child(4) { left: 448px !important; top: 98px !important; transform: rotate(7deg) !important; z-index: 3 !important; }
}

/* Disable CSS-only hover spread. JS adds .is-open first, preventing pointer flicker. */
.ygt-memory-stack:not(.is-open):hover .ygt-memory-polaroid:nth-child(1),
.ygt-memory-stack:not(.is-open):hover .ygt-memory-polaroid:nth-child(2),
.ygt-memory-stack:not(.is-open):hover .ygt-memory-polaroid:nth-child(3),
.ygt-memory-stack:not(.is-open):hover .ygt-memory-polaroid:nth-child(4),
.ygt-memory-stack:not(.is-open):hover .ygt-memory-polaroid:nth-child(5),
.ygt-memory-stack:not(.is-open):hover .ygt-memory-polaroid:nth-child(n+6) {
  transform: none !important;
}

.ygt-memory-stack:not(.is-open):hover .ygt-memory-polaroid:not(:first-child) {
  opacity: 0 !important;
  pointer-events: none !important;
}

.ygt-memory-stack.is-open .ygt-memory-polaroid {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Keep the main board pin crisp above the glass. */
.ygt-board-pin {
  z-index: 999 !important;
  transform: translateX(-50%) translateZ(0) !important;
}

/* =========================================================
   Happy Faces gallery + static WhatsApp button
========================================================= */
.ygt-memory-stack {
  text-decoration: none !important;
  color: inherit !important;
}

.ygt-memory-stack:focus-visible {
  outline: 2px solid rgba(255, 212, 111, 0.9);
  outline-offset: 10px;
}

.ygt-whatsapp-float {
  position: fixed;
  top: 112px;
  right: 58px;
  z-index: 100001;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 12px 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(7, 94, 84, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.30), 0 0 18px rgba(37, 211, 102, 0.18);
  backdrop-filter: blur(14px);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ygt-whatsapp-float:hover {
  transform: translateY(-2px);
  background: rgba(18, 140, 126, 0.98);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.36), 0 0 24px rgba(37, 211, 102, 0.24);
}

.ygt-whatsapp-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  flex: 0 0 auto;
}

.ygt-whatsapp-svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.ygt-whatsapp-text {
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
}

.ygt-whatsapp-form-modal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.ygt-whatsapp-form-modal.show {
  display: grid;
}

.ygt-whatsapp-form-card {
  position: relative;
  width: min(500px, 100%);
  max-height: calc(100vh - 32px);
  overflow: hidden;
  border: 1px solid rgba(255, 212, 111, 0.34);
  border-radius: 24px;
  padding: 24px;
  color: #f8f4ec;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 102, 0.14), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(216, 163, 58, 0.16), transparent 34%),
    #0c111d;
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.58);
}

.ygt-whatsapp-form-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.ygt-whatsapp-form-kicker {
  display: inline-flex;
  margin: 0 0 8px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 999px;
  padding: 8px 12px;
  color: #d7ffe6;
  background: rgba(37, 211, 102, 0.12);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ygt-whatsapp-form-card h2 {
  margin: 0 0 10px;
  color: #ffe4a4;
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1;
}

.ygt-whatsapp-form-subtitle {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
  font-size: 14px;
}

.ygt-whatsapp-lead-form {
  display: grid;
  gap: 10px;
}

.ygt-whatsapp-lead-form label {
  display: grid;
  gap: 8px;
  color: #ffe4a4;
  font-weight: 800;
}

.ygt-whatsapp-lead-form label b {
  color: #25d366;
}

.ygt-whatsapp-lead-form input,
.ygt-whatsapp-lead-form select,
.ygt-whatsapp-lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  padding: 11px 13px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.30);
  outline: none;
}

.ygt-whatsapp-lead-form select option {
  color: #111111;
}

.ygt-whatsapp-lead-form textarea {
  resize: vertical;
  min-height: 62px;
}

.ygt-whatsapp-lead-form input:focus,
.ygt-whatsapp-lead-form select:focus,
.ygt-whatsapp-lead-form textarea:focus {
  border-color: rgba(37, 211, 102, 0.72);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.10);
}

.ygt-whatsapp-lead-form button {
  border: 0;
  border-radius: 13px;
  padding: 12px 16px;
  color: #07110b;
  font-weight: 1000;
  background: linear-gradient(135deg, #d7ffe6, #25d366);
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.18);
}

@media (max-width: 720px) {
  .ygt-whatsapp-form-card {
    padding: 20px 16px;
    border-radius: 20px;
  }
}


/* =========================================================
   Happy Faces Gallery Size Fix
   Keeps photos medium-sized and removes photo captions.
========================================================= */
.happy-face-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(216, 163, 58, 0.12), transparent 28%),
    radial-gradient(circle at 12% 72%, rgba(37, 211, 102, 0.08), transparent 30%),
    #05070d;
  color: #f8f4ec;
}

.happy-face-main {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 80px;
}

.happy-face-hero {
  max-width: 880px;
  margin: 0 0 28px;
}

.happy-face-hero h1 {
  margin: 16px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.92;
  color: #ffe4a4;
  letter-spacing: -0.055em;
}

.happy-face-hero p:not(.eyebrow) {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.happy-face-tabs {
  position: sticky;
  top: 104px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 38px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(18px);
}

.happy-face-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.045);
  font-weight: 900;
  text-decoration: none;
}

.happy-face-tabs a:hover {
  color: #111;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
}

.happy-face-section {
  scroll-margin-top: 145px;
  margin: 0 0 68px;
}

.happy-face-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(216, 163, 58, 0.24);
}

.happy-face-section-header h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  color: #f8f4ec;
}

.happy-face-section-header span {
  flex: 0 0 auto;
  border: 1px solid rgba(216, 163, 58, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffe4a4;
  background: rgba(216, 163, 58, 0.08);
  font-weight: 900;
}

.happy-face-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.happy-face-photo {
  margin: 0;
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 12px;
  background: rgba(255,255,255,0.055);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.happy-face-photo:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 163, 58, 0.50);
  background: rgba(255,255,255,0.075);
}

.happy-face-photo img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(0,0,0,0.24);
}

.happy-face-photo figcaption {
  display: none !important;
}

.happy-face-photo a,
.happy-face-photo img {
  cursor: zoom-in;
}

@media (min-width: 1280px) {
  .happy-face-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .happy-face-main {
    width: min(100% - 32px, 760px);
    padding-top: 116px;
  }

  .happy-face-tabs {
    top: 86px;
    border-radius: 22px;
  }

  .happy-face-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .happy-face-photo img {
    height: 230px;
  }
}

@media (max-width: 560px) {
  .happy-face-main {
    width: min(100% - 24px, 420px);
  }

  .happy-face-section-header {
    display: grid;
    align-items: start;
  }

  .happy-face-grid {
    grid-template-columns: 1fr;
  }

  .happy-face-photo img {
    height: 260px;
  }
}

/* =========================================================
   FINAL WhatsApp Rectangular Fixed Button
   Positioned next to right-side browser scroller area
========================================================= */
.ygt-whatsapp-float {
  position: fixed !important;
  right: 18px !important;
  top: 42% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  z-index: 100001 !important;
  width: auto !important;
  min-width: 118px !important;
  height: 48px !important;
  padding: 0 14px !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #15c76f, #087b56) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38) !important;
  text-decoration: none !important;
}

.ygt-whatsapp-float:hover {
  transform: translateY(-50%) translateX(-4px) !important;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.48) !important;
}

.ygt-whatsapp-icon {
  width: 28px !important;
  height: 28px !important;
  border-radius: 8px !important;
  display: grid !important;
  place-items: center !important;
  background: #25d366 !important;
  flex: 0 0 auto !important;
}

.ygt-whatsapp-svg {
  width: 18px !important;
  height: 18px !important;
  fill: #ffffff !important;
}

.ygt-whatsapp-text {
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

@media (max-width: 720px) {
  .ygt-whatsapp-float {
    right: 12px !important;
    top: auto !important;
    bottom: 18px !important;
    transform: none !important;
    min-width: 108px !important;
    height: 44px !important;
    border-radius: 10px !important;
  }

  .ygt-whatsapp-float:hover {
    transform: translateY(-3px) !important;
  }
}

/* =========================================================
   FINAL WhatsApp Vertical Scrollbar Tab
   Sticks to the right-side scrollbar area
========================================================= */
.ygt-whatsapp-float {
  position: fixed !important;
  right: 0 !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  z-index: 100001 !important;
  width: 54px !important;
  min-width: 54px !important;
  height: 168px !important;
  padding: 12px 8px !important;
  border-radius: 16px 0 0 16px !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  color: #ffffff !important;
  background: linear-gradient(180deg, #19c979, #087b56) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-right: 0 !important;
  box-shadow: -12px 18px 42px rgba(0, 0, 0, 0.38) !important;
  text-decoration: none !important;
}

.ygt-whatsapp-float:hover {
  transform: translateY(-50%) translateX(-4px) !important;
  box-shadow: -16px 22px 54px rgba(0, 0, 0, 0.48) !important;
}

.ygt-whatsapp-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  display: grid !important;
  place-items: center !important;
  background: #25d366 !important;
  flex: 0 0 auto !important;
}

.ygt-whatsapp-svg {
  width: 21px !important;
  height: 21px !important;
  fill: #ffffff !important;
}

.ygt-whatsapp-text {
  display: inline-block !important;
  font-size: 14px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  letter-spacing: 0.05em !important;
  white-space: nowrap !important;
  writing-mode: vertical-rl !important;
  text-orientation: mixed !important;
}

@media (max-width: 720px) {
  .ygt-whatsapp-float {
    right: 0 !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    min-width: 50px !important;
    height: 152px !important;
    border-radius: 14px 0 0 14px !important;
    padding: 10px 7px !important;
  }

  .ygt-whatsapp-float:hover {
    transform: translateY(-50%) translateX(-3px) !important;
  }
}

/* =========================================================
   Whole package card clickable state
========================================================= */
.package-card.ygt-clickable-package-card,
.modal-package.ygt-clickable-package-card,
.live-package-card.ygt-clickable-package-card {
  cursor: pointer;
}

.package-card.ygt-clickable-package-card:focus-visible,
.modal-package.ygt-clickable-package-card:focus-visible,
.live-package-card.ygt-clickable-package-card:focus-visible {
  outline: 2px solid rgba(255, 212, 111, 0.85);
  outline-offset: 4px;
}


/* =========================================================
   YouGoVibes Paused Panel + Header Shooting Star
========================================================= */
.site-header {
  animation: none !important;
  transform-origin: center top;
}

.ygt-header-orbit-star {
  position: absolute;
  z-index: 6;
  width: 12px;
  height: 12px;
  left: 26px;
  top: -6px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle at 35% 35%, #fff7d4 0%, #ffd56d 34%, #d8a33a 66%, rgba(216, 163, 58, 0) 100%);
  box-shadow:
    0 0 10px rgba(255, 213, 109, 0.95),
    0 0 22px rgba(216, 163, 58, 0.55),
    0 0 42px rgba(216, 163, 58, 0.22);
  animation: ygtHeaderShootingStar 7.2s linear infinite;
}

.ygt-header-orbit-star::before {
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  width: 58px;
  height: 2px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255, 213, 109, 0), rgba(255, 213, 109, 0.75));
  filter: blur(0.3px);
  opacity: 0.95;
}

.ygt-header-orbit-star::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff1b8;
  font-size: 14px;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255, 213, 109, 0.95);
}

@keyframes ygtHeaderShootingStar {
  0% {
    left: 28px;
    top: -7px;
    transform: rotate(0deg) scale(0.82);
    opacity: 0;
  }
  4% { opacity: 1; }
  24% {
    left: calc(100% - 42px);
    top: -7px;
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  25% { transform: rotate(90deg) scale(1); }
  47% {
    left: calc(100% - 12px);
    top: calc(100% - 18px);
    transform: rotate(90deg) scale(0.96);
    opacity: 1;
  }
  48% { transform: rotate(180deg) scale(0.96); }
  70% {
    left: 34px;
    top: calc(100% - 6px);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }
  71% { transform: rotate(270deg) scale(1); }
  96% {
    left: -7px;
    top: 20px;
    transform: rotate(270deg) scale(0.9);
    opacity: 1;
  }
  100% {
    left: 28px;
    top: -7px;
    transform: rotate(360deg) scale(0.82);
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .ygt-header-orbit-star {
    width: 10px;
    height: 10px;
    animation-duration: 6.4s;
  }

  .ygt-header-orbit-star::before {
    width: 38px;
  }
}

.vibes-bridge-btn,
.vibes-floating-card {
  cursor: pointer;
  border: 0;
  text-align: left;
  font: inherit;
}

.vibes-paused-card {
  overflow: hidden;
}

.vibes-paused-card h3 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.96;
}

.vibes-paused-card h3 em {
  color: #ff8fc9;
  font-style: normal;
}

.vibes-soon-ribbon {
  position: absolute;
  top: 22px;
  right: -48px;
  z-index: 5;
  width: 190px;
  padding: 9px 12px;
  text-align: center;
  transform: rotate(35deg);
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
  color: #111;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0,0,0,0.30);
}

.ygt-vibing-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
}

.ygt-vibing-popup-backdrop.show {
  display: grid;
}

.ygt-vibing-popup-card {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(255,228,164,0.32);
  border-radius: 30px;
  padding: 34px;
  color: #f8f4ec;
  background:
    radial-gradient(circle at 85% 5%, rgba(255,90,184,0.18), transparent 36%),
    radial-gradient(circle at 10% 100%, rgba(216,163,58,0.14), transparent 34%),
    #0c111d;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
  text-align: center;
}

.ygt-vibing-popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.ygt-vibing-popup-pill {
  display: inline-flex;
  margin-bottom: 14px;
  border: 1px solid rgba(255,228,164,0.34);
  border-radius: 999px;
  padding: 8px 13px;
  color: #ffe4a4;
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ygt-vibing-popup-card h2 {
  margin: 0 0 10px;
  color: #ffe4a4;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 0.95;
}

.ygt-vibing-popup-card p {
  margin: 0 auto 22px;
  max-width: 420px;
  color: rgba(255,255,255,0.74);
  line-height: 1.65;
}

.ygt-vibing-popup-card button:not(.ygt-vibing-popup-close) {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  color: #111;
  background: linear-gradient(135deg, #ffe4a4, #d8a33a);
  font-weight: 1000;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header::before {
    animation: none !important;
  }
}

@media (max-width: 720px) {
  .vibes-soon-ribbon {
    right: -58px;
    width: 190px;
    font-size: 10px;
  }
}


/* YouGoVibes direct paused page */
.ygt-vibes-paused-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 130px 24px 70px;
}
.ygt-vibes-paused-card {
  width: min(880px, 100%);
  border: 1px solid rgba(255,228,164,0.30);
  border-radius: 34px;
  padding: clamp(34px, 7vw, 70px);
  background:
    radial-gradient(circle at 85% 10%, rgba(255,90,184,0.22), transparent 34%),
    radial-gradient(circle at 10% 100%, rgba(216,163,58,0.16), transparent 34%),
    rgba(255,255,255,0.065);
  box-shadow: 0 40px 120px rgba(0,0,0,0.46);
  backdrop-filter: blur(24px);
  text-align: center;
}
.ygt-vibes-paused-card h1 {
  margin: 16px 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(54px, 9vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.07em;
}
.ygt-vibes-paused-card h1 span { color: #ffe4a4; }
.ygt-vibes-paused-card p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.74);
  line-height: 1.75;
  font-size: 18px;
}

/* =========================================================
   YGT Package Details Gold Highlight Patch
   Highlights package title, price, day-wise itinerary title, and day titles.
========================================================= */
.package-details-card .package-detail-hero h2,
.ygt-package-details-box .package-detail-hero h2,
.ygt-details-info h2,
#packageDetailsBody .package-detail-hero h2 {
  color: #ffe4a4 !important;
  text-shadow: 0 10px 32px rgba(216, 163, 58, 0.16) !important;
}

.package-details-card .package-detail-grid div:nth-child(4) strong,
.ygt-package-details-box .package-detail-grid div:nth-child(4) strong,
#packageDetailsBody .package-detail-grid div:nth-child(4) strong,
.ygt-details-price {
  color: #f7c75e !important;
  font-weight: 1000 !important;
  text-shadow: 0 0 18px rgba(247, 199, 94, 0.18) !important;
}

.package-details-card .package-daywise-block > h4,
.ygt-package-details-box .package-daywise-block > h4,
#packageDetailsBody .package-daywise-block > h4,
.detail-itinerary h3 {
  color: #ffe4a4 !important;
  font-size: 24px !important;
  font-weight: 1000 !important;
  letter-spacing: 0.01em !important;
}

.package-details-card .package-day-item strong,
.ygt-package-details-box .package-day-item strong,
#packageDetailsBody .package-day-item strong,
.detail-itinerary article strong,
.detail-itinerary article h4 {
  color: #f7c75e !important;
  font-weight: 1000 !important;
}

.package-details-card .package-detail-grid span,
.ygt-package-details-box .package-detail-grid span,
#packageDetailsBody .package-detail-grid span {
  color: rgba(255, 228, 164, 0.72) !important;
}

/* =========================================================
   FINAL FIX: Header shooting star stays inside curved border
   Keeps the golden dot/trail from slipping outside the header
   corners and bottom border.
========================================================= */
.site-header {
  overflow: visible !important;
}

.ygt-header-orbit-star {
  width: 11px !important;
  height: 11px !important;
  z-index: 12 !important;
  left: 34px !important;
  top: 11px !important;
  animation: ygtHeaderShootingStarInside 7.4s linear infinite !important;
}

.ygt-header-orbit-star::before {
  width: 34px !important;
  right: 8px !important;
  opacity: 0.72 !important;
}

.ygt-header-orbit-star::after {
  font-size: 12px !important;
}

@keyframes ygtHeaderShootingStarInside {
  0% {
    left: 42px;
    top: 12px;
    transform: rotate(0deg) scale(0.82);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  23% {
    left: calc(100% - 76px);
    top: 12px;
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  32% {
    left: calc(100% - 33px);
    top: 34px;
    transform: rotate(55deg) scale(0.98);
    opacity: 1;
  }
  45% {
    left: calc(100% - 33px);
    top: calc(100% - 34px);
    transform: rotate(115deg) scale(0.96);
    opacity: 1;
  }
  54% {
    left: calc(100% - 76px);
    top: calc(100% - 22px);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }
  72% {
    left: 76px;
    top: calc(100% - 22px);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }
  82% {
    left: 28px;
    top: calc(100% - 36px);
    transform: rotate(235deg) scale(0.96);
    opacity: 1;
  }
  95% {
    left: 28px;
    top: 36px;
    transform: rotate(300deg) scale(0.9);
    opacity: 1;
  }
  100% {
    left: 42px;
    top: 12px;
    transform: rotate(360deg) scale(0.82);
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .ygt-header-orbit-star {
    width: 9px !important;
    height: 9px !important;
  }

  .ygt-header-orbit-star::before {
    width: 24px !important;
  }
}


/* =========================================================
   EMERGENCY FIX: Shooting star clipped inside header only
   The dot/trail will never escape top/left/right curves.
========================================================= */
.site-header {
  overflow: hidden !important;
  isolation: isolate !important;
}

.ygt-header-orbit-star {
  position: absolute !important;
  z-index: 2 !important;
  width: 10px !important;
  height: 10px !important;
  left: 46px !important;
  top: 18px !important;
  pointer-events: none !important;
  border-radius: 999px !important;
  background: radial-gradient(circle at 35% 35%, #fff8d8 0%, #ffd56d 36%, #d8a33a 68%, rgba(216, 163, 58, 0) 100%) !important;
  box-shadow: 0 0 10px rgba(255, 213, 109, 0.95), 0 0 24px rgba(216, 163, 58, 0.55) !important;
  animation: ygtHeaderShootingStarContained 8s linear infinite !important;
}

.ygt-header-orbit-star::before {
  content: "" !important;
  position: absolute !important;
  right: 8px !important;
  top: 50% !important;
  width: 28px !important;
  height: 2px !important;
  border-radius: 999px !important;
  transform: translateY(-50%) !important;
  background: linear-gradient(90deg, rgba(255, 213, 109, 0), rgba(255, 213, 109, 0.72)) !important;
  filter: blur(0.3px) !important;
  opacity: 0.85 !important;
}

.ygt-header-orbit-star::after {
  content: "" !important;
}

@keyframes ygtHeaderShootingStarContained {
  0% {
    left: 58px;
    top: 18px;
    transform: rotate(0deg) scale(0.75);
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  25% {
    left: calc(100% - 74px);
    top: 18px;
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  33% {
    left: calc(100% - 30px);
    top: 34px;
    transform: rotate(70deg) scale(0.96);
    opacity: 1;
  }
  47% {
    left: calc(100% - 30px);
    top: calc(100% - 34px);
    transform: rotate(110deg) scale(0.96);
    opacity: 1;
  }
  56% {
    left: calc(100% - 74px);
    top: calc(100% - 18px);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }
  75% {
    left: 74px;
    top: calc(100% - 18px);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }
  84% {
    left: 30px;
    top: calc(100% - 34px);
    transform: rotate(250deg) scale(0.96);
    opacity: 1;
  }
  94% {
    left: 30px;
    top: 34px;
    transform: rotate(290deg) scale(0.92);
    opacity: 1;
  }
  100% {
    left: 58px;
    top: 18px;
    transform: rotate(360deg) scale(0.75);
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    overflow: hidden !important;
  }

  .ygt-header-orbit-star {
    width: 8px !important;
    height: 8px !important;
    animation-duration: 7s !important;
  }

  .ygt-header-orbit-star::before {
    width: 18px !important;
  }
}

/* =========================================================
   FINAL: Header shooting star on straight border lines only
   No rounded-corner travel. It fades between each straight
   segment so it never leaks over the curved edges.
========================================================= */
.site-header {
  overflow: hidden !important;
  isolation: isolate !important;
}

.ygt-header-orbit-star {
  position: absolute !important;
  z-index: 2 !important;
  width: 10px !important;
  height: 10px !important;
  pointer-events: none !important;
  border-radius: 999px !important;
  background: radial-gradient(circle at 35% 35%, #fff8d8 0%, #ffd56d 36%, #d8a33a 68%, rgba(216, 163, 58, 0) 100%) !important;
  box-shadow: 0 0 10px rgba(255, 213, 109, 0.95), 0 0 24px rgba(216, 163, 58, 0.55) !important;
  animation: ygtHeaderShootingStarLinesOnly 9s linear infinite !important;
}

.ygt-header-orbit-star::before {
  content: "" !important;
  position: absolute !important;
  right: 8px !important;
  top: 50% !important;
  width: 26px !important;
  height: 2px !important;
  border-radius: 999px !important;
  transform: translateY(-50%) !important;
  background: linear-gradient(90deg, rgba(255, 213, 109, 0), rgba(255, 213, 109, 0.72)) !important;
  filter: blur(0.3px) !important;
  opacity: 0.82 !important;
}

.ygt-header-orbit-star::after {
  content: "" !important;
}

@keyframes ygtHeaderShootingStarLinesOnly {
  /* Top straight line: left to right */
  0% {
    left: 96px;
    top: 14px;
    transform: rotate(0deg) scale(0.8);
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  22% {
    left: calc(100% - 96px);
    top: 14px;
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  25% {
    left: calc(100% - 96px);
    top: 14px;
    transform: rotate(0deg) scale(0.9);
    opacity: 0;
  }

  /* Right straight line: top to bottom */
  26% {
    left: calc(100% - 18px);
    top: 46px;
    transform: rotate(90deg) scale(0.8);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  45% {
    left: calc(100% - 18px);
    top: calc(100% - 46px);
    transform: rotate(90deg) scale(1);
    opacity: 1;
  }
  48% {
    left: calc(100% - 18px);
    top: calc(100% - 46px);
    transform: rotate(90deg) scale(0.9);
    opacity: 0;
  }

  /* Bottom straight line: right to left */
  49% {
    left: calc(100% - 96px);
    top: calc(100% - 14px);
    transform: rotate(180deg) scale(0.8);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  72% {
    left: 96px;
    top: calc(100% - 14px);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }
  75% {
    left: 96px;
    top: calc(100% - 14px);
    transform: rotate(180deg) scale(0.9);
    opacity: 0;
  }

  /* Left straight line: bottom to top */
  76% {
    left: 18px;
    top: calc(100% - 46px);
    transform: rotate(270deg) scale(0.8);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  96% {
    left: 18px;
    top: 46px;
    transform: rotate(270deg) scale(1);
    opacity: 1;
  }
  100% {
    left: 18px;
    top: 46px;
    transform: rotate(270deg) scale(0.8);
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .ygt-header-orbit-star {
    width: 8px !important;
    height: 8px !important;
    animation-duration: 8s !important;
  }

  .ygt-header-orbit-star::before {
    width: 18px !important;
  }
}


/* =========================================================
   FINAL: Remove shooting star + Home heartbeat only
   The golden shooting-star dot is disabled. The active Home
   navigation pill gets a clean heartbeat pulse.
========================================================= */
.ygt-header-orbit-star,
.ygt-header-orbit-star::before,
.ygt-header-orbit-star::after {
  display: none !important;
  animation: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.site-header .nav-links a.active {
  transform-origin: center !important;
  animation: ygtHomeActiveHeartbeat 1.45s ease-in-out infinite !important;
  box-shadow:
    0 0 0 rgba(247, 199, 94, 0),
    0 10px 26px rgba(216, 163, 58, 0.20) !important;
}

@keyframes ygtHomeActiveHeartbeat {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(247, 199, 94, 0),
      0 10px 26px rgba(216, 163, 58, 0.18);
  }
  14% {
    transform: scale(1.075);
    box-shadow:
      0 0 18px rgba(247, 199, 94, 0.42),
      0 14px 34px rgba(216, 163, 58, 0.32);
  }
  28% {
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(247, 199, 94, 0),
      0 10px 26px rgba(216, 163, 58, 0.18);
  }
  42% {
    transform: scale(1.045);
    box-shadow:
      0 0 12px rgba(247, 199, 94, 0.30),
      0 12px 30px rgba(216, 163, 58, 0.26);
  }
  58% {
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(247, 199, 94, 0),
      0 10px 26px rgba(216, 163, 58, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .nav-links a.active {
    animation: none !important;
  }
}

/* =========================================================
   FINAL: Heartbeat follows whichever header link is active
========================================================= */
.site-header .nav-links a.active {
  animation: ygtActiveNavHeartbeat 1.45s ease-in-out infinite !important;
  transform-origin: center !important;
  will-change: transform, box-shadow !important;
}

@keyframes ygtActiveNavHeartbeat {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(247, 199, 94, 0), 0 10px 26px rgba(216, 163, 58, 0.16);
  }
  14% {
    transform: scale(1.075);
    box-shadow: 0 0 18px rgba(247, 199, 94, 0.42), 0 14px 34px rgba(216, 163, 58, 0.30);
  }
  28% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(247, 199, 94, 0), 0 10px 26px rgba(216, 163, 58, 0.16);
  }
  42% {
    transform: scale(1.045);
    box-shadow: 0 0 12px rgba(247, 199, 94, 0.30), 0 12px 30px rgba(216, 163, 58, 0.24);
  }
  58% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(247, 199, 94, 0), 0 10px 26px rgba(216, 163, 58, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .nav-links a.active {
    animation: none !important;
  }
}
