/* ==========================================================
   GLOBAL BASE STYLES & TOKENS
   ========================================================== */

:root {
  --yj-primary: #F97316;
  --yj-primary-soft: #FFEDD5;
  --yj-primary-dark: #C05621;
  --yj-secondary: #2563EB;
  --yj-bg: #F9FAFB;
  --yj-text: #0F172A;
  --yj-muted: #6B7280;
  --yj-radius-lg: 18px;
  --yj-radius-pill: 999px;
  --yj-shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
  --yj-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--yj-font-sans);
  color: var(--yj-text);
  background-color: var(--yj-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================
   CURRENCY TOGGLE (COMPACT, HEADER)
   ========================================================== */

.yj-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: max-content;
  gap: 10px;
}

.yj-currency-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 4px;
  border-radius: var(--yj-radius-pill);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background-color: #F9FAFB;
  font-size: 10px;
}

.yj-currency-label {
  font-size: 10px;
  color: #6B7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.yj-currency-btn {
  padding: 3px 7px;
  border-radius: var(--yj-radius-pill);
  border: 1px solid transparent;
  background-color: transparent;
  color: #4B5563;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
}

.yj-currency-btn:hover {
  background-color: #EFF6FF;
  color: #0067C8;
}

.yj-currency-btn.active {
  background: linear-gradient(135deg, #F97316, #FACC15);
  color: #111827;
  border-color: transparent;
}

@media (max-width: 768px) {
  .yj-currency-label {
    display: none;
  }

  .yj-currency-toggle {
    padding: 2px;
    gap: 2px;
  }

  .yj-currency-btn {
    padding: 2px 6px;
    font-size: 9px;
  }

  .yj-actions {
    gap: 6px;
  }
}

/* ==========================================================
   TOP BAR
   ========================================================== */

.yj-topbar {
  width: 100%;
  background-color: #ffffff;
  color: #111827;
  font-size: 13px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}

.yj-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px 10px;
}

.yj-topbar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.yj-row-main {
  justify-content: space-between;
  margin-bottom: 6px;
}

.yj-row-deal {
  justify-content: flex-start;
}

.yj-brand {
  display: flex;
  align-items: center;
}

.yj-topbar-logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* WhatsApp CTA */

.yj-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--yj-radius-pill);
  background: linear-gradient(135deg, #22C55E, #0284C7);
  border: 1px solid transparent;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(22, 163, 74, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.yj-whatsapp-btn,
.yj-whatsapp-btn * {
  color: #ffffff;
}

.yj-whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.25), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.yj-whatsapp-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--yj-radius-pill);
  background-color: rgba(15, 23, 42, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.yj-whatsapp-icon i {
  font-size: 14px;
}

.yj-whatsapp-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.yj-whatsapp-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.yj-whatsapp-sub {
  font-size: 10px;
  opacity: 0.92;
}

.yj-whatsapp-btn:hover {
  background: #E0F2FE;
  border-color: #0067C8;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.32);
}

.yj-whatsapp-btn:hover,
.yj-whatsapp-btn:hover .yj-whatsapp-label,
.yj-whatsapp-btn:hover .yj-whatsapp-sub {
  color: #0067C8;
}

.yj-whatsapp-btn:hover .yj-whatsapp-icon {
  background-color: #ffffff;
  border: 1px solid #0067C8;
}

.yj-whatsapp-btn:hover .yj-whatsapp-icon i {
  color: #22C55E;
}

/* Offer strip */

.yj-deal-strip {
  width: 100%;
  padding: 6px 10px;
  border-radius: 9px;
  background: linear-gradient(90deg, #F9FAFB 0%, #EFF6FF 40%, #F9FAFB 100%);
  background-size: 200% 100%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  animation: yj-strip-move 12s linear infinite;
}

.yj-deal-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #F97316, #FACC15);
}

.yj-deal-badge {
  padding: 2px 8px;
  border-radius: var(--yj-radius-pill);
  background-color: rgba(249, 115, 22, 0.12);
  color: #C05621;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  animation: yj-pulse 2.8s ease-in-out infinite;
}

.yj-deal-text {
  font-size: 12px;
  color: #111827;
  opacity: 0.96;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yj-deal-text strong {
  background: linear-gradient(90deg, #EA580C, #FACC15);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: yj-highlight 3.5s ease-in-out infinite;
  font-weight: 700;
}

/* Topbar animations */

@keyframes yj-strip-move {
  0% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

@keyframes yj-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
  }
}

@keyframes yj-highlight {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

@media (min-width: 1024px) {
  .yj-topbar-inner {
    padding: 10px 24px 12px;
  }

  .yj-topbar-logo img {
    height: 40px;
  }

  .yj-deal-text {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .yj-topbar-inner {
    padding: 8px 12px 10px;
  }

  .yj-topbar-logo img {
    height: 30px;
  }

  .yj-deal-text {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .yj-topbar-inner {
    padding: 8px 10px 10px;
  }

  .yj-row-main {
    margin-bottom: 5px;
  }

  .yj-topbar-logo img {
    height: 28px;
  }

  .yj-whatsapp-btn {
    padding: 6px 12px;
  }

  .yj-whatsapp-label {
    font-size: 10px;
  }

  .yj-whatsapp-sub {
    font-size: 9px;
  }

  .yj-deal-strip {
    padding: 6px 8px;
  }

  .yj-deal-text {
    font-size: 11px;
  }
}

/* ==========================================================
   HERO SECTION
   ========================================================== */

.yj-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  color: #F9FAFB;
  overflow: hidden;
  isolation: isolate;
  background-image: url("https://yourjourney.ae/wp-content/uploads/2024/04/Romantic-Dune-Dinner-1.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.yj-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg,
      rgba(15, 23, 42, 0.78) 0%,
      rgba(15, 23, 42, 0.60) 35%,
      rgba(15, 23, 42, 0.32) 58%,
      rgba(15, 23, 42, 0.12) 100%
    ),
    radial-gradient(circle at 80% 20%,
      rgba(249, 115, 22, 0.45),
      transparent 60%
    ),
    linear-gradient(to bottom,
      rgba(15, 23, 42, 0.15),
      transparent 40%
    );
  z-index: 0;
}

.yj-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.yj-hero-content {
  max-width: 620px;
  animation: yj-hero-fade-up 0.9s ease-out 0.1s both;
}

.yj-hero-label-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.yj-hero-pill {
  padding: 4px 10px;
  border-radius: var(--yj-radius-pill);
  background: rgba(248, 250, 252, 0.1);
  border: 1px solid rgba(252, 211, 77, 0.65);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FBBF24;
}

.yj-hero-rating {
  font-size: 11px;
  color: rgba(249, 250, 251, 0.9);
}

.yj-hero-rating span {
  color: #FACC15;
}

.yj-hero-title {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.07;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #FEF3C7;
}

.yj-hero-title span {
  color: #FBBF24;
}

.yj-hero-subtitle {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(241, 245, 249, 0.96);
}

.yj-hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 22px;
}

.yj-hero-usp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(241, 245, 249, 0.95);
}

.yj-hero-usp::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: var(--yj-radius-pill);
  background-color: rgba(34, 197, 94, 0.18);
  color: #4ADE80;
  font-size: 11px;
}

.yj-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.yj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--yj-radius-pill);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid transparent;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.yj-btn-primary {
  background: linear-gradient(135deg, #F97316, #FACC15);
  color: #1F2937;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.55);
}

.yj-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(248, 150, 30, 0.7);
  filter: brightness(1.03);
}

.yj-btn-secondary {
  background-color: rgba(15, 23, 42, 0.65);
  color: #E5E7EB;
  border-color: rgba(148, 163, 184, 0.65);
  backdrop-filter: blur(10px);
}

.yj-btn-secondary:hover {
  background-color: #E0F2FE;
  color: #0067C8;
  border-color: #0067C8;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.55);
}

.yj-btn-wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: var(--yj-radius-pill);
  background-color: rgba(34, 197, 94, 0.22);
  color: #4ADE80;
  font-size: 11px;
}

.yj-hero-meta {
  font-size: 11px;
  color: rgba(226, 232, 240, 0.95);
}

/* Hero sidecard */

.yj-hero-sidecard {
  flex: 0 0 320px;
  max-width: 340px;
  animation: yj-hero-fade-up 0.9s ease-out 0.2s both;
}

.yj-hero-sidecard-inner {
  background: rgba(15, 23, 42, 0.88);
  border-radius: var(--yj-radius-lg);
  padding: 18px 18px 16px;
  border: 1px solid rgba(248, 250, 252, 0.14);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.yj-hero-sidecard-inner::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  background: radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.6), transparent 60%);
  opacity: 0.85;
  z-index: -1;
}

.yj-sidecard-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: var(--yj-radius-pill);
  background-color: rgba(22, 163, 74, 0.2);
  color: #6EE7B7;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.yj-sidecard-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--yj-radius-pill);
  background-color: #22C55E;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.38);
}

.yj-sidecard-title {
  font-size: 14px;
  color: #F9FAFB;
  margin-bottom: 4px;
}

.yj-sidecard-price {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.96);
  margin-bottom: 12px;
}

.yj-sidecard-price strong {
  font-size: 22px;
  color: #FBBF24;
}

.yj-sidecard-price span {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.98);
}

.yj-sidecard-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: rgba(226, 232, 240, 0.96);
}

.yj-sidecard-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.yj-sidecard-list li::before {
  content: "•";
  color: #38BDF8;
  font-size: 16px;
}

.yj-sidecard-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-bottom: 8px;
  margin-top: 4px;
  padding: 9px 0;
  border-radius: var(--yj-radius-pill);
  border: 1px solid transparent;
  background: linear-gradient(135deg, #F97316, #FACC15);
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 24px rgba(248, 150, 30, 0.6);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.yj-sidecard-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(248, 150, 30, 0.8);
  filter: brightness(1.03);
}

.yj-sidecard-note {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.98);
}

.yj-hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
}

.yj-scroll-mouse {
  width: 20px;
  height: 30px;
  border-radius: var(--yj-radius-pill);
  border: 2px solid rgba(248, 250, 252, 0.7);
  position: relative;
}

.yj-scroll-mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  border-radius: var(--yj-radius-pill);
  background-color: rgba(248, 250, 252, 0.9);
  animation: yj-scroll 1.8s ease-in-out infinite;
}

.yj-scroll-text {
  font-size: 11px;
  color: rgba(226, 232, 240, 0.9);
}

@keyframes yj-hero-fade-up {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes yj-scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (max-width: 992px) {
  .yj-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 16px 56px;
    gap: 28px;
  }

  .yj-hero-content {
    max-width: 100%;
  }

  .yj-hero-sidecard {
    width: 100%;
    max-width: 380px;
  }

  .yj-hero-scroll-indicator {
    bottom: 14px;
  }
}

@media (max-width: 768px) {
  .yj-hero-inner {
    padding: 64px 14px 52px;
  }

  .yj-hero {
    min-height: 82vh;
  }

  .yj-hero-title {
    font-size: clamp(26px, 7vw, 34px);
  }

  .yj-hero-subtitle {
    font-size: 14px;
  }

  .yj-hero-sidecard-inner {
    padding: 16px 16px 14px;
  }
}

@media (max-width: 480px) {
  .yj-hero-inner {
    padding: 56px 12px 48px;
    gap: 24px;
  }

  .yj-hero-label-row {
    margin-bottom: 12px;
  }

  .yj-hero-subtitle {
    margin-bottom: 16px;
  }

  .yj-hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .yj-btn {
    width: 100%;
    justify-content: center;
  }

  .yj-hero-usps {
    gap: 8px 14px;
  }

  .yj-hero-usp {
    font-size: 12px;
  }

  .yj-hero-sidecard {
    max-width: 100%;
  }

  .yj-scroll-text {
    font-size: 10px;
  }

  .yj-hero-scroll-indicator {
    display: none;
  }
}

/* ==========================================================
   PACKAGES SECTION
   ========================================================== */

#section-packages {
  background: linear-gradient(to bottom, #F9FAFB 0%, #EFF6FF 100%);
  padding: 60px 0 70px;
}

.yj-packages-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.yj-packages-header {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.yj-packages-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background-color: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.25);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1D4ED8;
  margin-bottom: 10px;
}

.yj-packages-title {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.yj-packages-title span {
  color: var(--yj-primary);
}

.yj-packages-intro {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #4B5563;
}

.yj-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.yj-package-card {
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: var(--yj-shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.yj-package-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.yj-package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.yj-package-tag {
  font-size: 11px;
  color: #4B5563;
  padding: 2px 8px;
  border-radius: 999px;
  background-color: rgba(148, 163, 184, 0.12);
}

.yj-package-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F97316, #FACC15);
  color: #111827;
}

.yj-package-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.yj-package-duration {
  font-size: 11px;
  color: #6B7280;
  margin-bottom: 8px;
}

.yj-package-short {
  font-size: 13px;
  color: #4B5563;
  line-height: 1.6;
  margin: 0 0 10px;
}

.yj-package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 12px;
  color: #4B5563;
  display: grid;
  gap: 5px;
}

.yj-package-features li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.yj-package-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38BDF8, #4ADE80);
  flex-shrink: 0;
}

.yj-package-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed rgba(203, 213, 225, 0.9);
}

.yj-package-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.yj-package-price-label {
  font-size: 11px;
  color: #6B7280;
}

.yj-package-price-main {
  display: flex;
  align-items: center;
  gap: 6px;
}

.yj-package-price-current {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.yj-package-price-deal {
  padding: 2px 8px;
  border-radius: 999px;
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
  font-size: 10px;
  color: #15803D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.yj-package-price-meta {
  font-size: 11px;
  color: #6B7280;
}

.yj-package-price-oldrow {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  align-items: center;
  font-size: 11px;
}

.yj-package-price-old {
  text-decoration: line-through;
  color: #9CA3AF;
}

.yj-package-price-save {
  color: #B45309;
  font-weight: 600;
}

.yj-package-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.yj-package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.yj-package-btn-primary {
  background: linear-gradient(135deg, #F97316, #FACC15);
  color: #111827;
  box-shadow: 0 6px 16px rgba(248, 150, 30, 0.45);
}

.yj-package-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(248, 150, 30, 0.6);
}

.yj-package-btn-secondary {
  background-color: #FFFFFF;
  color: #0067C8;
  border-color: rgba(59, 130, 246, 0.45);
}

.yj-package-btn-secondary:hover {
  background-color: #EFF6FF;
}

.yj-package-wa-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background-color: rgba(34, 197, 94, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #16A34A;
}

@media (max-width: 768px) {
  #section-packages {
    padding: 52px 0 60px;
  }

  .yj-packages-inner {
    padding: 0 12px;
  }

  .yj-packages-grid {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  #section-packages {
    padding: 46px 0 54px;
  }

  .yj-package-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .yj-package-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
}

/* ==========================================================
   BOOKING SECTION
   ========================================================== */

#section-booking {
  background-color: #FFFFFF;
  padding: 56px 0 70px;
}

.yj-booking-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.yj-booking-header {
  max-width: 640px;
  margin: 0 auto 26px;
  text-align: center;
}

.yj-booking-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background-color: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(13, 148, 136, 0.4);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0F766E;
  margin-bottom: 10px;
}

.yj-booking-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 700;
}

.yj-booking-title span {
  color: #0F766E;
}

.yj-booking-text {
  margin: 0;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
}

#form-booking {
  margin-top: 26px;
  background-color: #F9FAFB;
  border-radius: 18px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 18px 18px 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.yj-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 18px 22px;
}

.yj-booking-field-group {
  margin-bottom: 12px;
}

.yj-booking-label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.yj-booking-label span {
  color: #DC2626;
}

.yj-booking-input,
.yj-booking-select,
.yj-booking-textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #D1D5DB;
  font-size: 13px;
  font-family: inherit;
  color: #111827;
  background-color: #FFFFFF;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.yj-booking-input:focus,
.yj-booking-select:focus,
.yj-booking-textarea:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
}

.yj-booking-textarea {
  min-height: 72px;
  resize: vertical;
}

.yj-booking-inline {
  display: flex;
  gap: 10px;
}

.yj-booking-inline .yj-booking-field-group {
  flex: 1;
}

.yj-booking-note-inline {
  font-size: 11px;
  color: #6B7280;
  margin-top: 4px;
}

.yj-booking-summary {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(209, 213, 219, 0.9);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
}

.yj-booking-summary-main {
  font-size: 13px;
  color: #111827;
}

.yj-booking-summary-main strong {
  font-weight: 700;
}

.yj-booking-summary-price {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.yj-booking-summary-price span {
  color: var(--yj-primary-dark);
}

.yj-booking-summary-note {
  font-size: 11px;
  color: #6B7280;
  margin-top: 4px;
}

#btn-submit-booking {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #F97316, #FACC15);
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 24px rgba(248, 150, 30, 0.6);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

#btn-submit-booking:hover:not([disabled]) {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(248, 150, 30, 0.8);
  filter: brightness(1.03);
}

#btn-submit-booking[disabled] {
  opacity: 0.7;
  cursor: default;
  box-shadow: none;
}

#booking-status {
  margin-top: 10px;
  font-size: 12px;
  min-height: 16px;
}

#booking-status.yj-booking-success {
  color: #15803D;
}

#booking-status.yj-booking-error {
  color: #B91C1C;
}

@media (max-width: 900px) {
  .yj-booking-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  #section-booking {
    padding: 48px 0 60px;
  }

  .yj-booking-inner {
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .yj-booking-inline {
    flex-direction: column;
  }
}

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */

.yj-why {
  background-color: #FFFFFF;
  padding: 60px 0 40px;
}

.yj-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.yj-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
}

.yj-why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background-color: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.25);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1D4ED8;
  margin-bottom: 12px;
}

.yj-why-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22C55E, #FACC15);
}

.yj-why-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.yj-why-title span {
  color: #F97316;
}

.yj-why-text-main {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #4B5563;
}

.yj-why-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
}

.yj-why-stat {
  min-width: 120px;
}

.yj-stat-number {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.yj-stat-number span {
  color: #F97316;
}

.yj-stat-label {
  font-size: 12px;
  color: #6B7280;
}

.yj-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.yj-why-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 12px 12px 12px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.yj-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.yj-why-card:hover::before {
  opacity: 1;
}

.yj-why-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border: 1px solid rgba(129, 140, 248, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1D4ED8;
  font-size: 16px;
}

.yj-why-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.yj-why-card-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.yj-why-card-text {
  font-size: 12px;
  color: #4B5563;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .yj-why {
    padding: 52px 0 32px;
  }

  .yj-why-inner {
    padding: 0 16px;
  }

  .yj-why-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .yj-why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .yj-why-inner {
    padding: 0 12px;
  }

  .yj-why-stats {
    gap: 14px 22px;
  }
}

/* ==========================================================
   HOW IT WORKS
   ========================================================== */

.yj-how {
  background: linear-gradient(to bottom, #EFF6FF 0%, #FFFFFF 100%);
  padding: 40px 0 70px;
}

.yj-how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.yj-how-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 30px;
}

.yj-how-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background-color: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(13, 148, 136, 0.4);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0F766E;
  margin-bottom: 10px;
}

.yj-how-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 700;
}

.yj-how-title span {
  color: #0F766E;
}

.yj-how-text {
  margin: 0;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
}

.yj-how-steps-wrapper {
  position: relative;
  margin-top: 12px;
}

.yj-how-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}

.yj-how-line {
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #BFDBFE, #22C55E, #FACC15);
  opacity: 0.7;
  z-index: 0;
}

.yj-how-step {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 16px 14px 14px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  text-align: left;
  position: relative;
}

.yj-how-step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F97316, #FACC15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  box-shadow: 0 6px 14px rgba(248, 150, 30, 0.4);
  margin-bottom: 8px;
}

.yj-how-step-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111827;
}

.yj-how-step-text {
  font-size: 12px;
  color: #4B5563;
  line-height: 1.6;
}

.yj-how-step-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background-color: #EFF6FF;
  border: 1px solid rgba(129, 140, 248, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #1D4ED8;
}

@media (max-width: 992px) {
  .yj-how {
    padding: 36px 0 60px;
  }

  .yj-how-inner {
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .yj-how-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yj-how-line {
    display: none;
  }
}

@media (max-width: 480px) {
  .yj-how-inner {
    padding: 0 12px;
  }

  .yj-how-steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================
   FAQ SECTION
   ========================================================== */

.yj-faq {
  background-color: #FFFFFF;
  padding: 56px 0 60px;
}

.yj-faq-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.yj-faq-header {
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
}

.yj-faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background-color: rgba(55, 65, 81, 0.06);
  border: 1px solid rgba(75, 85, 99, 0.35);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #374151;
  margin-bottom: 10px;
}

.yj-faq-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 700;
}

.yj-faq-title span {
  color: var(--yj-primary);
}

.yj-faq-text {
  margin: 0;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
}

.yj-faq-list {
  margin-top: 20px;
}

.yj-faq-item {
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background-color: #F9FAFB;
  margin-bottom: 10px;
  overflow: hidden;
}

.yj-faq-question {
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.yj-faq-toggle-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid #CBD5F5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #4B5563;
  transition: transform 0.2s ease;
}

.yj-faq-answer {
  padding: 0 12px 10px;
  font-size: 13px;
  color: #4B5563;
  line-height: 1.6;
  display: none;
}

.yj-faq-item.open .yj-faq-answer {
  display: block;
}

.yj-faq-item.open .yj-faq-toggle-icon {
  transform: rotate(45deg);
}

/* ==========================================================
   FOOTER
   ========================================================== */

.yj-footer {
  background-color: #0F172A;
  color: #E5E7EB;
  padding: 24px 0 18px;
  font-size: 12px;
}

.yj-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.yj-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.yj-footer-links a {
  color: #E5E7EB;
  opacity: 0.9;
}

.yj-footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.yj-footer-copy {
  opacity: 0.8;
}

@media (max-width: 480px) {
  .yj-footer-inner {
    padding: 0 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}



/* Images inside package cards */
.yj-package-image {
  position: relative;
  margin: -16px -16px 12px;
  border-radius: 16px 16px 12px 12px;
  overflow: hidden;
  background-color: #E5E7EB;
  aspect-ratio: 16 / 9; /* Recommended ratio */
}

.yj-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Adjust margins on small screens if needed */
@media (max-width: 768px) {
  .yj-package-image {
    margin: -16px -16px 10px;
  }
}

@media (max-width: 480px) {
  .yj-package-image {
    margin: -14px -14px 10px;
  }
}/* === Refinement: larger logo on tablets & mobile === */
@media (max-width: 1024px) {
  .yj-topbar-logo img {
    height: 40px;   /* previously 32/30 */
  }
}

@media (max-width: 768px) {
  .yj-topbar-logo img {
    height: 38px;   /* clearer on mobile */
  }
}

@media (max-width: 480px) {
  .yj-topbar-logo img {
    height: 34px;   /* still fits but readable */
  }
}
/* === Visual polish / more premium look ================================== */

/* Softer page background (behind hero & sections) */
body {
  background: radial-gradient(circle at top, #E5E7EB 0, #F9FAFB 40%, #F3F4F6 100%);
}

/* Refine package cards */
.yj-package-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F9FAFB 40%, #FFFFFF 100%);
  border-color: rgba(148, 163, 184, 0.4);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.yj-package-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

/* Slightly stronger titles & spacing */
.yj-package-title {
  font-size: 16px;
  letter-spacing: 0.01em;
}

.yj-package-short {
  font-size: 13px;
  line-height: 1.7;
}

/* Booking card a bit more “card-like” */
#form-booking {
  background: linear-gradient(145deg, #FFFFFF 0%, #F9FAFB 40%, #FFFFFF 100%);
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
}

/* Inputs: slightly rounder + cleaner */
.yj-booking-input,
.yj-booking-select,
.yj-booking-textarea {
  border-radius: 12px;
  border-color: #D1D5DB;
  background-color: #FFFFFF;
}

/* Hero: tighten typography for a more premium feel */
.yj-hero-title {
  letter-spacing: 0.02em;
}

.yj-hero-subtitle {
  font-size: 15px;
  line-height: 1.7;
}

/* Footer: slightly calmer text */
.yj-footer {
  background: radial-gradient(circle at top, #020617 0, #020617 60%, #0B1120 100%);
}