/*
 * The Holidave — Global CSS (nav, footer, shared)
 * All classes prefixed .thd- or .lp-
 */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.lp *:not(i):not(.fa):not(.fas):not(.far):not(.fab) {
  font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased;
}
.lp i, .lp .fas, .lp .far, .lp .fab {
  font-family: "Font Awesome 6 Free","Font Awesome 6 Brands","FontAwesome" !important;
  font-style: normal; font-variant: normal; text-rendering: auto;
}

.lp {
  --o: #FB5B32; --o-lt: #FFF0EB; --o-dk: #D94520;
  --t: #0a5b66; --t-lt: #E3F2F4; --t-dk: #074650;
  --blk: #111111; --gd: #444; --g: #767676; --g-lt: #F4F4F2;
  --bd: #E2E2DE; --w: #fff;
  --gye: #FBBC05; --gbl: #4285F4; --ggr: #34A853; --gre: #EA4335;
  --wa: #25D366;
  --r: 8px; --rl: 12px; --rxl: 20px;
  --sh: 0 1px 8px rgba(0,0,0,.07);
  --sh-md: 0 4px 20px rgba(0,0,0,.10);
  --sh-lg: 0 10px 40px rgba(0,0,0,.14);
  font-size: 16px; line-height: 1.55; color: var(--blk); background: #F2F2F0;
}

/* NAV */
.lp-nav {
  background: var(--w); border-bottom: 1px solid var(--bd);
  position: sticky; top: 0; z-index: 400;
}
.lp-nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 2rem; gap: 1.5rem;
}
.lp-logo {
  font-size: 22px; font-weight: 700; color: var(--t);
  text-decoration: none; display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.lp-logo span { color: var(--o); }
.lp-nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.lp-nav-links a { font-size: 14px; color: var(--g); text-decoration: none; font-weight: 500; transition: color .15s; white-space: nowrap; cursor: pointer; }
.lp-nav-links a:hover { color: var(--t); }
.lp-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lp-nav-phone { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--t); text-decoration: none; white-space: nowrap; }
.lp-nav-phone:hover { color: var(--o); }
.lp-btn-nav {
  background: var(--o); color: #fff; border: none; border-radius: var(--r);
  padding: 9px 20px; font-size: 13px; font-weight: 700; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: background .15s; white-space: nowrap;
}
.lp-btn-nav:hover { background: var(--o-dk); }
.lp-hamburger {
  display: none; background: none; border: none;
  font-size: 22px; color: var(--blk); cursor: pointer; padding: 4px;
}
.lp-mob-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--w); border-bottom: 1px solid var(--bd); padding: 0;
}
.lp-mob-menu.open { display: flex; }
.lp-mob-menu a {
  font-size: 15px; color: var(--blk); text-decoration: none; font-weight: 500;
  padding: 14px 1.5rem; border-bottom: 1px solid var(--bd); display: flex; align-items: center; gap: 8px;
  transition: background .15s; cursor: pointer;
}
.lp-mob-menu a:hover { background: var(--g-lt); }
.lp-mob-menu a i { font-size: 15px; color: var(--t); width: 20px; }

/* HERO */
.lp-hero {
  min-height: 620px; position: relative;
  display: flex; align-items: center; overflow: hidden;
  background: var(--t-dk);
}
/* Hero image slider */
.lp-hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.lp-hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.lp-hero-slide.active { opacity: 1; }
.lp-hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,70,80,.88) 0%, rgba(7,70,80,.55) 50%, rgba(7,70,80,.3) 100%);
}
.lp-hs-1 { background: linear-gradient(135deg,#0f3a42,#1a8a9a 40%,#3ecf99); }
.lp-hs-2 { background: linear-gradient(135deg,#1a0a2e,#4e3880 40%,#9b59b6); }
.lp-hs-3 { background: linear-gradient(135deg,#1a2a0a,#3d8b37 40%,#7ec850); }
.lp-hs-4 { background: linear-gradient(135deg,#2a1a0a,#c87941 40%,#f4c842); }
.lp-hs-1-icon { position: absolute; right: 10%; top: 50%; transform: translateY(-50%); font-size: clamp(80px,12vw,160px); opacity:.18; z-index:1; }
.lp-hs-2-icon { position: absolute; right: 8%; top: 45%; transform: translateY(-50%); font-size: clamp(80px,12vw,160px); opacity:.15; z-index:1; }
.lp-hs-3-icon { position: absolute; right: 9%; top: 50%; transform: translateY(-50%); font-size: clamp(80px,12vw,160px); opacity:.15; z-index:1; }
.lp-hs-4-icon { position: absolute; right: 9%; top: 48%; transform: translateY(-50%); font-size: clamp(80px,12vw,160px); opacity:.16; z-index:1; }
/* slider dots */
.lp-slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.lp-sd {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: all .3s; padding: 0;
}
.lp-sd.active { background: #fff; width: 24px; border-radius: 4px; }
.lp-hero-content {
  position: relative; z-index: 4;
  max-width: 1320px; margin: 0 auto; padding: 5rem 2rem;
  width: 100%;
}
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.14); color: rgba(255,255,255,.9);
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 99px; margin-bottom: 1.25rem;
}
.lp-hero h1 {
  font-size: clamp(30px, 5vw, 56px); font-weight: 700;
  color: #fff; line-height: 1.12; margin-bottom: 1rem; max-width: 580px;
}
.lp-hero h1 em { font-style: italic; color: #ffd89b; }
.lp-hero-sub {
  font-size: 16px; color: rgba(255,255,255,.78);
  max-width: 500px; line-height: 1.75; margin-bottom: 2.25rem;
}
.lp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.lp-btn-hero-primary {
  background: var(--o); color: #fff; border: none; border-radius: var(--r);
  padding: 14px 28px; font-size: 15px; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s; text-decoration: none; white-space: nowrap;
}
.lp-btn-hero-primary:hover { background: var(--o-dk); }
.lp-btn-hero-ghost {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); border-radius: var(--r);
  padding: 14px 28px; font-size: 15px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .15s; text-decoration: none; white-space: nowrap;
}
.lp-btn-hero-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.lp-hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.lp-ht { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.78); }
.lp-ht i { font-size: 13px; color: rgba(255,255,255,.55); }

/* STATS BAR — white bg */
.lp-stats-bar { background: var(--w); border-bottom: 1px solid var(--bd); border-top: 1px solid var(--bd); }
.lp-stats-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.lp-stat {
  display: flex; align-items: center; gap: 12px;
  padding: 1.25rem 2rem; border-right: 1px solid var(--bd);
}
.lp-stat:last-child { border-right: none; }
.lp-stat-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.lp-stat-num { font-size: 22px; font-weight: 700; color: var(--o); line-height: 1; }
.lp-stat-lbl { font-size: 11px; color: var(--g); margin-top: 3px; text-transform: uppercase; letter-spacing: .04em; }

/* COMMON SECTION */
.lp-section { max-width: 1320px; margin: 0 auto; padding: 5rem 2rem; }
.lp-sec-head { text-align: center; margin-bottom: 3rem; }
.lp-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--o); margin-bottom: 8px; }
.lp-sec-head h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 700; color: var(--blk); margin-bottom: 10px; }
.lp-sec-head p { font-size: 15px; color: var(--g); max-width: 520px; margin: 0 auto; line-height: 1.75; }

/* DESTINATIONS — 4 cards equal grid */
.lp-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.lp-dest-card {
  border-radius: var(--rl); overflow: hidden; cursor: pointer;
  text-decoration: none; display: block; position: relative;
  transition: transform .22s, box-shadow .22s;
  box-shadow: var(--sh-md);
}
.lp-dest-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.lp-dc-img {
  width: 100%; height: 240px;
  display: flex; align-items: center; justify-content: center; font-size: 64px;
  position: relative; overflow: hidden;
}
.lp-dc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,70,80,.85) 0%, rgba(7,70,80,.2) 60%, transparent 100%);
}
.lp-dc-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; }
.lp-dc-flag { font-size: 24px; display: block; margin-bottom: 5px; filter: drop-shadow(0 1px 4px rgba(0,0,0,.3)); }
.lp-dc-name { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.2; }
.lp-dc-meta { font-size: 12px; color: rgba(255,255,255,.78); margin-top: 3px; display: flex; align-items: center; gap: 6px; }
.lp-dc-meta i { font-size: 11px; }
.lp-dc-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--o); color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 3px 10px; border-radius: 99px;
}
.dc-bali     { background: linear-gradient(145deg,#3ecf99,#0a5b66); }
.dc-paris    { background: linear-gradient(145deg,#c5dff8,#4e8ec4); }
.dc-japan    { background: linear-gradient(145deg,#fce4ec,#BC002D); }
.dc-maldives { background: linear-gradient(145deg,#a8e8f0,#006994); }

/* HOW IT WORKS */
.lp-how-bg { background: var(--g-lt); }
.lp-how-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  position: relative;
}
.lp-how-grid::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 2px; background: repeating-linear-gradient(90deg, var(--t-lt) 0, var(--t-lt) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.lp-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.lp-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; margin-bottom: 1.25rem;
  border: 3px solid var(--w); flex-shrink: 0;
}
.lp-step:nth-child(1) .lp-step-num { background: var(--o); color: #fff; box-shadow: 0 0 0 6px var(--o-lt); }
.lp-step:nth-child(2) .lp-step-num { background: var(--t); color: #fff; box-shadow: 0 0 0 6px var(--t-lt); }
.lp-step:nth-child(3) .lp-step-num { background: #6a1b9a; color: #fff; box-shadow: 0 0 0 6px #f3e5f5; }
.lp-step:nth-child(4) .lp-step-num { background: #2e7d32; color: #fff; box-shadow: 0 0 0 6px #e8f5e9; }
.lp-step h4 { font-size: 16px; font-weight: 700; color: var(--blk); margin-bottom: 8px; }
.lp-step p { font-size: 13px; color: var(--g); line-height: 1.65; }

/* PACKAGES */
.lp-pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.lp-pkg-card {
  background: var(--w); border: 1px solid var(--bd); border-radius: var(--rl);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  box-shadow: var(--sh); text-decoration: none; color: var(--blk); cursor: pointer;
}
.lp-pkg-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: rgba(10,91,102,.3); }
.lp-pkg-card.featured { border: 2px solid var(--t); }
.lp-pkg-img {
  height: 190px; display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
}
.pkg-bali     { background: linear-gradient(145deg,#3ecf99,#0a5b66); }
.pkg-paris    { background: linear-gradient(145deg,#c5dff8,#4e8ec4); }
.pkg-maldives { background: linear-gradient(145deg,#a8e8f0,#006994); }
.pkg-tokyo    { background: linear-gradient(145deg,#fce4ec,#BC002D); }
.pkg-dubai    { background: linear-gradient(145deg,#fff3cd,#EF9F27); }
.pkg-greece   { background: linear-gradient(145deg,#e8d5f0,#2e4aa3); }
.lp-pkg-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 3px 10px; border-radius: 99px;
}
.pb-pop { background: var(--t); color: #fff; }
.pb-hot { background: var(--o); color: #fff; }
.pb-new { background: #1967d2; color: #fff; }
.lp-pkg-wish {
  position: absolute; top: 10px; right: 10px; width: 30px; height: 30px;
  border-radius: 50%; background: rgba(255,255,255,.85); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--g); transition: all .15s;
}
.lp-pkg-wish:hover { color: #e02020; background: #fff; }
.lp-pkg-rating {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.52); color: #fff; font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 99px; display: flex; align-items: center; gap: 4px;
}
.lp-pkg-rating i { color: var(--gye); font-size: 10px; }
.lp-pkg-body { padding: 14px 15px 16px; display: flex; flex-direction: column; flex: 1; }
.lp-pkg-dest { font-size: 11px; color: var(--g); display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }
.lp-pkg-dest i { font-size: 11px; color: var(--o); }
.lp-pkg-title { font-size: 15px; font-weight: 700; color: var(--blk); margin-bottom: 8px; line-height: 1.3; }
.lp-pkg-meta { display: flex; flex-wrap: wrap; gap: 9px; font-size: 12px; color: var(--g); margin-bottom: 10px; }
.lp-pkg-meta span { display: flex; align-items: center; gap: 4px; }
.lp-pkg-meta i { font-size: 12px; color: var(--t); }
.lp-pkg-incs { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.lp-inc { font-size: 10px; color: var(--t-dk); background: var(--t-lt); padding: 2px 8px; border-radius: 99px; font-weight: 600; }
.lp-pkg-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: 10px; border-top: 1px solid var(--bd); margin-top: auto;
}
.lp-old-price { font-size: 11px; color: var(--g); text-decoration: line-through; }
.lp-from-lbl { font-size: 10px; color: var(--g); margin-bottom: 1px; }
.lp-price { font-size: 22px; font-weight: 700; color: var(--t-dk); line-height: 1; }
.lp-per { font-size: 11px; color: var(--g); margin-left: 2px; }
.lp-btn-book {
  background: var(--o); color: #fff; border: none; border-radius: var(--r);
  padding: 8px 16px; font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background .15s; white-space: nowrap;
}
.lp-btn-book:hover { background: var(--o-dk); }

/* VISA SERVICES */
.lp-visa-bg {
  background: linear-gradient(135deg, var(--t-dk) 0%, var(--t) 60%, #1a8a9a 100%);
}
.lp-visa-inner {
  max-width: 1320px; margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.lp-visa-left h2 { font-size: clamp(24px,3.5vw,38px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.lp-visa-left h2 em { font-style: italic; color: #ffd89b; }
.lp-visa-left p { font-size: 15px; color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 2rem; }
.lp-visa-countries { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.75rem; }
.lp-vc { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.9); font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 99px; }
.lp-vc span { font-size: 16px; }
.lp-visa-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-btn-wh { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--t-dk); border: none; border-radius: var(--r); padding: 12px 24px; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; transition: all .15s; }
.lp-btn-wh:hover { background: var(--t-lt); }
.lp-btn-ghost { display: inline-flex; align-items: center; gap: 7px; background: transparent; color: rgba(255,255,255,.88); border: 1.5px solid rgba(255,255,255,.4); border-radius: var(--r); padding: 12px 20px; font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; transition: all .15s; }
.lp-btn-ghost:hover { border-color: rgba(255,255,255,.8); color: #fff; background: rgba(255,255,255,.08); }
.lp-visa-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lp-vc-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--rl); padding: 1.25rem; transition: background .2s; }
.lp-vc-card:hover { background: rgba(255,255,255,.16); }
.lp-vc-icon { font-size: 28px; margin-bottom: 10px; }
.lp-vc-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.lp-vc-card p { font-size: 12px; color: rgba(255,255,255,.68); line-height: 1.6; }
.lp-vc-days { margin-top: 8px; font-size: 11px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 4px; }
.lp-vc-days i { font-size: 11px; }

/* WHY US */
.lp-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.lp-why-card {
  background: var(--w); border: 1px solid var(--bd); border-radius: var(--rl);
  padding: 1.75rem 1.5rem; text-align: center;
  box-shadow: var(--sh); transition: transform .2s, box-shadow .2s;
}
.lp-why-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.lp-why-icon { width: 58px; height: 58px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 1rem; }
.lp-why-card h4 { font-size: 15px; font-weight: 700; color: var(--blk); margin-bottom: 8px; }
.lp-why-card p { font-size: 13px; color: var(--g); line-height: 1.65; }

/* REVIEWS */
.lp-g-bar {
  background: var(--w); border: 1.5px solid var(--bd); border-radius: var(--rl);
  padding: 1.25rem 1.75rem; display: flex; align-items: center; gap: 1.75rem;
  margin-bottom: 2rem; box-shadow: var(--sh); flex-wrap: wrap;
}
.lp-g-logo { display: flex; align-items: center; gap: 10px; }
.lp-g-score { font-size: 44px; font-weight: 700; color: var(--blk); line-height: 1; }
.lp-g-stars { color: var(--gye); font-size: 18px; margin-bottom: 4px; }
.lp-g-count { font-size: 12px; color: var(--g); }
.lp-g-powered { font-size: 11px; color: var(--g); display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.lp-g-powered svg { width: 12px; height: 12px; }
.lp-g-trust { display: flex; flex-direction: column; gap: 6px; margin-left: auto; }
.lp-g-trust span { font-size: 13px; color: var(--gd); display: flex; align-items: center; gap: 6px; }
.lp-g-trust i { color: var(--t); font-size: 13px; }
.lp-rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.lp-rev-card { background: var(--w); border: 1px solid var(--bd); border-radius: var(--rl); padding: 1.5rem; box-shadow: var(--sh); transition: box-shadow .2s; }
.lp-rev-card:hover { box-shadow: var(--sh-md); }
.lp-rv-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; gap: 10px; flex-wrap: wrap; }
.lp-rv-user { display: flex; align-items: center; gap: 10px; }
.lp-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.lp-rv-name { font-size: 14px; font-weight: 700; color: var(--blk); }
.lp-rv-date { font-size: 12px; color: var(--g); }
.lp-rv-stars { color: var(--gye); font-size: 13px; margin-bottom: 10px; }
.lp-rv-text { font-size: 14px; color: var(--gd); line-height: 1.7; }
.lp-rv-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--t); background: var(--t-lt); padding: 2px 9px; border-radius: 99px; margin-top: 10px; }

/* SERVICES GRID */
.lp-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.lp-srv-card {
  background: var(--w); border: 1px solid var(--bd); border-radius: var(--rl);
  padding: 1.75rem; box-shadow: var(--sh);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none; color: var(--blk); display: flex; flex-direction: column; cursor: pointer;
}
.lp-srv-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(10,91,102,.3); }
.lp-srv-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 1rem; }
.lp-srv-card h3 { font-size: 17px; font-weight: 700; color: var(--blk); margin-bottom: 8px; }
.lp-srv-card p { font-size: 13px; color: var(--g); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.lp-srv-link { font-size: 13px; font-weight: 700; color: var(--t); display: flex; align-items: center; gap: 5px; transition: color .15s; }
.lp-srv-link:hover { color: var(--o); }
.lp-srv-link i { font-size: 11px; transition: transform .2s; }
.lp-srv-card:hover .lp-srv-link i { transform: translateX(4px); }

/* LEAD FORM SECTION */
.lp-form-bg {
  background: linear-gradient(135deg, #0f3a42 0%, var(--t) 50%, #1a8a9a 100%);
  position: relative; overflow: hidden;
}
.lp-form-bg::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.lp-form-inner {
  max-width: 1100px; margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.lp-form-left h2 { font-size: clamp(26px,3.5vw,42px); font-weight: 700; color: #fff; line-height: 1.18; margin-bottom: 1rem; }
.lp-form-left h2 em { font-style: italic; color: #ffd89b; }
.lp-form-left p { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 2rem; }
.lp-form-perks { display: flex; flex-direction: column; gap: 12px; }
.lp-fp { display: flex; align-items: center; gap: 12px; }
.lp-fp-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.lp-fp-text strong { font-size: 14px; color: #fff; display: block; font-weight: 600; }
.lp-fp-text span { font-size: 12px; color: rgba(255,255,255,.6); }

/* Lead form card */
.lp-form-card {
  background: #fff; border-radius: 20px; padding: 2.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.lp-form-card-title { font-size: 20px; font-weight: 700; color: var(--blk); margin-bottom: 4px; }
.lp-form-card-sub { font-size: 13px; color: var(--g); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--bd); }
.lp-form-card-sub strong { color: var(--o); }
.lp-frow { display: flex; gap: 12px; margin-bottom: 12px; }
.lp-frow.col { flex-direction: column; gap: 0; margin-bottom: 12px; }
.lp-field {
  display: flex; flex-direction: column; gap: 5px; flex: 1;
}
.lp-field label { font-size: 12px; font-weight: 600; color: var(--gd); }
.lp-field input, .lp-field select, .lp-field textarea {
  border: 1.5px solid var(--bd); border-radius: var(--r);
  padding: 11px 14px; font-size: 14px; color: var(--blk);
  outline: none; transition: border-color .15s; background: #fff;
  width: 100%; -webkit-appearance: none;
}
.lp-field input:focus, .lp-field select:focus, .lp-field textarea:focus {
  border-color: var(--t);
}
.lp-field textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.lp-field input::placeholder, .lp-field textarea::placeholder { color: #bbb; }
.lp-form-interest { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.lp-int-label { font-size: 12px; font-weight: 600; color: var(--gd); width: 100%; margin-bottom: 2px; }
.lp-int-btn {
  border: 1.5px solid var(--bd); border-radius: 99px;
  padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--g);
  background: #fff; cursor: pointer; transition: all .15s;
  display: flex; align-items: center; gap: 5px;
}
.lp-int-btn.sel, .lp-int-btn:hover { border-color: var(--t); color: var(--t); background: var(--t-lt); }
.lp-form-submit {
  width: 100%; background: var(--o); color: #fff; border: none; border-radius: var(--r);
  padding: 15px; font-size: 15px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s; margin-top: 4px;
}
.lp-form-submit:hover { background: var(--o-dk); }
.lp-form-note { font-size: 11px; color: var(--g); text-align: center; margin-top: 10px; }

/* FOOTER */
.lp-footer { background: #0a0a0a; }
.lp-footer-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2.5rem;
}
.lp-f-logo { font-size: 20px; font-weight: 700; color: var(--t); text-decoration: none; display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; }
.lp-f-logo span { color: var(--o); }
.lp-f-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 1.25rem; max-width: 240px; }
.lp-f-social { display: flex; gap: 8px; }
.lp-social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; font-size: 13px; text-decoration: none; transition: all .15s; }
.lp-social-btn:hover { background: var(--o); color: #fff; }
.lp-f-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.lp-f-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lp-f-col ul li a { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; cursor: pointer; }
.lp-f-col ul li a:hover { color: var(--o); }
.lp-f-contact { display: flex; flex-direction: column; gap: 8px; }
.lp-f-ci { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,.45); }
.lp-f-ci i { color: var(--o); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.lp-f-ci a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.lp-f-ci a:hover { color: var(--o); }
.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem 2rem; max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; font-size: 12px; color: rgba(255,255,255,.3);
}
.lp-footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; cursor: pointer; }
.lp-footer-bottom a:hover { color: var(--o); }
.lp-footer-links { display: flex; gap: 16px; }

/* Mobile bottom bar */
.lp-mob-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--w); border-top: 1px solid var(--bd);
  padding: 10px 1.25rem; z-index: 500;
  align-items: center; justify-content: space-between; gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.lp-mob-wa {
  display: flex; align-items: center; gap: 6px;
  background: var(--wa); color: #fff; border: none; border-radius: var(--r);
  padding: 11px 18px; font-size: 13px; font-weight: 700; cursor: pointer;
  text-decoration: none; flex: 1; justify-content: center;
}
.lp-mob-enq {
  display: flex; align-items: center; gap: 6px;
  background: var(--o); color: #fff; border: none; border-radius: var(--r);
  padding: 11px 18px; font-size: 13px; font-weight: 700; cursor: pointer;
  text-decoration: none; flex: 1; justify-content: center;
}

/* MODAL */
.lp-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1rem;
}
.lp-modal-overlay.open { display: flex; }
.lp-modal {
  background: #fff; border-radius: 20px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lp-modal-header {
  background: linear-gradient(135deg, var(--t-dk), var(--t));
  padding: 1.75rem 2rem 1.5rem; border-radius: 20px 20px 0 0;
  position: relative;
}
.lp-modal-header h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.lp-modal-header p { font-size: 13px; color: rgba(255,255,255,.75); }
.lp-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; transition: background .15s;
}
.lp-modal-close:hover { background: rgba(255,255,255,.25); }
.lp-modal-body { padding: 1.75rem 2rem 2rem; }
.lp-modal-submit {
  width: 100%; background: var(--o); color: #fff; border: none; border-radius: var(--r);
  padding: 14px; font-size: 15px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s; margin-top: 8px;
}
.lp-modal-submit:hover { background: var(--o-dk); }
.lp-modal-note { font-size: 11px; color: var(--g); text-align: center; margin-top: 10px; }
/* success state */
.lp-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.lp-success-icon { width: 64px; height: 64px; border-radius: 50%; background: #e8f5e9; color: #2e7d32; font-size: 28px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.lp-success h4 { font-size: 20px; font-weight: 700; color: var(--blk); margin-bottom: 8px; }
.lp-success p { font-size: 14px; color: var(--g); line-height: 1.6; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1100px) {
  .lp-nav-links { display: none; }
  .lp-hamburger { display: block; }
  .lp-dest-grid { grid-template-columns: repeat(2,1fr); }
  .lp-footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .lp-f-brand { grid-column: 1/4; }
  .lp-visa-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lp-form-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-form-left { max-width: 600px; margin: 0 auto; text-align: center; }
  .lp-form-perks { align-items: center; }
  .lp-form-card { max-width: 600px; margin: 0 auto; width: 100%; }
}

@media (max-width: 900px) {
  .lp-hero { min-height: 520px; }
  .lp-hero-content { padding: 3rem 1.5rem; }
  .lp-hero h1 { font-size: 32px; }
  .lp-stats-inner { grid-template-columns: repeat(2,1fr); }
  .lp-stat { border-right: none; border-bottom: 1px solid var(--bd); }
  .lp-stat:nth-child(odd) { border-right: 1px solid var(--bd); }
  .lp-stat:nth-last-child(-n+2) { border-bottom: none; }
  .lp-how-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .lp-how-grid::before { display: none; }
  .lp-pkg-grid { grid-template-columns: repeat(2,1fr); }
  .lp-why-grid { grid-template-columns: repeat(2,1fr); }
  .lp-visa-right { grid-template-columns: repeat(2,1fr); }
  .lp-rev-grid { grid-template-columns: repeat(2,1fr); }
  .lp-services-grid { grid-template-columns: repeat(2,1fr); }
  .lp-mob-bar { display: flex; }
  .lp { padding-bottom: 68px; }
  .lp-nav-phone { display: none; }
}

@media (max-width: 640px) {
  .lp-section { padding: 3.5rem 1rem; }
  .lp-hero { min-height: 460px; }
  .lp-hero-content { padding: 2.5rem 1rem; }
  .lp-hero h1 { font-size: 26px; }
  .lp-hero-sub { font-size: 14px; }
  .lp-hero-btns { gap: 10px; }
  .lp-btn-hero-primary, .lp-btn-hero-ghost { padding: 12px 20px; font-size: 14px; }
  .lp-hero-trust { gap: 10px; }
  .lp-ht { font-size: 12px; }
  .lp-stats-inner { padding: 0 1rem; }
  .lp-stat { padding: 1rem; }
  .lp-stat-num { font-size: 19px; }
  .lp-dest-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .lp-how-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .lp-pkg-grid { grid-template-columns: 1fr; }
  .lp-why-grid { grid-template-columns: 1fr 1fr; }
  .lp-rev-grid { grid-template-columns: 1fr; }
  .lp-g-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .lp-g-trust { margin-left: 0; }
  .lp-visa-countries { gap: 6px; }
  .lp-vc { font-size: 12px; padding: 5px 11px; }
  .lp-visa-right { grid-template-columns: 1fr; }
  .lp-services-grid { grid-template-columns: 1fr; }
  .lp-footer-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 3rem 1rem 2rem; }
  .lp-f-brand { grid-column: 1 / -1; }
  .lp-footer-bottom { flex-direction: column; align-items: flex-start; padding: 1rem; gap: 10px; }
  .lp-footer-links { flex-wrap: wrap; gap: 12px; }
  .lp-visa-inner { padding: 3.5rem 1rem; }
  .lp-form-inner { padding: 3.5rem 1rem; }
  .lp-form-card { padding: 1.5rem; }
  .lp-frow { flex-direction: column; }
  .lp-modal-header, .lp-modal-body { padding: 1.25rem 1.25rem; }
  .lp-btn-nav { padding: 9px 13px; }
  .lp-form-left { text-align: left; }
  .lp-form-perks { align-items: flex-start; }
}

@media (max-width: 400px) {
  .lp-dest-grid { grid-template-columns: 1fr; }
  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-hero h1 { font-size: 23px; }
  .lp-footer-inner { grid-template-columns: 1fr; }
  .lp-f-brand { grid-column: 1; }
  .lp-mob-bar { gap: 7px; padding: 10px 1rem; }
  .lp-nav-inner { padding: 0 1rem; }
}

/* ═══════════════════════════════════════
   THE HOLIDAVE — NAV & TOPBAR
═══════════════════════════════════════ */
.thd-topbar {
  background: #0a5b66; color: rgba(255,255,255,.85);
  font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.1);
  overflow: hidden; /* prevent topbar content from causing horizontal scroll */
}
.thd-tb-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; gap: 1rem;
}
.thd-tb-left, .thd-tb-right { display: flex; align-items: center; gap: 1rem; }
.thd-tb-item { color: rgba(255,255,255,.8); text-decoration: none; display: flex; align-items: center; gap: 5px; font-size: 12px; transition: color .15s; }
.thd-tb-item:hover { color: #fff; }
.thd-tb-item i { font-size: 11px; color: #FB5B32; }
.thd-tb-rating { display: flex; align-items: center; gap: 5px; font-size: 11px; }
.thd-tb-stars i { color: #FBBC05; font-size: 9px; }
.thd-tb-social { display: flex; align-items: center; gap: 8px; }
.thd-tb-social a { color: rgba(255,255,255,.6); font-size: 13px; transition: color .15s; }
.thd-tb-social a:hover { color: #fff; }

.thd-nav {
  background: #fff; border-bottom: 1px solid #E2E2DE;
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow .2s;
  overflow: visible; /* must stay visible so dropdown escapes the nav bar */
}
.thd-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.1); }
.thd-nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 1.5rem;
  /* No overflow:hidden here — it would clip the dropdown */
}
.thd-logo {
  font-size: 21px; font-weight: 700; color: #0a5b66;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  white-space: nowrap; flex-shrink: 0;
}
.thd-logo span { color: #FB5B32; }
.thd-logo i { color: #FB5B32; font-size: 18px; }
.thd-logo img, .thd-logo-img { height: 40px; width: auto; display: block; }
.thd-nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.thd-nav-links a { font-size: 14px; color: #767676; text-decoration: none; font-weight: 500; transition: color .15s; white-space: nowrap; }
.thd-nav-links a:hover { color: #0a5b66; }
.thd-has-drop { position: relative; }
.thd-has-drop > a i { font-size: 9px; margin-left: 2px; }
.thd-drop {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid #E2E2DE; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12); min-width: 200px;
  padding: 8px 0 .5rem; list-style: none; z-index: 9999;
}
/* Invisible 8px bridge fills the gap so mouse doesn't lose hover */
.thd-drop::before {
  content: ''; position: absolute;
  top: -8px; left: 0; width: 100%; height: 8px;
}
.thd-has-drop:hover .thd-drop { display: block; }
.thd-drop li a { display: block; padding: 9px 18px; font-size: 13px; color: #333; font-weight: 500; transition: background .12s; }
.thd-drop li a:hover { background: #F4F4F2; color: #0a5b66; }
.thd-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.thd-nav-phone { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: #0a5b66; text-decoration: none; white-space: nowrap; }
.thd-nav-phone i { font-size: 12px; }
.thd-nav-phone:hover { color: #FB5B32; }
.thd-btn-nav {
  background: #25D366; color: #fff; border: none; border-radius: 8px;
  padding: 9px 18px; font-size: 13px; font-weight: 700; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: background .15s; white-space: nowrap;
}
.thd-btn-nav:hover { background: #1da851; }
.thd-hamburger {
  display: none; background: none; border: none;
  font-size: 22px; color: #111; cursor: pointer; padding: 4px;
}
.thd-mob-menu {
  display: none; flex-direction: column; gap: 0;
  background: #fff; border-bottom: 1px solid #E2E2DE;
  max-height: calc(100vh - 64px); /* never taller than viewport minus nav */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.thd-mob-menu.open { display: flex; }
.thd-mob-menu a {
  font-size: 14px; color: #111; text-decoration: none; font-weight: 500;
  padding: 13px 1.5rem; border-bottom: 1px solid #E2E2DE;
  display: flex; align-items: center; gap: 10px; transition: background .12s;
}
.thd-mob-menu a:hover { background: #F4F4F2; }
.thd-mob-menu a i { font-size: 14px; color: #0a5b66; width: 18px; }
.thd-mob-sub { padding-left: 2.75rem !important; }
.thd-mob-wa { background: #25D366 !important; color: #fff !important; }
.thd-mob-wa i { color: #fff !important; }

/* ═══════════════════════════════════════
   THE HOLIDAVE — FOOTER
═══════════════════════════════════════ */
.thd-footer { background: #111; color: rgba(255,255,255,.75); }
.thd-footer-top { border-bottom: 1px solid rgba(255,255,255,.08); }
.thd-footer-inner {
  max-width: 1320px; margin: 0 auto; padding: 3.5rem 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 2.5rem;
}
.thd-f-logo { font-size: 20px; font-weight: 700; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 7px; margin-bottom: 1rem; }
.thd-f-logo i { color: #FB5B32; }
.thd-f-logo span { color: #FB5B32; }
.thd-f-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 1.25rem; }
.thd-f-contact { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.25rem; }
.thd-f-ci { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: rgba(255,255,255,.6); }
.thd-f-ci i { color: #FB5B32; flex-shrink: 0; margin-top: 2px; font-size: 11px; }
.thd-f-ci a { color: rgba(255,255,255,.7); text-decoration: none; } .thd-f-ci a:hover { color: #fff; }
.thd-f-social { display: flex; gap: 8px; }
.thd-f-social a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 13px; transition: background .15s; }
.thd-f-social a:hover { background: #FB5B32; color: #fff; }
.thd-f-head { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .05em; }
.thd-f-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.thd-f-list li a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
.thd-f-list li a:hover { color: #FB5B32; }
.thd-f-news-p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 1rem; }
.thd-f-form { display: flex; gap: 6px; margin-bottom: 1rem; }
.thd-f-input { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: 9px 12px; font-size: 13px; color: #fff; outline: none; }
.thd-f-input::placeholder { color: rgba(255,255,255,.35); }
.thd-f-sub-btn { background: #FB5B32; color: #fff; border: none; border-radius: 8px; padding: 9px 14px; font-size: 12px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background .15s; }
.thd-f-sub-btn:hover { background: #D94520; }
.thd-f-trust { display: flex; flex-direction: column; gap: 6px; }
.thd-f-badge { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,.5); }
.thd-f-badge i { color: #FB5B32; font-size: 11px; }
.thd-footer-bottom { background: #0a0a0a; }
.thd-fb-inner { max-width: 1320px; margin: 0 auto; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.thd-fb-inner span { font-size: 12px; color: rgba(255,255,255,.35); }
.thd-fb-pay { display: flex; gap: 8px; }
.thd-fb-pay i { font-size: 22px; color: rgba(255,255,255,.35); }
.thd-wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s; text-decoration: none;
}
.thd-wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* Package detail CSS variables */
.wdp-reset {
  --wdp-orange: #FB5B32; --wdp-orange-lt: #FFF0EB; --wdp-orange-dk: #D94520;
  --wdp-teal: #0a5b66; --wdp-teal-lt: #E3F2F4; --wdp-teal-dk: #074650;
  --wdp-black: #111; --wdp-dark: #333; --wdp-gray: #767676;
  --wdp-gray-lt: #F4F4F2; --wdp-border: #E2E2DE; --wdp-white: #fff;
  --wdp-green: #2e7d32; --wdp-wa: #25D366;
  font-family: 'Inter', sans-serif; background: #F2F2F0;
}

/* ═══════════════════════════════════════
   RESPONSIVE — SHARED
═══════════════════════════════════════ */
@media (max-width: 1080px) {
  .thd-footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .thd-fc-news { grid-column: 1 / -1; }
  .thd-fc-brand { grid-column: 1 / -1; }
}

/* ── 768px — tablet: hide desktop nav, show hamburger ── */
@media (max-width: 768px) {
  /* Topbar: hide phone/email links, keep rating compact */
  .thd-topbar .thd-tb-left { display: none; }
  /* Topbar right: shrink so it doesn't overflow at 768px */
  .thd-tb-right { gap: .5rem; }
  .thd-tb-rating { font-size: 10px; }
  .thd-tb-social { gap: 6px; }

  /* Nav: hide desktop links and phone number */
  .thd-nav-links { display: none; }
  .thd-nav-phone { display: none; }
  .thd-hamburger { display: block; }

  /* Shrink nav inner padding so logo + button + hamburger fit */
  .thd-nav-inner { padding: 0 1rem; gap: .75rem; }

  /* Keep Enquire Now button but shrink it */
  .thd-btn-nav { padding: 8px 12px; font-size: 12px; }

  /* Footer */
  .thd-footer-inner { grid-template-columns: 1fr 1fr; }
  .thd-fb-inner { justify-content: center; text-align: center; }
}

/* ── 520px — small tablet / large phone ── */
@media (max-width: 520px) {
  /* Hide the entire topbar right side (rating + social) */
  .thd-tb-right { display: none; }
  /* With nothing left, hide the whole topbar to save space */
  .thd-topbar { display: none; }

  /* Footer */
  .thd-footer-inner { grid-template-columns: 1fr; }
}

/* ── 400px — small phones (iPhone SE, Galaxy A) ── */
@media (max-width: 400px) {
  .thd-nav-inner { padding: 0 .875rem; gap: .5rem; }
  .thd-logo { font-size: 18px; }
  .thd-logo img { height: 32px; }
  /* Hide Enquire Now button — hamburger + logo is enough */
  .thd-btn-nav { display: none; }
  .thd-hamburger { font-size: 20px; }
  .thd-mob-menu a { font-size: 13px; padding: 12px 1.25rem; }
  .thd-mob-sub { padding-left: 2.25rem !important; }
}