/* =============================================
   LOST MOUNTAIN THEME — design tokens
   Source of truth: public/homepage-redesign.html

   NOTE ON SPECIFICITY: the inherited app.css consistently scopes its
   component rules as ".bravo_wrap .selector" (two classes). Plain
   ".selector" rules here would lose to those regardless of load order,
   since equal-or-higher specificity (not source order) wins when a more
   specific selector exists. Every override below is written as
   ".bravo_wrap ..." to guarantee it wins.
============================================= */
:root{
  --brand:#c3512b;
  --brand-dark:#a3431f;
  --brand-glow:rgba(195,81,43,.25);
  --brand-dim:rgba(195,81,43,.1);

  --bg-base:#0b1220;
  --bg-raised:#101827;
  --bg-card:#141f30;
  --bg-card-hover:#1a2840;
  --bg-input:#0e1a28;
  --bg-stripe:#0f1a2b;

  --border:rgba(255,255,255,.07);
  --border-brand:rgba(195,81,43,.3);

  --text-primary:#f0f4f8;
  --text-secondary:#8fa3bc;
  --text-muted:#5a7190;

  --radius:14px;
  --radius-sm:10px;
  --shadow:0 4px 20px rgba(0,0,0,.35);
  --shadow-lg:0 16px 48px rgba(0,0,0,.5);
  --shadow-brand:0 8px 28px rgba(195,81,43,.4);
}

/* =============================================
   BASE
============================================= */
body{
  font-family:'Tajawal','Poppins',sans-serif;
  background:var(--bg-base);
  color:var(--text-secondary);
}
.bravo_wrap{background:var(--bg-base)}
h1,h2,h3,h4,h5,h6{color:var(--text-primary);font-family:'Tajawal','Poppins',sans-serif}
.bravo_wrap a{color:inherit}
.bravo_wrap p,
.bravo_wrap span,
.bravo_wrap li{color:var(--text-secondary)}
.bravo_wrap ::selection{background:var(--brand);color:#fff}

/* Font Awesome 6's v4-compat shim (all.min.css) only remaps SOLID icon
   names; brand icons (instagram/twitter/snapchat/facebook/youtube/tiktok/
   whatsapp) still need the "brands" font family. Admin-entered content
   (topbar/footer widgets) uses bare v4-style "fa fa-X" classes, so force
   the known brand icon classes onto the brands font here rather than
   editing stored content. */
.fa-instagram, .fa-twitter, .fa-snapchat, .fa-facebook, .fa-facebook-f,
.fa-youtube, .fa-tiktok, .fa-whatsapp, .fa-linkedin, .fa-pinterest,
.fa-telegram{
  font-family:"Font Awesome 6 Brands" !important;
  font-weight:400 !important;
}

/* generic buttons/forms so untouched pages (auth/checkout/account) stay legible */
.bravo_wrap .btn-primary,
.bravo_wrap .g-button-submit button,
.bravo_wrap button[type="submit"]:not(.btn-submit){
  background:var(--brand);
  border-color:var(--brand);
}
.bravo_wrap .btn-primary:hover{background:var(--brand-dark);border-color:var(--brand-dark)}
.bravo_wrap .form-control,
.bravo_wrap input.form-control,
.bravo_wrap select.form-control,
.bravo_wrap textarea.form-control{
  background:var(--bg-input);
  border:1.5px solid var(--border);
  color:var(--text-primary);
}
.bravo_wrap .form-control:focus{border-color:var(--brand);box-shadow:none}
.bravo_wrap .form-control::placeholder{color:var(--text-muted)}
.bravo_wrap .card,
.bravo_wrap .panel,
.bravo_wrap .box{
  background:var(--bg-card);
  border-color:var(--border);
}

/* =============================================
   TOPBAR
============================================= */
.bravo_wrap .bravo_topbar{
  background:#060e1a;
  border-bottom:1px solid var(--border);
  padding:9px 0;
  font-size:13px;
}
.bravo_wrap .bravo_topbar .content{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px}
.bravo_wrap .topbar-left{display:flex;align-items:center;gap:18px;color:var(--text-muted);flex-wrap:wrap}
.bravo_wrap .topbar-left span{display:flex;align-items:center;gap:6px;font-size:12.5px;line-height:1}
.bravo_wrap .bravo_topbar .topbar-left span a{color:var(--text-muted) !important}
.bravo_wrap .topbar-left span i{color:var(--brand);font-size:12px;display:inline-flex;align-items:center}
.bravo_wrap .topbar-right{display:flex;align-items:center;gap:18px}
.bravo_wrap .topbar-right .socials{display:flex;align-items:center;gap:8px}
.bravo_wrap .topbar-right .socials a{
  width:28px;height:28px;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:6px;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--text-muted);font-size:12px;
  line-height:1;
  transition:all .2s;
  padding:0 !important;
}
.bravo_wrap .topbar-right .socials a:hover{background:var(--brand);border-color:var(--brand);color:#fff}
.bravo_wrap .topbar-right .topbar-items{display:flex;align-items:center;gap:14px;list-style:none;margin:0;padding:0}
.bravo_wrap .topbar-items li{list-style:none;display:flex;align-items:center}
.bravo_wrap .topbar-items li a{
  color:var(--text-muted);
  font-size:12px;
  line-height:1;
  padding:4px 0;
  border-radius:6px;
  transition:color .2s;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.bravo_wrap .topbar-items li a:hover,
.bravo_wrap .topbar-items li a.is_login:hover{color:var(--text-primary)}
.bravo_wrap .topbar-items .login-item .login,
.bravo_wrap .topbar-items .signup-item .signup{font-weight:600;color:var(--text-secondary)}
.bravo_wrap .topbar-items .signup-item .signup{color:var(--brand)}
.bravo_wrap .topbar-items .dropdown-menu{
  background:var(--bg-card) !important;
  border:1px solid var(--border) !important;
  border-radius:10px;
  box-shadow:var(--shadow-lg);
  padding:6px;
  margin-top:8px;
}
.bravo_wrap .topbar-items .dropdown-menu li{list-style:none;display:block !important;padding:0 !important;margin:0 !important}
.bravo_wrap .topbar-items .dropdown-menu li a{
  display:block !important;width:100% !important;box-sizing:border-box;
  color:var(--text-secondary) !important;border-radius:6px;padding:8px 12px !important;
  background:transparent !important;
}
.bravo_wrap .topbar-items .dropdown-menu li a:hover{background:var(--bg-base) !important;color:var(--brand) !important}
.bravo_wrap .topbar-items .dropdown-menu .credit_amount a{color:var(--text-primary) !important}
.bravo_wrap .header-right .dropdown-menu{min-width:220px}

/* =============================================
   HEADER / NAVBAR
============================================= */
.bravo_wrap .bravo_header{
  background:rgba(11,18,32,.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  position:sticky;top:0;z-index:999;
  border-bottom:1px solid var(--border);
}
.bravo_wrap .bravo_header .content{display:flex;align-items:center;justify-content:space-between;min-height:70px;gap:24px;background:transparent}
.bravo_wrap .header-left{display:flex;align-items:center;gap:30px;flex:1}
.bravo_wrap .bravo-logo{display:inline-flex;align-items:center}
.bravo_wrap .bravo-logo img{height:40px;width:auto}

.bravo_wrap .bravo-menu .main-menu{display:flex;align-items:center;gap:2px;list-style:none;margin:0;padding:0;flex-wrap:wrap}
.bravo_wrap .bravo-menu .main-menu>li{position:relative;list-style:none}
.bravo_wrap .bravo-menu .main-menu>li>a{
  font-size:14px;font-weight:600;
  padding:8px 14px;border-radius:8px;
  display:inline-flex;align-items:center;gap:4px;
  transition:color .2s;
}
/* These two selectors deliberately mirror app.css's exact long ancestor
   chain (".bravo_wrap .bravo_header .content .header-left .bravo-menu ul li a")
   because that rule carries !important at higher specificity than any
   shorter selector here can beat with !important alone — equal specificity
   + later source order is the only way to win against it. */
.bravo_wrap .bravo_header .content .header-left .bravo-menu ul li a{color:var(--text-primary) !important;background:transparent !important}
.bravo_wrap .bravo_header .content .header-left .bravo-menu ul li:hover>a,
.bravo_wrap .bravo_header .content .header-left .bravo-menu ul li:hover>.fa{color:var(--brand) !important;background:transparent !important}
.bravo_wrap .bravo-menu .main-menu>li.active>a{color:var(--brand) !important}
.bravo_wrap .bravo-menu .caret{font-size:10px}

.bravo_wrap .bravo-menu .children-menu.menu-dropdown{
  position:absolute;top:100%;inset-inline-start:0;
  min-width:210px;
  background:var(--bg-card) !important;
  border:1px solid var(--border) !important;
  border-radius:10px;
  padding:8px;margin:6px 0 0;list-style:none;
  box-shadow:var(--shadow-lg);
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:all .2s;
  z-index:50;
}
.bravo_wrap .bravo-menu .main-menu>li:hover>.children-menu{opacity:1;visibility:visible;transform:translateY(0)}
.bravo_wrap .bravo-menu .children-menu.menu-dropdown li{list-style:none;display:block !important;padding:0 !important;margin:0 !important}
.bravo_wrap .bravo-menu .children-menu.menu-dropdown li a{
  display:block !important;width:100% !important;box-sizing:border-box;
  padding:9px 12px !important;border-radius:6px;
  color:var(--text-secondary) !important;font-size:13.5px;font-weight:500;
  background:transparent !important;
}
.bravo_wrap .bravo-menu .children-menu.menu-dropdown li a:hover{background:var(--bg-base) !important;color:var(--brand) !important}
.bravo_wrap .bravo-menu .children-menu .children-menu{inset-inline-start:100%;top:0}

.bravo_wrap .header-right{display:flex;align-items:center;gap:12px}
.bravo_wrap .header-right .topbar-items{display:flex;align-items:center;gap:8px;list-style:none;margin:0;padding:0}
.bravo_wrap .header-right .login-item .login{
  border:1.5px solid var(--border);color:var(--text-secondary);
  padding:8px 18px;border-radius:8px;font-size:13px;font-weight:600;
}
.bravo_wrap .header-right .login-item .login:hover{border-color:var(--brand);color:var(--brand);background:transparent}
.bravo_wrap .header-right .signup-item .signup{
  background:var(--brand);color:#fff !important;
  padding:9px 20px;border-radius:8px;
  font-size:13px;font-weight:700;
  box-shadow:var(--shadow-brand);
}
.bravo_wrap .header-right .signup-item .signup:hover{background:var(--brand-dark)}
.bravo_wrap .header-right .is_login{display:flex;align-items:center;gap:8px;color:var(--text-secondary);font-size:13px;font-weight:600}
.bravo_wrap .header-right .is_login:hover{color:var(--text-primary)}
.bravo_wrap .header-right .avatar{width:32px;height:32px;border-radius:50%;object-fit:cover}
.bravo_wrap .header-right .avatar-text{
  width:32px;height:32px;border-radius:50%;
  background:var(--brand);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-weight:700;font-size:13px;
}
.bravo_wrap .bravo-more-menu{color:var(--text-secondary);font-size:20px;background:none;border:none}

.bravo_wrap .bravo-menu-mobile{background:var(--bg-raised)}
.bravo_wrap .bravo-menu-mobile .user-profile,
.bravo_wrap .bravo-menu-mobile .g-menu{border-color:var(--border)}
.bravo_wrap .bravo-menu-mobile ul li a{color:var(--text-secondary)}
.bravo_wrap .bravo-menu-mobile .b-close{color:var(--text-muted)}

@media(max-width:991px){
  .bravo_wrap .bravo-menu .main-menu,
  .bravo_wrap .header-right .topbar-items{display:none}
  .bravo_wrap .bravo-more-menu{display:inline-flex;align-items:center}
}

/* =============================================
   FOOTER
============================================= */
.bravo_wrap .lm-footer{background:#060e1a;padding:60px 0 0;border-top:1px solid var(--border)}
.bravo_wrap .lm-foot-grid{display:flex;flex-wrap:wrap;gap:40px;margin-bottom:40px}
.bravo_wrap .lm-foot-brand{flex:1 1 300px;min-width:260px}
.bravo_wrap .lm-foot-logo{display:inline-block;margin-bottom:14px}
.bravo_wrap .lm-foot-logo img{max-height:46px;width:auto}
.bravo_wrap .footer-logo-text{font-size:20px;font-weight:900;color:#fff}
.bravo_wrap .footer-logo-text em{color:var(--brand);font-style:normal}
.bravo_wrap .lm-foot-desc{font-size:13.5px;color:var(--text-muted);line-height:1.8;margin:0 0 20px;max-width:340px}
.bravo_wrap .lm-foot-social{display:flex;gap:8px;flex-wrap:wrap}
.bravo_wrap .lm-foot-social a{
  width:36px;height:36px;background:var(--bg-card);border:1px solid var(--border);border-radius:8px;
  display:flex;align-items:center;justify-content:center;color:var(--text-muted);font-size:14px;transition:all .2s;
}
.bravo_wrap .lm-foot-social a:hover{background:var(--brand);border-color:var(--brand);color:#fff;transform:translateY(-2px)}
.bravo_wrap .lm-foot-badges{display:flex;flex-wrap:wrap;align-items:center;gap:14px;margin-top:20px;line-height:1}
.bravo_wrap .lm-foot-badges p{margin:0;display:inline}
.bravo_wrap .lm-foot-badges br{display:none}
.bravo_wrap .lm-foot-badges img{
  height:30px !important;width:auto !important;max-height:30px !important;max-width:120px !important;min-height:0 !important;
  background:transparent !important;border:0 !important;border-radius:0 !important;padding:0 !important;margin:0 !important;box-shadow:none !important;
  display:inline-block;vertical-align:middle;object-fit:contain;
}
/* TripAdvisor's logo has dark text — give just that badge a white plate. */
.bravo_wrap .lm-foot-badges img[alt="Tripadvisor"]{
  background:#fff !important;
  padding:0 5px !important;
  border-radius:5px !important;
}

/* =============================================
   TOUR DETAIL PAGE
============================================= */
/* --- Hero banner --- */
.bravo_wrap .lm-tour-hero{
  position:relative;min-height:460px;display:flex;align-items:flex-end;
  background-color:var(--bg-card);background-size:cover;background-position:center;overflow:hidden;
}
.bravo_wrap .lm-tour-hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(6,12,22,.35) 0%,rgba(6,12,22,.62) 45%,rgba(6,12,22,.96) 100%)}
.bravo_wrap .lm-tour-hero .container{position:relative;z-index:1}
.bravo_wrap .lm-tour-hero-body{padding:54px 0 38px;width:100%}
.bravo_wrap .lm-tour-hero-eyebrow{display:inline-flex;align-items:center;gap:7px;background:var(--brand-dim);border:1px solid var(--border-brand);color:var(--brand);font-size:12px;font-weight:700;padding:6px 14px;border-radius:20px;margin-bottom:16px}
.bravo_wrap .lm-tour-hero-title{font-size:clamp(28px,3.4vw,46px);font-weight:900;color:#fff;line-height:1.18;margin:0 0 14px}
.bravo_wrap .lm-tour-hero-meta{display:flex;flex-wrap:wrap;gap:22px;margin-bottom:24px}
.bravo_wrap .lm-tour-hero-loc,.bravo_wrap .lm-tour-hero-rating{display:inline-flex;align-items:center;gap:7px;color:rgba(255,255,255,.92);font-size:15px;font-weight:600}
.bravo_wrap .lm-tour-hero-loc i{color:var(--brand)}
.bravo_wrap .lm-tour-hero-rating i{color:#f59e0b}
.bravo_wrap .lm-tour-hero-rating span{color:rgba(255,255,255,.6);font-weight:500;font-size:13px}
.bravo_wrap .lm-tour-hero-facts{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:26px}
.bravo_wrap .lm-tour-fact{display:flex;align-items:center;gap:12px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);border-radius:12px;padding:11px 18px;min-width:148px}
.bravo_wrap .lm-tour-fact i{font-size:19px;color:var(--brand)}
.bravo_wrap .lm-tour-fact span{display:block;font-size:11px;color:rgba(255,255,255,.6);margin-bottom:2px}
.bravo_wrap .lm-tour-fact strong{display:block;font-size:14px;color:#fff;font-weight:700}
.bravo_wrap .lm-tour-hero-cta{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.bravo_wrap .lm-tour-hero-price{display:flex;align-items:baseline;gap:8px}
.bravo_wrap .lm-tour-hero-price .from{font-size:13px;color:rgba(255,255,255,.65)}
.bravo_wrap .lm-tour-hero-price .old{font-size:15px;color:rgba(255,255,255,.5);text-decoration:line-through}
.bravo_wrap .lm-tour-hero-price .now{font-size:26px;font-weight:900;color:#fff}
.bravo_wrap .lm-tour-hero-book{font-size:15px;padding:14px 30px}

/* --- Content area + cards --- */
.bravo_wrap .bravo_detail_tour .bravo_content{padding:40px 0 64px;background:var(--bg-base)}
.bravo_wrap .bravo_content .g-overview,
.bravo_wrap .bravo_content .g-gallery,
.bravo_wrap .bravo_content .g-include-exclude,
.bravo_wrap .bravo_content .g-faq,
.bravo_wrap .bravo_content .itinerary-section,
.bravo_wrap .bravo_content .list-attributes,
.bravo_wrap .bravo_content .g-location,
.bravo_wrap .bravo_content .bravo-reviews{
  background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:28px;margin-bottom:24px;
}
.bravo_wrap .bravo_content .g-overview h3,
.bravo_wrap .bravo_content .lm-sec-h,
.bravo_wrap .bravo_content .g-include-exclude h3,
.bravo_wrap .bravo_content .g-faq>h3,
.bravo_wrap .bravo_content .itinerary-title,
.bravo_wrap .bravo_content .g-location h3,
.bravo_wrap .bravo_content .bravo-reviews>h3,
.bravo_wrap .bravo_content .bravo-reviews .review-title{
  font-size:20px;font-weight:800;color:var(--text-primary);margin:0 0 18px;padding-bottom:12px;border-bottom:1px solid var(--border);
}
.bravo_wrap .bravo_content .description,
.bravo_wrap .bravo_content .description p,
.bravo_wrap .bravo_content .description li,
.bravo_wrap .bravo_content .description span{color:var(--text-secondary);line-height:1.9;font-size:15px}
.bravo_wrap .bravo_content .description h1,.bravo_wrap .bravo_content .description h2,.bravo_wrap .bravo_content .description h3,
.bravo_wrap .bravo_content .description h4,.bravo_wrap .bravo_content .description strong,.bravo_wrap .bravo_content .description b{color:var(--text-primary)}
.bravo_wrap .bravo_content .description a{color:var(--brand)}

/* --- Gallery + video btn --- */
.bravo_wrap .g-gallery .fotorama{border-radius:10px;overflow:hidden}
.bravo_wrap .lm-video-btn{display:inline-flex;align-items:center;gap:8px;background:var(--brand);color:#fff !important;border-radius:10px;padding:9px 18px;font-size:13px;font-weight:700;margin-bottom:16px;border:0}
.bravo_wrap .g-gallery .social{display:flex;align-items:center;gap:12px;margin-top:16px}
.bravo_wrap .g-gallery .social .social-icon,
.bravo_wrap .g-gallery .service-wishlist{width:40px;height:40px;border-radius:10px;background:var(--bg-raised);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--text-secondary);cursor:pointer}
.bravo_wrap .g-gallery .service-wishlist.active,.bravo_wrap .g-gallery .service-wishlist:hover{color:var(--brand);border-color:var(--border-brand)}

/* --- Include / Exclude --- */
.bravo_wrap .g-include-exclude .item{display:flex;align-items:flex-start;gap:10px;color:var(--text-secondary);margin-bottom:12px;font-size:14.5px}
.bravo_wrap .g-include-exclude .icon-include{color:#3bb077}
.bravo_wrap .g-include-exclude .icon-exclude{color:#d9534f}

/* --- Itinerary ---
   The itinerary partial ships a self-contained inline <style> hardcoding bright
   orange headers (#FF8A3D/#FF6B1A), white day-cards and dark-on-white text. Those
   are single-class rules (0,1,0); every override below is ".bravo_wrap .x" (0,2,0)
   so it wins regardless of the inline block's later DOM position, recoloring the
   whole component to brand/dark tokens without forking the Blade markup. */
.bravo_wrap .bravo_content .itinerary-section{background:transparent;border:0;border-radius:0;padding:0;margin-bottom:24px}
.bravo_wrap .itinerary-container{position:relative;max-width:100%;margin:0;padding:0}
.bravo_wrap .itinerary-header{text-align:center;margin-bottom:26px}
.bravo_wrap .itinerary-header h2{font-size:22px;font-weight:800;color:var(--text-primary);margin-bottom:6px}
.bravo_wrap .itinerary-header p{font-size:14px;color:var(--text-secondary)}
.bravo_wrap .itinerary-grid{display:flex;flex-direction:column;gap:18px}
.bravo_wrap .day-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:transform .3s,box-shadow .3s,border-color .3s}
.bravo_wrap .day-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);border-color:var(--border-brand)}
.bravo_wrap .day-header{background:linear-gradient(135deg,var(--brand) 0%,var(--brand-dark) 100%);color:#fff}
.bravo_wrap .day-number{color:#fff;opacity:.85;font-weight:700}
.bravo_wrap .day-name{color:#fff;font-weight:800}
.bravo_wrap .day-icon-wrapper{background:rgba(255,255,255,.2)}
.bravo_wrap .day-image{background:var(--bg-raised)}
.bravo_wrap .timeline-item:not(:last-child)::after{background:linear-gradient(to bottom,var(--brand),transparent)}
.bravo_wrap .timeline-dot{background:var(--brand);color:#fff;box-shadow:0 3px 10px var(--brand-glow)}
.bravo_wrap .activity-time{color:var(--brand);background:var(--brand-dim);border:1px solid var(--border-brand)}
.bravo_wrap .activity-title{color:var(--text-primary)}
.bravo_wrap .activity-description{color:var(--text-secondary)}

/* --- FAQ --- */
.bravo_wrap .g-faq .item{border:1px solid var(--border);border-radius:10px;margin-bottom:12px;overflow:hidden;background:var(--bg-raised)}
.bravo_wrap .g-faq .item .header{padding:14px 18px;color:var(--text-primary);font-weight:700;cursor:pointer}
.bravo_wrap .g-faq .item .content,.bravo_wrap .g-faq .item .body{padding:0 18px 16px;color:var(--text-secondary);line-height:1.85}

/* --- Booking sidebar --- */
.bravo_wrap .bravo_detail_tour .bravo_single_book_wrap{position:sticky;top:90px;max-height:calc(100vh - 110px);overflow-y:auto;overflow-x:hidden}
.bravo_wrap .bravo_detail_tour .bravo_single_book_wrap::-webkit-scrollbar{width:6px}
.bravo_wrap .bravo_detail_tour .bravo_single_book_wrap::-webkit-scrollbar-thumb{background:var(--border-brand);border-radius:6px}
.bravo_wrap .bravo_detail_tour .bravo_single_book{background:var(--bg-card) !important;border:1px solid var(--border) !important;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-lg)}
.bravo_wrap .bravo_detail_tour .bravo_single_book .form-head{padding:22px;border-bottom:1px solid var(--border) !important;background:var(--bg-raised)}
.bravo_wrap .bravo_detail_tour .bravo_single_book .form-head .price .label{color:var(--text-muted);font-size:13px}
.bravo_wrap .bravo_detail_tour .bravo_single_book .form-head .price .value{color:var(--text-primary)}
.bravo_wrap .bravo_detail_tour .bravo_single_book .form-head .price .text-lg{font-size:26px;font-weight:900;color:var(--text-primary)}
.bravo_wrap .bravo_detail_tour .bravo_single_book .form-head .price .onsale{color:var(--text-muted);text-decoration:line-through;font-size:15px;margin-inline-end:6px}
.bravo_wrap .bravo_detail_tour .bravo_single_book .nav-enquiry{display:flex;gap:8px;padding:16px 16px 0;background:#141f30 !important;border:0 !important}
.bravo_wrap .bravo_detail_tour .bravo_single_book .nav-enquiry .enquiry-item span{border:0 !important}
/* app.css adds a border to every .form-content .form-group (0,5,0 + !important),
   which shows as stray dividers around sections that are empty until a selection. */
.bravo_wrap .bravo_detail_tour .bravo_single_book .form-content .form-group{border:0 !important}
.bravo_wrap .bravo_detail_tour .bravo_single_book .nav-enquiry .enquiry-item{flex:1;text-align:center;padding:10px;border-radius:10px 10px 0 0;background:var(--bg-raised);color:var(--text-secondary);cursor:pointer;font-weight:700;font-size:14px}
.bravo_wrap .bravo_detail_tour .bravo_single_book .nav-enquiry .enquiry-item.active{background:var(--brand) !important;color:#fff !important}
.bravo_wrap .bravo_detail_tour .bravo_single_book .nav-enquiry .enquiry-item.active span{color:#fff !important}
.bravo_wrap .bravo_detail_tour .bravo_single_book .form-content{padding:16px 18px}
.bravo_wrap .bravo_detail_tour .bravo_single_book .form-content label{color:var(--text-secondary);font-size:13px}
.bravo_wrap .bravo_detail_tour .bravo_single_book .date-wrapper{background:var(--bg-input);border:1px solid var(--border);border-radius:10px;padding:12px 14px;margin-bottom:12px}
.bravo_wrap .bravo_detail_tour .bravo_single_book .guest-wrapper{background:transparent !important;border:0 !important;padding:8px 0;margin-bottom:8px}
.bravo_wrap .bravo_detail_tour .bravo_single_book .render,.bravo_wrap .bravo_detail_tour .bravo_single_book .check-in-render{color:var(--text-primary);font-weight:600}
.bravo_wrap .bravo_detail_tour .bravo_single_book .input-number-group .input input{background:transparent;color:#fff !important;border:0;width:44px;text-align:center}
.bravo_wrap .bravo_detail_tour .bravo_single_book .input-number-group .icon{color:var(--brand);font-size:22px;cursor:pointer}
.bravo_wrap .bravo_detail_tour .bravo_single_book .form-section-total{padding:16px 18px;border-top:1px solid var(--border);margin:0}
.bravo_wrap .bravo_detail_tour .bravo_single_book .form-section-total li{display:flex;justify-content:space-between;color:var(--text-primary);font-weight:700;margin-bottom:6px}
.bravo_wrap .bravo_detail_tour .bravo_single_book .form-section-total .price{color:var(--brand)}
.bravo_wrap .bravo_detail_tour .bravo_single_book .submit-group{padding:18px;border-top:0 !important}
.bravo_wrap .bravo_detail_tour .bravo_single_book .submit-group .btn{width:100%;background:var(--brand);color:#fff;border:0;border-radius:10px;padding:15px;font-weight:800;font-size:15px;transition:all .2s}
.bravo_wrap .bravo_detail_tour .bravo_single_book .submit-group .btn span{color:#fff !important}
.bravo_wrap .bravo_detail_tour .bravo_single_book .submit-group .btn:hover{background:var(--brand-dark);transform:translateY(-2px)}
.bravo_wrap .tour-dates-box{background:var(--bg-raised);border:1px solid var(--border);border-radius:10px;padding:14px;margin:0 0 14px}
.bravo_wrap .tour-dates-title{display:flex;align-items:center;gap:7px;color:var(--text-primary);font-weight:700;font-size:13px;margin-bottom:10px}
.bravo_wrap .tour-dates-title i{color:var(--brand)}
.bravo_wrap .tour-dates-list{display:flex;flex-wrap:wrap;gap:8px}
.bravo_wrap .tour-date-chip{display:inline-flex;align-items:center;gap:6px;background:var(--bg-card);border:1px solid var(--border);color:var(--text-secondary);border-radius:8px;padding:7px 11px;font-size:12.5px;font-weight:600}
.bravo_wrap .tour-date-chip.is-next,.bravo_wrap .tour-date-chip:hover{border-color:var(--border-brand);color:var(--brand)}
.bravo_wrap .tour-date-badge{background:var(--brand);color:#fff;font-size:10px;font-weight:700;padding:2px 7px;border-radius:10px}
.bravo_wrap .tour-dates-hint{color:var(--text-muted);font-size:12px;margin-top:8px}
.bravo_wrap .tour-sale-box .sale_class{background:var(--brand);color:#fff;font-size:12px;font-weight:700;padding:4px 10px;border-radius:6px;display:inline-block}

/* --- Sidebar widgets (vendor / open hours) --- */
.bravo_wrap .col-lg-3 .owner-info.widget-box{background:#141f2f !important;border:1px solid var(--border);border-radius:var(--radius);padding:20px;margin-bottom:24px}
.bravo_wrap .owner-info .media-body a,.bravo_wrap .owner-info .media-heading{color:var(--text-primary);font-weight:700}
.bravo_wrap .owner-info,.bravo_wrap .owner-info p,.bravo_wrap .open-hour-detail{color:var(--text-secondary)}

/* --- Reviews --- */
.bravo_wrap .bravo-reviews .review-list .item{background:var(--bg-raised);border:1px solid var(--border);border-radius:12px;padding:18px;margin-bottom:14px}
.bravo_wrap .bravo-reviews .item .avatar-text,.bravo_wrap .bravo-reviews .item .media-heading{color:var(--text-primary);font-weight:700}
.bravo_wrap .bravo-reviews .item .date{color:var(--text-muted);font-size:12px}
.bravo_wrap .bravo-reviews .item .detail,.bravo_wrap .bravo-reviews .item p{color:var(--text-secondary);line-height:1.8}
.bravo_wrap .bravo-reviews .fa-star{color:#f59e0b}
.bravo_wrap .bravo-reviews .fa-star-o{color:var(--border)}
.bravo_wrap .bravo-reviews .form-control{background:var(--bg-input);border:1px solid var(--border);color:var(--text-primary)}
.bravo_wrap .bravo-reviews .form-control::placeholder{color:var(--text-muted)}

/* --- Related tours --- */
.bravo_wrap .bravo-list-tour-related{margin-top:20px}
.bravo_wrap .bravo-list-tour-related>h3,.bravo_wrap .bravo-list-tour-related .title-related{font-size:24px;font-weight:900;color:var(--text-primary);margin-bottom:24px}

/* --- Mobile sticky book bar --- */
.bravo_wrap .bravo-more-book-mobile{background:var(--bg-raised);border-top:1px solid var(--border)}
.bravo_wrap .bravo-more-book-mobile .price .text-price,.bravo_wrap .bravo-more-book-mobile .onsale{color:var(--text-primary);font-weight:800}
.bravo_wrap .bravo-more-book-mobile .fr_text{color:var(--text-muted)}
.bravo_wrap .bravo-more-book-mobile .btn{background:var(--brand);color:#fff;border:0;border-radius:10px;font-weight:700}

/* --- Breadcrumb (site-wide; app.css gives the <ol> a white bg + navy text) --- */
.bravo_wrap .blog-breadcrumb{background:var(--bg-base);border-bottom:1px solid var(--border);padding:15px 0}
.bravo_wrap .blog-breadcrumb .ul,
.bravo_wrap .blog-breadcrumb ol,
.bravo_wrap .blog-breadcrumb ul{background:transparent !important}
.bravo_wrap .blog-breadcrumb .ul li a,
.bravo_wrap .blog-breadcrumb ol li a,
.bravo_wrap .blog-breadcrumb ul li a{color:var(--text-muted) !important;font-weight:600;transition:color .2s}
.bravo_wrap .blog-breadcrumb .ul li a:hover,
.bravo_wrap .blog-breadcrumb ol li a:hover,
.bravo_wrap .blog-breadcrumb ul li a:hover{color:var(--brand) !important}
.bravo_wrap .blog-breadcrumb .ul li.active,
.bravo_wrap .blog-breadcrumb ol li.active,
.bravo_wrap .blog-breadcrumb ul li.active,
.bravo_wrap .blog-breadcrumb .ul li:last-child span,
.bravo_wrap .blog-breadcrumb ol li:last-child span,
.bravo_wrap .blog-breadcrumb ul li:last-child span{color:var(--text-primary) !important;font-weight:700}
.bravo_wrap .blog-breadcrumb .ul li:not(:last-child):after,
.bravo_wrap .blog-breadcrumb ol li:not(:last-child):after,
.bravo_wrap .blog-breadcrumb ul li:not(:last-child):after{background:var(--text-muted);opacity:.45}

@media(max-width:991px){
  .bravo_wrap .lm-tour-hero{min-height:360px}
  .bravo_wrap .lm-tour-hero-body{padding:36px 0 28px}
  .bravo_wrap .bravo_detail_tour .bravo_single_book_wrap{position:static !important;margin-top:24px}
  .bravo_wrap .lm-tour-fact{min-width:calc(50% - 7px);flex:1 1 calc(50% - 7px)}
}
@media(max-width:767px){
  .bravo_wrap .lm-tour-hero{min-height:auto}
  .bravo_wrap .lm-tour-hero-body{padding:28px 0 24px}
  .bravo_wrap .lm-tour-hero-title{font-size:24px;margin-bottom:12px}
  .bravo_wrap .lm-tour-hero-meta{gap:14px;margin-bottom:18px}
  .bravo_wrap .lm-tour-hero-facts{gap:10px;margin-bottom:20px}
  .bravo_wrap .lm-tour-fact{min-width:calc(50% - 5px);flex:1 1 calc(50% - 5px);padding:10px 12px}
  .bravo_wrap .lm-tour-fact i{font-size:17px}
  .bravo_wrap .lm-tour-hero-cta{flex-direction:column;align-items:stretch;gap:14px}
  .bravo_wrap .lm-tour-hero-book{justify-content:center}
  .bravo_wrap .bravo_detail_tour .bravo_content{padding:22px 0 36px}
  .bravo_wrap .bravo_content .g-overview,
  .bravo_wrap .bravo_content .g-gallery,
  .bravo_wrap .bravo_content .g-include-exclude,
  .bravo_wrap .bravo_content .g-faq,
  .bravo_wrap .bravo_content .list-attributes,
  .bravo_wrap .bravo_content .g-location,
  .bravo_wrap .bravo_content .bravo-reviews{padding:18px;margin-bottom:16px}
  .bravo_wrap .bravo_content .g-overview h3,
  .bravo_wrap .bravo_content .lm-sec-h,
  .bravo_wrap .bravo_content .bravo-reviews>h3{font-size:18px}
  .bravo_wrap .col-lg-3 .owner-info.widget-box{margin-bottom:16px}
}
.bravo_wrap .lm-foot-col{flex:1 1 160px;min-width:150px}
.bravo_wrap .lm-foot-col h4{
  font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:var(--text-primary);
  margin:0 0 18px;padding-bottom:10px;position:relative;
}
.bravo_wrap .lm-foot-col h4::after{content:'';position:absolute;bottom:0;inset-inline-start:0;width:22px;height:2px;background:var(--brand);border-radius:2px}
.bravo_wrap .lm-foot-links{font-size:13.5px;color:var(--text-muted);line-height:1.9}
.bravo_wrap .lm-foot-links ul{list-style:none;padding:0;margin:0}
.bravo_wrap .lm-foot-links li{margin-bottom:10px}
.bravo_wrap .lm-foot-links a{color:var(--text-muted);transition:color .2s}
.bravo_wrap .lm-foot-links a:hover{color:var(--brand)}
.bravo_wrap .lm-foot-links .c-title{color:var(--text-primary);font-weight:700;margin-top:14px;margin-bottom:4px}
.bravo_wrap .lm-foot-col img{max-width:100% !important;width:auto !important;height:auto !important;max-height:30px !important;margin:3px 6px 3px 0;vertical-align:middle;border-radius:6px;display:inline-block}
.bravo_wrap .lm-foot-bottom{
  border-top:1px solid var(--border);padding:20px 0;display:flex;justify-content:space-between;align-items:center;
  gap:16px;flex-wrap:wrap;font-size:13px;color:var(--text-muted);
}
.bravo_wrap .lm-foot-copy,.bravo_wrap .lm-foot-copy p{color:var(--text-muted);margin:0}
.bravo_wrap .lm-foot-copy a{color:var(--text-muted)}
.bravo_wrap .lm-foot-copy a:hover{color:var(--brand)}
.bravo_wrap .lm-foot-pay img{max-height:30px;width:auto;margin-inline-start:6px;opacity:.9}
@media(max-width:767px){.bravo_wrap .lm-foot-bottom{flex-direction:column;align-items:flex-start}}

/* =============================================
   NEWSLETTER STRIP
============================================= */
.bravo_wrap .lm-newsletter{background:var(--bg-stripe);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:52px 0}
.bravo_wrap .lm-newsletter .nl-inner{display:flex;align-items:center;justify-content:space-between;gap:40px;flex-wrap:wrap}
.bravo_wrap .lm-newsletter .nl-text h3{font-size:22px;font-weight:800;color:var(--text-primary);margin:0 0 6px;display:flex;align-items:center;gap:10px}
.bravo_wrap .lm-newsletter .nl-text h3 i{color:var(--brand)}
.bravo_wrap .lm-newsletter .nl-text p{font-size:14px;color:var(--text-secondary);line-height:1.6;margin:0}
.bravo_wrap .lm-newsletter .nl-form{display:flex;gap:10px;flex:0 0 460px;max-width:100%;flex-wrap:wrap;position:relative}
.bravo_wrap .lm-newsletter .nl-form .email-input{
  flex:1;min-width:200px;background:var(--bg-input);border:1px solid var(--border);border-radius:var(--radius-sm);
  padding:13px 16px;color:var(--text-primary);font-size:14px;
}
.bravo_wrap .lm-newsletter .nl-form .email-input::placeholder{color:var(--text-muted)}
.bravo_wrap .lm-newsletter .nl-form .email-input:focus{border-color:var(--brand);outline:none}
.bravo_wrap .lm-newsletter .nl-form .btn-submit{
  background:var(--brand);color:#fff;border:none;border-radius:var(--radius-sm);padding:13px 26px;
  font-size:14px;font-weight:700;cursor:pointer;transition:all .2s;white-space:nowrap;
}
.bravo_wrap .lm-newsletter .nl-form .btn-submit:hover{background:var(--brand-dark);transform:translateY(-2px)}
.bravo_wrap .lm-newsletter .nl-form .btn-submit .fa-spinner{display:none}
.bravo_wrap .lm-newsletter .nl-form .form-mess{flex-basis:100%;font-size:13px;margin-top:4px}

/* =============================================
   HERO (form_search_tour, normal style)
============================================= */
.bravo_wrap .lm-hero{
  position:relative;min-height:680px;max-height:940px;height:92vh;
  overflow:hidden;background:var(--bg-base);
}
.bravo_wrap .lm-hero::before{
  content:'';position:absolute;inset:0;
  background-image:var(--lm-hero-bg);background-size:cover;background-position:center;
}
.bravo_wrap .lm-hero .lm-hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(130deg,rgba(6,12,22,.92) 0%,rgba(6,12,22,.7) 45%,rgba(195,81,43,.18) 100%);
}
.bravo_wrap .lm-hero .lm-hero-body{position:relative;height:100%;display:flex;align-items:center;z-index:1}
.bravo_wrap .lm-hero .lm-hero-content{max-width:760px}
.bravo_wrap .lm-hero .lm-hero-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  background:rgba(195,81,43,.12);border:1px solid var(--border-brand);
  border-radius:30px;padding:6px 16px;color:#f4a07a;font-size:13px;font-weight:600;
  margin-bottom:20px;
}
.bravo_wrap .lm-hero .lm-dot{width:7px;height:7px;background:var(--brand);border-radius:50%;display:inline-block}
.bravo_wrap .lm-hero .lm-hero-title{
  font-size:clamp(34px,5vw,68px);font-weight:900;color:#fff;line-height:1.1;
  margin-bottom:14px;text-shadow:0 4px 32px rgba(0,0,0,.5);
}
.bravo_wrap .lm-hero .lm-hero-sub{
  font-size:clamp(15px,1.6vw,18px);color:rgba(255,255,255,.7);
  margin-bottom:26px;line-height:1.7;max-width:540px;
}
.bravo_wrap .lm-hero .lm-hero-search{
  background:rgba(14,24,40,.92);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
  border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:18px 20px;
  max-width:880px;box-shadow:0 28px 72px rgba(0,0,0,.5);
}
.bravo_wrap .lm-hero .lm-search-tabs{display:flex;gap:7px;margin-bottom:14px;flex-wrap:wrap}
.bravo_wrap .lm-hero .lm-search-tab{
  padding:7px 16px;border-radius:30px;border:1.5px solid var(--border);
  background:transparent;color:var(--text-secondary);font-size:13px;font-weight:700;
  transition:all .2s;
}
.bravo_wrap .lm-hero .lm-search-tab.active,
.bravo_wrap .lm-hero .lm-search-tab:hover{background:var(--brand);border-color:var(--brand);color:#fff}
.bravo_wrap .lm-hero .g-form-control{padding:0 !important}
.bravo_wrap .lm-hero .g-form-control .bravo_form{background:transparent;box-shadow:none;padding:0;margin:0}
.bravo_wrap .lm-hero .g-form-control .form-group{border-bottom:none}
.bravo_wrap .lm-hero .g-form-control .border-right{border-right:1px solid var(--border)}
.bravo_wrap .lm-hero .g-form-control label{color:var(--text-muted);font-size:11px;text-transform:uppercase;letter-spacing:.05em}
.bravo_wrap .lm-hero .g-form-control input,
.bravo_wrap .lm-hero .g-form-control select,
.bravo_wrap .lm-hero .g-form-control .select2-selection{
  background:var(--bg-input) !important;border:1.5px solid var(--border) !important;
  color:var(--text-primary) !important;border-radius:10px !important;
}
.bravo_wrap .lm-hero .g-form-control .dropdown-toggle:after{color:var(--brand)}

/* The inherited search-form partial (shared with the search/listing page) ships
   fixed heights/paddings tuned for a plain horizontal bar, not this compact glass
   card — overridden here, scoped to the hero only, with !important since the
   originating rules carry deep, specific selectors of their own. */
.bravo_wrap .lm-hero .bravo_form{
  display:flex !important;width:100% !important;
  align-items:flex-end !important;gap:14px !important;
  flex-wrap:nowrap !important;
}
.bravo_wrap .lm-hero .g-field-search{
  padding:0 !important;flex:1 1 auto !important;min-width:0;width:auto !important;
}
.bravo_wrap .lm-hero .g-button-submit{
  display:flex !important;align-items:flex-end !important;
  flex:0 0 130px !important;width:130px !important;min-width:130px !important;
}
/* On phones, let the button drop to its own full-width line below the inputs. */
@media(max-width:767px){
  .bravo_wrap .lm-hero .bravo_form{flex-wrap:wrap !important}
  .bravo_wrap .lm-hero .g-button-submit{flex:1 0 100% !important;width:100% !important;order:2;margin-top:10px}
}
.bravo_wrap .lm-hero .g-field-search>.row{display:flex !important;align-items:flex-end !important;margin:0 !important}
.bravo_wrap .lm-hero .g-field-search>.row>div{
  height:auto !important;padding:0 16px !important;display:block !important;
}
.bravo_wrap .lm-hero .filter-item,
.bravo_wrap .lm-hero .form-group{height:auto !important;width:100%}
.bravo_wrap .lm-hero .form-group{position:relative !important}
.bravo_wrap .lm-hero .form-content{height:auto !important;padding:0 !important}
.bravo_wrap .lm-hero label{
  display:block !important;margin:0 0 6px !important;padding-inline-start:44px !important;
  font-size:11px !important;font-weight:800 !important;text-transform:uppercase;letter-spacing:.04em;
  color:var(--text-muted) !important;
}
/* Input pill: matches the button's height exactly (44px), bottom-aligned so it
   lines up with the button while the label floats above it.
   The 6-class selector (incl. .bravo_form) is deliberate — it out-specifies
   app.css's ".bravo_wrap .bravo_form .input-search .form-control{padding:0!important}"
   (5 classes), which otherwise wins and strips the text padding.
   Layout in RTL: a leading field-icon sits at the start (right) edge BEFORE the
   text, the dropdown caret sits at the end (left) edge. So the text needs a
   wide start padding (clears the leading icon) and a smaller end padding
   (clears the caret). */
.bravo_wrap .lm-hero .bravo_form .g-field-search .form-content .form-control,
.bravo_wrap .lm-hero .bravo_form .g-field-search .form-content .smart-select{
  height:44px !important;box-sizing:border-box !important;
  padding:0 !important;padding-inline-start:50px !important;padding-inline-end:30px !important;
  font-size:14.5px !important;color:var(--text-primary) !important;text-align:start !important;
  background:var(--bg-input) !important;border:1.5px solid var(--border) !important;border-radius:10px !important;
}
.bravo_wrap .lm-hero .bravo_form .g-field-search .form-content .form-control::placeholder{color:var(--text-muted) !important}
/* Leading field-type icon: pinned to the START (right, in RTL) edge so it comes
   BEFORE the placeholder/value text in reading order. Physical right:16px is
   used (not logical inset-inline-start) because the <i> element's own direction
   computes LTR, which flips logical sides. Centred against the PILL via a
   bottom-offset since it lives in .form-group alongside the label above it. */
.bravo_wrap .lm-hero .field-icon{
  position:absolute !important;top:auto !important;bottom:15px !important;
  right:28px !important;left:auto !important;inset-inline-start:auto !important;inset-inline-end:auto !important;
  transform:none !important;margin:0 !important;color:var(--brand);font-size:14px;z-index:2;
}
.bravo_wrap .lm-hero .smart-search::after{
  top:50% !important;bottom:auto !important;margin-top:-3px !important;
  left:14px !important;right:auto !important;
  border-top-color:var(--brand) !important;
}
.bravo_wrap .lm-hero .btn-search{
  background:var(--brand);border:none;border-radius:50px !important;font-weight:700;
  height:44px !important;width:100% !important;padding:0 !important;
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-brand);
}
.bravo_wrap .lm-hero .btn-search:hover{background:var(--brand-dark)}

.bravo_wrap .lm-hero .lm-hero-stats{
  display:flex;gap:0;margin-top:26px;border-top:1px solid rgba(255,255,255,.08);padding-top:22px;flex-wrap:wrap;
}
.bravo_wrap .lm-hero .lm-hstat{flex:1;min-width:120px;padding-inline-end:24px;border-inline-start:1px solid rgba(255,255,255,.08)}
.bravo_wrap .lm-hero .lm-hstat:first-child{border-inline-start:none}
.bravo_wrap .lm-hero .lm-hstat strong{display:block;font-size:30px;font-weight:900;color:#fff;line-height:1}
.bravo_wrap .lm-hero .lm-hstat strong em{font-size:17px;color:var(--brand);font-style:normal}
.bravo_wrap .lm-hero .lm-hstat span{font-size:12px;color:rgba(255,255,255,.62);margin-top:4px;display:block}
.bravo_wrap .lm-hero .lm-hero-scroll{
  position:absolute;bottom:22px;left:50%;transform:translateX(-50%);
  color:rgba(255,255,255,.35);font-size:16px;z-index:1;
}
@media(max-width:768px){
  .bravo_wrap .lm-hero{height:auto;min-height:0;padding:40px 0}
  .bravo_wrap .lm-hero .lm-hero-stats{gap:16px}
  .bravo_wrap .lm-hero .lm-hstat{flex:1 1 40%;border-inline-start:none}
}

/* =============================================
   FEATURES STRIP (list_featured_item, style="strip")
============================================= */
.bravo_wrap .bravo-featured-item.strip{background:#060e1a;border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:22px 0;margin:0 !important}
.bravo_wrap .bravo-featured-item.strip .row{display:flex;flex-wrap:wrap}
.bravo_wrap .bravo-featured-item.strip .featured-item-strip{
  display:flex;align-items:center;gap:14px;padding:8px 18px;border-inline-start:1px solid var(--border);height:100%;
}
.bravo_wrap .bravo-featured-item.strip .col:first-child .featured-item-strip{border-inline-start:none}
.bravo_wrap .bravo-featured-item.strip .strip-icon{
  width:42px;height:42px;background:var(--brand-dim);border:1px solid var(--border-brand);border-radius:10px;
  display:flex;align-items:center;justify-content:center;color:var(--brand);font-size:17px;flex-shrink:0;
}
.bravo_wrap .bravo-featured-item.strip .strip-icon img{width:22px;height:22px;object-fit:contain}
.bravo_wrap .bravo-featured-item.strip .strip-content .title{font-size:14px;font-weight:700;color:var(--text-primary);margin-bottom:2px}
.bravo_wrap .bravo-featured-item.strip .strip-content .desc{font-size:12px;color:var(--text-muted);line-height:1.4}

/* =============================================
   SECTION HEADERS (used by list_tours grid_featured + generic)
============================================= */
.bravo_wrap .lm-sec-row{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:32px;flex-wrap:wrap}
/* In RTL the head is the first flex child → sits on the start (right) edge, with
   its text aligned to the start (right); the ghost button is last → end (left). */
.bravo_wrap .lm-sec-head{text-align:start}
.bravo_wrap .lm-sec-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.12em;color:var(--brand);margin-bottom:10px;
}
.bravo_wrap .lm-sec-eyebrow::before{content:'';width:24px;height:2px;background:var(--brand);border-radius:2px}
.bravo_wrap .lm-sec-title{font-size:clamp(26px,2.8vw,42px);font-weight:900;color:var(--text-primary);margin:0;line-height:1.2}
.bravo_wrap .lm-sec-title em{color:var(--brand);font-style:normal}
.bravo_wrap .lm-sec-desc{font-size:15px;color:var(--text-secondary);margin-top:8px;line-height:1.7}
.bravo_wrap .lm-btn-ghost{
  display:inline-flex;align-items:center;gap:8px;border:1.5px solid var(--border-brand);color:var(--brand);
  padding:10px 22px;border-radius:10px;font-size:14px;font-weight:700;transition:all .2s;white-space:nowrap;
}
.bravo_wrap .lm-btn-ghost:hover{background:var(--brand);color:#fff;border-color:var(--brand)}
.bravo_wrap .lm-btn-ghost i{font-size:11px}

/* =============================================
   CATEGORIES (box_category_tour)
============================================= */
.bravo_wrap .bravo-box-category-tour{background:var(--bg-stripe);padding:60px 0}
/* Centered section header (eyebrow + title + desc) — mirrors the mockup's
   .sec-head.center */
.bravo_wrap .bravo-box-category-tour .lm-sec-head.center{text-align:center;margin-bottom:40px}
.bravo_wrap .bravo-box-category-tour .lm-sec-eyebrow{
  display:inline-flex;align-items:center;gap:10px;justify-content:center;
  font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.12em;color:var(--brand);margin-bottom:10px;
}
.bravo_wrap .bravo-box-category-tour .lm-sec-eyebrow::before,
.bravo_wrap .bravo-box-category-tour .lm-sec-eyebrow::after{content:'';width:24px;height:2px;background:var(--brand);border-radius:2px}
.bravo_wrap .bravo-box-category-tour .lm-sec-title{font-size:clamp(26px,2.8vw,42px);font-weight:900;color:var(--text-primary);line-height:1.2;margin:0}
.bravo_wrap .bravo-box-category-tour .lm-sec-desc{font-size:15px;color:var(--text-secondary);margin:10px auto 0;max-width:520px;line-height:1.7}

/* 6-up category grid of tall image cards (aspect 4/5) with gradient + icon */
.bravo_wrap .bravo-box-category-tour .lm-cats-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}
.bravo_wrap .bravo-box-category-tour .lm-cat-card{
  position:relative;display:block;border-radius:12px;overflow:hidden;aspect-ratio:4/5;
  border:1px solid var(--border);transition:transform .28s,border-color .28s;
}
.bravo_wrap .bravo-box-category-tour .lm-cat-card:hover{transform:translateY(-5px);border-color:var(--brand)}
.bravo_wrap .bravo-box-category-tour .lm-cat-card img{width:100%;height:100%;object-fit:cover;transition:transform .42s}
.bravo_wrap .bravo-box-category-tour .lm-cat-card:hover img{transform:scale(1.08)}
.bravo_wrap .bravo-box-category-tour .lm-cat-card::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(5,12,22,.85) 0%,rgba(5,12,22,.15) 55%);transition:background .3s;
}
.bravo_wrap .bravo-box-category-tour .lm-cat-card:hover::after{background:linear-gradient(0deg,rgba(195,81,43,.82) 0%,rgba(5,12,22,.3) 65%)}
.bravo_wrap .bravo-box-category-tour .lm-cat-info{position:absolute;bottom:0;inset-inline-start:0;inset-inline-end:0;padding:14px 12px;z-index:1}
.bravo_wrap .bravo-box-category-tour .lm-cat-icon{font-size:22px;color:rgba(255,255,255,.85);margin-bottom:4px;line-height:1}
.bravo_wrap .bravo-box-category-tour .lm-cat-name{display:block;font-size:13px;font-weight:800;color:#fff}
.bravo_wrap .bravo-box-category-tour .lm-cat-count{font-size:11px;color:rgba(255,255,255,.6)}
@media(max-width:1024px){.bravo_wrap .bravo-box-category-tour .lm-cats-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:600px){.bravo_wrap .bravo-box-category-tour .lm-cats-grid{grid-template-columns:repeat(2,1fr)}}

/* =============================================
   TOUR CARDS (item-tour, used by list_tours + search/listing)
============================================= */
.bravo_wrap .item-tour{
  background:var(--bg-card);border:1px solid var(--border) !important;border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow);transition:all .3s;height:100%;
}
.bravo_wrap .item-tour:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:var(--border-brand) !important}
.bravo_wrap .item-tour .thumb-image{position:relative;padding-bottom:62%;background:var(--bg-raised)}
.bravo_wrap .item-tour .thumb-image img{transition:transform .45s}
.bravo_wrap .item-tour:hover .thumb-image img{transform:scale(1.07)}
.bravo_wrap .item-tour .sale_info{
  position:absolute;top:12px;inset-inline-end:12px;z-index:2;background:#15803d;color:#fff;
  font-size:11px;font-weight:700;padding:4px 11px;border-radius:20px;
}
.bravo_wrap .item-tour .service-wishlist{
  position:absolute;top:12px;inset-inline-start:12px;z-index:2;width:32px;height:32px;
  background:rgba(11,18,32,.7);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.1);
  border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--text-muted);font-size:14px;
}
.bravo_wrap .item-tour .service-wishlist.active,
.bravo_wrap .item-tour .service-wishlist:hover{color:#ef4444;border-color:var(--brand)}
.bravo_wrap .item-tour > .location:first-of-type{padding:12px 16px 0}
.bravo_wrap .item-tour .label-featured,
.bravo_wrap .item-tour .label-unavailable{
  display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:700;
  color:var(--brand);background:var(--brand-dim);border:1px solid var(--border-brand);
  padding:3px 9px;border-radius:20px;
}
.bravo_wrap .item-tour .label-unavailable{color:var(--text-muted);background:transparent;border-color:var(--border)}
.bravo_wrap .item-tour .item-title{padding:10px 16px 0}
.bravo_wrap .item-tour .item-title-link{
  font-size:15px;font-weight:800;color:var(--text-primary) !important;line-height:1.35;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:40px;
}
.bravo_wrap .item-tour .item-title-link:hover{color:var(--brand) !important}
.bravo_wrap .item-tour > .location:nth-of-type(2){padding:6px 16px 0 !important;font-size:12px;color:var(--text-muted)}
.bravo_wrap .item-tour > .location:nth-of-type(2) i{color:var(--brand);margin-inline-end:4px}
.bravo_wrap .item-tour .service-review{padding:8px 16px 0;display:flex;align-items:center;gap:8px}
.bravo_wrap .item-tour .booking-item-rating-stars li i{color:#3a4a60;font-size:11px}
.bravo_wrap .item-tour .booking-item-rating-stars-active .booking-item-rating-stars li i{color:#f59e0b}
.bravo_wrap .item-tour .service-review .review{font-size:12px;color:var(--text-muted)}
.bravo_wrap .item-tour .info{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 16px 14px;margin-top:8px;border-top:1px solid var(--border);
}
.bravo_wrap .item-tour .duration{font-size:12px;color:var(--text-muted)}
.bravo_wrap .item-tour .duration i{color:var(--brand);margin-inline-end:4px}
.bravo_wrap .item-tour .g-price{display:flex;align-items:center;gap:6px}
.bravo_wrap .item-tour .g-price .prefix{display:flex;flex-direction:column;align-items:flex-end;font-size:10px;color:var(--text-muted)}
.bravo_wrap .item-tour .g-price .prefix i{color:var(--brand)}
.bravo_wrap .item-tour .g-price .price .text-price{font-size:17px;font-weight:900;color:var(--text-primary)}
.bravo_wrap .item-tour .g-price .price .onsale{font-size:12px;color:var(--text-muted);text-decoration:line-through;margin-inline-end:4px}

/* Featured adventures — photo-overlay cards: the adventure photo fills the
   card and the location/title/duration/price sit over a dark gradient at the
   bottom. Photo-forward, premium, and gracefully omits the (currently empty)
   reviews. Uniform 3-up grid. */
.bravo_wrap .lm-tours-ov-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.bravo_wrap .lm-tour-ov{
  position:relative;display:block;height:380px;border-radius:var(--radius);overflow:hidden;
  border:1px solid var(--border);box-shadow:var(--shadow);transition:transform .3s,border-color .3s,box-shadow .3s;
}
.bravo_wrap .lm-tour-ov:hover{transform:translateY(-6px);border-color:var(--border-brand);box-shadow:var(--shadow-lg)}
.bravo_wrap .lm-tour-ov-media{position:absolute;inset:0}
.bravo_wrap .lm-tour-ov-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.bravo_wrap .lm-tour-ov:hover .lm-tour-ov-media img{transform:scale(1.06)}
.bravo_wrap .lm-tour-ov-media::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(5,11,20,.92) 0%,rgba(5,11,20,.55) 38%,rgba(5,11,20,.05) 70%);
}
.bravo_wrap .lm-tour-ov .service-wishlist{
  position:absolute;top:14px;inset-inline-start:14px;z-index:3;width:34px;height:34px;
  background:rgba(11,18,32,.6);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.14);
  border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:14px;transition:all .2s;
}
.bravo_wrap .lm-tour-ov .service-wishlist.active,
.bravo_wrap .lm-tour-ov .service-wishlist:hover{color:#ef4444;border-color:var(--brand)}
.bravo_wrap .lm-tour-ov-tag{
  position:absolute;top:14px;inset-inline-end:14px;z-index:3;
  display:inline-flex;align-items:center;gap:5px;
  font-size:11px;font-weight:700;padding:5px 12px;border-radius:20px;
}
.bravo_wrap .lm-tour-ov-tag.is-available{background:var(--brand);color:#fff;box-shadow:0 2px 12px rgba(195,81,43,.5)}
.bravo_wrap .lm-tour-ov-tag.is-unavailable{background:rgba(11,18,32,.72);color:#cbd5e1;border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(6px)}
.bravo_wrap .lm-tour-ov-tag i{font-size:11px}
.bravo_wrap .lm-tour-ov-info{position:absolute;bottom:0;inset-inline-start:0;inset-inline-end:0;z-index:2;padding:18px 18px 16px}
.bravo_wrap .lm-tour-ov-loc{font-size:12.5px;color:rgba(255,255,255,.75);margin-bottom:6px;display:flex;align-items:center;gap:6px}
.bravo_wrap .lm-tour-ov-loc i{color:var(--brand)}
.bravo_wrap .lm-tour-ov-title{
  font-size:18px;font-weight:800;color:#fff;line-height:1.35;margin:0 0 12px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.bravo_wrap .lm-tour-ov-foot{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding-top:12px;border-top:1px solid rgba(255,255,255,.14);
}
.bravo_wrap .lm-tour-ov-dur{font-size:12.5px;color:rgba(255,255,255,.8);display:flex;align-items:center;gap:6px}
.bravo_wrap .lm-tour-ov-dur i{color:var(--brand)}
.bravo_wrap .lm-tour-ov-price{font-size:17px;font-weight:900;color:#fff;display:flex;align-items:baseline;gap:6px}
.bravo_wrap .lm-tour-ov-price .from{font-size:11px;font-weight:500;color:rgba(255,255,255,.6)}
@media(max-width:992px){.bravo_wrap .lm-tours-ov-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.bravo_wrap .lm-tours-ov-grid{grid-template-columns:1fr}.bravo_wrap .lm-tour-ov{height:340px}}

/* =============================================
   WHY-US CARDS (list_featured_item, normal/style2-5)
============================================= */
/* General centered section header (used by the why-us section too, not only
   box-category). Eyebrow gets a short accent line on both sides when centered. */
.bravo_wrap .lm-sec-head.center{text-align:center;margin-bottom:40px}
.bravo_wrap .lm-sec-head.center .lm-sec-eyebrow{justify-content:center}
.bravo_wrap .lm-sec-head.center .lm-sec-eyebrow::after{content:'';width:24px;height:2px;background:var(--brand);border-radius:2px}
.bravo_wrap .lm-sec-head.center .lm-sec-desc{margin-left:auto;margin-right:auto;max-width:520px}

/* Featured adventures section needs breathing room from the section above. */
.bravo_wrap .bravo-list-tour.grid_featured{padding:64px 0}

.bravo_wrap .page-template-content .bravo-featured-item:not(.strip){padding:64px 0;background:var(--bg-raised)}
/* Mirror the mockup's .why-grid exactly: a real 3-col CSS grid with a 22px gap,
   rather than Bootstrap's wider .col-md-4 gutters. This widens each card so the
   descriptions wrap to the same line count as the demo → uniform card height
   instead of the ragged extra whitespace the narrower Bootstrap columns caused. */
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .row{
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin:0;
}
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .col-md-4{
  flex:none;max-width:none;width:auto;padding:0;
}
@media (max-width:991px){
  .bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .row{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:575px){
  .bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .row{grid-template-columns:1fr}
}
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .featured-item{
  background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius) !important;
  padding:30px 26px !important;height:100%;transition:all .3s;position:relative;overflow:hidden;margin-bottom:0 !important;
  text-align:start;
  /* Flex column so the icon-over-text stack is deterministic across browsers
     (app.css floats the icon; float is ignored on flex items, so this neutralises
     it everywhere — Firefox cleared the float differently than Chrome). */
  display:flex;flex-direction:column;align-items:flex-start;
}
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .featured-item::before{
  content:'';position:absolute;top:0;inset-inline-end:0;inset-inline-start:0;height:3px;
  background:linear-gradient(90deg,var(--brand),#e8622e);transform:scaleX(0);transition:transform .32s;
}
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .featured-item:hover::before{transform:scaleX(1)}
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .featured-item:hover{
  background:var(--bg-card-hover);border-color:var(--border-brand);transform:translateY(-5px);box-shadow:var(--shadow-lg);
}
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .image{
  width:54px;height:54px;background:var(--brand-dim);border:1px solid var(--border-brand);border-radius:14px;
  display:flex;align-items:center;justify-content:center;color:var(--brand);font-size:22px;margin:0 0 18px !important;
  float:none !important;flex:0 0 auto;
}
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .image img{width:26px;height:26px;object-fit:contain}
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .image .number-circle{
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:18px;color:var(--brand);
}
/* Inherited app.css centres the card content — force it to start (right in RTL)
   to match the mockup's right-aligned why-cards. */
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .content,
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .content .title,
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .content .desc,
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .content .why-tag{text-align:start !important}
/* app.css floats the icon and indents .content (margin-left/right:60px + padding:15px)
   for a side-by-side layout; the mockup stacks icon-over-text, so clear all of it. */
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .content{margin:0 !important;padding:0 !important;overflow:hidden;width:100%}
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .content .title{font-size:16px;font-weight:800;color:var(--text-primary);margin-bottom:8px}
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .content .desc{font-size:14px;color:var(--text-secondary);line-height:1.75}
.bravo_wrap .page-template-content .bravo-featured-item:not(.strip) .content .why-tag{
  margin-top:12px;font-size:12px;font-weight:700;color:var(--brand);opacity:.85;
}

/* =============================================
   LOCATIONS (list_locations)
============================================= */
.bravo_wrap .bravo-list-locations{padding:60px 0}
.bravo_wrap .bravo-list-locations.lm-locs{padding:64px 0;background:var(--bg-base)}
.bravo_wrap .bravo-list-locations .title{font-size:clamp(24px,2.6vw,36px);font-weight:900;color:var(--text-primary)}
.bravo_wrap .bravo-list-locations .sub-title{color:var(--text-secondary);margin-top:8px;margin-bottom:30px}
/* Bento grid mirroring the mockup's .locs-grid: 4 cols × 2 rows, first card
   tall (spans both rows, right side in RTL) with a badge, the rest 200px. */
.bravo_wrap .lm-locs-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-template-rows:auto auto;gap:16px}
.bravo_wrap .lm-loc-card{
  position:relative;border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);
  display:block;height:200px;text-decoration:none;
}
.bravo_wrap .lm-loc-card.is-feature{grid-row:1/3;grid-column:1;height:auto;min-height:460px}
.bravo_wrap .lm-loc-media{
  position:absolute;inset:0;background-color:var(--bg-card);background-size:cover;background-position:center;transition:transform .4s;
}
.bravo_wrap .lm-loc-card:hover .lm-loc-media{transform:scale(1.06)}
.bravo_wrap .lm-loc-ov{position:absolute;inset:0;background:linear-gradient(0deg,rgba(5,12,22,.82) 0%,rgba(5,12,22,.08) 55%);transition:background .3s}
.bravo_wrap .lm-loc-card:hover .lm-loc-ov{background:linear-gradient(0deg,rgba(195,81,43,.75) 0%,rgba(5,12,22,.15) 65%)}
.bravo_wrap .lm-loc-info{position:absolute;bottom:0;inset-inline-start:0;inset-inline-end:0;padding:20px;z-index:1}
.bravo_wrap .lm-loc-info h3{font-size:17px;font-weight:800;color:#fff;margin:0 0 4px}
.bravo_wrap .lm-loc-count{font-size:12px;color:rgba(255,255,255,.65);display:flex;align-items:center;gap:5px}
.bravo_wrap .lm-loc-count i{color:var(--brand);font-size:10px}
.bravo_wrap .lm-loc-badge{
  position:absolute;top:12px;inset-inline-end:12px;z-index:2;background:var(--brand);color:#fff;
  font-size:11px;font-weight:700;padding:4px 10px;border-radius:20px;box-shadow:var(--shadow-brand);
}
@media(max-width:991px){
  .bravo_wrap .lm-locs-grid{grid-template-columns:repeat(2,1fr);grid-template-rows:none}
  .bravo_wrap .lm-loc-card.is-feature{grid-row:auto;grid-column:auto;min-height:0;height:200px}
}
@media(max-width:575px){.bravo_wrap .lm-locs-grid{grid-template-columns:1fr}}
.bravo_wrap .destination-item{border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);margin-bottom:22px;height:100%}
.bravo_wrap .destination-item .image{
  position:relative;height:240px;background-color:var(--bg-card);background-size:cover !important;background-position:center !important;
}
.bravo_wrap .col-lg-8 .destination-item .image{height:100%;min-height:380px}
.bravo_wrap .destination-item.no-image .image{background:var(--bg-card)}
.bravo_wrap .destination-item .effect{
  position:absolute;inset:0;background:linear-gradient(0deg,rgba(5,12,22,.82) 0%,rgba(5,12,22,.08) 55%);transition:background .3s;
}
.bravo_wrap .destination-item:hover .effect{background:linear-gradient(0deg,rgba(195,81,43,.75) 0%,rgba(5,12,22,.15) 65%)}
.bravo_wrap .destination-item .content{position:absolute;bottom:0;inset-inline-start:0;inset-inline-end:0;padding:18px;z-index:1}
.bravo_wrap .destination-item .content .title{font-size:16px;font-weight:800;color:#fff;margin-bottom:4px}
.bravo_wrap .destination-item .content .desc{font-size:12px;color:rgba(255,255,255,.65)}
.bravo_wrap .destination-item .content .desc a,
.bravo_wrap .destination-item .content .desc span{color:rgba(255,255,255,.65)}

/* =============================================
   CTA / OFFER BLOCK
============================================= */
.bravo_wrap .lm-cta{
  background:linear-gradient(125deg,#8c2c0e 0%,var(--brand) 45%,#b84420 100%);
  padding:80px 0;position:relative;overflow:hidden;
}
.bravo_wrap .lm-cta::before{content:'';position:absolute;inset-inline-end:-150px;top:-150px;width:500px;height:500px;background:rgba(255,255,255,.05);border-radius:50%}
.bravo_wrap .lm-cta::after{content:'';position:absolute;inset-inline-start:-80px;bottom:-100px;width:340px;height:340px;background:rgba(0,0,0,.1);border-radius:50%}
.bravo_wrap .lm-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:40px;position:relative;z-index:1}
.bravo_wrap .lm-cta-eyebrow{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.15);color:#fff;font-size:12px;font-weight:700;padding:5px 14px;border-radius:20px;margin-bottom:14px}
.bravo_wrap .lm-cta-text h2{font-size:clamp(26px,3vw,44px);font-weight:900;color:#fff;line-height:1.15;margin:0 0 10px}
.bravo_wrap .lm-cta-text p{font-size:16px;color:rgba(255,255,255,.8);line-height:1.6;margin:0}
.bravo_wrap .lm-cta-btns{display:flex;gap:12px;flex-shrink:0;flex-wrap:wrap}
.bravo_wrap .lm-btn-white{
  display:inline-flex;align-items:center;gap:8px;background:#fff;color:var(--brand) !important;
  padding:13px 28px;border-radius:var(--radius-sm);font-size:14px;font-weight:700;transition:all .22s;
}
.bravo_wrap .lm-btn-white i{color:var(--brand)}
.bravo_wrap .lm-btn-white:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.3);color:var(--brand) !important}
.bravo_wrap .lm-btn-light{
  display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.1);color:#fff;
  border:1.5px solid rgba(255,255,255,.25);padding:12px 26px;border-radius:var(--radius-sm);
  font-size:14px;font-weight:700;transition:all .22s;backdrop-filter:blur(8px);
}
.bravo_wrap .lm-btn-light:hover{background:rgba(255,255,255,.18);border-color:rgba(255,255,255,.4);color:#fff}
@media(max-width:767px){.bravo_wrap .lm-cta{padding:56px 0}.bravo_wrap .lm-cta-inner{flex-direction:column;text-align:center}}

/* =============================================
   TESTIMONIALS
============================================= */
.bravo_wrap .bravo-testimonial.lm-rev{
  background:var(--bg-raised);border-top:1px solid var(--border);border-bottom:1px solid var(--border);
  padding:64px 0;position:relative;overflow:hidden;
}
.bravo_wrap .lm-rev::before{content:'';position:absolute;inset-inline-end:-150px;top:-150px;width:500px;height:500px;background:radial-gradient(circle,rgba(195,81,43,.08) 0%,transparent 70%)}
.bravo_wrap .lm-rev::after{content:'';position:absolute;inset-inline-start:-100px;bottom:-100px;width:400px;height:400px;background:radial-gradient(circle,rgba(195,81,43,.06) 0%,transparent 70%)}
.bravo_wrap .lm-rev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;position:relative;z-index:1}
.bravo_wrap .lm-rev-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:26px;transition:all .3s;text-align:start}
.bravo_wrap .lm-rev-card:hover{background:var(--bg-card-hover);border-color:var(--border-brand);transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.bravo_wrap .lm-rev-quote{font-size:52px;color:var(--brand);opacity:.45;line-height:.75;margin-bottom:10px;font-family:Georgia,serif}
.bravo_wrap .lm-rev-stars{display:flex;gap:3px;margin-bottom:12px}
.bravo_wrap .lm-rev-stars i{color:#f59e0b;font-size:13px}
.bravo_wrap .lm-rev-text{font-size:15px;color:var(--text-secondary);line-height:1.85;margin-bottom:18px}
.bravo_wrap .lm-rev-author{display:flex;align-items:center;gap:12px}
/* width/height forced with !important: owl sets .owl-item img{width:100%} which
   otherwise stretches the avatar photo into a full-width oval. */
.bravo_wrap .lm-rev-avatar{width:46px !important;height:46px !important;min-width:46px;max-width:46px;border-radius:50%;object-fit:cover;border:2px solid var(--brand);flex-shrink:0}
.bravo_wrap .lm-rev-avatar--initial{display:flex;align-items:center;justify-content:center;background:var(--brand-dim);color:var(--brand);font-weight:800;font-size:18px}
.bravo_wrap .lm-rev-meta{display:flex;flex-direction:column;gap:2px}
.bravo_wrap .lm-rev-name{font-size:14px;color:var(--text-primary);font-weight:700}
.bravo_wrap .lm-rev-role{font-size:12px;color:var(--text-muted)}
@media(max-width:991px){.bravo_wrap .lm-rev-grid{grid-template-columns:1fr}}
/* --- Reviews slider (owl) --- */
.bravo_wrap .lm-rev-slider{position:relative;z-index:1}
.bravo_wrap .lm-rev-slider .lm-rev-card{height:100%;display:flex;flex-direction:column;margin:0}
.bravo_wrap .lm-rev-stars i.is-dim{color:var(--border)}
.bravo_wrap .lm-rev-slider .lm-rev-text{
  display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden;
  min-height:calc(1.85em * 5);margin-bottom:16px;
}
.bravo_wrap .lm-rev-foot{
  margin-top:auto;display:flex;flex-direction:column;align-items:flex-start;gap:14px;
  padding-top:16px;border-top:1px solid var(--border);
}
.bravo_wrap .lm-rev-tour{
  display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:700;color:var(--brand) !important;
  background:var(--brand-dim);border:1px solid var(--border-brand);padding:7px 14px;border-radius:20px;
  max-width:100%;align-self:flex-start;transition:all .2s;
}
.bravo_wrap .lm-rev-tour:hover{background:var(--brand);color:#fff !important;border-color:var(--brand)}
.bravo_wrap .lm-rev-tour i{font-size:10px}
.bravo_wrap .lm-rev-tour span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.bravo_wrap .lm-rev-slider .owl-nav{margin-top:26px;display:flex;justify-content:center;gap:10px}
.bravo_wrap .lm-rev-slider .owl-nav button.owl-prev,
.bravo_wrap .lm-rev-slider .owl-nav button.owl-next{
  width:42px;height:42px;border-radius:10px;background:var(--bg-card) !important;border:1px solid var(--border) !important;
  color:var(--text-secondary) !important;display:flex;align-items:center;justify-content:center;transition:all .2s;font-size:14px;
}
.bravo_wrap .lm-rev-slider .owl-nav button:hover{background:var(--brand) !important;border-color:var(--brand) !important;color:#fff !important}
.bravo_wrap .lm-rev-slider .owl-dots{display:flex;justify-content:center;gap:7px;margin-top:16px}
.bravo_wrap .lm-rev-slider .owl-dots .owl-dot span{width:8px;height:8px;margin:0;background:var(--border);border-radius:50%;display:block;transition:all .25s}
.bravo_wrap .lm-rev-slider .owl-dots .owl-dot.active span{background:var(--brand);width:22px;border-radius:4px}

/* The homepage's standalone "Tour: Adventure Stats" block is now redundant —
   its data is embedded directly in the hero (see form-search-tour override).
   Hidden here rather than removed from the template content so nothing is
   deleted without going through the admin Template Builder; remove that
   block instance via the Template Builder when convenient and delete this
   rule too. */
.bravo_wrap .bravo-adventure-stats{display:none}

/* =============================================
   CHECKOUT + AUTH PAGES
============================================= */
.bravo_wrap .bravo-booking-page{background:var(--bg-base);padding:40px 0 64px}
.bravo_wrap .bravo-booking-page .form-title{font-size:24px;font-weight:800;color:var(--text-primary);margin-bottom:20px}
/* form section + summary cards */
.bravo_wrap .bravo-booking-page .booking-form,
.bravo_wrap .bravo-booking-page .booking-detail,
.bravo_wrap .bravo-booking-page .card{
  background:var(--bg-card) !important;border:1px solid var(--border) !important;border-radius:var(--radius);color:var(--text-secondary);
}
.bravo_wrap .bravo-booking-page .card{margin-bottom:20px;overflow:hidden}
.bravo_wrap .bravo-booking-page .card-header{background:var(--bg-raised) !important;border-bottom:1px solid var(--border) !important;color:var(--text-primary) !important;font-weight:700;padding:14px 18px}
.bravo_wrap .bravo-booking-page .card-body,
.bravo_wrap .bravo-booking-page .booking-form,
.bravo_wrap .bravo-booking-page .booking-detail{padding:18px}
.bravo_wrap .bravo-booking-page h1,.bravo_wrap .bravo-booking-page h2,.bravo_wrap .bravo-booking-page h3,
.bravo_wrap .bravo-booking-page h4,.bravo_wrap .bravo-booking-page h5,.bravo_wrap .bravo-booking-page strong{color:var(--text-primary)}
.bravo_wrap .bravo-booking-page p,.bravo_wrap .bravo-booking-page span,.bravo_wrap .bravo-booking-page li,
.bravo_wrap .bravo-booking-page td,.bravo_wrap .bravo-booking-page .text{color:var(--text-secondary)}
.bravo_wrap .bravo-booking-page label{color:var(--text-secondary);font-size:13.5px}
.bravo_wrap .bravo-booking-page .form-group{margin-bottom:14px}
/* inputs / selects */
.bravo_wrap .bravo-booking-page .form-control,
.bravo_wrap .bravo-booking-page input[type=text],
.bravo_wrap .bravo-booking-page input[type=email],
.bravo_wrap .bravo-booking-page input[type=number],
.bravo_wrap .bravo-booking-page select,
.bravo_wrap .bravo-booking-page textarea,
.bravo_wrap .bravo-booking-page .bootstrap-select .dropdown-toggle{
  background:var(--bg-input) !important;border:1px solid var(--border) !important;color:var(--text-primary) !important;border-radius:10px;
}
.bravo_wrap .bravo-booking-page .form-control::placeholder{color:var(--text-muted)}
.bravo_wrap .bravo-booking-page .dropdown-menu{background:var(--bg-card);border:1px solid var(--border)}
.bravo_wrap .bravo-booking-page .dropdown-menu li a,.bravo_wrap .bravo-booking-page .dropdown-item{color:var(--text-secondary)}
.bravo_wrap .bravo-booking-page .dropdown-menu li a:hover,.bravo_wrap .bravo-booking-page .dropdown-item:hover{background:var(--bg-raised);color:var(--brand)}
/* summary price rows */
.bravo_wrap .bravo-booking-page .booking-detail .item,
.bravo_wrap .bravo-booking-page .booking-detail .row-item,
.bravo_wrap .bravo-booking-page .booking-detail li{border-color:var(--border) !important}
.bravo_wrap .bravo-booking-page .total,.bravo_wrap .bravo-booking-page .price,.bravo_wrap .bravo-booking-page .total-price{color:var(--brand)}
/* payment methods + radios */
.bravo_wrap .bravo-booking-page .payment-item,
.bravo_wrap .bravo-booking-page .list-payment-method li,
.bravo_wrap .bravo-booking-page .form-payment .payment_gateways{background:var(--bg-raised);border:1px solid var(--border) !important;border-radius:10px;margin-bottom:10px}
/* submit / action buttons */
.bravo_wrap .bravo-booking-page .form-actions .btn,
.bravo_wrap .bravo-booking-page .btn-danger,
.bravo_wrap .bravo-booking-page .btn-primary{
  background:var(--brand) !important;border:0 !important;color:#fff !important;border-radius:10px;padding:14px 28px;font-weight:700;
}
.bravo_wrap .bravo-booking-page .form-actions .btn:hover,
.bravo_wrap .bravo-booking-page .btn-danger:hover{background:var(--brand-dark) !important}
.bravo_wrap .bravo-booking-page .term-conditions-checkbox a{color:var(--brand)}

/* --- Booking summary: one card only (flatten the inner .booking-review-content
   card from checkout.css) + lighter padding --- */
.bravo_wrap .bravo-booking-page .booking-detail{padding:8px !important}
.bravo_wrap .bravo-booking-page .booking-review-title{color:var(--text-primary);font-weight:800;font-size:18px;padding:12px 14px 4px;margin:0}
.bravo_wrap .bravo-booking-page .booking-review-content{border:0 !important;box-shadow:none !important;border-radius:0 !important;margin-bottom:0 !important;background:transparent !important}
.bravo_wrap .bravo-booking-page .booking-review .review-section{padding:14px !important;border-bottom:1px solid var(--border) !important;background:transparent !important}
.bravo_wrap .bravo-booking-page .booking-review .review-section:last-child{border-bottom:0 !important}
.bravo_wrap .bravo-booking-page .service-name a,.bravo_wrap .bravo-booking-page .service-name{color:var(--text-primary) !important;font-weight:800}
.bravo_wrap .bravo-booking-page .review-list li,
.bravo_wrap .bravo-booking-page .info-form>ul li{border-color:var(--border) !important;color:var(--text-secondary)}
.bravo_wrap .bravo-booking-page .review-list .label{color:var(--text-secondary)}
.bravo_wrap .bravo-booking-page .review-list .val{color:var(--text-primary)}
.bravo_wrap .bravo-booking-page .review-list .final-total{border-top:1px solid var(--border) !important;color:var(--text-primary)}
.bravo_wrap .bravo-booking-page .review-list .final-total .val{color:var(--brand)}
.bravo_wrap .bravo-booking-page .section-coupon-form .bravo_apply_coupon{background:var(--brand) !important;color:#fff !important;border:0 !important;border-radius:10px}

/* --- Phone / country selector (bootstrap-select) --- */
.bravo_wrap .bravo-booking-page .bootstrap-select{width:100% !important}
/* phone-code selector: clean single box, forced to match the taller inputs.
   `button` tag + line-height beats bootstrap-select's own button padding. */
.bravo_wrap .bravo-booking-page .field-country.col-3 .bootstrap-select{width:100% !important;height:60px !important}
.bravo_wrap .bravo-booking-page .field-country.col-3 .bootstrap-select>button.dropdown-toggle,
.bravo_wrap .bravo-booking-page .field-country.col-3 .bootstrap-select>.dropdown-toggle{
  height:60px !important;min-height:60px !important;line-height:normal;padding:0 14px !important;display:flex !important;align-items:center !important;
}
.bravo_wrap .bravo-booking-page .bootstrap-select>.dropdown-toggle,
.bravo_wrap .bravo-booking-page .bootstrap-select>.dropdown-toggle.btn-light,
.bravo_wrap .bravo-booking-page .bootstrap-select>.dropdown-toggle.bs-placeholder{
  background:var(--bg-input) !important;border:1px solid var(--border) !important;color:var(--text-primary) !important;
  border-radius:10px !important;display:flex;align-items:center;padding:0 14px;box-shadow:none !important;
}
.bravo_wrap .bravo-booking-page .bootstrap-select .filter-option{display:flex;align-items:center;color:var(--text-primary)}
.bravo_wrap .bravo-booking-page .bootstrap-select .filter-option-inner-inner{display:flex;align-items:center;gap:6px;color:var(--text-primary)}
.bravo_wrap .lm-cc{font-weight:700}
.bravo_wrap .bravo-booking-page .bootstrap-select .filter-option-inner-inner .lm-cc{color:var(--text-primary)}
.bravo_wrap .bravo-booking-page .bootstrap-select .dropdown-menu li a{gap:8px}
.bravo_wrap .bravo-booking-page .bootstrap-select .dropdown-menu li a .lm-cc{color:var(--text-secondary)}
.bravo_wrap .bravo-booking-page .bootstrap-select .dropdown-menu li.selected a .lm-cc{color:var(--brand)}
.bravo_wrap .bravo-booking-page .bootstrap-select .dropdown-menu{background:var(--bg-card) !important;border:1px solid var(--border) !important;max-height:280px;border-radius:10px;overflow:auto}
.bravo_wrap .bravo-booking-page .bootstrap-select .dropdown-menu li a{color:var(--text-secondary) !important;display:flex;align-items:center;gap:6px}
.bravo_wrap .bravo-booking-page .bootstrap-select .dropdown-menu li a:hover,
.bravo_wrap .bravo-booking-page .bootstrap-select .dropdown-menu li.selected a,
.bravo_wrap .bravo-booking-page .bootstrap-select .dropdown-menu li a.active{background:var(--bg-raised) !important;color:var(--brand) !important}
.bravo_wrap .bravo-booking-page .bootstrap-select .dropdown-menu .bs-searchbox .form-control{background:var(--bg-input) !important;border:1px solid var(--border) !important;color:var(--text-primary) !important}
.bravo_wrap .bravo-booking-page .flag-icon{width:20px;height:14px;background-size:cover;background-position:center;display:inline-block;border-radius:2px;vertical-align:middle;margin-inline-end:6px;flex-shrink:0}

/* --- Coupon: input + Apply button, matched height & aligned (2 pills) --- */
.bravo_wrap .bravo-booking-page .section-coupon-form .group-form{display:flex !important;gap:10px;align-items:stretch;margin:0}
.bravo_wrap .bravo-booking-page .section-coupon-form .group-form>.form-control{flex:1;height:48px !important;border-radius:10px !important;margin:0}
.bravo_wrap .bravo-booking-page .section-coupon-form .input-group-append{margin:0;display:flex}
.bravo_wrap .bravo-booking-page .section-coupon-form .bravo_apply_coupon{height:48px !important;border-radius:10px !important;padding:0 26px !important;white-space:nowrap;margin:0;background:var(--brand) !important;color:#fff !important;border:0 !important;font-weight:700}
.bravo_wrap .bravo-booking-page .list-coupons .item{display:flex;justify-content:space-between;color:var(--text-secondary);padding:8px 0}
.bravo_wrap .bravo-booking-page .bravo_remove_coupon{color:#e46a67 !important}

/* --- Wallet / deposit input-group: matched height, dark, flush group --- */
.bravo_wrap .bravo-booking-page .form-group-item hr{border-color:var(--border);opacity:1;margin:18px 0}
.bravo_wrap .bravo-booking-page .form-group-item .form-section-title{color:var(--text-primary);font-weight:700;font-size:15px}
.bravo_wrap .bravo-booking-page .form-group-item .input-group{display:flex;align-items:stretch;flex-wrap:nowrap}
.bravo_wrap .bravo-booking-page .input-group .input-group-text{
  background:var(--bg-raised) !important;border:1px solid var(--border) !important;color:var(--text-secondary) !important;
  height:48px;display:flex;align-items:center;white-space:nowrap;font-size:13px;
}
.bravo_wrap .bravo-booking-page .form-group-item .input-group>.form-control{height:48px !important;border-radius:0 !important;text-align:center;flex:1;min-width:0}
.bravo_wrap .bravo-booking-page .input-group-prepend .input-group-text{border-start-start-radius:10px;border-end-start-radius:10px}
.bravo_wrap .bravo-booking-page .input-group-append .input-group-text{border-start-end-radius:10px;border-end-end-radius:10px}
.bravo_wrap .bravo-booking-page .form-group-item .convert_pay_now,
.bravo_wrap .bravo-booking-page .form-group-item .val{color:var(--brand) !important;font-weight:800}
.bravo_wrap .bravo-booking-page .form-group-item>.d-flex{margin-top:6px;align-items:center}

/* alerts (site-wide; app.css alerts are light) */
.bravo_wrap .alert-danger{background:rgba(217,83,79,.12) !important;border:1px solid rgba(217,83,79,.4) !important;color:#f0a6a3 !important;border-radius:10px}
.bravo_wrap .alert-success{background:rgba(59,176,119,.12) !important;border:1px solid rgba(59,176,119,.4) !important;color:#86d6ad !important;border-radius:10px}
.bravo_wrap .alert-warning{background:rgba(245,158,11,.12) !important;border:1px solid rgba(245,158,11,.4) !important;color:#f0c473 !important;border-radius:10px}

/* auth pages (login / register / forgot) */
.bravo_wrap .bravo-login-page,
.bravo_wrap .bravo-register-page,
.bravo_wrap .bravo-forgot-page{padding:54px 0;background:var(--bg-base)}
.bravo_wrap .bravo-login-page .form-title,
.bravo_wrap .bravo-register-page .form-title,
.bravo_wrap .bravo-forgot-page .form-title{font-size:26px;font-weight:800;color:var(--text-primary);text-align:center;margin-bottom:24px}
.bravo_wrap .bravo-login-page>[class*=col-],
.bravo_wrap .bravo-register-page>[class*=col-],
.bravo_wrap .bravo-forgot-page>[class*=col-]{
  background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:32px;box-shadow:var(--shadow-lg);
}
.bravo_wrap .bravo-login-page label,.bravo_wrap .bravo-register-page label,
.bravo_wrap .bravo-login-page .form-group p,.bravo_wrap .bravo-register-page .form-group p{color:var(--text-secondary)}
.bravo_wrap .bravo-login-page .form-control,
.bravo_wrap .bravo-register-page .form-control,
.bravo_wrap .bravo-forgot-page .form-control{background:var(--bg-input) !important;border:1px solid var(--border) !important;color:var(--text-primary) !important;border-radius:10px;padding:12px 14px}
.bravo_wrap .bravo-login-page .form-control::placeholder,.bravo_wrap .bravo-register-page .form-control::placeholder{color:var(--text-muted)}
.bravo_wrap .bravo-login-page .btn,
.bravo_wrap .bravo-register-page .btn{background:var(--brand) !important;border:0 !important;color:#fff !important;border-radius:10px;padding:13px;font-weight:700;width:100%}
.bravo_wrap .bravo-login-page a,.bravo_wrap .bravo-register-page a{color:var(--brand)}
.bravo_wrap .bravo-login-page .text-muted,.bravo_wrap .bravo-register-page .text-muted{color:var(--text-muted) !important}

@media(max-width:767px){
  .bravo_wrap .bravo-booking-page{padding:24px 0 40px}
  .bravo_wrap .bravo-booking-page .col-md-4{margin-top:20px}
  .bravo_wrap .bravo-login-page>[class*=col-],.bravo_wrap .bravo-register-page>[class*=col-]{padding:22px}
}

/* =============================================
   LOCATION DETAIL / ARCHIVE PAGE
============================================= */
.bravo_wrap .bravo_detail_location{background:var(--bg-base)}

/* --- Hero --- */
.bravo_wrap .lm-loc-hero{
  position:relative;min-height:420px;display:flex;align-items:flex-end;overflow:hidden;
  background:linear-gradient(135deg,#0e1a2c 0%,#101827 55%,#1b2434 100%);
  background-size:cover;background-position:center;
}
.bravo_wrap .lm-loc-hero.has-img{background-color:var(--bg-card)}
.bravo_wrap .lm-loc-hero-overlay{position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(6,12,22,.30) 0%,rgba(6,12,22,.60) 45%,rgba(6,12,22,.95) 100%)}
/* No photo → swap the flat wash for a subtle brand glow so the block still reads intentional */
.bravo_wrap .lm-loc-hero:not(.has-img) .lm-loc-hero-overlay{
  background:radial-gradient(80% 130% at 88% 0%, var(--brand-glow) 0%, rgba(11,18,32,0) 55%),
             linear-gradient(180deg,rgba(6,12,22,.25) 0%,rgba(6,12,22,.55) 60%,rgba(6,12,22,.9) 100%)}
.bravo_wrap .lm-loc-hero .container{position:relative;z-index:1}
.bravo_wrap .lm-loc-hero-body{padding:64px 0 46px;width:100%;max-width:760px}
.bravo_wrap .lm-loc-hero-eyebrow{display:inline-flex;align-items:center;gap:7px;background:var(--brand-dim);
  border:1px solid var(--border-brand);color:var(--brand);font-size:12px;font-weight:700;
  padding:6px 14px;border-radius:20px;margin-bottom:16px}
.bravo_wrap .lm-loc-hero-title{font-size:clamp(30px,4vw,52px);font-weight:900;color:#fff;line-height:1.12;margin:0 0 14px}
.bravo_wrap .lm-loc-hero-lede{color:rgba(255,255,255,.82);font-size:16px;line-height:1.8;margin:0 0 22px;max-width:640px}
.bravo_wrap .lm-loc-hero-meta{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:26px}
.bravo_wrap .lm-loc-hero-count{display:inline-flex;align-items:center;gap:9px;background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);border-radius:12px;padding:10px 18px;color:#fff;font-weight:700;font-size:14.5px}
.bravo_wrap .lm-loc-hero-count i{color:var(--brand);font-size:17px}
.bravo_wrap .lm-loc-hero-cta{display:inline-flex;align-items:center;gap:9px;background:var(--brand);color:#fff !important;
  padding:14px 30px;border-radius:var(--radius-sm);font-size:15px;font-weight:800;transition:all .22s;box-shadow:var(--shadow-brand)}
.bravo_wrap .lm-loc-hero-cta:hover{background:var(--brand-dark);transform:translateY(-2px);color:#fff !important}

/* --- Content shell --- */
.bravo_wrap .bravo_detail_location .bravo_content{padding:44px 0 64px;background:var(--bg-base)}
.bravo_wrap .bravo_detail_location .lm-sec-h{font-size:22px;font-weight:800;color:var(--text-primary);margin:0 0 20px}

/* --- About / overview card (neutralise the inherited .g-overview card so it isn't a card-in-card) --- */
.bravo_wrap .lm-loc-about{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:28px;margin-bottom:28px}
.bravo_wrap .lm-loc-about .g-overview{background:transparent !important;border:0 !important;border-radius:0 !important;padding:0 !important;margin:0 !important}
.bravo_wrap .lm-loc-about .description,
.bravo_wrap .lm-loc-about .description p,
.bravo_wrap .lm-loc-about .description li,
.bravo_wrap .lm-loc-about .description span{color:var(--text-secondary);line-height:1.9;font-size:15px}
.bravo_wrap .lm-loc-about .description a{color:var(--brand)}
.bravo_wrap .lm-loc-about .description h1,.bravo_wrap .lm-loc-about .description h2,.bravo_wrap .lm-loc-about .description h3,
.bravo_wrap .lm-loc-about .description h4,.bravo_wrap .lm-loc-about .description strong,.bravo_wrap .lm-loc-about .description b{color:var(--text-primary)}

/* --- Explore the place --- */
.bravo_wrap .bravo_detail_location .g-location-module{margin-bottom:32px}
.bravo_wrap .lm-loc-modhead{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;
  margin-bottom:26px;padding-bottom:18px;border-bottom:1px solid var(--border)}
.bravo_wrap .lm-loc-modhead h3{font-size:24px;font-weight:900;color:var(--text-primary);margin:0}
.bravo_wrap .g-location-module .location-module-nav{display:flex;gap:8px;margin:0;padding:0;list-style:none;flex-wrap:wrap}
.bravo_wrap .g-location-module .location-module-nav>li{margin:0}
.bravo_wrap .g-location-module .location-module-nav a{display:inline-block;padding:9px 20px;border-radius:30px;
  background:var(--bg-card);border:1px solid var(--border);color:var(--text-secondary) !important;font-weight:700;font-size:13.5px;transition:all .2s}
.bravo_wrap .g-location-module .location-module-nav a:hover{color:var(--text-primary) !important;border-color:var(--border-brand)}
.bravo_wrap .g-location-module .location-module-nav a.active{background:var(--brand) !important;border-color:var(--brand);color:#fff !important}
.bravo_wrap .lm-loc-more{margin-top:32px;margin-bottom:0}
.bravo_wrap .lm-loc-more .btn-search{display:inline-block;background:var(--brand);border:0;color:#fff;border-radius:var(--radius-sm);
  padding:13px 34px;font-weight:800;font-size:14.5px;transition:all .22s}
.bravo_wrap .lm-loc-more .btn-search:hover{background:var(--brand-dark);transform:translateY(-2px);color:#fff}

/* --- Map --- */
.bravo_wrap .lm-loc-map-wrap{margin-top:36px}
.bravo_wrap .lm-loc-map-wrap .g-location{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:12px}
.bravo_wrap .lm-loc-map-wrap .location-map,.bravo_wrap .lm-loc-map-wrap #map_content{height:420px;border-radius:10px;overflow:hidden}

/* --- Trip ideas --- */
.bravo_wrap .g-trip-ideas{margin-top:36px}
.bravo_wrap .g-trip-ideas>h3{font-size:24px;font-weight:900;color:var(--text-primary);margin:0 0 22px;padding:0}
.bravo_wrap .g-trip-ideas .trip-idea{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:26px;margin-bottom:20px}
.bravo_wrap .g-trip-ideas .trip-idea-category{color:var(--brand);font-weight:800;font-size:12px;letter-spacing:.06em;margin:0 0 6px}
.bravo_wrap .g-trip-ideas .trip-idea h2{color:var(--text-primary);font-weight:800;font-size:22px}
.bravo_wrap .g-trip-ideas .description,.bravo_wrap .g-trip-ideas .description p{color:var(--text-secondary);line-height:1.85}
.bravo_wrap .g-trip-ideas .read-more{color:var(--brand);font-weight:700}
.bravo_wrap .g-trip-ideas .trip-idea img{border-radius:var(--radius-sm)}

@media(max-width:991px){
  .bravo_wrap .lm-loc-hero{min-height:340px}
  .bravo_wrap .lm-loc-hero-body{padding:44px 0 34px}
}
@media(max-width:767px){
  .bravo_wrap .lm-loc-hero{min-height:auto}
  .bravo_wrap .lm-loc-hero-body{padding:32px 0 26px}
  .bravo_wrap .lm-loc-hero-title{font-size:27px}
  .bravo_wrap .lm-loc-hero-lede{font-size:14.5px}
  .bravo_wrap .lm-loc-hero-cta{width:100%;justify-content:center}
  .bravo_wrap .bravo_detail_location .bravo_content{padding:26px 0 40px}
  .bravo_wrap .lm-loc-about{padding:20px}
  .bravo_wrap .lm-loc-modhead h3,.bravo_wrap .g-trip-ideas>h3{font-size:20px}
  .bravo_wrap .lm-loc-map-wrap .location-map,.bravo_wrap .lm-loc-map-wrap #map_content{height:300px}
}

/* =============================================
   USER / VENDOR DASHBOARD (layouts.user → Layout::user)
   The dashboard layout ships app.css + user.css (light). theme.css is loaded
   last by the LostMountain Layout/user.blade.php override; these rules use
   .bravo_wrap scoping + !important on key props to win over those sheets.
============================================= */
.bravo_wrap .bravo_user_profile{background:var(--bg-base)}
.bravo_wrap .bravo_user_profile > .container-fluid{padding:0}
.bravo_wrap .bravo_user_profile > .container-fluid > .row{margin:0}
/* user.css paints several dashboard wrappers in BookingCore's default slate-blue
   (#1a2b47) with !important on LONG ancestor chains, which double-layers behind
   the themed cards. Mirror those exact chains so these win by source order. */
.bravo_wrap .bravo_user_profile .col-md-3{background:var(--bg-raised) !important}
.bravo_wrap .bravo_user_profile .bravo-user-dashboard .dashboard-price-info .dashboard-item{background:transparent !important;box-shadow:none !important}
.bravo_wrap .bravo_user_profile .user-profile-avatar,
.bravo_wrap .bravo_user_profile .user-profile-plan{background:transparent !important;border:0 !important;box-shadow:none !important}
.bravo_wrap .bravo-user-chart{background:var(--bg-card) !important}
/* BookingCore's other default slate (#353f4d) on the breadcrumb bar, the
   booking-history panel and modals — retone to theme surfaces. */
.bravo_wrap .bravo_user_profile .user-form-settings .breadcrumb-page-bar{background:var(--bg-raised) !important;border-bottom:1px solid var(--border)}
.bravo_wrap .bravo_user_profile .booking-history-manager{background:var(--bg-card) !important;border:1px solid var(--border);border-radius:var(--radius)}
.bravo_wrap .modal-content{background:var(--bg-card) !important;border:1px solid var(--border);border-radius:var(--radius)}

/* --- Sidebar --- */
.bravo_wrap .sidebar-user{background:var(--bg-raised);border-inline-end:1px solid var(--border);padding:30px 18px}
.bravo_wrap .sidebar-user .logo{text-align:center;margin-bottom:14px}
.bravo_wrap .sidebar-user .logo .avatar{width:84px;height:84px;border-radius:50%;margin:0 auto;background-size:cover;background-position:center;border:3px solid var(--border-brand)}
.bravo_wrap .sidebar-user .logo .avatar-text{width:84px;height:84px;border-radius:50%;margin:0 auto;display:flex;align-items:center;justify-content:center;background:var(--brand);color:#fff;font-size:34px;font-weight:800}
.bravo_wrap .user-profile-avatar{text-align:center;margin-bottom:18px}
.bravo_wrap .user-profile-avatar .info-new h5{color:var(--text-primary);font-weight:800;font-size:17px;margin:8px 0 4px}
.bravo_wrap .user-profile-avatar .info-new p{color:var(--text-muted);font-size:12.5px;margin:0}
.bravo_wrap .user-profile-avatar .role-name.badge{background:var(--brand-dim) !important;color:var(--brand) !important;border:1px solid var(--border-brand);font-weight:700;padding:5px 12px;border-radius:20px;font-size:11px}
.bravo_wrap .user-profile-plan{text-align:center;margin-bottom:16px}
.bravo_wrap .user-profile-plan a{display:inline-block;background:var(--brand);color:#fff;border-radius:var(--radius-sm);padding:9px 18px;font-weight:700;font-size:13px}
.bravo_wrap .user-profile-plan a:hover{background:var(--brand-dark);color:#fff}
.bravo_wrap .sidebar-user .sidebar-menu .main-menu{list-style:none;padding:0;margin:0}
.bravo_wrap .sidebar-user .main-menu > li{margin-bottom:4px;position:relative}
.bravo_wrap .sidebar-user .main-menu > li > a{display:flex;align-items:center;gap:12px;padding:12px 16px;border-radius:10px;color:var(--text-secondary) !important;font-weight:600;font-size:14.5px;transition:all .2s}
.bravo_wrap .sidebar-user .main-menu > li > a .icon,
.bravo_wrap .sidebar-user .main-menu > li > a .icon i{color:var(--text-muted);font-size:16px;transition:color .2s}
.bravo_wrap .sidebar-user .main-menu > li > a:hover{background:var(--bg-card);color:var(--text-primary) !important}
.bravo_wrap .sidebar-user .main-menu > li > a:hover .icon i{color:var(--brand)}
.bravo_wrap .sidebar-user .main-menu > li.active > a{background:var(--brand) !important;color:#fff !important}
.bravo_wrap .sidebar-user .main-menu > li.active > a .icon i{color:#fff}
.bravo_wrap .sidebar-user .main-menu .children{list-style:none;padding-inline-start:38px;margin:4px 0}
.bravo_wrap .sidebar-user .main-menu .children li a{display:block;padding:8px 12px;border-radius:8px;color:var(--text-muted) !important;font-size:13.5px}
.bravo_wrap .sidebar-user .main-menu .children li a:hover,
.bravo_wrap .sidebar-user .main-menu .children li.active a{color:var(--brand) !important}
.bravo_wrap .sidebar-user .caret{color:var(--text-muted)}
.bravo_wrap .sidebar-user .logout{margin-top:12px;padding-top:12px;border-top:1px solid var(--border)}
.bravo_wrap .sidebar-user .logout a{color:var(--text-secondary) !important;font-weight:600;font-size:14px;display:inline-flex;align-items:center;gap:8px}
.bravo_wrap .sidebar-user .logout a:hover{color:var(--brand) !important}

/* --- Content panel --- */
.bravo_wrap .user-form-settings{background:transparent;padding:30px 30px 50px}
.bravo_wrap .user-form-settings .title-bar{color:var(--text-primary);font-weight:900;font-size:26px;margin-bottom:24px;padding-bottom:0;border:0}
.bravo_wrap .user-form-settings .breadcrumbs,
.bravo_wrap .user-form-settings .breadcrumb{background:transparent;padding:0;margin-bottom:14px}
.bravo_wrap .user-form-settings .breadcrumb a,
.bravo_wrap .user-form-settings .breadcrumbs a{color:var(--text-muted)}

/* --- Stat cards --- */
.bravo_wrap .dashboard-item{margin-bottom:22px}
.bravo_wrap .dashboard-item .wrap-box{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:22px;height:100%;box-shadow:var(--shadow);transition:all .3s}
.bravo_wrap .dashboard-item .wrap-box:hover{transform:translateY(-4px);border-color:var(--border-brand)}
.bravo_wrap .dashboard-item .title{color:var(--text-muted);font-size:13px;font-weight:600;margin-bottom:10px}
.bravo_wrap .dashboard-item .number{color:var(--text-primary);font-size:28px;font-weight:900;line-height:1.1}
.bravo_wrap .dashboard-item .desc{color:var(--text-muted);font-size:12px;margin-top:6px}

/* --- Earnings chart --- */
.bravo_wrap .bravo-user-chart{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:24px;margin-top:8px}
.bravo_wrap .bravo-user-chart .chart-title{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;color:var(--text-primary);font-weight:800;font-size:18px;margin-bottom:20px}
.bravo_wrap .bravo-user-chart #reportrange{background:var(--bg-input);border:1px solid var(--border);border-radius:10px;padding:9px 14px;color:var(--text-secondary);font-size:13px;cursor:pointer}
.bravo_wrap .bravo-user-chart #reportrange i{color:var(--brand)}

/* --- Tables (booking history, wishlist, wallet) --- */
.bravo_wrap .user-form-settings .table{color:var(--text-secondary);border-color:var(--border)}
.bravo_wrap .user-form-settings .table thead th{background:var(--bg-raised);color:var(--text-primary);border-color:var(--border) !important;font-weight:700;font-size:13px}
.bravo_wrap .user-form-settings .table td,
.bravo_wrap .user-form-settings .table th{border-color:var(--border) !important;vertical-align:middle;color:var(--text-secondary)}
.bravo_wrap .user-form-settings .table tbody tr{background:var(--bg-card)}
.bravo_wrap .user-form-settings .table tbody tr:hover{background:var(--bg-card-hover)}
.bravo_wrap .user-form-settings .table a{color:var(--brand)}

/* --- Forms + buttons (profile, change password) --- */
.bravo_wrap .user-form-settings label{color:var(--text-secondary);font-weight:600;font-size:13.5px}
.bravo_wrap .user-form-settings .form-control{background:var(--bg-input) !important;border:1px solid var(--border) !important;color:var(--text-primary) !important;border-radius:10px}
.bravo_wrap .user-form-settings .form-control::placeholder{color:var(--text-muted)}
.bravo_wrap .user-form-settings .btn-primary,
.bravo_wrap .user-form-settings .btn-info,
.bravo_wrap .user-form-settings button[type=submit]{background:var(--brand) !important;border:0 !important;color:#fff !important;border-radius:10px;padding:11px 24px;font-weight:700}
.bravo_wrap .user-form-settings .btn-primary:hover,
.bravo_wrap .user-form-settings button[type=submit]:hover{background:var(--brand-dark) !important}
.bravo_wrap .user-form-settings .panel,
.bravo_wrap .user-form-settings .card,
.bravo_wrap .user-form-settings .box,
.bravo_wrap .user-form-settings .user-box{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius)}

/* --- Filter tabs (booking history etc.) — app.css gives .active a blue underline --- */
.bravo_wrap .user-form-settings .nav-tabs,
.bravo_wrap .user-form-settings .ht-nav-tabs{border-bottom:1px solid var(--border)}
.bravo_wrap .user-form-settings .nav-tabs > li > a,
.bravo_wrap .user-form-settings .ht-nav-tabs > li > a{color:var(--text-secondary);background:transparent;border:0;border-bottom:2px solid transparent;padding:10px 16px;font-weight:600;margin-bottom:-1px}
.bravo_wrap .user-form-settings .nav-tabs > li > a:hover,
.bravo_wrap .user-form-settings .ht-nav-tabs > li > a:hover{color:var(--text-primary);background:transparent;border-color:transparent transparent var(--border-brand)}
.bravo_wrap .user-form-settings .nav-tabs > li.active > a,
.bravo_wrap .user-form-settings .ht-nav-tabs > li.active > a{color:var(--brand) !important;background:transparent !important;border:0 !important;border-bottom:2px solid var(--brand) !important}

/* --- Notification dropdown (dashboard bell) — app.css renders it light (#f4f4f4) --- */
.bravo_wrap .dropdown-menu.notify-items{background:var(--bg-card) !important;border:1px solid var(--border) !important;box-shadow:var(--shadow-lg);padding:0}
.bravo_wrap .notify-items .dropdown-toolbar{background:var(--bg-raised) !important;border-bottom:1px solid var(--border) !important;color:var(--text-primary)}
.bravo_wrap .notify-items .dropdown-toolbar a{color:var(--brand) !important}
.bravo_wrap .notify-items .dropdown-list-items{background:transparent !important}
.bravo_wrap .notify-items .notification{background:transparent !important;border-bottom:1px solid var(--border) !important}
.bravo_wrap .notify-items .notification:hover{background:var(--bg-raised) !important}
.bravo_wrap .notify-items .notification .markAsRead,
.bravo_wrap .notify-items .notification .media-heading,
.bravo_wrap .notify-items .notification strong{color:var(--text-primary) !important}
.bravo_wrap .notify-items .notification small,
.bravo_wrap .notify-items .notification .media-body p,
.bravo_wrap .notify-items .notification .notification-time{color:var(--text-muted) !important}
.bravo_wrap .notify-items .dropdown-footer{background:var(--bg-raised) !important;border-top:1px solid var(--border) !important}
.bravo_wrap .notify-items .dropdown-footer a{color:var(--brand) !important}

/* --- Header notification bell (frontend header, next to the user menu) --- */
.bravo_wrap .lm-notif{position:relative;display:flex;align-items:center}
.bravo_wrap .lm-notif-toggle{display:inline-flex;align-items:center;justify-content:center;position:relative;color:var(--text-secondary);font-size:18px;padding:6px 8px;cursor:pointer;transition:color .2s}
.bravo_wrap .lm-notif-toggle:hover,.bravo_wrap .lm-notif.show .lm-notif-toggle{color:var(--brand)}
.bravo_wrap .lm-notif-badge{position:absolute;top:-1px;inset-inline-end:0;min-width:16px;height:16px;padding:0 4px;border-radius:10px;background:var(--brand);color:#fff;font-size:10px;font-weight:700;line-height:16px;text-align:center;box-shadow:0 0 0 2px var(--bg-base)}
.bravo_wrap .lm-notif-menu{width:340px;max-width:92vw;max-height:72vh;overflow-y:auto}
.bravo_wrap .lm-notif-menu .notification{padding:12px 16px}
.bravo_wrap .lm-notif-menu .notification a{color:var(--text-primary);font-size:13.5px;line-height:1.5;display:block}
.bravo_wrap .lm-notif-menu .notification a b,.bravo_wrap .lm-notif-menu .notification a strong{color:#fff}
.bravo_wrap .lm-notif-menu .notification .timestamp{color:var(--text-muted);font-size:11px}
.bravo_wrap .lm-notif-menu .notification.active{background:rgba(195,81,43,.07)}
.bravo_wrap .lm-notif-menu .media-object img,
.bravo_wrap .lm-notif-menu .media-object .avatar-text{width:36px;height:36px;border-radius:50%;object-fit:cover;display:flex;align-items:center;justify-content:center;background:var(--brand);color:#fff;font-weight:700;font-size:14px;flex:0 0 36px}
.bravo_wrap .lm-notif-more{background:transparent;border:0;color:var(--brand);font-weight:700;font-size:13px;padding:8px 12px;cursor:pointer;width:100%}
.bravo_wrap .lm-notif-more:hover{color:var(--brand-dark)}
.bravo_wrap .lm-notif-empty{color:var(--text-muted);text-align:center;padding:22px 16px;font-size:13px}
.bravo_wrap .lm-notif .dropdown-toolbar .lm-notif-mark-all{color:var(--brand) !important;font-size:12px;font-weight:600}

@media(max-width:767px){
  .bravo_wrap .sidebar-user{border-inline-end:0;border-bottom:1px solid var(--border);padding:22px 16px}
  .bravo_wrap .user-form-settings{padding:22px 16px 40px}
  .bravo_wrap .user-form-settings .title-bar{font-size:22px}
}

/* =============================================
   TOUR ROUTE (multi-day) — day list under the map
============================================= */
.bravo_wrap .g-location .location-map #map_content{min-height:420px}
.bravo_wrap .lm-route-days{list-style:none;padding:0;margin:20px 0 0;display:flex;flex-direction:column;gap:10px}
.bravo_wrap .lm-route-day{display:flex;align-items:center;gap:12px;background:var(--bg-raised);border:1px solid var(--border);border-radius:10px;padding:12px 16px}
.bravo_wrap .lm-route-day-badge{flex:0 0 auto;background:var(--brand);color:#fff;font-weight:800;font-size:12px;padding:5px 12px;border-radius:20px;white-space:nowrap}
.bravo_wrap .lm-route-day-leg{color:var(--text-primary);font-weight:600;font-size:14.5px}

/* =============================================
   PUBLIC ADVENTURE PROFILE (/profile/{id})
   profile-redesign.css ships a LIGHT palette (white panels, old #f8612a orange,
   blue-tinted hero). Remap its CSS variables to theme tokens + fix the few
   hardcoded colors. ".bravo_wrap .lm-profile" (0,2,0) beats its ".lm-profile".
============================================= */
.bravo_wrap .lm-profile{
  --lm-bg:var(--bg-base);
  --lm-panel:var(--bg-card);
  --lm-panel-soft:var(--bg-base);
  --lm-ink:var(--text-primary);
  --lm-ink-soft:var(--text-secondary);
  --lm-muted:var(--text-muted);
  --lm-line:var(--border);
  --lm-accent:var(--brand);
  --lm-accent-2:#d9662f;
}
.bravo_wrap .lm-profile-hero{background:linear-gradient(135deg,#0e1a2c 0%,#101827 55%,#1b2434 100%)}
.bravo_wrap .lm-profile-hero-overlay{background:radial-gradient(80% 120% at 50% 0%,var(--brand-glow) 0%,rgba(11,18,32,0) 55%),linear-gradient(180deg,rgba(6,12,22,.30) 0%,rgba(6,12,22,.80) 100%)}
.bravo_wrap .lm-status-pill{background:var(--brand-dim) !important;border-color:var(--border-brand) !important;color:#f0d3c6 !important}
.bravo_wrap .lm-status-pill .dot{background:var(--brand)}
@keyframes lm-pulse{0%{box-shadow:0 0 0 0 var(--brand-glow)}70%{box-shadow:0 0 0 10px rgba(195,81,43,0)}100%{box-shadow:0 0 0 0 rgba(195,81,43,0)}}
.bravo_wrap .lm-profile-avatar{background:var(--bg-card);border-color:rgba(255,255,255,.9)}
.bravo_wrap .lm-stat{box-shadow:var(--shadow);transition:transform .2s,border-color .2s}
.bravo_wrap .lm-stat:hover{transform:translateY(-4px);border-color:var(--border-brand)}
.bravo_wrap .lm-badge-card:hover{border-color:var(--border-brand)}
.bravo_wrap .lm-badge-img img{background:var(--bg-raised)}
.bravo_wrap .lm-tour-card-img{background-color:var(--bg-raised)}
.bravo_wrap .lm-tour-card-date{background:rgba(11,18,32,.72) !important;color:#fff !important;border:1px solid rgba(255,255,255,.14);backdrop-filter:blur(6px)}
.bravo_wrap .lm-tour-card:hover{box-shadow:var(--shadow-lg)}
/* Tier/level pill: the light Novice tier (#9aa5b1) left white text low-contrast.
   A dark pill + tier-coloured border keeps EVERY tier readable on the dark hero. */
.bravo_wrap .lm-level-pill{background:rgba(11,18,32,.5) !important;border:1.5px solid var(--lvl,var(--brand));color:#fff !important;box-shadow:0 6px 18px rgba(0,0,0,.3);vertical-align:middle !important}
.bravo_wrap .lm-level-pill .lvl-icon{filter:none}
/* Keep the hero centred in RTL — rtl.css forces text-align:right on the inner,
   which shoves the name + tier pill to the edge (fine in LTR, off in Arabic). */
.bravo_wrap .lm-profile-hero-inner,
.bravo_wrap .lm-profile-hero-inner .lm-profile-name,
.bravo_wrap .lm-profile-hero-inner .lm-profile-bio,
.bravo_wrap .lm-profile-hero-inner .lm-level-progress-text{text-align:center !important}
/* Follow / edit-profile actions + follower counts */
.bravo_wrap .lm-profile-social{display:flex;flex-direction:column;align-items:center;gap:14px;margin:18px 0 4px}
.bravo_wrap .lm-profile-counts{display:flex;gap:26px}
.bravo_wrap .lm-profile-count{color:rgba(255,255,255,.8);font-size:14px}
.bravo_wrap .lm-profile-count strong{color:#fff;font-weight:800;font-size:16px;margin-inline-end:3px}
.bravo_wrap .lm-profile-btn{display:inline-flex;align-items:center;gap:8px;padding:10px 28px;border-radius:30px;font-weight:700;font-size:14px;cursor:pointer;transition:all .2s;border:1.5px solid var(--brand);background:var(--brand);color:#fff !important;text-decoration:none}
.bravo_wrap .lm-profile-btn:hover{background:var(--brand-dark);border-color:var(--brand-dark);color:#fff !important;transform:translateY(-1px)}
.bravo_wrap .lm-follow-btn.is-following{background:transparent;border-color:rgba(255,255,255,.45)}
.bravo_wrap .lm-follow-btn.is-following:hover{background:rgba(239,68,68,.18);border-color:#ef4444}
.bravo_wrap .lm-profile-btn-edit{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.3)}
.bravo_wrap .lm-profile-btn-edit:hover{background:rgba(255,255,255,.2);border-color:rgba(255,255,255,.5)}
.bravo_wrap .lm-profile-btn[disabled]{opacity:.6;cursor:default}

/* --- Profile feed (posts, composer, replies) --- */
.bravo_wrap .lm-feed{max-width:680px;margin-left:auto;margin-right:auto}
.bravo_wrap .lm-feed-flash{background:var(--brand-dim);border:1px solid var(--border-brand);color:#f0d3c6;padding:10px 16px;border-radius:10px;margin-bottom:16px;font-size:14px}
.bravo_wrap .lm-feed-empty{color:var(--text-muted);text-align:center;padding:30px;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius)}
.bravo_wrap .lm-post-composer{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:16px;margin-bottom:22px}
.bravo_wrap .lm-post-input{width:100%;background:var(--bg-input);border:1px solid var(--border);border-radius:10px;color:var(--text-primary);padding:12px 14px;resize:vertical;font-size:15px;min-height:56px}
.bravo_wrap .lm-post-input::placeholder{color:var(--text-muted)}
.bravo_wrap .lm-post-previews{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.bravo_wrap .lm-post-previews img{width:70px;height:70px;object-fit:cover;border-radius:8px;border:1px solid var(--border)}
.bravo_wrap .lm-post-actions{display:flex;align-items:center;gap:14px;margin-top:12px;flex-wrap:wrap}
.bravo_wrap .lm-post-attach{display:inline-flex;align-items:center;gap:7px;color:var(--text-secondary);cursor:pointer;font-size:14px;font-weight:600;margin:0}
.bravo_wrap .lm-post-attach:hover{color:var(--brand)}
.bravo_wrap .lm-post-attach i{color:var(--brand)}
.bravo_wrap .lm-post-hint{color:var(--text-muted);font-size:12px;flex:1 1 auto}
.bravo_wrap .lm-post-share{background:var(--brand);color:#fff;border:0;border-radius:30px;padding:9px 26px;font-weight:700;font-size:14px;cursor:pointer;transition:background .2s}
.bravo_wrap .lm-post-share:hover{background:var(--brand-dark)}
.bravo_wrap .lm-post{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:18px;margin-bottom:18px}
.bravo_wrap .lm-post-head{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.bravo_wrap .lm-post-avatar img,.bravo_wrap .lm-post-avatar span{width:42px;height:42px;border-radius:50%;object-fit:cover;display:flex;align-items:center;justify-content:center;background:var(--brand);color:#fff;font-weight:700}
.bravo_wrap .lm-post-meta{display:flex;flex-direction:column;flex:1 1 auto;line-height:1.3}
.bravo_wrap .lm-post-author{color:var(--text-primary);font-weight:800;font-size:15px}
.bravo_wrap .lm-post-author:hover{color:var(--brand)}
.bravo_wrap .lm-post-time{color:var(--text-muted);font-size:12px}
.bravo_wrap .lm-post-del button{background:transparent !important;border:0;box-shadow:none !important;color:var(--brand);cursor:pointer;font-size:14px;padding:2px 4px !important;border-radius:6px !important}
.bravo_wrap .lm-post-del button:hover{color:#ef4444}

/* Feed report control (social Phase 4) */
.bravo_wrap .lm-report{position:relative;margin-inline-start:auto}
.bravo_wrap .lm-report-toggle{background:transparent;border:0;color:var(--text-muted);cursor:pointer;font-size:13px;padding:4px;line-height:1;border-radius:6px}
.bravo_wrap .lm-report-toggle:hover{color:var(--brand)}
.bravo_wrap .lm-report-menu{position:absolute;inset-inline-end:0;top:calc(100% + 6px);z-index:30;min-width:212px;background:var(--bg-card);border:1px solid var(--border);border-radius:12px;box-shadow:var(--shadow-lg);padding:8px;display:flex;flex-direction:column;gap:2px}
.bravo_wrap .lm-report-menu[hidden]{display:none}
.bravo_wrap .lm-report-head{font-size:11px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);padding:6px 10px 4px}
.bravo_wrap .lm-report-menu button{text-align:start;background:transparent;border:0;color:var(--text-secondary);cursor:pointer;font-size:13.5px;padding:8px 10px;border-radius:8px;transition:background .15s,color .15s}
.bravo_wrap .lm-report-menu button:hover{background:var(--brand-dim);color:var(--text-primary)}
.bravo_wrap .lm-report-done{display:flex;align-items:center;gap:8px;color:var(--brand);font-weight:700;font-size:13.5px;padding:8px 10px;white-space:nowrap}
.bravo_wrap .lm-reply-body .lm-report-sm{position:absolute;top:4px;inset-inline-end:8px;margin:0}
.bravo_wrap .lm-reply-body .lm-report-sm .lm-report-toggle{font-size:11px;opacity:.6}
.bravo_wrap .lm-reply-body .lm-report-sm .lm-report-toggle:hover{opacity:1}
.bravo_wrap .lm-post-content{color:var(--text-primary);font-size:15px;line-height:1.7;white-space:pre-wrap;word-break:break-word;margin-bottom:12px}
.bravo_wrap .lm-post-video{position:relative;padding-bottom:56.25%;height:0;border-radius:10px;overflow:hidden;margin-bottom:12px}
.bravo_wrap .lm-post-video iframe{position:absolute;inset:0;width:100%;height:100%}
.bravo_wrap .lm-post-media{display:grid;gap:6px;border-radius:10px;overflow:hidden;margin-bottom:12px}
.bravo_wrap .lm-post-media-1{grid-template-columns:1fr}
.bravo_wrap .lm-post-media-2,.bravo_wrap .lm-post-media-3,.bravo_wrap .lm-post-media-4{grid-template-columns:1fr 1fr}
.bravo_wrap .lm-post-img{display:block;padding-bottom:70%;background-size:cover;background-position:center;background-color:var(--bg-raised)}
.bravo_wrap .lm-post-media-1 .lm-post-img{padding-bottom:56%}
.bravo_wrap .lm-post-replies{border-top:1px solid var(--border);padding-top:12px;margin-top:4px}
.bravo_wrap .lm-reply{display:flex;gap:10px;margin-bottom:10px}
.bravo_wrap .lm-reply-avatar img,.bravo_wrap .lm-reply-avatar span{width:32px;height:32px;border-radius:50%;object-fit:cover;display:flex;align-items:center;justify-content:center;background:var(--bg-raised);color:#fff;font-weight:700;font-size:12px;flex:0 0 32px}
.bravo_wrap .lm-reply-body{background:var(--bg-raised);border:1px solid var(--border);border-radius:12px;padding:8px 12px;flex:1 1 auto;font-size:14px;position:relative}
.bravo_wrap .lm-reply-author{color:var(--text-primary);font-weight:700;margin-inline-end:6px}
.bravo_wrap .lm-reply-author:hover{color:var(--brand)}
.bravo_wrap .lm-reply-text{color:var(--text-secondary)}
.bravo_wrap .lm-reply-time{display:block;color:var(--text-muted);font-size:11px;margin-top:3px}
.bravo_wrap .lm-reply-del{position:absolute;top:6px;inset-inline-end:8px}
.bravo_wrap .lm-reply-del button{background:transparent !important;border:0;box-shadow:none !important;color:var(--brand);cursor:pointer;font-size:16px;line-height:1;padding:0 3px !important;border-radius:6px !important}
.bravo_wrap .lm-reply-del button:hover{color:#ef4444}
.bravo_wrap .lm-reply-form{display:flex;gap:8px;margin-top:10px}
.bravo_wrap .lm-reply-input{flex:1 1 auto;background:var(--bg-input);border:1px solid var(--border);border-radius:20px;color:var(--text-primary);padding:8px 14px;font-size:14px}
.bravo_wrap .lm-reply-input::placeholder{color:var(--text-muted)}
.bravo_wrap .lm-reply-send{background:var(--brand);color:#fff;border:0;border-radius:50%;width:36px;height:36px;flex:0 0 36px;cursor:pointer}
.bravo_wrap .lm-reply-send:hover{background:var(--brand-dark)}
/* --- Vendor badge + services (on the unified adventure profile) --- */
.bravo_wrap .lm-profile-pills{display:inline-flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:10px;vertical-align:middle;margin:0 auto 12px}
.bravo_wrap .lm-profile-pills .lm-level-pill{margin:0}
.bravo_wrap .lm-vendor-badge{display:inline-flex;align-items:center;gap:7px;background:var(--brand);color:#fff;font-weight:800;font-size:14px;line-height:21px;padding:8px 18px;border:1.5px solid transparent;border-radius:999px;margin:0;box-shadow:var(--shadow-brand);letter-spacing:.02em}
.bravo_wrap .lm-vendor-badge i{font-size:14px}

/* Wallet history — the trip a credit was spent on should read as a link */
.bravo_wrap .lm-wallet-history tbody a{color:var(--brand) !important;font-weight:700}
.bravo_wrap .lm-wallet-history tbody a:hover{color:var(--brand-dark) !important;text-decoration:underline}

/* Private-profile lock card (social Phase 3) */
.bravo_wrap .lm-private-card{max-width:560px;margin:16px auto 48px;text-align:center;background:var(--bg-card);border:1px solid var(--border);border-radius:20px;padding:52px 34px;box-shadow:var(--shadow-lg)}
.bravo_wrap .lm-private-icon{width:76px;height:76px;margin:0 auto 22px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:var(--brand-dim);color:var(--brand);font-size:30px}
.bravo_wrap .lm-private-title{color:var(--text-primary);font-weight:800;font-size:23px;margin:0 0 12px}
.bravo_wrap .lm-private-text{color:var(--text-secondary);font-size:15px;line-height:1.75;margin:0 auto;max-width:420px}
.bravo_wrap .lm-vendor-services .nav-tabs{border-bottom:1px solid var(--border);margin-bottom:18px}
.bravo_wrap .lm-vendor-services .nav-tabs .nav-link{color:var(--text-secondary);border:0;border-bottom:2px solid transparent;background:transparent;font-weight:600;padding:10px 16px}
.bravo_wrap .lm-vendor-services .nav-tabs .nav-link:hover{color:var(--text-primary)}
.bravo_wrap .lm-vendor-services .nav-tabs .nav-link.active{color:var(--brand);border-bottom-color:var(--brand);background:transparent}
