:root {
  --green: #082216;
  --green-dark: #04110b;
  --gold: #d5a242;
  --gold-light: #ebd197;
  --cream: #faf6ee;
  --pink: #c68b59;
  --ink: #082216;
}

/* ===== HERO ===== */
.gt-hero {
  position: relative;
  background: linear-gradient(rgba(8, 34, 22, 0.7), rgba(4, 17, 11, 0.85)), url('../images/hot-deals/b1.png') center/cover no-repeat !important;
  color: var(--cream);
  padding: 110px 0 30px !important;
  overflow: hidden;
}

@media (max-width: 767px) {
  .gt-hero {
    padding: 40px 0 30px !important;
  }
}

.gt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(195, 146, 59, 0.18), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(198, 139, 89, 0.10), transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 780px;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

.hot-deals-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hot-deals-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}

.hot-deals-hero p {
  font-size: 1rem;
  max-width: 580px;
  color: #dfe7e1;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary-deal {
  background: linear-gradient(180deg, #fcd88a 0%, #d5a242 50%, #af7c20 100%);
  color: #082216;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  font-weight: 700;
  /* font-size: 0.85rem; */
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  padding: 12px 28px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
  text-decoration: none;
  border: none;
}

.btn-primary-deal:hover {
  background: linear-gradient(180deg, #fca5c0 0%, #ea90ad 50%, #c15e7f 100%);
  color: #082216;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.5), 0 15px 30px rgba(234, 144, 173, 0.25);
}

.btn-ghost-deal {
  border: 1.5px solid rgba(195, 146, 59, 0.45);
  color: #ebd197;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  background: transparent;
}

.btn-ghost-deal:hover {
  border-color: var(--primary-pink);
  color: var(--primary-pink);
  background: rgba(234, 144, 173, 0.08);
  transform: translateY(-2px);
}

.hero-strip {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(248, 245, 239, 0.18);
  padding-top: 18px;
}

@media (max-width: 768px) {
  .hero-strip {
    gap: 12px;
  }
}

.hero-strip>div {
  border-right: 1px solid rgba(248, 245, 239, 0.14);
  padding-right: 18px;
}

.hero-strip>div:last-child {
  border-right: none;
}

.hero-strip .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  font-weight: 700;
}

.hero-strip .label {
  font-size: 0.72rem;
  color: #c7d3cb;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ===== MARQUEE COUNTDOWN BAR ===== */
.deal-bar {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: .05em;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.deal-bar .marquee {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-marquee 30s linear infinite;
}

.deal-bar .marquee span {
  margin: 0 40px;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ===== SECTION HEADERS ===== */
.deals-section {
  padding: 90px 6%;
  background: var(--cream);
}

.deals-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 50px;
}

.deals-section-head .eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.deals-section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--green-dark);
  font-weight: 700;
  margin: 0;
}

.deals-section-head p {
  max-width: 420px;
  color: #5b665e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== FEATURED DEAL (signature element) ===== */
.featured {
  background: var(--green-dark);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(20, 50, 40, 0.35);
  border: 1px solid rgba(195, 146, 59, 0.45);
}

.featured-copy {
  padding: 40px 45px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

.featured-tag {
  background: linear-gradient(180deg, #f7dfa5 0%, #d4a754 50%, #b3832d 100%);
  color: #082216;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 22px;
  width: fit-content;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 4px 10px rgba(0, 0, 0, 0.25);
}

.featured-copy h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.featured-copy .desc {
  color: #c2cfc9;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 24px;
  /* max-width: 480px; */
}

.featured-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(248, 245, 239, 0.1);
  padding-bottom: 20px;
}

.featured-meta div {
  font-size: 0.82rem;
  color: #a9bdb2;
}

.featured-meta div b {
  display: block;
  color: var(--gold-light);
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.featured-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.featured-price .was {
  text-decoration: line-through;
  color: #8a9b91;
  font-size: 1rem;
}

.featured-price .now {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 700;
}

.featured-price .pp {
  font-size: 0.85rem;
  color: #a9bdb2;
}

.featured-img {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 440px;
}

.featured-img .icon-stack {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: -14px;
}

.dest-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.dest-icon:first-child {
  margin-left: 0;
}

.dest-icon:hover {
  transform: translateY(-5px);
  z-index: 10;
}

.dest-icon svg {
  width: 28px;
  height: 28px;
}

/* ===== DEAL GRID ===== */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}

.deal-card {
  background: #fff;
  border-radius: 22px;
  border: 3px solid #1E4D3B;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(30, 77, 59, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s ease;
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -16px rgba(8, 34, 22, 0.18);
  /* border-color: var(--gold); */
}

.deal-card-hero {
  position: relative;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 5px #1E4D3B;
}

.deal-card-hero svg.watermark {
  position: absolute;
  width: 280px;
  height: 280px;
  opacity: 0.25;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  pointer-events: none;
}

.deal-card-save-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green-dark);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.deal-card-save-tag svg {
  width: 12px;
  height: 12px;
  flex: none;
}

.deal-card-early-badge {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #B23662;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FBEAF0;
  text-align: center;
  flex: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .14);
}

.deal-card-early-badge svg {
  width: 15px;
  height: 15px;
  margin-bottom: 1px;
  stroke: currentColor;
}

.deal-card-early-badge .l1,
.deal-card-early-badge .l2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 9.5px;
  line-height: 1.1;
}

.deal-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.deal-card-body-top {
  background: #1E4D3B;
  padding: 16px 22px;
}

.deal-card-body-bottom {
  background: #fff;
  padding: 16px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

.deal-card-dest-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.deal-card-dest-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.deal-card-dest-icon svg {
  width: 24px;
  height: 24px;
}

.deal-card-dest-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--cream);
}

.deal-card-tour-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}

.deal-card-route {
  font-size: 12.5px;
  color: #7a7a70;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.deal-card-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.deal-card-divider::before,
.deal-card-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e6ddc7;
}

.deal-card-inclusions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.deal-card-inc {
  border: 1px dashed #d9cfb3;
  border-radius: 10px;
  padding: 8px 4px 7px;
  text-align: center;
}

.deal-card-inc svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  margin-bottom: 4px;
  stroke: currentColor;
}

.deal-card-inc span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #5b5b52;
}

.deal-card-price-row {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #eee6d3;
}

.deal-card-price-block .was {
  font-size: 12px;
  text-decoration: line-through;
  color: #a39c86;
}

.deal-card-price-block .now {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--green);
  line-height: 1.1;
}

.deal-card-price-block .per {
  font-size: 10.5px;
  color: #8a8a7d;
}

.deal-card-view-btn {
  background: transparent;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--green);
  padding: 11px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
  text-decoration: none;
}

.deal-card-view-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.deal-card-view-btn:hover,
.deal-card-view-btn:active,
.deal-card-view-btn:focus-visible {
  background: var(--green) !important;
  color: var(--cream) !important;
}

/* ===== WHY US STRIP ===== */
.why-deals {
  background: radial-gradient(circle at 50% 50%, #0b2a1c 0%, #04120b 100%);
  color: var(--cream);
  padding: 85px 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  border-top: 1px solid rgba(195, 146, 59, 0.25);
  border-bottom: 1px solid rgba(195, 146, 59, 0.25);
}

.why-item {
  text-align: left;
  background: rgba(12, 47, 31, 0.45);
  border: 1px solid rgba(195, 146, 59, 0.45);
  border-radius: 12px;
  padding: 35px 24px 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Royal Corner SVGs */
.royal-corner {
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.royal-corner.tl {
  top: 8px;
  left: 8px;
}

.royal-corner.tr {
  top: 8px;
  right: 8px;
}

.royal-corner.bl {
  bottom: 8px;
  left: 8px;
}

.royal-corner.br {
  bottom: 8px;
  right: 8px;
}

/* Royal Ornament */
.royal-ornament {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  background: rgba(15, 60, 40, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(216, 189, 133, 0.25);
}

.why-item:hover::before {
  opacity: 1;
}

.why-item:hover .royal-corner.tl {
  transform: translate(3px, 3px);
}

.why-item:hover .royal-corner.tr {
  transform: translate(-3px, 3px);
}

.why-item:hover .royal-corner.bl {
  transform: translate(3px, -3px);
}

.why-item:hover .royal-corner.br {
  transform: translate(-3px, -3px);
}

.why-item:hover .royal-ornament {
  opacity: 1;
  transform: translateX(-50%) scale(1.1);
}

.why-item .ico {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(252, 216, 138, 0.08) 0%, rgba(175, 124, 32, 0.2) 100%);
  border: 1px solid rgba(195, 146, 59, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.why-item:hover .ico {
  background: linear-gradient(135deg, #fcd88a 0%, #af7c20 100%);
  border-color: #fcd88a;
  transform: scale(1.05) rotate(4deg);
}

.why-item:hover .ico svg,
.why-item:hover .ico i {
  stroke: #082216 !important;
  color: #082216 !important;
}

.why-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.why-item p {
  font-size: 0.86rem;
  color: #cbd7cf;
  line-height: 1.55;
  margin-bottom: 0;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--cream);
  padding: 100px 6%;
  text-align: center;
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(30, 77, 59, 0.03), transparent 70%);
  pointer-events: none;
}

.cta-band-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-band p {
  color: #5b665e;
  margin-bottom: 35px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-dark-deal {
  background: linear-gradient(180deg, #fcd88a 0%, #d5a242 50%, #af7c20 100%);
  color: #082216;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
}

.btn-dark-deal:hover {
  background: linear-gradient(180deg, #ffeaaf 0%, #e2b353 50%, #c48f2c 100%);
  color: #082216;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.5), 0 15px 30px rgba(0, 0, 0, 0.4);
}

.btn-outline-dark-deal {
  border: 1.5px solid rgba(195, 146, 59, 0.45);
  color: #ebd197;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
  display: inline-block;
}

.btn-outline-dark-deal:hover {
  border-color: #f7dfa5;
  color: #faf6ee;
  background: rgba(195, 146, 59, 0.08);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .deal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .featured {
    grid-template-columns: 1fr;
  }

  .featured-img {
    min-height: 350px;
  }

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

@media (max-width: 991px) {
  .featured-copy {
    padding: 35px 30px;
  }
}

@media (max-width: 768px) {
  .hot-deals-hero {
    padding-top: 100px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .hero-strip>div {
    border-right: 1px solid rgba(248, 245, 239, 0.1) !important;
    border-bottom: 1px solid rgba(248, 245, 239, 0.1) !important;
    padding-bottom: 14px;
  }

  .hero-strip>div:nth-child(even) {
    border-right: none !important;
    padding-left: 20px;
  }

  .hero-strip>div:last-child,
  .hero-strip>div:nth-last-child(2) {
    border-bottom: none !important;
    padding-bottom: 0;
  }

  /* Make price/CTA wrapper stack vertically to prevent clipping */
  .featured-copy .d-flex.justify-content-between.align-items-center {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px !important;
  }

  .premium-submit-btn-container {
    width: 100% !important;
  }

  .premium-submit-btn {
    width: 100% !important;
    white-space: normal !important;
    padding: 14px 20px !important;
  }
}

@media (max-width: 640px) {
  .deal-grid {
    grid-template-columns: 1fr;
  }

  .why-deals {
    grid-template-columns: 1fr;
  }

  .hot-deals-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .featured-copy {
    padding: 30px 20px;
  }

  .featured-copy h3 {
    font-size: 1.6rem;
  }

  /* Grid layout for meta info to look clean on small screens */
  .featured-meta {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 25px !important;
  }

  .featured-meta div {
    margin-bottom: 0;
  }

  .deal-card-early-badge {
    width: 76px;
    height: 76px;
  }
}

/* ===== INLINE CSS OVERRIDES ===== */
.gt-hero-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  margin-bottom: 10px !important;
  color: var(--cream) !important;
}

.gt-hero-title em {
  font-style: italic !important;
  color: var(--gold-light) !important;
  font-weight: 500 !important;
}

.gt-hero-left p {
  font-size: 0.95rem !important;
  max-width: 580px !important;
  color: #dfe7e1 !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

.gt-hero-strip-wrapper {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 5rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .gt-hero-strip-wrapper {
    padding: 0 2rem;
  }
}

.gt-strip-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.gt-strip-item i,
.gt-strip-item svg {
  color: var(--gold) !important;
  stroke: var(--gold) !important;
  width: 16px !important;
  height: 16px !important;
  margin-top: -2px !important;
}

.dest-icon i,
.dest-icon svg {
  color: #D8BD85 !important;
  stroke: #D8BD85 !important;
  width: 24px !important;
  height: 24px !important;
}

.mini-icon i,
.mini-icon svg {
  color: #D8BD85 !important;
  stroke: #D8BD85 !important;
}

.ico i,
.ico svg {
  color: #D8BD85 !important;
  stroke: #D8BD85 !important;
  width: 22px !important;
  height: 22px !important;
}

#destinations.deals-section {
  padding-top: 0 !important;
}

.premium-submit-btn-icon-rotate {
  transform: rotate(-15deg);
  transform-origin: center;
  display: inline-flex;
  margin-left: 4px;
  vertical-align: middle;
}

.premium-submit-btn-icon-margin {
  margin-left: 6px;
}

/* --- PREMIUM CTA BUTTON (from tour-detail.css) --- */
.premium-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  /* width: 100%;
  max-width: 100%; */
  margin: 0 !important;
  background: linear-gradient(to bottom, #ffebc2 0%, #dda244 40%, #b27a23 90%, #835411 100%);
  border: 1.5px solid #fff5cc;
  border-radius: 10px;
  padding: 14px 32px;
  color: #01140b !important;
  font-family: var(--font-heading);
  font-size: 1rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 1.5px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  outline: none !important;
}

.premium-submit-btn::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid rgba(1, 20, 11, 0.25);
  border-radius: 7px;
  pointer-events: none;
  z-index: 2;
}

.premium-submit-btn:hover {
  transform: translateY(-2px);
  background: var(--primary-pink) !important;
  border-color: var(--primary-pink) !important;
  color: var(--dark-brown) !important;
  box-shadow: 0 10px 25px rgba(234, 144, 173, 0.4), inset 0 1.5px 0 rgba(255, 255, 255, 0.4) !important;
}

.premium-submit-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.premium-submit-btn-icon {
  fill: currentColor !important;
  color: currentColor !important;
  flex-shrink: 0;
  opacity: 0.95;
  transition: fill 0.3s ease, color 0.3s ease;
}