:root{
  --te-blue: #1a6fb6;
  --te-orange: #f59f00;
  --gold: #D4AF37;
  
  --te-dark: #FFFFFF; /* Headings become white */
  --bg: #0A0A0A;      /* Deep Dark Background */
  --card: #111111;    /* Dark Card Background */
  --text: #E2E8F0;    /* Light text */
  --muted: #888888;   /* Gray muted text */
  --line: rgba(255, 255, 255, 0.1); /* Subtle borders */
  
  --shadow: 0 10px 30px rgba(0,0,0,0.5);
  --radius: 12px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: 'Plus Jakarta Sans', Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a{color:inherit;text-decoration:none}
.container-te{width:min(1180px, 92vw); margin:0 auto;}

/* Because navbar is fixed-top */
.page-spacer{
  height: 78px;
}
@media (max-width: 991px){
  .page-spacer{ height: 72px; }
}

/* ===== Hero ===== */
.hero{ padding: 26px 0 12px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1fr; /* Full width as per premium layout */
  gap:16px;
  align-items:stretch;
}

.card-te{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-media{
  height: 400px;
  background:#000;
  position:relative;
}
.hero-media img{
  width:100%; height:100%;
  object-fit:cover; display:block;
  opacity: 0.8; /* Slightly dark for premium feel */
}

/* 🔴 REMOVED BADGE AS PER SCREENSHOT */
.badge { display: none !important; }
.ri-badge { display: none !important; }

.hero-body{padding:24px 20px; text-align: center;}
h1{
  margin:0 0 12px;
  font-size:32px;
  letter-spacing:-.3px;
  color:var(--te-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.sub{
  margin:0 auto 20px;
  color:var(--muted);
  line-height:1.65;
  font-size:16px;
  max-width: 800px;
}
.chips{display:flex; flex-wrap:wrap; gap:10px; justify-content: center;}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 16px;
  border-radius:999px;
  border:1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.05);
  font-weight:700;
  font-size:12px;
  color:var(--text);
}
.chip i{
  width:10px;height:10px;border-radius:999px;
  background:var(--gold);
  display:inline-block;
}
.chip b{color:var(--gold)}

.gallery{
  display: flex !important;
  gap: 12px;
  padding: 0 16px 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.gallery::-webkit-scrollbar{ display:none; }
.gimg{
  flex: 0 0 260px;
  height: 100px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#111;
}
.gimg img{width:100%;height:100%;object-fit:cover;display:block; filter: brightness(0.8); transition: 0.3s;}
.gimg:hover img { filter: brightness(1); transform: scale(1.05); }

/* Gallery slider arrows */
.gallery-wrap{
  position: relative;
  padding: 15px 50px;
  border-top: 1px solid var(--line);
}
.gallery-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 20px;
  display: grid;
  place-items: center;
  z-index: 5;
  transition: 0.3s;
}
.gallery-btn.left{ left: 10px; }
.gallery-btn.right{ right: 10px; }
.gallery-btn:hover{ background: var(--gold); color: #000; }

/* ===== Form & Inputs ===== */
.form-wrap{padding:20px}
.form-head h3{margin:0; font-size:16px; color:var(--te-dark)}
.form-head p{margin:4px 0 0; color:var(--muted); font-size:12.5px; line-height:1.5}

.enq-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}
label{font-size:12px; font-weight:700; color:var(--gold); text-transform: uppercase;}
input, select, textarea{
  width:100%;
  padding:12px 15px;
  border-radius:8px;
  border:1px solid #333;
  background:#1a1a1a;
  color:#FFF;
  outline:none;
  font-size:14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
input:focus, select:focus, textarea:focus{
  border-color:var(--gold);
}
.field{display:flex; flex-direction:column; gap:6px;}
.full{grid-column:1 / -1;}
textarea{min-height:110px; resize:vertical;}

.btn-te{
  grid-column:1 / -1;
  border:none;
  cursor:pointer;
  padding:15px 20px;
  border-radius:6px;
  font-weight:800;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  background: var(--gold);
  color:#000;
  transition: 0.3s;
}
.btn-te:hover{background:#b5952f; transform:translateY(-2px);}
.hint{margin:0; color:var(--muted); font-size:12px; line-height:1.5}

/* ===== Sections ===== */
.section{padding: 20px 0;}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
@media (max-width: 900px){ .grid2{grid-template-columns:1fr;} }

.panel{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
}
.panel h4{
  margin:0 0 20px;
  display:flex; align-items:center; gap:10px;
  font-size:20px;
  font-family: 'Montserrat', sans-serif;
  color:var(--gold);
  text-transform: uppercase;
}
.panel h4 .dot{
  width:8px;height:8px;border-radius:999px;background:#FFF;
}
ul{margin:0; padding-left:18px;}
li{margin:8px 0; color:#CCC; line-height:1.6;}
li b {color: #FFF;}

/* ===== Itinerary Accordion ===== */
.it-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
  margin:20px 0;
}
.it-head h3{margin:0; font-size:24px; color:var(--gold); font-family: 'Montserrat', sans-serif; text-transform: uppercase;}
.it-head p{margin:0; color:var(--muted); font-size:14px}

details.day{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
  margin:15px 0;
  overflow:hidden;
  transition: 0.3s;
}
details.day:hover { border-color: rgba(212, 175, 55, 0.4); }
summary{
  list-style:none;
  cursor:pointer;
  padding:20px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  background: rgba(255,255,255,0.02);
}
summary::-webkit-details-marker{display:none;}
.left{ display:flex; align-items:center; gap:15px; }
.pill{
  font-weight:900;
  font-size:12px;
  padding:6px 12px;
  border-radius:4px;
  background:var(--gold);
  color:#000;
  text-transform: uppercase;
}
.title{
  font-weight:800;
  font-size:16px;
  color:var(--te-dark);
}
.chev{
  width:30px;height:30px;border-radius:50%;
  border:1px solid #444;
  display:grid; place-items:center;
  color:var(--gold);
  transition:.3s;
  font-weight: 900;
}
.chev::before{ content: "+"; font-size: 20px;}
details[open] summary .chev{transform:rotate(180deg); background: var(--gold); color:#000; border-color:var(--gold);}
details[open] summary .chev::before{ content: "–"; }

.body{
  padding:0 20px 20px;
  border-top:1px solid var(--line);
  color:#CCC;
  line-height:1.8;
  font-size:15px;
  margin-top: 15px;
  padding-top: 15px;
}
.body b{color:#FFF;}

/* ===== Disclaimer ===== */
.disclaimer{
  margin-top: 30px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border:1px dashed #444;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Alerts */
.alert{
  margin: 0 0 15px;
  padding: 15px;
  border-radius: 8px;
  font-weight:700;
}
.alert.ok{border:1px solid #27ae60; background:rgba(39, 174, 96, 0.1); color: #2ecc71;}
.alert.err{border:1px solid #c0392b; background:rgba(231, 76, 60, 0.1); color: #e74c3c;}

/* ===== Enhancements ===== */
.cta-row{ display:flex; gap:15px; justify-content: center; margin-top: 20px;}
.cta-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 24px; border-radius:6px;
  font-weight:800; text-transform: uppercase; font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  background: var(--gold); color: #000; border: none; transition: 0.3s;
}
.cta-btn:hover{background:#b5952f; transform:translateY(-2px);}
.cta-btn.ghost{ background:transparent; color: var(--gold); border:1px solid var(--gold); }
.cta-btn.ghost:hover{background:var(--gold); color:#000;}

/* ================== ENQUIRY DRAWER (RIGHT) ================== */
.enquiry-tab{
  position: fixed; top: 50%; right: 0; transform: translateY(-50%);
  z-index: 9999; padding: 30px 10px; border-radius: 8px 0 0 8px;
  border: none; cursor: pointer; font-weight: 900; letter-spacing: 1px;
  color: #000; background: var(--gold); font-family: 'Montserrat', sans-serif;
  text-transform: uppercase; writing-mode: vertical-rl; transition: 0.3s;
}
.enquiry-tab:hover{ padding-right: 15px; }

.enquiry-overlay{
  position: fixed; inset: 0; background: rgba(0, 0, 0, .85);
  opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 9998;
}

.enquiry-drawer{
  position: fixed; top: 0; right: 0; width: min(450px, 100vw); height: 100vh;
  background: var(--card); border-left: 1px solid var(--gold);
  box-shadow: -10px 0 40px rgba(0,0,0,.8);
  transform: translateX(100%); transition: transform .4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 10000; display: flex; flex-direction: column;
}

.drawer-head{
  padding: 25px 20px; border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; justify-content: space-between; background: #050505;
}
.drawer-title{font-weight: 900; font-size: 1.3rem; color: var(--gold); font-family: 'Montserrat', sans-serif; text-transform: uppercase;}
.drawer-sub{margin-top: 5px; font-size: 12px; color: #AAA;}
.drawer-close{
  width: 35px; height: 35px; border-radius: 50%; border: 1px solid #444;
  background: transparent; color:#FFF; cursor: pointer; font-size: 18px; transition: 0.3s;
}
.drawer-close:hover{ border-color: var(--gold); color: var(--gold); }
.drawer-body{padding: 20px; overflow: auto;}

body.enquiry-open .enquiry-overlay{ opacity: 1; pointer-events: auto; }
body.enquiry-open .enquiry-drawer{ transform: translateX(0); }
#pageWrap{transition: transform .4s ease;}
body.enquiry-open #pageWrap{transform: translateX(-100px);}
@media (max-width: 980px){ body.enquiry-open #pageWrap{transform: none;} }

/* ===== Ready Itineraries Listing (Grid) ===== */
.ri-grid{ display:grid; grid-template-columns: repeat(3, 1fr) !important; gap: 24px; padding-bottom: 40px;}
@media (max-width: 991px){ .ri-grid{ grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px){ .ri-grid{ grid-template-columns: 1fr !important; } }

.ri-card{
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; display:flex; flex-direction:column;
  transition: transform 0.4s ease;
}
.ri-card:hover { transform: translateY(-8px); border-color: rgba(212, 175, 55, 0.4); }

.ri-img{ position:relative; display:block; height: 220px; background:#000; }
.ri-img img{ width:100%; height:100%; object-fit:cover; display:block; filter: brightness(0.8); transition: 0.8s ease; }
.ri-card:hover .ri-img img { transform: scale(1.05); filter: brightness(0.9); }

.ri-body{ padding: 20px; display:flex; flex-direction:column; gap:12px; flex: 1; }
.ri-title{ font-weight: 800; font-size: 1.2rem; color: #FFF; line-height:1.35; font-family: 'Montserrat', sans-serif; text-transform: uppercase;}
.ri-sub{ color: #AAA; font-size: 0.95rem; line-height:1.45; }
.ri-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top: 5px;}
.ri-actions{ display:flex; justify-content: flex-end; align-items:center; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line); gap: 10px;}
.ri-meta{ margin-top: 5px; font-size: 12px; color: #666; text-align: right;}

/* ================= Premium Filters Layout ================= */
.ri-hero{
  padding:30px 24px; border-radius:18px;
  background: linear-gradient(135deg, #0B132B 0%, #1C2F4F 100%);
  border:1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 20px; box-shadow: var(--shadow);
}
.ri-hero__kicker{ font-size:12px; font-weight:800; color:var(--gold); letter-spacing:1px; text-transform:uppercase; margin-bottom:8px; }
.ri-hero__title{ font-size:32px; font-weight:900; color:#FFF; font-family: 'Montserrat', sans-serif; text-transform: uppercase;}
.ri-hero__desc{ margin:8px 0 0; color:#CCC; font-size: 15px; max-width:760px; }
.ri-hero__pill{ background:rgba(212,175,55,0.1); border:1px solid var(--gold); color:var(--gold); font-weight:800; padding:10px 14px; border-radius:999px; }

.ri-sticky { background: var(--bg) !important; padding: 15px 0; border-bottom: 1px solid var(--line); z-index: 50; top: 78px; position: sticky;}
.ri-filters{
  padding:20px; border-radius:12px; background:var(--card);
  border:1px solid var(--line); display:grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap:15px; align-items:end;
}
.ri-filters label{ font-size:11px; color:var(--gold); font-weight:700; text-transform: uppercase; letter-spacing: 0.5px;}
.ri-filters input, .ri-filters select{ height:45px; border-radius:8px; border:1px solid #333; padding:0 12px; background:#1a1a1a; color:#FFF; outline:none; }
.ri-filters input:focus, .ri-filters select:focus{ border-color:var(--gold); }
.ri-filters .btn-small{ height:45px; border-radius:8px; padding:0 20px; font-weight:700; cursor:pointer; }
.ri-filters .btn-small.primary{ background:transparent; border:1px solid var(--gold); color:var(--gold); transition: 0.3s; }
.ri-filters .btn-small.primary:hover{ background:var(--gold); color:#000; }

.ri-count{ color:#AAA; font-size:14px; margin:15px 0 5px; font-weight:600; }
.ri-chipsbar{ display:flex; flex-wrap:wrap; gap:10px; padding:10px 0; }
.ri-chip{ display:inline-flex; align-items:center; gap:10px; padding:6px 14px; border-radius:50px; border:1px solid var(--gold); background:rgba(212, 175, 55, 0.1); font-weight:600; font-size:13px; color:#FFF; cursor:pointer; }
.ri-chip .k{ color:var(--gold); font-weight:800; }
.ri-chip .x{ font-weight:900; color:#FFF; }
.ri-chip:hover{ background:var(--gold); color:#000; }
.ri-chip:hover .k, .ri-chip:hover .x{ color:#000; }

@media (max-width: 1200px){ .ri-filters{ grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
@media (max-width: 992px){ .ri-filters{ grid-template-columns: 1fr 1fr; } .ri-sticky{ top: 70px; } }
@media (max-width: 520px){ .ri-filters{ grid-template-columns: 1fr; } .ri-sticky{ top: 64px; } }

.ri-loadmore{ display:flex; justify-content:center; margin: 40px 0; }
.btn-load{ background:transparent; border:1px solid var(--gold); color:var(--gold); padding:12px 30px; border-radius:6px; font-family:'Montserrat', sans-serif; font-weight:700; text-transform:uppercase; cursor:pointer; transition:0.3s; min-width:220px; }
.btn-load:hover{ background:var(--gold); color:#000; }

/* Hide Navbar default background from bootstrap to let inline style override */
.bg-light { background-color: transparent !important; }

/* =====================================================================
   MOBILE FIXES (CSS-ONLY)
   - Prevent horizontal clipping
   - Ensure filters/actions wrap correctly
   - Make card actions/buttons fit on small screens
   ===================================================================== */

html, body{ overflow-x: hidden; }

/* Avoid long content forcing layout wider than viewport */
.container-te, .ri-sticky, .ri-filters, .ri-grid, .ri-card{ max-width: 100%; }

/* Buttons area should wrap nicely on mobile */
.ri-actions{ flex-wrap: wrap; }
.ri-actions .cta-btn{ white-space: nowrap; }

@media (max-width: 576px){
  /* Hero sizing */
  .hero{ padding: 18px 0 8px; }
  .hero-media{ height: 280px; }
  h1{ font-size: 24px; line-height: 1.2; }
  .sub{ font-size: 14px; }

  /* Ready Itineraries hero */
  .ri-hero{ padding: 20px 16px; border-radius: 16px; }
  .ri-hero__title{ font-size: 24px; line-height: 1.2; }
  .ri-hero__desc{ font-size: 14px; }

  /* Filters: tighter spacing and make the actions row full-width */
  .ri-filters{ padding: 14px; gap: 12px; }
  .ri-filters .actions{ grid-column: 1 / -1; justify-content: flex-end; }

  /* Card layout */
  .ri-img{ height: 180px; }
  .ri-body{ padding: 16px; }

  /* Action buttons: 2-up on most phones, wrap if needed */
  .ri-actions{ justify-content: space-between; gap: 10px; }
  .ri-actions .cta-btn{ flex: 1 1 calc(50% - 6px); text-align: center; }
}

@media (max-width: 380px){
  /* Very small devices: stack buttons */
  .ri-actions .cta-btn{ flex: 1 1 100%; }
}

/* Enquiry drawer tab: keep it usable on small screens */
@media (max-width: 576px){
  .enquiry-tab{ padding: 22px 8px; font-size: 12px; border-radius: 10px 0 0 10px; }
}

/* ================= PREMIUM TYPOGRAPHY UPGRADE ================= */

body{
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;           /* was smaller */
  line-height: 1.75;
  letter-spacing: 0.2px;
}

/* Main Page Title */
.hero-body h1{
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Subtitle under main title */
.hero-body .sub{
  font-size: 18px;
  line-height: 1.8;
  color: #cfcfcf;
}

/* Chips (Pace / Theme / Comfort) */
.chip{
  font-size: 14.5px;
  font-weight: 600;
}

/* Section Titles (Routing, Highlights) */
.panel h4{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* Routing & Highlights text */
.panel ul li{
  font-size: 16.5px;
  line-height: 1.8;
}

/* Detailed Itinerary Heading */
.it-head h3{
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
}

/* Day Accordion Title */
.day summary .title{
  font-size: 17.5px;
  font-weight: 700;
}

/* Day Content Body */
.day .body{
  font-size: 16.8px;
  line-height: 1.85;
}

/* Improve time labels (e.g., 09:00 hrs) */
.day .body b{
  font-weight: 700;
  color: #ffffff;
}

/* Disclaimer smaller but readable */
.disclaimer{
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

/* Buttons premium feel */
.cta-btn{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 12px 24px;
}
/* ================= LUXURY BROCHURE SPACING ================= */

.panel{
  padding: 32px 36px;
  border-radius: 18px;
  background: linear-gradient(145deg, #0d0d0d, #121212);
  border: 1px solid rgba(255, 215, 0, 0.08);
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  transition: all 0.3s ease;
}

.panel:hover{
  border-color: rgba(255, 215, 0, 0.18);
  box-shadow: 0 0 50px rgba(0,0,0,0.75);
}

/* Section Heading */
.panel h4{
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #d4af37;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}

/* Elegant divider under heading */
.panel h4::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #d4af37, transparent);
}

/* Improve paragraph spacing */
.panel p{
  font-size: 16.5px;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* ================= PREMIUM BULLETS ================= */

.panel ul{
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.panel ul li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 16.8px;
  line-height: 1.85;
  color: #e8e8e8;
}

/* Gold luxury bullet */
.panel ul li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.8);
}

/* Slight fade animation on hover */
.panel ul li:hover{
  color: #ffffff;
  transform: translateX(4px);
  transition: all 0.2s ease;
}

.panel ul li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: #d4af37;
  transform: rotate(45deg);
}

/* =========================================================
   PREMIUM PANEL + MODERN BULLETS (NO HTML CHANGE)
   Paste at END of style.css
   ========================================================= */

/* 1) Panel feels more premium */
#highlights .panel{
  padding: 34px 38px;
  border-radius: 18px;
  background:
    radial-gradient(1200px 500px at -10% -20%, rgba(212,175,55,0.10), transparent 55%),
    radial-gradient(900px 450px at 110% 120%, rgba(26,111,182,0.10), transparent 55%),
    linear-gradient(145deg, #0c0c0c, #121212);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 55px rgba(0,0,0,0.65);
  position: relative;
  overflow: hidden;
}

#highlights .panel:hover{
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 22px 70px rgba(0,0,0,0.75);
  transform: translateY(-2px);
  transition: all .35s ease;
}

/* 2) Heading style + elegant underline */
#highlights .panel h4{
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  position: relative;
}

#highlights .panel h4::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  width: 76px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* 3) Make lists modern: remove default bullets safely */
#highlights .panel ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 14px; /* spacing between points */
}

/* 4) Modern bullet item design */
#highlights .panel ul li{
  position: relative;
  margin: 0;
  padding: 14px 14px 14px 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(226,232,240,0.92);
  line-height: 1.75;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
  will-change: transform;
}

/* 5) Luxury bullet icon (diamond + glow) */
#highlights .panel ul li::before{
  content:"";
  position:absolute;
  left:16px;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.14), 0 0 14px rgba(212,175,55,0.55);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* 6) Premium accent line on left (appears on hover) */
#highlights .panel ul li::after{
  content:"";
  position:absolute;
  left:0;
  top: 10px;
  bottom: 10px;
  width: 0px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(212,175,55,0.85), rgba(212,175,55,0.15));
  transition: width .25s ease;
}

/* 7) Hover effects (modern + smooth) */
#highlights .panel ul li:hover{
  transform: translateY(-3px);
  background: rgba(212,175,55,0.06);
  border-color: rgba(212,175,55,0.24);
  box-shadow: 0 10px 25px rgba(0,0,0,0.55);
  color: #fff;
}

#highlights .panel ul li:hover::after{
  width: 4px;
}

#highlights .panel ul li:hover::before{
  transform: rotate(45deg) scale(1.12);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.18), 0 0 18px rgba(212,175,55,0.75);
}

/* 8) Routing line: keep label strong and clean */
#highlights .panel ul li b{
  color: #fff;
  font-weight: 800;
}

/* 9) TinyMCE <p> inside list: prevent extra gaps */
#highlights .panel ul li p{
  display: inline;
  margin: 0;
}

/* 10) Mobile spacing */
@media (max-width: 576px){
  #highlights .panel{ padding: 22px 18px; }
  #highlights .panel ul li{ padding: 12px 12px 12px 42px; }
  #highlights .panel ul{ gap: 12px; }
}

/* =========================================================
   LUXURY DIAMOND BULLETS + GOLD SHIMMER (NO HTML CHANGE)
   Paste at END of style.css
   ========================================================= */

/* Target only the two panels section */
#highlights .panel ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

#highlights .panel ul li{
  position: relative;
  margin: 0;
  padding: 14px 14px 14px 48px;
  border-radius: 14px;

  /* Premium card background */
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);

  color: rgba(226,232,240,0.92);
  line-height: 1.75;

  /* shimmer base */
  overflow: hidden;
  isolation: isolate;

  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

/* Diamond bullet */
#highlights .panel ul li::before{
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;

  width: 11px;
  height: 11px;
  background: var(--gold);
  transform: rotate(45deg);
  border-radius: 2px;

  /* glow */
  box-shadow:
    0 0 0 3px rgba(212,175,55,0.14),
    0 0 14px rgba(212,175,55,0.65);

  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

/* Left gold accent bar (only on hover) */
#highlights .panel ul li::after{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 0px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(212,175,55,0.85), rgba(212,175,55,0.15));
  transition: width .25s ease;
}

/* GOLD SHIMMER LAYER */
#highlights .panel ul li span,
#highlights .panel ul li{
  /* keep text above shimmer */
  position: relative;
  z-index: 2;
}

/* the shimmer itself */
#highlights .panel ul li .shimmer,
#highlights .panel ul li:where(:not(.no-shimmer))::marker{ /* harmless */
}

/* shimmer overlay (pseudo element) */
#highlights .panel ul li{
  background-image: linear-gradient(
    120deg,
    rgba(212,175,55,0) 0%,
    rgba(212,175,55,0) 40%,
    rgba(212,175,55,0.16) 50%,
    rgba(212,175,55,0) 60%,
    rgba(212,175,55,0) 100%
  );
  background-size: 260% 100%;
  background-position: 120% 0;
}

/* Hover = lift + shimmer sweep */
#highlights .panel ul li:hover{
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.30);
  box-shadow: 0 14px 30px rgba(0,0,0,0.60);
  background-color: rgba(212,175,55,0.06);
  color: #fff;

  /* shimmer animation start */
  animation: teShimmer .9s ease forwards;
}

#highlights .panel ul li:hover::after{
  width: 4px;
}

#highlights .panel ul li:hover::before{
  transform: rotate(45deg) scale(1.18);
  filter: brightness(1.05);
  box-shadow:
    0 0 0 4px rgba(212,175,55,0.18),
    0 0 20px rgba(212,175,55,0.85);
}

/* TinyMCE paragraph inside <li> should not add gaps */
#highlights .panel ul li p{
  display: inline;
  margin: 0;
}

/* Strong labels inside li */
#highlights .panel ul li b{
  color: #fff;
  font-weight: 800;
}

/* Shimmer keyframes */
@keyframes teShimmer{
  0%   { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

/* Mobile tuning */
@media (max-width: 576px){
  #highlights .panel ul{ gap: 12px; }
  #highlights .panel ul li{ padding: 12px 12px 12px 46px; border-radius: 12px; }
  #highlights .panel ul li::before{ top: 17px; }
}


/* ================= FIX PANEL HEADINGS (Routing & Nights / Key Highlights) ================= */

/* Clean heading layout + spacing */
#highlights .panel h4{
  margin: 0 0 18px !important;
  padding: 0 0 14px !important;
  line-height: 1.2 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;

  /* remove any unwanted marker/bullet effect from other css */
  list-style: none !important;
}

/* If any theme injects marker/bullet, kill it */
#highlights .panel h4::before,
#highlights .panel h4::marker{
  content: "" !important;
}

/* Replace dot with luxury gold glow */
#highlights .panel h4 .dot{
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: var(--gold) !important;
  box-shadow:
    0 0 0 3px rgba(212,175,55,0.12),
    0 0 16px rgba(212,175,55,0.75) !important;
  flex: 0 0 10px !important;
}

/* Make the divider line consistent */
#highlights .panel h4{
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}

/* Optional: slightly nicer heading color/weight */
#highlights .panel h4{
  color: var(--gold) !important;
  font-weight: 900 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
}

