:root{
  --brand-bg: #FAF7F2; /* Ivory (60% background) */
  --brand-surface: #0E214B; /* Deep Navy (30% blocks) */
  --brand-primary: #0E214B; /* Deep Navy (headers, nav) */
  --brand-gold: #F5B301; /* Saffron (primary CTA) */
  --brand-accent: var(--brand-gold); /* Saffron (maintaining reference) */
  --text: #1B1F23; /* Charcoal (body text) */
  --muted: #636669; /* Muted Charcoal (derived from Charcoal) */
  --stroke: #2A3A5E; /* Muted Navy (derived from Deep Navy) */
  --success:#34d399;
  --warning:#f59e0b;
  --danger:#ef4444;
  --radius:1.25rem;
  --shadow:0 10px 30px rgba(0,0,0,.25);
  --shadow-sm:0 4px 12px rgba(0,0,0,.15);
  --shadow-lg:0 15px 50px rgba(0,0,0,.35);
  --w: clamp(280px, 92vw, 1200px);
  --focus-ring: 0 0 0 3px rgba(245, 179, 1, 0.5);
}

/* Base */
*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  font-family:'Plus Jakarta Sans', system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,"Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: var(--brand-bg);
  line-height:1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a{ color: #0F6E6E; /* Sea Teal */ text-decoration: none; }
img{ max-width:100%; display:block; border-radius: calc(var(--radius) / 2); object-fit: cover; }
.container{ width:var(--w); margin-inline:auto; padding: 0 1rem }

.btn{
  --_bg:var(--brand-gold); --_fg:#FFFFFF;
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.8rem 1.1rem; border-radius:999px;
  background:var(--_bg); color:var(--_fg);
  text-decoration:none; font-weight:700;
  border:1px solid transparent; box-shadow:var(--shadow);
  
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0,0,0,.3);
  background: #e0a000; /* Slightly darker gold on hover */
}
.btn:focus {
  outline: none;
  box-shadow: var(--shadow), var(--focus-ring);
}
.btn:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 2px;
}

/* Utilities */
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0 }
.muted{ color:var(--muted) }
.mt-1{ margin-top:1rem }
.ico{ width:28px; height:28px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round }
.card__media .ico{ width:48px; height:48px }

/* Skip link */
.skip{ position:absolute; inset-inline-start:1rem; top:-100%; background:#fff; color:#111; padding:.5rem .75rem; border-radius:.5rem }
.skip:focus{ top:1rem; box-shadow: var(--focus-ring); }
.skip:hover{ background: #f0f0f0; }

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(1.1) blur(10px);
  border-bottom:1px solid var(--stroke);
  background: var(--brand-surface); /* Solid Deep Navy */
  box-shadow: var(--shadow-sm);
}
.header__nav{ display:flex; align-items:center; justify-content:space-between; padding:.75rem 0 }
.logo{ display:flex; align-items:center; gap:.6rem; font-weight:800; letter-spacing:.3px }
.nav{ display:flex; align-items:center; gap:1rem }
.nav__list{ display:flex; gap:.75rem; list-style:none; margin:0; padding:0 }
.nav__link{
  padding:.6rem 1.2rem;
  border-radius:999px;
  border:1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  
  color: #FAF7F2; /* Ivory color to match card titles */
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.nav__link:focus {
  outline: none;
  box-shadow: var(--focus-ring);
}
.nav__link:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 2px;
}
.nav__link[aria-current="page"]{ background:var(--brand-surface); border-color:var(--stroke) }
.burger{ 
  display:none; 
  background:none; 
  border:1px solid var(--stroke); 
  border-radius:10px; 
  padding:.5rem;
  cursor: pointer;
  
}
.burger:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}
.burger:focus {
  outline: none;
  box-shadow: var(--focus-ring);
}
.burger:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 2px;
}
.burger svg{ width:22px; height:22px }
@media (max-width: 840px){
  .nav__list{ display:none }
  .burger{ display:inline-grid }
  .nav--open .nav__list{
    display:grid; gap:.5rem; position:absolute; inset-inline:0; top:60px;
    background:var(--brand-surface); border-top:1px solid var(--stroke); padding:1rem;
  }
}

/* Dropdown submenu styles */
.nav__item--dropdown {
  position: relative;
}

.nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--brand-surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  z-index: 100;
}

.nav__item--dropdown:hover .nav__submenu {
  display: block;
}

.nav__submenu .nav__link {
  display: block;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--stroke);
}

.nav__submenu .nav__link:last-child {
  border-bottom: none;
}

.nav__submenu .nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Package options grid 2 */
.package-options-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Package options grid 4 */
.package-options-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Package details grid 2 */
.package-details-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

/* Hero */
.hero{ padding: clamp(2rem, 4vw + 1rem, 5rem) 0 2rem; position:relative; }
.hero__grid{ display:grid; grid-template-columns:1fr; gap:2rem; }
.hero__content{ display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:start; }
.hero__widget{ display:flex; justify-content:center; align-items:flex-start; padding-top:1rem; }
.hero__title{ font-size:clamp(1.6rem, 2.2vw + 1rem, 3rem); line-height:1.1; margin:0 0 1rem; }
.hero__lead{ color:var(--muted); font-size:1.05rem; max-width:60ch }
.hero__bundles{ margin-top: 1rem; }
.pill{ display:inline-flex; align-items:center; gap:.5rem; border:1px solid var(--stroke); border-radius:999px; padding:.35rem .6rem; color:var(--muted); font-size:.9rem }
.meta{ display:flex; gap:.6rem; flex-wrap:wrap; margin:.75rem 0 0 }
@media (max-width: 900px){
  .hero__grid{ grid-template-columns:1fr }
  .hero__content{ grid-template-columns:1fr; gap:1.5rem; }
  .hero__widget{ justify-content:flex-start; padding-top:0; }
}

/* Sections */
.section{ padding: clamp(1rem, 2vw + 0.5rem, 2rem) 0 }
.section__head{ display:flex; align-items:end; justify-content:space-between; gap:1rem; margin-bottom:1.2rem }
.section__title{ font-size:clamp(1.4rem, 1.4vw + 1rem, 2rem); margin:0 }
.section__desc{ color:var(--muted); max-width:70ch }

/* Cards grid */
.grid{ display:grid; gap:1rem }
.grid--autofit{ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) }
.card{ background:var(--brand-surface); border:1px solid var(--stroke); border-radius:var(--radius); overflow:hidden; display:grid;  box-shadow: var(--shadow-sm); position: relative; }
.card:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: var(--shadow);
  border-color: var(--brand-gold);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(245, 179, 1, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.card:hover::before {
  opacity: 1;
}

/* Static hero bundle cards */
.hero__bundles .card {
  transition: none;
}

.hero__bundles .card:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--stroke);
}

.hero__bundles .card::before {
  display: none;
}
.card__media{ aspect-ratio: 16 / 9; background:linear-gradient(120deg, #0E214B, #0B1A3D); display:grid; place-items:center; overflow: hidden; }
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__body{ padding:1rem; display:grid; gap:.5rem }
.card__title{ margin:0; font-size:1.05rem; color: #FAF7F2; /* Ivory for better contrast on dark background */ }
.card__body .muted{ color: #BFC9D6; /* Lighter muted text for better readability on dark cards */ }
.grid--3cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}


/* Journey Steps (How it works) */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
  position: relative;
}

.journey-steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-primary));
  z-index: 1;
}

.journey-step {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--brand-surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  
  z-index: 2;
}

.journey-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.journey-step__number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--brand-gold);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.journey-step__icon {
  width: 70px;
  height: 70px;
  background: rgba(14, 33, 75, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--brand-gold);
  
}

.journey-step:hover .journey-step__icon {
  
  border-color: var(--brand-primary);
  background: rgba(14, 33, 75, 0.4);
}

.journey-step__icon .ico {
  width: 32px;
  height: 32px;
  stroke: var(--brand-gold);
}

.journey-step__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: #FAF7F2;
}

.journey-step__desc {
  margin: 0;
  color: #BFC9D6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .journey-steps::before {
    display: none;
  }
  
  .journey-steps {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer{ border-top:1px solid var(--stroke); color:#FAF7F2; padding:2rem 0; background: var(--brand-surface); }
.footer .muted { color: #BFC9D6; }
.footer__content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.footer__logo img { max-width: 120px; }
.footer__description { max-width: 600px; margin: 0 auto; }
.footer__links { display: flex; gap: 1.5rem; }
.footer a{ color:inherit; text-decoration:none }
.footer a:hover{ text-decoration:underline; transform: translateX(2px); transition: transform 0.2s ease; }
.footer a:focus {
  outline: none;
  box-shadow: var(--focus-ring);
}
.footer a:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 2px;
}
@media (max-width: 900px){
  .footer__content { padding: 0 1rem; }
  .footer__links { flex-direction: column; gap: 0.75rem; }
}

.btn--secondary {
  --_bg: transparent;
  --_fg: var(--brand-gold);
  border-color: var(--brand-gold);
  box-shadow: none;
}

.btn--secondary:hover {
  --_bg: var(--brand-gold);
  --_fg: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--brand-surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-section .section__title {
  margin-bottom: 1rem;
  color: #FAF7F2;
}

.cta-section .section__desc {
  margin-bottom: 2rem;
  color: #BFC9D6;
}

@media (max-width: 600px) {
  .cta-section {
    padding: 2rem 1rem;
  }
}


.crypto-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #FAF7F2;
  font-weight: 600;
}

.crypto-icon {
  background: var(--brand-gold);
  color: var(--brand-primary);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

/* Destinations Card Styles */
.destinations-card {
  background: var(--brand-surface);
  border: 2px solid var(--stroke);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.destinations-card .section__title {
  margin-bottom: 1rem;
  color: #FAF7F2;
}

.destinations-card .section__desc {
  margin-bottom: 2rem;
}

.destination-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.destination-images-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.destination-images-2 {
  grid-template-columns: repeat(2, 1fr);
}

.destination-image {
  height: auto;
  text-align: center;
}

.destination-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.destination-image h4 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.destination-image h4 {
  margin: 0;
  color: #FAF7F2;
  font-size: 1.1rem;
  font-weight: 600;
}

.destinations-text {
  color: #BFC9D6;
  font-size: 1rem;
  margin: 0;
  font-style: italic;
}


/* Package Options Grid - 5 Columns */
.package-options-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.package-option-card {
  background: var(--brand-surface);
  border: 2px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.package-option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.package-option-card.premium-card {
  border-color: rgba(245, 179, 1, 0.6);
}

.package-header {
  text-align: center;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--brand-gold);
  display: flex;
  flex-direction: column;
}

.package-header h3 {
  margin: 0;
  color: var(--brand-gold);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding-bottom: 1rem;
}

.package-header .package-price {
  color: #FAF7F2;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  padding-top: 1rem;
}

.package-header .package-price span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 0.25rem;
}

.package-header .crypto-badge {
  padding-top: 1rem;
}



/* Responsive Updates for New Layout */
@media (max-width: 1200px) {
  .package-options-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  
  .destination-images {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .destinations-card {
    padding: 1.5rem;
  }
  
  .destination-image img {
    height: 180px;
  }

  .destination-image h4 {
    font-size: 0.9rem;
  }
  
  
  .package-options-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .package-header h3 {
    font-size: 1.2rem;
  }
  
  .package-header .package-price {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  
  .destinations-card {
    padding: 1rem;
    margin-bottom: 2rem;
  }
  
  .destination-images {
    gap: 1rem;
  }
  
  .destination-image img {
    height: 150px;
  }

  .destination-image h4 {
    font-size: 0.8rem;
  }
  
  .destination-image h4 {
    font-size: 1rem;
  }
  
  .destinations-text {
    font-size: 0.9rem;
  }
  
  .package-option-card {
    padding: 1rem;
  }
  
  .package-options-grid-5 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .package-options-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .package-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }
  
  .package-header h3 {
    font-size: 1.1rem;
  }
  
  .package-header .package-price {
    font-size: 1.2rem;
  }
}

/* Package Details Grid Styles */
.package-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.package-details-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.destination-details-card {
  background: var(--brand-surface);
  border: 2px solid var(--stroke);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.destination-details-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--brand-gold);
}

.destination-details-title {
  margin: 0 0 2rem;
  color: var(--brand-gold);
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 1rem;
}

.detail-category {
  margin-bottom: 2rem;
}

.detail-category:last-child {
  margin-bottom: 0;
}

.detail-category h5 {
  margin: 0 0 1rem;
  color: #FAF7F2;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 0.5rem;
}

.detail-items {
  display: grid;
  gap: 0.75rem;
}

.detail-item {
  padding: 1rem;
  border-radius: calc(var(--radius) / 2);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: #BFC9D6;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: all 0.3s ease;
  position: relative;
}

.detail-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--brand-gold);
}

.detail-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 0;
  transition: all 0.3s ease;
}

.detail-item.elite::before {
  border-color: transparent var(--brand-gold) transparent transparent;
}

.detail-item.premium::before {
  border-color: transparent rgba(245, 179, 1, 0.7) transparent transparent;
}

.detail-item.standard::before {
  border-color: transparent var(--stroke) transparent transparent;
}

.detail-item.all-packs::before {
  border-color: transparent #34d399 transparent transparent;
}

.detail-item.elite {
  border-color: var(--brand-gold);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(245, 179, 1, 0.05));
  color: #FAF7F2;
}

.detail-item.premium {
  border-color: rgba(245, 179, 1, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(245, 179, 1, 0.03));
  color: #FAF7F2;
}

.detail-item.standard {
  border-color: var(--stroke);
  color: #BFC9D6;
}

.detail-item.all-packs {
  border-color: #34d399;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(52, 211, 153, 0.05));
  color: #FAF7F2;
}

.detail-sub {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 0.25rem;
  line-height: 1.3;
}

.detail-item.elite .detail-sub {
  color: rgba(245, 179, 1, 0.8);
}

.detail-item.premium .detail-sub {
  color: rgba(245, 179, 1, 0.7);
}

.detail-item.all-packs .detail-sub {
  color: rgba(52, 211, 153, 0.8);
}

/* Responsive Updates for Package Details Grid */
@media (max-width: 1200px) {
  .package-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .destination-details-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .package-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .destination-details-card {
    padding: 1.5rem;
  }
  
  .destination-details-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }
  
  .destination-details-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .detail-category {
    margin-bottom: 1.5rem;
  }
  
  .detail-category h5 {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .destination-details-card {
    padding: 1rem;
  }

  .destination-details-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .detail-category {
    margin-bottom: 1rem;
  }

  .detail-category h5 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .detail-item {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .detail-sub {
    font-size: 0.8rem;
  }

  .detail-item::before {
    border-width: 0 15px 15px 0;
  }

  .package-options-grid-2 {
    grid-template-columns: 1fr;
  }

  .package-options-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-details-grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
}

/* Special Deals Section - Light Theme */
.deals-section {
  background: var(--brand-bg); /* #FAF7F2 - Ivory */
  border: 2px solid var(--brand-gold); /* #F5B301 - Gold border */
  border-radius: var(--radius);
  padding: 3rem 2rem;
  margin: 2rem auto; /* Center the section horizontally */
  box-shadow: var(--shadow);
  text-align: center;
  max-width: var(--w); /* Use the same max-width as container */
}

.deals-title {
  color: var(--brand-gold); /* #F5B301 - Gold title */
  font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
  font-weight: 800;
  margin: 0 0 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.deals-image {
  text-align: center;
  transition: transform 0.3s ease;
}

.deals-image:hover {
  transform: translateY(-5px);
}

.deals-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border: 2px solid var(--brand-gold); /* #F5B301 - Gold borders */
  border-radius: calc(var(--radius) / 2);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.deals-image:hover img {
  border-color: var(--brand-primary); /* #0E214B - Navy on hover */
  box-shadow: var(--shadow);
}

.deals-image h4 {
  margin: 0.75rem 0 0;
  color: var(--text); /* #1B1F23 - Charcoal text */
  font-size: 1rem;
  font-weight: 600;
}

.deals-footer-text {
  color: var(--text); /* #1B1F23 - Charcoal */
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  margin: 2rem 0 0;
  text-transform: lowercase;
}

/* Responsive Design for Deals Section */
@media (max-width: 900px) {
  .deals-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  
  .deals-section {
    padding: 2rem 1.5rem;
  }
  
  .deals-image img {
    height: 100px;
  }
}

@media (max-width: 600px) {
  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .deals-section {
    padding: 1.5rem 1rem;
  }
  
  .deals-image img {
    height: 80px;
  }
  
  .deals-image h4 {
    font-size: 0.9rem;
  }
  
  .deals-footer-text {
    font-size: 1rem;
  }
}

/* Deals Page Specific Styles */
.deals-general-info {
  margin: 2rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 1.5rem 0;
}

.info-card {
  background: rgba(14, 33, 75, 0.05);
  border: 1px solid var(--brand-gold);
  border-radius: calc(var(--radius) / 2);
  padding: 1.5rem;
  text-align: center;
}

.info-card h3 {
  color: var(--brand-gold);
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.info-card p {
  color: var(--text);
  margin: 0;
  font-size: 1rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.destination-card {
  background: var(--brand-surface);
  border: 2px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--brand-gold);
}

.destination-header {
  position: relative;
  text-align: center;
}

.destination-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.destination-header h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(14, 33, 75, 0.9));
  color: #FAF7F2;
  margin: 0;
  padding: 2rem 1rem 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.destination-content {
  padding: 1.5rem;
}

.destination-content h4 {
  color: var(--brand-gold);
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.experience-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.experience-list li {
  color: #BFC9D6;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--stroke);
  font-size: 0.95rem;
  line-height: 1.4;
}

.experience-list li:last-child {
  border-bottom: none;
}

.experience-list li::before {
  content: "✓";
  color: var(--brand-gold);
  font-weight: bold;
  margin-right: 0.5rem;
}

.pricing {
  background: rgba(245, 179, 1, 0.1);
  border: 1px solid var(--brand-gold);
  border-radius: calc(var(--radius) / 2);
  padding: 1rem;
  text-align: center;
}

.main-price {
  color: var(--brand-gold);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.extra-night {
  color: #FAF7F2;
  font-size: 0.9rem;
  font-style: italic;
}

/* Responsive Design for Deals Page */
@media (max-width: 1200px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .destination-header img {
    height: 150px;
  }
  
  .destination-header h3 {
    font-size: 1.1rem;
    padding: 1.5rem 1rem 0.75rem;
  }
  
  .destination-content {
    padding: 1rem;
  }
  
  .main-price {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .info-card {
    padding: 1rem;
  }
  
  .info-card h3 {
    font-size: 1.1rem;
  }
  
  .info-card p {
    font-size: 0.9rem;
  }
  
  .destination-header img {
    height: 120px;
  }
  
  .destination-header h3 {
    font-size: 1rem;
  }
  
  .destination-content {
    padding: 0.75rem;
  }
  
  .experience-list li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }
  
  .main-price {
    font-size: 1.1rem;
  }
  
  .extra-night {
    font-size: 0.8rem;
  }
}

/* Larger text class */
.larger-text {
  font-size: 1.5rem; /* Increased font size for better visibility */
}

/* Responsive Design for Deals Page */
@media (max-width: 1200px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}