/* ===== Compact Header Sizing ========================================== */
:root{
  --hdr-logo: 56px;            /* logo height on page load (desktop) */
  --hdr-logo-sm: 46px;         /* logo height after scroll */
  --hdr-link-fs: 16px;         /* menu font size desktop */
  --hdr-link-py: 10px;         /* vertical padding for links desktop */
  --hdr-pad-y: 10px;           /* header vertical padding desktop */
  --hdr-pad-y-scrolled: 6px;   /* header padding after scroll */
}

/* Top contact bar skinny */
#siteHeader .topbar{
  min-height: 30px;
  padding-block: 4px;
  font-size: 13px;
}

/* Main bar compaction */
#siteHeader .navbar,
#siteHeader .mainbar,
#siteHeader .nav-wrap{
  padding-block: var(--hdr-pad-y);
  transition: padding .18s ease, background .18s ease, box-shadow .18s ease;
}

/* Logo size */
#siteHeader .navbar-brand img,
#siteHeader .brand img,
#siteHeader .site-logo{
  max-height: var(--hdr-logo);
  height: auto; width: auto;
  transition: max-height .18s ease;
}

/* Menu links */
#siteHeader .nav-link{
  font-size: var(--hdr-link-fs);
  padding: var(--hdr-link-py) 14px;
  line-height: 1.2;
}

/* After scroll (or when header gets .scrolled/.stuck) — shrink further */
#siteHeader.scrolled .navbar,
#siteHeader.stuck .navbar,
#siteHeader.scrolled .mainbar,
#siteHeader.stuck .mainbar,
#siteHeader.scrolled .nav-wrap,
#siteHeader.stuck .nav-wrap{
  padding-block: var(--hdr-pad-y-scrolled);
}
#siteHeader.scrolled .navbar-brand img,
#siteHeader.stuck .navbar-brand img,
#siteHeader.scrolled .brand img,
#siteHeader.stuck .brand img,
#siteHeader.scrolled .site-logo,
#siteHeader.stuck .site-logo{
  max-height: var(--hdr-logo-sm);
}

/* Remove stray vertical gaps inside the container */
#siteHeader .container > * { margin-block: 0; }

/* Mobile: even tighter */
@media (max-width: 991.98px){
  :root{
    --hdr-logo: 46px;
    --hdr-logo-sm: 42px;
    --hdr-link-fs: 15px;
    --hdr-link-py: 8px;
    --hdr-pad-y: 8px;
    --hdr-pad-y-scrolled: 6px;
  }
  #siteHeader .topbar{ min-height: 28px; padding-block: 4px; font-size: 12.5px; }
}


/* Base text */
html { font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--body-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* =========================
   Headings – Anantara style
   ========================= */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.section-title, .destinations .section-title,
.dest-title, .dest-card .title, .card-title, .h4, .h5 {
  font-family: var(--font-serif);
  font-weight: 700;            /* light */
  color: var(--heading-color);
  line-height: 1.2;
  margin-top: .2em;
  margin-bottom: .4em;
}

/* Hero titles slightly bolder for readability */
.hero-video .hero-content h1,
.hero-home .hero-copy h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--heading-color);
}

/* Buttons & dropdowns keep normal size */
.btn,
.btn-pill,
.dropdown-item {
  letter-spacing: .15em;
  font-weight: 500;
}

/* Prevent giant image decodes on phones */
img{ max-width:100%; height:auto; }

/* Big sections: render lazily to lower memory on mobile */
.section, .reviews-section, .packages-grid, .styles-rail, .dest-rail{
  content-visibility:auto; /* modern browsers */
  contain-intrinsic-size: 800px 600px; /* rough placeholder */
}


/* Section titles (redundant but explicit) */
.section-title,
.destinations .section-title {
  font-family: var(--font-serif);
  letter-spacing: 0.34em;
  font-weight: 300;
  color: var(--heading-color);
}

/* Card titles */
.dest-title,
.dest-card .title,
.card-title,
.h4, .h5 {
  font-family: var(--font-serif);
  letter-spacing: 0.28em;
  font-weight: 300;
}

/* Small labels (chips, meta) */
.badge, .small, .text-muted, .reviews, .price-note {
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  
  font-weight: 500;
  font-size: .75rem;
}

/* Numbers look best a tad tighter */
.price,
.currency,
.count, 
.rating i {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

/* Optional: responsive tracking */
@media (max-width: 576px){
  h1, h2, h3, h4, h5, h6,
  .display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
  .section-title, .destinations .section-title {
    letter-spacing: 0.02em;
  }
}

/* ===== Transparent Header Over Media ===== */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:1300;
  background:transparent;
  color:#fff;
  pointer-events:auto;
}
.site-header.scrolled{
  backdrop-filter:saturate(120%) blur(8px);
  background:rgba(17,22,30,.55);
  border-bottom:1px solid rgba(255,255,255,.12);
}

/* Hide Bootstrap caret in header */
.site-header .dropdown-toggle::after { display: none !important; }

.top-line{
  border-bottom:1px solid rgba(255,255,255,.18);
  padding:8px 0;
}
.top-item{ color:#fff; opacity:.9; font-size:.92rem; text-decoration:none }
.top-item:hover{ opacity:1 }

.header-nav{ background:transparent !important; }
.navbar-brand .brand-text{ color:#fff; font-size:1.4rem; letter-spacing:.2px }
.navbar-toggler{ border-color:rgba(255,255,255,.6) }
.navbar-toggler-icon{ filter:invert(1) }

.navbar-nav .nav-link{
  color:#fff !important; font-weight:600; position:relative; transition: color 0.2s ease;
}
.navbar-nav .nav-link:hover{ opacity:.9 }
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after{
  content:""; position:absolute; left:0; bottom:-6px; width:100%; height:2px; background: var(--accent); opacity:.85;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus { color: var(--accent) !important; }


/* Show dropdown on hover (desktop) */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover > .dropdown-menu {
    display:block;
    margin-top:0;
  }
}

.dropdown-menu{
  border-radius:10px; overflow:hidden; z-index:1100;
  background-color: rgba(255,255,255,.98);
}

.icon-btn{
  background:transparent; border:0; color:#fff; font-size:1.1rem; padding:.35rem .5rem; border-radius:10px;
}
.icon-btn:hover{ background:rgba(255,255,255,.1) }

.btn-pill{ border-radius:26px; padding:.55rem 1.1rem }
.btn-accent{ background:var(--accent); color:#fff; border:0 }
.btn-accent:hover{ filter:brightness(.95) }

.wishlist-link{ position:relative; color:#fff; text-decoration:none }
.wishlist-link i{ font-size:1.2rem }
.wishlist-count{
  position:absolute; top:-6px; right:-10px; background:var(--badge-olive);
  color:#111; border-radius:50%; padding:1px 6px; font-size:.7rem; font-weight:800;
}

/* ===== Hero video ===== */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

/* Hero search bar */
.hero-search-box{
  position: relative;
  display:flex; align-items:center; gap:10px;
  background:#fff; border-radius:12px; padding:14px 18px;
  box-shadow:0 8px 22px rgba(0,0,0,.2);
  max-width: 720px; margin: 0 auto;
}
.hero-search-box i{ font-size:20px; color:#6b7280; }
.hero-search-box input{
  border:0; outline:0; flex:1; font-size:16px; color:#111; background:transparent;
}

/* Suggestions dropdown */
.hero-suggest{
  position:absolute; left:50%; transform:translateX(-50%);
  width:min(720px, 92vw);
  margin-top:10px;
  background:#fff; border-radius:12px; box-shadow:0 12px 28px rgba(0,0,0,.22);
  overflow:hidden; z-index: 5;
}
.sug-item{
  display:flex; align-items:center; gap:10px;
  padding:10px 14px; cursor:pointer;
}
.sug-item:hover, .sug-item.active{ background:#f6f7f9; }
.sug-type{ font-size:12px; font-weight:700; color:#8a8f98; letter-spacing:.06em; margin-right:6px; }
.sug-title{ font-weight:700; color:#111; }
.sug-sub{ font-size:13px; color:#636a75; }
.sug-ico{ width:20px; text-align:center; color:#8a8f98; }

/* small screens */
@media (max-width:576px){
  .hero-search-box{ padding:12px 14px; }
}

/* Push content under fixed header (used where needed) */
.page-start{ padding-top:calc(var(--header-height) + 16px); }

/* ===== Destinations Mega Menu (DESKTOP DROPDOWN) ===== */
.mega-menu{
  position: fixed; left:0; right:0; top: var(--header-height);
  display:none; z-index:1200;
  background: rgba(17,22,30,0.35);
  border-top: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  padding: 24px 0;
}
.mega-menu.show{ display:block; }

.mega-inner .h6 { letter-spacing:.08em; }

.mega-grid{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:24px;
}

.mega-aside{
  border-right:1px solid rgba(0,0,0,.08);
  padding-right:16px;
}
.mega-aside .continent-item{
  display:block; width:100%; text-align:left;
  padding:12px 14px; margin-bottom:8px;
  border-radius:14px;
  background: rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.28);
  color:#fff; font-weight:700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.mega-aside .continent-item:hover{
  transform: translateY(-4px) scale(1.03);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.mega-aside .continent-item.active{
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.mega-content{
  padding-left:8px;
  background: rgba(17,22,30,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

/* Countries list (GLASS PILLS) — scoped to mega menu ONLY */
.mega-menu .countries-panel{ display:none; }
.mega-menu .countries-panel.show{ display:block; }

.mega-menu .countries-cols{
  columns: 3 220px;
  column-gap: 24px;
  list-style:none; margin:0; padding:0;
}
.mega-menu .countries-cols li{ break-inside: avoid; margin:0 0 10px; }
.mega-menu .countries-cols a{
  display:inline-block;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.26);
  color:#fff;
  text-decoration:none;
  padding:8px 12px;
  border-radius: 12px;
  line-height:1.2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease, border-color .22s ease;
}
.mega-menu .countries-cols a:hover{
  transform: translateY(-3px) scale(1.04);
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.48);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  color: var(--accent);
}


/* Panel slide/zoom reveal when switching continents */
.mega-menu .countries-panel{
  opacity:0;
  transform: translateY(8px) scale(0.98);
}
.mega-menu .countries-panel.show{
  animation: panelIn .28s ease forwards;
}
@keyframes panelIn{
  to { opacity:1; transform: translateY(0) scale(1); }
}

/* Staggered tags reveal (first 12 items) */
.mega-menu .countries-panel.show .countries-cols li{
  opacity:0; transform: translateY(6px);
  animation: tagIn .28s ease forwards;
}
@keyframes tagIn{
  to { opacity:1; transform: translateY(0); }
}
.mega-menu .countries-panel.show .countries-cols li:nth-child(1){ animation-delay: 20ms; }
.mega-menu .countries-panel.show .countries-cols li:nth-child(2){ animation-delay: 40ms; }
.mega-menu .countries-panel.show .countries-cols li:nth-child(3){ animation-delay: 60ms; }
.mega-menu .countries-panel.show .countries-cols li:nth-child(4){ animation-delay: 80ms; }
.mega-menu .countries-panel.show .countries-cols li:nth-child(5){ animation-delay: 100ms; }
.mega-menu .countries-panel.show .countries-cols li:nth-child(6){ animation-delay: 120ms; }
.mega-menu .countries-panel.show .countries-cols li:nth-child(7){ animation-delay: 140ms; }
.mega-menu .countries-panel.show .countries-cols li:nth-child(8){ animation-delay: 160ms; }
.mega-menu .countries-panel.show .countries-cols li:nth-child(9){ animation-delay: 180ms; }
.mega-menu .countries-panel.show .countries-cols li:nth-child(10){ animation-delay: 200ms; }
.mega-menu .countries-panel.show .countries-cols li:nth-child(11){ animation-delay: 220ms; }
.mega-menu .countries-panel.show .countries-cols li:nth-child(12){ animation-delay: 240ms; }

/* Mega menu links: never underline */
.mega-menu a { text-decoration:none; }
.mega-menu a:hover { text-decoration:none; }

/* ===== Plain destinations list on homepage ===== */
.destinations-plain .country-list{
  list-style:none; margin:0; padding:0;
}
.destinations-plain .country-list li{
  padding:6px 0;
  border-bottom:1px dotted rgba(0,0,0,0.3);
}
.destinations-plain .country-list li:last-child{ border-bottom:none; }

/* Strong reset for homepage list only */
.destinations-plain .country-list a{
  display:inline !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  border-radius:0 !important;
  padding:0 !important;
  transform:none !important;
  text-decoration:none !important;
  color:inherit !important;
}
.destinations-plain .country-list a:hover{
  text-decoration:none !important;
  color:var(--accent) !important;
  background:transparent !important;
  border-color:transparent !important;
  box-shadow:none !important;
  transform:none !important;
}


/* ===============================
   DESTINATIONS SECTION (compact)
   =============================== */

.destinations {
  padding: 48px 0 56px;
}

.destinations .section-title {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.2;
  text-align: center;
  margin: 0 0 10px;
}

/* Only constrain normal sections, not the full-bleed one */
.destinations:not(.destinations-fullbleed) {
  text-align: center;
  color: #5b6578;
  font-size: 16px;
  max-width: 940px;
  margin: 0 auto 28px;
}


/* === Center & style section subheadings like taglines === */
.section-sub {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;

  color: #7a7a7a;              /* softer grey tone */
  font-size: 14px;             /* slightly smaller */
  font-weight: 400;            /* lighter weight */
  letter-spacing: 0.05em;      /* subtle spacing for elegance */
  max-width: 780px;            /* narrower for balance */
  margin-top: 6px;             /* tighter gap from title */
  margin-bottom: 22px;
  line-height: 1.6;
}


/* Grid (non-carousel areas) */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 28px;
}
@media (max-width: 1199.98px) {
  .dest-grid { grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 24px; }
}
@media (max-width: 991.98px) {
  .dest-grid { grid-template-columns: repeat(2, minmax(240px, 1fr)); gap: 22px; }
}
@media (max-width: 575.98px) {
  .dest-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* Card (core) */
.dest-card{
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease;
  aspect-ratio: 4 / 3;
  max-height: 320px;
}
.dest-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0,0,0,.22);
}

/* Image inside card (keep absolute for overlays/gradients) */
.dest-card .dest-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}
.dest-card:hover .dest-img{ transform: scale(1.06); }

/* Bottom gradient on card */
.dest-card::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height: 54%;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.25) 35%,
    rgba(0,0,0,.55) 65%,
    rgba(0,0,0,.75) 100%
  );
  pointer-events:none;
}

/* Caption area */
.dest-caption{
  position:absolute;
  left:16px; right:16px; bottom:14px;
  color:#fff;
  z-index:2;
}
.dest-title{
  font-size: clamp(18px, 2vw, 22px);
  margin: 0 0 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

/* Positioning container */
.dest-cta { position: relative; margin-top: 24px; }

/* View All (Destinations) – clone of vf-viewall but scoped */
.dest-viewall{
  position: absolute;
  right: 12px;
  bottom: -6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #B07D5A;                 /* theme brown */
  font-weight: 600;
  letter-spacing: .02em;
  z-index: 1100;
  transition: transform .2s ease, color .2s ease;
}
.dest-viewall--brown:hover{ color:#CC5500; }

.dest-viewall .va-arrow{
  display:inline-block;
  line-height:0;
  transition: transform .2s ease;
}
.dest-viewall:hover .va-arrow{ transform: translateX(4px); }

/* SVG inherits text color already via stroke="currentColor" */
.dest-viewall svg{ display:block; }

@media (max-width:640px){
  .dest-viewall{ right: 8px; bottom: -4px; }
}


/* === Carousel layout (shared base) === */
.dest-arrows { position: relative; margin-top: 1rem; }

.dest-track{
  --gap: 28px;
  display:flex;
  flex-wrap:nowrap;
  gap: var(--gap);
  overflow-x:auto;            /* was hidden */
  overflow-y:hidden;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 6px;
  scroll-snap-type:x proximity;
}


/* 4 cards visible on desktop */
.dest-card{
  flex: 0 0 calc((100% - 3*var(--gap)) / 4);
  max-width: calc((100% - 3*var(--gap)) / 4);
  border-radius:22px;
  overflow:hidden;
  position:relative;
  display:block;
}
/* Responsive: 3 / 2 / 1 cards */
@media (max-width: 1200px){
  .dest-card{
    flex-basis: calc((100% - 2*var(--gap)) / 3);
    max-width:  calc((100% - 2*var(--gap)) / 3);
  }
}
@media (max-width: 900px){
  .dest-card{
    flex-basis: calc((100% - var(--gap)) / 2);
    max-width:  calc((100% - var(--gap)) / 2);
  }
}
@media (max-width: 560px){
  .dest-card{
    flex-basis: 100%;
    max-width:  100%;
  }
}

/* Arrow buttons */
.dest-arrow-btn {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; border: none; cursor: pointer; transition: background 0.3s ease;
}
.dest-arrow-btn:hover { background: rgba(255, 255, 255, 0.85); }
.dest-arrow-btn.left  { left: 8px; }
.dest-arrow-btn.right { right: 8px; }
.dest-arrow-btn i { font-size: 18px; color: #333; }

/* ====== Destinations mega dropdown (plain) ====== */
.mega-trigger { position: static; }

.mega-plain{
  position: fixed;
  left: 0; right: 0;
  top: var(--header-height, 112px);
  display: none;
  z-index: 1200;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 40px rgba(16, 24, 40, .08);
}
.mega-plain.show{ display:block; }
.mega-plain-inner{ max-width: 1200px; margin: 0 auto; padding: 18px 20px 20px; }

.mega-plain-head{
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 2px 14px; border-bottom: 1px solid rgba(0,0,0,.06);
}
.mega-plain-head .label{
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 400; letter-spacing:.3em; color: var(--heading-color);
  
}
.mega-plain-head .view-all{
  font-weight: 600; font-size: 14px; letter-spacing: .2px; color: #2c4da0; text-decoration: none;
}
.mega-plain-head .view-all:hover{ text-decoration: underline; }

.mega-plain-body{
  display: grid; grid-template-columns: 260px 1fr; gap: 24px; padding-top: 14px;
}

/* Left side (continents) */
.mega-plain-aside{ border-right: 1px solid rgba(0,0,0,.06); padding-right: 16px; }
.continent-list{ list-style: none; margin: 0; padding: 0; }
.continent-btn{
  width: 100%; text-align: left; background: transparent; border: 0;
  padding: 12px 14px; border-radius: 10px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; color: #344054; cursor: pointer;
}
.continent-btn:hover{ background: rgba(0,0,0,0.035); }
.continent-btn.active{ background: rgba(0,0,0,0.06); color: #111827; }
.continent-btn i{ opacity: .6; }

/* Right side (countries) */
.mega-plain-content{ padding-left: 8px; }
.countries-panel{ display: none; }
.countries-panel.show{ display: block; }

.countries-cols{
  columns: 3 260px; column-gap: 48px;
  list-style: none; margin: 0; padding: 6px 0 0;
}
.countries-cols li{ break-inside: avoid; margin: 0 0 12px; padding: 0; }
.countries-cols a{ color: #111827; text-decoration: none; font-weight: 500; }
/* Animated brown underline from left to right on hover */
.mega-plain .countries-cols a,
body.destinations-theme .countries-cols a{
  position:relative;
  color:#111827;
  text-decoration:none;
  transition: color .25s ease;
}
.mega-plain .countries-cols a::after,
body.destinations-theme .countries-cols a::after{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  height:2px; width:0;
  background:#a3897d; /* brown */
  transition: width .28s ease;
}
.mega-plain .countries-cols a:hover,
body.destinations-theme .countries-cols a:hover{
  color:#a3897d;
}
.mega-plain .countries-cols a:hover::after,
body.destinations-theme .countries-cols a:hover::after{
  width:100%;
}


/* keep header above this layer */
.site-header{ z-index: 1300; }

/* Responsive */
@media (max-width: 992px){
  .mega-plain-body{ grid-template-columns: 1fr; }
  .mega-plain-aside{ border-right: 0; padding-right: 0; }
  .countries-cols{ columns: 2 200px; column-gap: 28px; }
}
@media (max-width: 576px){
  .countries-cols{ columns: 1 160px; }
}

/* Destinations page (legacy tabs) */
.region-tabs { border-top: 1px dashed rgba(0,0,0,.12); border-bottom: 1px dashed rgba(0,0,0,.12); padding: 10px 0; }
.region-tab{
  background: #f6f7f9; border:1px solid #e6e8ef; color:#3b475a;
  padding:.45rem .9rem; border-radius:999px; font-weight:600; cursor:pointer;
}
.region-tab.active{ background:#1d2b48; color:#fff; border-color:#1d2b48; }
.region-tab:hover{ filter:brightness(0.98); }
.dest-grid-page{ display:none; margin-top:16px; --size: 280px; display:grid; grid-template-columns: repeat(auto-fill, minmax(var(--size),1fr)); gap:18px; }
.dest-grid-page.show{ display:grid; }
.dest-card-page{
  position:relative; display:block; border-radius:12px; overflow:hidden;
  aspect-ratio: 4 / 3; box-shadow: 0 10px 28px rgba(0,0,0,.18); transform: translateZ(0);
}
.dest-card-page.span-2{ grid-column: span 2; }
.dest-card-page img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transform:scale(1.04); transition: transform .35s ease;
}
.dest-card-page:hover img{ transform:scale(1.08); }
.dest-card-page .shade{
  position:absolute; inset:auto 0 0 0; height:60%;
  background: linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.55) 60%,rgba(0,0,0,.85) 100%);
}
.dest-card-page .dest-chip{
  position:absolute; left:10px; top:10px; z-index:2;
  background:rgba(255,255,255,.85); color:#1d2b48; border-radius:6px; padding:4px 8px;
  font-size:.7rem; font-weight:800; letter-spacing:.06em;
}
.dest-card-page .meta{ position:absolute; left:12px; right:12px; bottom:10px; color:#fff; z-index:2; }
.dest-card-page .country{ font-weight:800; font-size:1.1rem; }
.dest-card-page .journeys{ font-size:.8rem; opacity:.9; }

/* ===== Destinations page (refined) ===== */
body.destinations-theme {
  background:
    radial-gradient(1200px 420px at 50% -60px, rgba(29,43,72,.06), transparent 60%),
    linear-gradient(#fff, #fff);
}

/* Equal-size grid (styles page) */
.country-grid{
  --card-gap: 22px;
  display:grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: var(--card-gap);
}
@media (max-width: 1200px){ .country-grid{ grid-template-columns:repeat(3, minmax(220px,1fr)); } }
@media (max-width: 900px){  .country-grid{ grid-template-columns:repeat(2, minmax(220px,1fr)); } }
@media (max-width: 560px){  .country-grid{ grid-template-columns:1fr; } }

/* Country card (styles page) */
.country-card{
  position:relative; display:block; color:#fff; text-decoration:none;
  border-radius:16px; overflow:hidden; aspect-ratio: 4 / 3;
  background:#0f172a; box-shadow: 0 14px 34px rgba(0,0,0,.14);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, outline-color .22s ease;
  outline: 1px solid rgba(255,255,255,.06);
}
.country-card:hover{
  transform: translateY(-6px); box-shadow: 0 22px 46px rgba(0,0,0,.20); outline-color: rgba(255,255,255,.14);
}
.card-img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transform: scale(1.02); transition: transform .36s ease;
}
.country-card:hover .card-img{ transform: scale(1.06); }
.country-card::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.08) 30%, transparent 60%);
  opacity:0; transition: opacity .35s ease, transform .35s ease; transform: translateX(-15%);
}
.country-card:hover::before{ opacity:1; transform: translateX(5%); }
.country-card::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:56%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.84) 100%);
  pointer-events:none;
}
.card-badge{
  position:absolute; top:12px; left:12px; z-index:2;
  font: 800 .78rem/1 var(--font-sans);
  letter-spacing:.06em; padding:6px 10px; border-radius:10px; color:#fff;
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.35); text-shadow: 0 1px 2px rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
}
.card-caption{ position:absolute; left:14px; right:14px; bottom:12px; z-index:2; display:grid; gap:4px; }
.card-title{
  font: 300 1.22rem/1.15 var(--font-serif);
   letter-spacing:.28em;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.card-sub{ font: 600 .98rem/1.2 var(--font-sans); opacity:.94; }

/* ==========================================================
   OFFERS: behave like Destinations slider (no global overrides)
   ========================================================== */

/* Track behaves like the Destinations track */
#offerTrack{
  --gap: 24px;
  display:flex;
  flex-wrap:nowrap;
  gap: var(--gap);
  overflow:hidden;
  -webkit-overflow-scrolling: touch;
  padding: 8px 6px;
  scroll-behavior: smooth; /* keep smooth for button nudges */
}

/* Same responsive card sizing as Destinations (4 / 3 / 2 / 1) */
#offerTrack .dest-card{
  flex: 0 0 calc((100% - 3*var(--gap)) / 4);
  max-width: calc((100% - 3*var(--gap)) / 4);
  border-radius:22px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
@media (max-width: 1200px){
  #offerTrack .dest-card{
    flex-basis: calc((100% - 2*var(--gap)) / 3);
    max-width:  calc((100% - 2*var(--gap)) / 3);
  }
}
@media (max-width: 900px){
  #offerTrack .dest-card{
    flex-basis: calc((100% - var(--gap)) / 2);
    max-width:  calc((100% - var(--gap)) / 2);
  }
}
@media (max-width: 560px){
  #offerTrack .dest-card{
    flex-basis: 100%;
    max-width:  100%;
  }
}

/* Optional: snap help only on phones */
@media (max-width: 576px){
  #offerTrack{ scroll-snap-type: x mandatory; scroll-padding-inline: 8vw; }
  #offerTrack::before, #offerTrack::after{ content: ""; flex: 0 0 8vw; }
  #offerTrack .dest-card{ scroll-snap-align: center; }
}

/* ===============================
   PACKAGES (image on top, text below)
   =============================== */



/* ===== Packages GRID (homepage, no slider) ===== */


/* cleanup old utilities */
.card .trip-title{ margin:12px 0 8px; min-height:60px; }
.card .trip-duration{ margin-bottom:10px; }
.card .trip-price{ margin-top:12px; margin-bottom:20px; }

/* Glass-like effect for style cards */
.card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Hover effect */
.card:hover {
  border: 1px solid #ff7a00;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.6);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.35);
}

/* Floating header shell */
.floating-header{
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 24px));
  z-index: 9999;
  background: rgba(255, 250, 241, .92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, opacity .2s ease, box-shadow .25s ease, background-color .25s ease;
}
.floating-header.stuck{
  background: rgba(255, 250, 241, .98);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}
.floating-header.hide{
  transform: translate(-50%, -120%);
  opacity: 0;
}
/* Spacer below the fixed header so content doesn't jump */
.header-spacer{
  height: var(--header-h, 80px); /* JS will set the exact height */
}
/* Small screens */
@media (max-width: 992px){
  .floating-header{
    width: calc(100% - 12px);
    top: 8px;
    border-radius: 12px;
  }
}

/* Floating header text styles (now Raleway) */
.floating-header .navbar-nav .nav-link,
.floating-header .top-line,
.floating-header .top-item,
.floating-header .wishlist-link,
.floating-header .dropdown-toggle {
  color: #222 !important;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .12em;
  
}

/* Make sure the floating header uses the same size */
.floating-header .navbar-nav .nav-link {
  font-size: 0.85rem !important;
}

/* (Optional) dropdown items too */
.dropdown-item {
  font-size: 0.85rem !important;
}

/* (Optional) tighten link padding so the bar looks slimmer */
.navbar-nav .nav-link {
  padding: 0.45rem 0.7rem;
}


/* ===== Reset heading styles (remove red + underline) ===== */
.section-title,
.section-title span,
.destinations .section-title,
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color, #101828) !important;  /* use your main heading color */
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* If some headings used bottom borders (like underline) */
.section-title::after,
h2::after,
h3::after {
  content: none !important;
}

/* Hover & Active states */
.floating-header .navbar-nav .nav-link:hover,
.floating-header .navbar-nav .nav-link.active,
.floating-header .dropdown-menu .dropdown-item:hover {
  color: #e94d2c !important;
}
/* Dropdown items */
.floating-header .dropdown-menu .dropdown-item {
  font-family: var(--font-sans);
  font-weight: 400;
  color: #333;
}

/* ===== Left Sidebar layout for Destinations — MATCH MEGA MENU ===== */
body.destinations-theme .dest-layout{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap:24px;
}

body.destinations-theme .dest-layout .dest-tabs{
  position:sticky;
  top:calc(var(--header-h, 80px) + 12px);
  align-self:start;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:16px;
  margin:0;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:12px;
  box-shadow:0 6px 18px rgba(16,24,40,.06);
  z-index:5;
  border-bottom:0;
}

/* Buttons look like header .continent-btn (exact match) */
body.destinations-theme [data-destinations] .dest-layout .dest-tabs .dest-tab{
  width:100%;
  text-align:left;
  appearance:none;
  background:transparent !important;
  border:1px solid rgba(0,0,0,.08) !important;
  color:#344054 !important;
  padding:12px 14px !important;
  border-radius:10px !important;
  font:600 .95rem/1 var(--font-sans);
  letter-spacing:.08em;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  transition:background .18s ease, border-color .18s ease, color .18s ease;
  box-shadow:none !important;
}

body.destinations-theme [data-destinations] .dest-layout .dest-tabs .dest-tab:hover,
body.destinations-theme [data-destinations] .dest-layout .dest-tabs .dest-tab:focus-visible{
  background:rgba(0,0,0,.035) !important;
  border-color:rgba(0,0,0,.12) !important;
  color:#111827 !important;
  transform:none !important;
  box-shadow:none !important;
  outline:0 !important;
}

body.destinations-theme [data-destinations] .dest-layout .dest-tabs .dest-tab.active{
  background:rgba(0,0,0,.06) !important;
  border-color:rgba(0,0,0,.12) !important;
  color:#111827 !important;
}

/* Ensure content column doesn't shrink */
body.destinations-theme .dest-layout .dest-content{ min-width:0; }

/* Mobile: horizontal, scrollable chip row */
@media (max-width: 992px){
  body.destinations-theme .dest-layout{ grid-template-columns:1fr; gap:16px; }
  body.destinations-theme .dest-layout .dest-tabs{
    flex-direction:row;
    overflow-x:auto;
    gap:10px;
    padding:10px;
    border-radius:10px;
  }
  body.destinations-theme [data-destinations] .dest-layout .dest-tabs .dest-tab{
    width:auto;
    white-space:nowrap;
  }
}

/* Hard kill any legacy hover transform from older rules */
body.destinations-theme .dest-layout .dest-tab:hover{
  transform:none !important;
}

/* =========================
   Tour Route chips (scoped)
   ========================= */

/* Label sits closer to the line */
.pkg-tour-label {
  margin-bottom:-22px;
  display:block;
  font-size:15px;
  color:#6b7280;
}

/* The line & icons */
.pkg-cities-line{
  display:flex; align-items:center; flex-wrap:wrap; gap:6px;
  border-top:1px solid rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.08);
  padding:10px 0;
  margin-top:0;
}
.pkg-cities-line .bi-airplane-engines{ font-size:14px; color:#9aa0a6; }
.pkg-cities-line .arrow{ color:#9aa0a6; font-size:12px; opacity:.9; }

/* City chips — keep this SCOPED only */
.pkg-cities-line .city-stop{
  padding: 2px 6px;
  border-radius: 10px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  color: #e53935;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
}

/* =========================
   What's Included (icons)
   ========================= */
/* What’s Included section - light & slim */
.pkg-includes { margin: 1.25rem 0 2rem; }

.includes-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  background: #fafafa;
  border-radius: 12px;
  padding: 16px 20px;
}

.include-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.2px;
}

.include-item i {
  font-size: 20px;
  margin-bottom: 6px;
  color: #999;
  font-weight: 300;
  line-height: 1;
  transition: color 0.2s ease;
}

.include-item span {
  font-size: 13px;
  color: #444;
  font-weight: 500;
}

.include-item:hover i,
.include-item:hover span { color: #d43b2a; }

/* What's Included - slim neutral icons */
.pkg-included-row {
  background: transparent;
  border: none;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 20px 0;
}
.pkg-inc-item { text-align: center; flex: 0 0 auto; }
.pkg-inc-item .ico {
  font-size: 34px;
  color: #777 !important;
  font-weight: 100;
  margin-bottom: 8px;
  text-shadow: none !important;
}
.pkg-inc-item .label {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: #808080 !important;
  line-height: 1.3;
  letter-spacing: .2px;
  text-shadow: none !important;
}

/* =========================
   Package page header gap fix
   ========================= */
.header-spacer{ height:0 !important; }
.pkg-page{ margin-top:0 !important; padding-top:0 !important; }

/* ===== ANANTARA-style global headings ===== */
:root{
  /* soft taupe used in your screenshot */
  --heading-taupe: #b09383; /* tweak if you want slightly warmer/cooler */
}

/* Base heading reset */
h1, h2, h3, h4, h5, h6,
.section-title,
.destinations .section-title {
  font-family: var(--font-serif, "Raleway", sans-serif) !important;
  font-weight: 700 !important;       /* wide tracking */
  text-transform: none !important;
  color: var(--heading-taupe) !important;
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Remove decorative underlines/pseudo rules some sections add */
h1::after, h2::after, h3::after, h4::after, h5::after, h6::after,
.section-title::after,
.section-title span::after {
  content: none !important;
}

/* If any span inside titles was forced red, neutralize it */
.section-title span,
h1 span, h2 span, h3 span {
  color: inherit !important;
  text-decoration: none !important;
}

/* Optional: scale by level (keeps the thin look consistent) */
h1, .display-1 { font-size: clamp(28px, 5vw, 48px); line-height: 1.15; }
h2, .display-2 { font-size: clamp(24px, 4.2vw, 40px); line-height: 1.18; }
h3, .display-3 { font-size: clamp(20px, 3.4vw, 32px); line-height: 1.2; }
h4, .display-4 { font-size: clamp(18px, 2.6vw, 26px); line-height: 1.22; }
h5, .display-5 { font-size: clamp(16px, 2.2vw, 20px); line-height: 1.25; }
h6, .display-6 { font-size: clamp(14px, 2vw, 16px);  line-height: 1.3; }

/* Section titles that previously had center/bottom accents */
.section-title,
.destinations .section-title {
  text-align: center;   /* keep your layout alignment */
  margin-bottom: .25rem;
}

/* Utility class if you want to apply the look somewhere else explicitly */
.heading-thin {
  font-family: var(--font-serif, "Raleway", sans-serif) !important;
  font-weight: 300 !important;
  letter-spacing: .32em !important;
  text-transform: uppercase !important;
  color: var(--heading-taupe) !important;
  text-decoration: none !important;
}

/* === Global Button Style (all buttons) === */
/* === Global Button Style (Discover More look) === */
.btn,
.btn-accent,
button,
input[type="submit"],
a.btn {
  background-color: var(--accent) !important;  /* muted brown */
  color: #fff !important;                /* white text */
  border: none !important;
  border-radius: 6px;                    /* soft rectangle */
  padding: 10px 22px;
  font-family: var(--font-sans, "Raleway", sans-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;                /* spaced text */
  
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

/* Hover effect */
.btn:hover,
.btn:focus,
.btn-accent:hover,
.btn-accent:focus,
button:hover,
input[type="submit"]:hover,
a.btn:hover {
    background-color: var(--accent-hover) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Special admin buttons override (so they don’t inherit brown) */
.btn-danger,
button.delete-btn,
.btn-delete,
a.btn-danger {
  background-color: var(--accent) !important;
  letter-spacing: normal;
  text-transform: none;
}

/* View Details button style */
.pkg-actions .req-btn,
.view-details-btn {
  background: var(--accent);       /* muted brown */
  border: 2px solid var(--accent); /* same brown border */
  color: #fff !important;    /* white text */
  font-weight: 600;
  letter-spacing: 0.12em;
  
  border-radius: 6px;
  padding: 10px 16px;
  transition: all 0.3s ease;
}

/* Hover effect */
.pkg-actions .req-btn:hover,
.view-details-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff !important;
}

/* View Details button style */
.pkg-actions .req-btn,
.view-details-btn {
  background: #fff;            /* white background */
  border: 2px solid var(--accent);   /* brown border */
  color: var(--accent) !important;   /* brown text */
  font-weight: 600;
  letter-spacing: 0.12em;
  
  border-radius: 6px;
  padding: 10px 16px;
  transition: all 0.3s ease;
}

/* Hover effect */
.pkg-actions .req-btn:hover,
.view-details-btn:hover {
  background: var(--accent);         /* brown background */
  border-color: var(--accent);
  color: #fff !important;      /* white text */
}

/* Starting From Price Text */
.pkg-price,
.pkg-price .amt,
.pkg-price .note,
.dest-caption .price,
.dest-caption .reviews {
  font-family: var(--font-serif);     /* match headings font */
  font-size: 0.95rem;                 /* slightly smaller */
  font-weight: 600;                   /* bold for ₹ amount */
  letter-spacing: 0.15em;             /* wide spacing */
            /* all caps */
  color: #5b4a42;                     /* brown tone */
}

/* ---- Destinations: keep continent list neutral (no brown fill) ---- */
.mega-plain .continent-btn,
body.destinations-theme .continent-btn {
  background: transparent !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  color: #344054 !important;
  box-shadow: none !important;
}

/* hover / active states (subtle grey only) */
.mega-plain .continent-btn:hover,
body.destinations-theme .continent-btn:hover {
  background: rgba(0,0,0,.035) !important;
}

.mega-plain .continent-btn.active,
body.destinations-theme .continent-btn.active {
  background: rgba(0,0,0,.06) !important;
  color: #111827 !important;
}

.top-trending { padding: 56px 0 24px; }
.top-trending .container { max-width: 1280px; }

.tt-heading {
  font-family: var(--font-sans, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  margin: 0 0 24px;
  color: #1f2937; /* slate-800 */
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 28px;
}

.trend-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  isolation: isolate;
}

.trend-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.trend-card .trend-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.10) 55%, rgba(0,0,0,0) 100%);
}

.trend-copy {
  position: absolute; left: 22px; right: 22px; bottom: 18px;
  color: #fff;
  z-index: 1;
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
}

.trend-title {
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.1;
  margin: 0 0 6px;
  letter-spacing: .01em;
}

.trend-price {
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 18px);
  opacity: .95;
}

/* Make the center card tall like your screenshot */
.trend-card.span-2 { grid-row: span 2; }

/* Hover */
.trend-card:hover img { transform: scale(1.06); }

/* Responsive */
@media (max-width: 1024px) {
  .trend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 200px;
    gap: 22px;
  }
  .trend-card.span-2 { grid-row: span 1; }
}

@media (max-width: 640px) {
  .trend-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 18px;
  }
}

/* ===== 7-tile layout with side columns: top wide + bottom pair ===== */
.styles-7grid{
  display:grid;
  grid-template-columns: 1fr 1.35fr 1fr; /* left / hero / right */
  gap: 28px;
  align-items: stretch; /* center column matches side columns' height */
}

.styles-col{
  display:grid;
  grid-template-rows: auto auto; /* top wide, bottom pair */
  gap: 28px;
}

.styles-pair{
  display:grid;
  grid-template-columns: 1fr 1fr; /* two small tiles */
  gap: 28px;
}

/* Base cards */
.style-card{
  position:relative;
  display:block;
  border-radius:22px;
  overflow:hidden;
  background:#eee;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  transition: transform .25s ease, box-shadow .25s ease;
}
.style-card:hover{ transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,.18); }

/* Make images fully cover the card */
.style-card img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; display:block;
}

/* --- Aspect ratios (side images WIDE) --- */
.style-wide{ aspect-ratio: 16 / 9; }    /* top tile in each side column */
.style-mini{ aspect-ratio: 16 / 10; }   /* two small tiles below */

/* Center hero fills full column height (no fixed ratio) */
.styles-center{ display:flex; }
.styles-center .style-hero{ flex:1 1 auto; height:100%; } /* stretch to match side columns */

/* Overlay */
.style-overlay{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.05));
  display:flex; align-items:flex-end;
  padding:18px 20px;
}
.style-title{
  color:#fff; font-weight:700;
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  letter-spacing:.02em; text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.styles-center .style-hero .style-title{ font-size: clamp(1.4rem, 2.2vw, 2.1rem); }

/* Responsive fallbacks */
@media (max-width: 1199px){
  .styles-7grid{ grid-template-columns: 1fr 1.2fr 1fr; gap:22px; }
}
@media (max-width: 991px){
  /* fallback to simple 2-col */
  .styles-7grid{ grid-template-columns: 1fr 1fr; }
  .styles-center{ grid-column: 1 / -1; }
  .styles-center .style-hero{ height:auto; aspect-ratio: 16 / 10; } /* reasonable tablet height */
}
@media (max-width: 576px){
  .styles-7grid{ grid-template-columns: 1fr; gap:18px; }
  .styles-center{ order:-1; } /* big hero first on mobile */
  .styles-pair{ grid-template-columns: 1fr 1fr; gap:14px; }
  .styles-center .style-hero{ aspect-ratio: 16 / 10; }
}

/* Make style subtitles a bit subtler than package prices */
.styles-as-trending .trend-price{
  font-weight: 500;
  opacity: .95;
}

/* Centered card text like the sample */
.trend-card { position: relative; }
.trend-card .trend-gradient{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,0) 70%);
  pointer-events:none;
}
.trend-card .trend-copy{
  position:absolute; left:24px; right:24px; bottom:22px; color:#fff;
}
.trend-card .trend-copy.trend-center{
  left:50%; right:auto; width:min(92%, 780px);
  transform:translateX(-50%);
  bottom:clamp(16px, 4%, 36px);
  text-align:center;
}

/* Eyebrow label */
.trend-eyebrow{
  font-size: clamp(10px, .6vw + 8px, 13px);
  letter-spacing: .35em;
  
  color: rgba(221,200,180,.95);
  font-weight: 600;
  margin-bottom: 6px;
}

/* Big title */
.trend-title{
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(20px, 2.2vw + 10px, 44px);
  text-shadow: 0 2px 16px rgba(0,0,0,.45), 0 1px 4px rgba(0,0,0,.35);
  margin-bottom: 6px;
}

/* Subtitle / price */
.trend-sub{
  font-weight: 600;
  font-size: clamp(14px, .9vw + 8px, 20px);
  opacity: .98;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

/* Ensure images cover fully */
.trend-card img{ width:100%; height:100%; object-fit:cover; display:block; }

/* === Make card titles look like "Swim with Rays" (light, elegant) === */
.trend-card .trend-title{
  /* lighter weight */
  font-weight: 300;                           /* was 800 */
  /* clean, large size similar to the reference */
  font-size: clamp(22px, 2.2vw + 8px, 46px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: none;
  /* use your site display font (falls back safely) */
  font-family: var(--font-serif);
  /* softer glow than before */
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Slightly larger on the tall center card (optional) */
.trend-card.span-2 .trend-title{
  font-size: clamp(24px, 2.6vw + 8px, 52px);
}

/* Keep the price in the eyebrow style you liked */
.trend-eyebrow{
  font-size: clamp(10px, .6vw + 8px, 13px);
  letter-spacing: .35em;
  
  color: rgba(221,200,180,.95);
  font-weight: 600;
  margin-top: 6px;   /* small gap under the title */
}

/* ===== Full-bleed breakout for the Destinations carousel ===== */
.destinations.destinations-fullbleed{
  /* break out of any centered parent/container */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;

  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
}

/* wrapper that holds arrows + track */
.destinations.destinations-fullbleed > .position-relative{
  width: 100%;
  max-width: none;
}

/* remove any inner track padding and make cards larger */
/* Destinations full-bleed: allow JS autoplay to move freely */
.destinations.destinations-fullbleed #destTrack{
  --gap: 28px;
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-behavior: auto;   /* main.js handles smoothness */
  padding: 0;
  scroll-snap-type: none !important;   /* <-- remove snap on desktop */
}
.destinations.destinations-fullbleed .dest-card{
  scroll-snap-align: none !important;
}

/* Keep snap for touch swiping on small screens */
@media (max-width: 576px){
  .destinations.destinations-fullbleed #destTrack{
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 8vw;
  }
  .destinations.destinations-fullbleed .dest-card{
    scroll-snap-align: center;
  }
}


.destinations.destinations-fullbleed .dest-img{
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Typography like the top section: light title + eyebrow price */
.destinations.destinations-fullbleed .dest-caption{
  position: absolute; left: 18px; right: 18px; bottom: 16px; color: #fff;
}
.destinations.destinations-fullbleed .dest-title{
  font-weight: 200;
  font-size: clamp(22px, 2.0vw + 8px, 38px);
  line-height: 1.15;
  letter-spacing: .01em;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  font-family: "Inter","SF Pro Display","Segoe UI",Roboto,Arial,sans-serif;
  margin-bottom: 6px;
}
.destinations.destinations-fullbleed .dest-meta{
  font-size: clamp(11px, .6vw + 8px, 13px);
  letter-spacing: .35em;
  
  color: rgba(221,200,180,.95);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* bring arrows tight to the edges */
.destinations.destinations-fullbleed .dest-arrow-btn.left{  left: 12px; }
.destinations.destinations-fullbleed .dest-arrow-btn.right{ right: 12px; }

/* Mobile */
@media (max-width: 768px){
  .destinations.destinations-fullbleed .dest-card{
    width: 82vw;
    height: 52vw;
  }
}

/* Force white country titles on image cards */
.destinations.destinations-fullbleed .dest-title,
#offerTrack .dest-title,
#visaTrack  .dest-title {
  color: #fff !important;
}

/* ===== Site Footer ===== */
.site-footer{
  color:#eaf2ff;
  background:
    radial-gradient(1200px 420px at 50% -120px, rgba(29,43,72,.25), transparent 60%),
    linear-gradient(180deg, #0f1626 0%, #0d1524 60%, #0b1320 100%);
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-sans);
}
.site-footer .footer-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px 24px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr) 1.1fr;
  gap: 28px;
}
.site-footer .footer-logo img{ height: 40px; width:auto; display:block; }
.site-footer .brand-text{
  font: 800 1.4rem/1 var(--font-sans);
  letter-spacing: .06em; color:#fff;
}
.site-footer .footer-tagline{
  margin-top: 10px; color:#cfd8ea; opacity:.9; max-width: 320px; font-weight:500;
}

.footer-social{ display:flex; gap:12px; margin-top:14px; }
.footer-social a{
  width:36px;height:36px; border-radius:10px; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; color:#fff; text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.footer-social a:hover{ transform:translateY(-2px); background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.28); }

.footer-head{
  font-family: var(--font-serif);
  color: var(--heading-color);
  
  letter-spacing: .28em;
  font-weight: 300;
  margin: 4px 0 14px;
  font-size: .92rem;
}
.footer-links{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.footer-links a{
  color:#e7eefc; text-decoration:none; font-weight:600; letter-spacing:.02em;
}
.footer-links a:hover{ color:#fff; text-decoration:underline; text-underline-offset:2px; }

.footer-reach .reach-list{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.footer-reach a{ color:#e7eefc; text-decoration:none; font-weight:700; letter-spacing:.02em; }
.footer-reach a:hover{ color:#fff; text-decoration:underline; text-underline-offset:2px; }

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top: 6px;
  padding: 16px 16px 26px;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:8px;
  text-align:center;
}
.footer-bottom .policies{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
}
.footer-bottom .policies a{ color:#cfd8ea; text-decoration:none; font-weight:600; }
.footer-bottom .policies a:hover{ color:#fff; text-decoration:underline; text-underline-offset:2px; }
.footer-bottom .copy{ color:#c3cbe0; font-weight:600; }
.footer-bottom .address{ opacity:.9; }

/* Responsive */
@media (max-width: 1024px){
  .site-footer .footer-inner{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .site-footer .footer-inner{ grid-template-columns: 1fr; }
  .footer-bottom{ padding: 16px 10px 24px; }
}

/* =========================
   Footer — match header look
   ========================= */
.site-footer{
  /* same feel as .floating-header */
  background: rgba(255, 250, 241, .92);
  border-top: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 -12px 28px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #222;
  font-family: var(--font-sans);
}

.site-footer .footer-top{
  padding: 24px 0 18px;
}

.site-footer .footer-bottom{
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 12px 0;
  background: rgba(255, 250, 241, .98);
}

/* Typography (mirror header’s uppercase/spacing) */
.site-footer .footer-brand{
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .12em;
  
  margin-bottom: 8px;
  color: #222;
}

.site-footer .footer-about{
  margin: 0;
  font-size: .95rem;
  color: #444;
}

.site-footer .footer-label{
  font-family: var(--font-sans);
  font-weight: 700;
  
  letter-spacing: .12em;
  font-size: .85rem;
  color: #344054;
  margin-bottom: .6rem;
}

.site-footer .footer-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .footer-list li{
  margin: .35rem 0;
  font-size: .95rem;
  color: #222;
}

.site-footer .footer-link{
  color: #222 !important;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .12em;
  
  font-size: .85rem;     /* same nav size */
}

.site-footer .footer-link:hover,
.site-footer .footer-link:focus{
  color: #e94d2c !important;  /* same hover accent as header */
  text-decoration: none;
}

.site-footer .footer-legal .sep{
  margin: 0 .4rem;
  opacity: .55;
}

.site-footer .footer-copy{
  font-size: .85rem;
  color: #444;
}

/* Mobile tweaks */
@media (max-width: 576px){
  .site-footer .footer-top{ padding: 18px 0 12px; }
  .site-footer .footer-link{ font-size: .8rem; }
}

/* ===== Footer bottom bar (copyright | center logo | legal links) ===== */
.footer-bottom{
  background: rgba(255,250,241,.96);             /* same warm tone as header */
  border-top: 1px solid rgba(16,24,40,.06);
  padding: 14px 0;
  text-align: left;                               /* kill any inherited centering */
}

.footer-bottom .fb-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* equal sides, fixed center */
  align-items: center;
  gap: 12px;
}


/* Left: hard-left + left-aligned text */
.footer-bottom .fb-left{
  justify-self: start;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: .02em;
  color: #333;                                    /* keep your dark text */
  opacity: .92;
}

/* Center: logo truly centered */
.footer-bottom .fb-center{
  justify-self: center;
  display: flex;
  justify-content: center;
}
.footer-bottom .fb-logo{
  height: 28px;                                   /* tweak as needed */
  width: auto;
  display: block;
  opacity: .95;
}

/* Right: snug to the right */
.footer-bottom .fb-right{
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  flex-wrap: wrap;
}
.footer-bottom .fb-right a{
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: .02em;
  color: #333;
  text-decoration: none;
  opacity: .92;
}
.footer-bottom .fb-right a:hover{
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 1;
}

/* Responsive: stack and center */
@media (max-width: 768px){
  .footer-bottom .fb-grid{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .footer-bottom .fb-left,
  .footer-bottom .fb-center,
  .footer-bottom .fb-right{
    justify-self: center;
    text-align: center;
  }
  .footer-bottom .fb-right{
    justify-content: center;
  }
}

/* 1) Kill accidental site-wide horizontal scrolling */
html, body {
  width: 100%;
  overflow-x: hidden;      /* hides page bottom scrollbar */
}

/* 2) Prevent arrow buttons from creating overflow outside their wrapper */
.destinations .position-relative,
section.container .position-relative,
.top-trending .position-relative {
  overflow: hidden;        /* keeps anything from poking out and widening the page */
}

/* 3) Hide scrollbars on all horizontal carousels but keep scrolling via JS */
.dest-track {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;   /* Firefox */
  -ms-overflow-style: none;/* IE/old Edge */
}
.dest-track::-webkit-scrollbar {   /* Chrome/Safari/Edge (Blink/WebKit) */
  display: none;
  width: 0;
  height: 0;
}

/* (Optional) ensure arrows are inside the container so they don't cause overflow) */
.dest-arrow-btn.left  { left: .25rem; }
.dest-arrow-btn.right { right: .25rem; }

/* Taller images for Tour Styles */
.styles-page { --card-img-height: 360px; }
.styles-page .card-img-top{
  width: 100%;
  height: var(--card-img-height);
  object-fit: cover;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
@media (max-width: 1199.98px){ .styles-page { --card-img-height: 320px; } }
@media (max-width: 767.98px){  .styles-page { --card-img-height: 240px; } }
@media (max-width: 575.98px){  .styles-page { --card-img-height: 200px; } }

/* ===== Destinations page: make country cards match other pages ===== */

/* 3-up grid on desktop (wider cards) */
.country-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:32px;
}
@media (max-width:1200px){ .country-grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width:576px){  .country-grid{grid-template-columns:1fr;} }

/* Card look & hover (same language as Styles/Visa-Free) */
.country-card{
  display:block;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.country-card:hover{
  transform:translateY(-4px);
  border-color:#f97316; /* orange accent */
  box-shadow:0 10px 24px rgba(249,115,22,0.35);
  background:rgba(255,255,255,0.88);
}

/* Image */
.country-img{ position:relative; display:block; aspect-ratio:16/10; overflow:hidden; }
.country-img img{ width:100%; height:100%; object-fit:cover; transform:scale(1.01); transition:transform .28s ease; }
.country-card:hover .country-img img{ transform:scale(1.05); }

/* Body */
.country-body{ padding:16px 18px 18px; }
.country-title{ font-weight:600; font-size:18px; line-height:1.35; color:#111827; margin:6px 0 8px; }
.country-meta{ color:#6b7280; font-size:14px; }

/* If the old overlay style is still present, neutralize it */
.country-overlay, .country-gradient { display:none !important; }

/* DESTINATIONS — force Styles-like cards */
[data-destinations] .country-card{
  position:relative;
  display:block;
  text-decoration:none;
  color:inherit;
  background:#fff !important;
  border:1px solid rgba(0,0,0,.06) !important;
  border-radius:16px !important;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,.06) !important;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
[data-destinations] .country-card:hover{
  transform:translateY(-3px);
  border-color:#f97316 !important;
  box-shadow:0 12px 28px rgba(249,115,22,.28) !important;
}

/* Image on top */
[data-destinations] .country-card .card-img{
  display:block !important;
  width:100% !important;
  height:auto !important;
  aspect-ratio:16/10 !important;
  object-fit:cover !important;
  position:static !important;   /* cancel any absolute overlay rules */
}

/* White body like /styles */
[data-destinations] .country-card .card-body,
[data-destinations] .country-card .card-caption{ /* support either markup */
  position:static !important;
  display:block !important;
  background:#fff !important;
  padding:16px 18px 18px !important;
  margin:0 !important;
  box-shadow:none !important;
}

/* Typography */
[data-destinations] .country-card .card-title{
  font-weight:600 !important;
  font-size:18px !important;
  line-height:1.35;
  color:#111827 !important;
  text-transform:none !important;
  letter-spacing:0 !important;
  margin-bottom:6px !important;
}
[data-destinations] .country-card .card-sub{
  color:#6b7280 !important;
  font-size:14px !important;
}

/* Kill old overlays/badges/gradients */
[data-destinations] .country-card .card-badge{ display:none !important; }
[data-destinations] .country-card::before,
[data-destinations] .country-card::after{ content:none !important; display:none !important; }


/* ==== Destinations page hard overrides (last wins) ==== */

/* 1) Let Bootstrap's .row/.col control the layout */
[data-destinations] .country-grid{
  display:block !important;           /* cancel all earlier display:grid */
  grid-template-columns: none !important;
  gap: 0 !important;
}

/* 2) Country card = white card like Styles */
[data-destinations] .country-card{
  background:#fff !important;
  border:1px solid rgba(0,0,0,.06) !important;
  border-radius:16px !important;
  overflow:hidden !important;
  box-shadow:0 2px 8px rgba(0,0,0,.06) !important;
  text-decoration:none !important;
  color:inherit !important;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}
[data-destinations] .country-card:hover{
  transform:translateY(-3px) !important;
  border-color:#f97316 !important;
  box-shadow:0 12px 28px rgba(249,115,22,.28) !important;
}

/* 3) IMAGE: target the class actually used in markup */
[data-destinations] .country-card .card-img-top{
  display:block !important;
  width:100% !important;
  height:auto !important;
  aspect-ratio:16/10 !important;
  object-fit:cover !important;
  position:static !important;   /* cancel any absolute rules from older styles */
  transform:none !important;
}

/* 4) BODY + TYPO */
[data-destinations] .country-card .card-body{
  padding:16px 18px 18px !important;
  background:#fff !important;
}
[data-destinations] .country-card .card-title{
  font-weight:600 !important;
  font-size:18px !important;
  line-height:1.35 !important;
  color:#111827 !important;
  text-transform:none !important;
  letter-spacing:0 !important;
  margin:0 0 6px !important;
}
[data-destinations] .country-card .card-sub{
  color:#6b7280 !important;
  font-size:14px !important;
}

/* 5) Nuke the old overlay/badge/gradients on this page only */
[data-destinations] .country-card .card-badge{ display:none !important; }
[data-destinations] .country-card::before,
[data-destinations] .country-card::after{ content:none !important; display:none !important; }

/* Team nav hover color */
.customer-team-section .team-nav .btn:hover,
.customer-team-section .team-nav .btn:focus {
  background-color: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  color: #fff !important;
}

 .hero-suggest .sug-ico { color:#6b7280; display:flex; align-items:center; }
  .hero-suggest .sug-item.active .sug-ico,
  .hero-suggest .sug-item:hover .sug-ico { color:#c13f32; } /* your brand accent */
  .hero-suggest .sug-ico svg { display:block; width:18px; height:18px; }
  
/* ===============================
   PACKAGES (Homepage & Slider)
   =============================== */

/* Track (for slider views, if used elsewhere) */
.pkg-track {
  --gap: 24px;
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 6px;
}
.pkg-track::-webkit-scrollbar { display: none; }

/* Grid (Homepage default) */
.pkg-grid {
  --gap: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: var(--gap);
  align-items: stretch;
}
@media (max-width: 1200px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pkg-grid { grid-template-columns: 1fr; } }

/* Card */
.pkg-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 6px 16px rgba(16,24,40,.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #111;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pkg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* Image */
.pkg-img {
  position: relative;
  width: 100%;
  height: 220px; /* compact height */
  display: block;
}
.pkg-img > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Top row (chip + rating) */
.pkg-toprow {
  position: absolute;
  top: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 2;
}
.pkg-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, rgba(212,59,42,0.85), rgba(255,106,0,0.85), rgba(212,59,42,0.85));
  background-size: 300% 300%;
  animation: glassGradient 6s ease infinite;

  /* Glassmorphism overlay */
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.pkg-chip:hover {
  transform: translateY(-2px);
}

@keyframes glassGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Rating badge identical to Customizable */
.pkg-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;                   /* same as customizable */
  border-radius: 999px;                /* pill shape */
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.8rem;                   /* same text size */
  font-weight: 600;
  color: #374151;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  line-height: 1;                      /* tighter line-height */
  pointer-events: none;                /* no hover needed */
}

/* Gold star smaller to match text height */
.pkg-rating i {
  color: #fbbf24; 
  font-size: 0.8rem; 
  margin-right: 3px;
}

/* Reviews count smaller, same baseline */
.pkg-reviews {
  opacity: 0.7;
  font-weight: 500;
  font-size: 0.75rem;
}

/* Duration pill */
.pkg-duration {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-weight: 700; font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  z-index: 2;
}

/* Body */
.pkg-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-title {
  margin: 0 0 4px;
  line-height: 1.25;
}
.pkg-title a {
  font-weight: 700; font-size: 15px;
  color: #0f172a;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkg-title a:hover { text-decoration: underline; }

/* Meta */
.pkg-meta {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 13px; color: #6b7280;
  margin-top: 2px;
}
.pkg-meta i { margin-top: 1px; opacity: .6; }

/* Price */
.pkg-price {
  margin-top: auto;
  font-size: 13px; color: #374151;
}
.pkg-price .amt {
  font-weight: 800; font-size: 16px; color: #0f172a;
  margin: 0 4px;
}
.pkg-price .note {
  opacity: .8;
  font-size: 12px;
}

/* ===== Packages: Name font & info list (non-conflicting) ===== */

  .pkg-title a {
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;       /* regular, not bold */
  font-size: 1.25rem !important;     /* ~20px */
  line-height: 1.3;
  letter-spacing: 0;                 /* no extra spacing */
  color: #2d2d2d !important;         /* elegant dark grey */
  text-transform: none !important;   /* keep natural case */
  text-decoration: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pkg-title a:hover {
  color: #a3897d !important;         /* warm taupe hover accent */
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* Info labels: lighter & subtle */
.pkg-attr .label {
  font-family: var(--font-sans, "Raleway", sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  
  color: #9ca3af;  /* neutral grey */
}

/* Info values: normal weight, elegant */
.pkg-attr .val {
  font-family: var(--font-sans, "Raleway", sans-serif);
  font-weight: 500;
  font-size: 14px;
  color: #374151;
}
.pkg-attr .val .note {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 400;
  opacity: .8;
}

/* ===== Elegant Price Styling ===== */
.pkg-attr .attr.price-row {
  border-top: 1px dashed rgba(0,0,0,.06);
  padding-top: 10px;
  margin-top: 4px;
}

/* Currency & Amount */
.pkg-attr .val.price {
  font-family: var(--font-serif);
  font-weight: 400;              /* lighter, elegant */
  font-size: 1.05rem;            /* slightly bigger */
  letter-spacing: 0.03em;        /* airy spacing */
  color: #2d2d2d;                /* deep neutral */
}

.pkg-attr .val.price .amt {
  font-weight: 500;              /* medium weight */
  font-size: 1.15rem;            /* bigger than label */
  letter-spacing: 0.04em;
  color: #111;
}

.pkg-attr .val.price .note {
  margin-left: 6px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  
  color: #7a7a7a;
}


/* since duration pill is removed from image, ensure no visual leftovers */
.pkg-duration{ display:none !important; }

/* Space the "View All" button away from the cards and push it to the right */
  .top-trending .dest-cta{
    margin-top: 48px;        /* ← adjust if you want more/less gap */
    display: flex;
    justify-content: flex-end;
  }

  @media (max-width: 768px){
    .top-trending .dest-cta{ margin-top: 18px; }
  }
  
  /* Quick replies */
.vris-qr{display:flex;gap:8px;flex-wrap:wrap;margin-top:6px}
.vris-qr .vris-chip{background:#fff;border:1px solid #e7e3dd}

/* Image placeholder to keep layout stable */
.pkg-img-el {
  background: #f4f4f4;
}

/* Simple shimmer skeleton while image decodes */
.pkg-img-el:not([src*="data:"]) {
  position: relative;
  overflow: hidden;
}
.pkg-img-el:not([src*="data:"])::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 50%, rgba(255,255,255,0) 100%);
  animation: pkg-shimmer 1.2s infinite;
}
.pkg-img-el[complete]::after,
.pkg-img-el[data-loaded="1"]::after {
  display: none !important;
}

@keyframes pkg-shimmer {
  100% { transform: translateX(100%); }
}

/* === FINAL SAFETY NET OVERRIDES (keep last) === */
:root{
  --accent: #ff6a00;
  --accent-hover: #e65c00;
}
.btn, .btn-pill, .btn-accent,
button, input[type="submit"], a.btn,
.view-details-btn, .pkg-actions .req-btn,
.customer-team-section .team-nav .btn{
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color:#fff !important;
}
.btn:hover, .btn:focus,
.btn-accent:hover, .btn-accent:focus,
button:hover, input[type="submit"]:hover, a.btn:hover,
.view-details-btn:hover, .pkg-actions .req-btn:hover,
.customer-team-section .team-nav .btn:hover{
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
}

/* === Footer: match header background, font, colors, and hover === */
:root{
  --footer-ink: #fff;
  --footer-ink-dim: rgba(255,255,255,.85);
}

.site-footer{
  background: var(--theme, #0E8AA7) !important; /* same as header .with-bg */
  color: var(--footer-ink);
  border-top: 0;
  box-shadow: 0 -12px 28px rgba(0,0,0,.08);
  font-family: var(--font-sans); /* same family used in header/nav */
}

/* Top section spacing */
.site-footer .footer-top{ padding: 24px 0 18px; }

/* Brand name (matches header nav styling) */
.site-footer .footer-brand{
  font-family: var(--font-sans);
  font-weight: 700;
  
  letter-spacing: .12em;
  color: var(--footer-ink);
  margin-bottom: 8px;
}

/* Blurb */
.site-footer .footer-about{ color: var(--footer-ink-dim); }

/* Column headings (Destinations, Company, Reach Us) */
.site-footer .footer-label{
  font-family: var(--font-sans);
  font-weight: 700;
  
  letter-spacing: .12em;
  color: var(--footer-ink);
  margin-bottom: .6rem;
}

/* List items & links */
.site-footer .footer-list li{ color: var(--footer-ink-dim); }
.site-footer .footer-link{
  color: var(--footer-ink) !important;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
         /* same casing as header nav */
  letter-spacing: .12em;           /* same tracking as header nav */
  font-size: .85rem;
}

/* Hover color = same as header nav hover (orange) */
.site-footer .footer-link:hover,
.site-footer .footer-link:focus{
  color: orange !important;
  text-decoration: none;
}

/* Bottom bar */
.footer-bottom{
  background: var(--theme, #0E8AA7) !important;
  border-top: 1px solid rgba(255,255,255,.18) !important;
}

/* Bottom bar text & links */
.footer-bottom .fb-left,
.footer-bottom .fb-right a{
  color: var(--footer-ink-dim);
  font-family: var(--font-sans);
  font-size: .9rem;
  letter-spacing: .02em;
}

/* Bottom links hover = header hover */
.footer-bottom .fb-right a:hover{
  color: orange !important;
  text-decoration: none;
}

/* Center logo stays bright on colored bg */
.footer-bottom .fb-logo{
  filter: brightness(105%) contrast(105%);
  opacity: .95;
}

/* --- Partners belt (slim, seamless, mobile-safe) ----------------------- */
.partners-belt{
  background:#0e1e2a;
  color:#fff;
  padding:12px 0 6px;
  border-top:1px solid rgba(255,255,255,.08);
}
.partners-belt .container{ padding-bottom:0; margin-bottom:0; }
.partners-belt .partners-title{
  font-size:16px; line-height:1.3; font-weight:600;
  margin:0 0 8px 4px; opacity:.9;
}

/* Track holds two identical rows for a seamless loop */
.partners-belt .partners-track{
  --partners-speed: 40s;       /* desktop speed */
  --partners-gap: 22px;
  position:relative; overflow:hidden; display:flex; width:200%;
  line-height:0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.partners-belt .partners-row{
  flex:0 0 50%; display:flex; align-items:center; gap:var(--partners-gap);
  padding:0; min-width:max-content;
  backface-visibility:hidden; will-change:transform;
  animation: partners-marquee var(--partners-speed) linear infinite;
  transform: translate3d(0,0,0);
}

/* Card */
.partners-belt .partner-item{
  display:flex; align-items:center; justify-content:center;
  background:#1a2a38; border-radius:10px;
  min-width:180px; height:90px; padding:0; overflow:hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 4px 14px rgba(0,0,0,.18);
}

/* Image fills the card (cover). Add .logo-contain on .partner-item for full logo visibility */
.partners-belt .partner-item img{
  display:block; width:100%; height:100%;
  object-fit:cover; object-position:center;
  filter: grayscale(100%) contrast(105%) brightness(105%);
  opacity:.95; transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.partners-belt .partner-item.logo-contain img{
  object-fit:contain; padding:8px; background:#152434; /* optional backdrop for transparent logos */
}

.partners-belt a:hover img{ filter:none; opacity:1; transform: translateY(-1px) scale(1.02); }

/* Seamless loop: two halves → slide by 50% of track width */
@keyframes partners-marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on hover (CSS fallback; JS also pauses) */
.partners-belt:hover .partners-row{ animation-play-state: paused; }

/* Reduced motion: stop animation entirely */
@media (prefers-reduced-motion: reduce){
  .partners-belt .partners-row{ animation: none !important; }
}

/* Responsive */
@media (max-width: 991.98px){
  .partners-belt .partners-track{ --partners-speed: 55s; } /* slower on phones */
}
@media (max-width: 768px){
  .partners-belt{ padding:10px 0 4px; }
  .partners-belt .partners-title{ margin-bottom:6px; font-size:15px; }
  .partners-belt .partner-item{ min-width:140px; height:72px; }
}


/* --- Customer Service (Team) ------------------------------------------------ */
.customer-service { background:#F7F1E7; }
.customer-service .eyebrow{ font-size:14px; letter-spacing:.08em; text-transform:none; color:#7a6f64; }
.customer-service .btn-theme{ background:#E85A2A; color:#fff; border:none; padding:.85rem 1.25rem; border-radius:10px; }
.customer-service .btn-theme:hover{ filter:brightness(.95); }

/* right visual */
.cs-hero{ position:relative; min-height:420px; border-radius:16px; overflow:hidden; }
.cs-sky{ position:absolute; inset:0; background:linear-gradient(180deg,#54769a 0%, #8fb3d0 40%, #f6c58b 100%);
  background-size:100% 200%; animation:skyShift 16s linear infinite; }
@keyframes skyShift{ 0%{background-position:0 0} 100%{background-position:0 100%} }

.cs-cards{ position:relative; width:100%; height:100%; padding:32px; display:grid; place-items:center; }
.cs-card{ position:absolute; width:min(520px,92%); background:#fff; border-radius:16px; box-shadow:0 18px 40px rgba(0,0,0,.18);
  transform:translateY(12px) scale(.98); opacity:0; transition:all .6s ease; }
.cs-card.is-active{ transform:translateY(0) scale(1); opacity:1; z-index:3; }
.cs-card-body{ padding:22px 22px 18px; }
.cs-card-head{ display:flex; gap:12px; align-items:center; }
.cs-avatar{ width:54px; height:54px; border-radius:50%; overflow:hidden; background:#ffe6d7; display:grid; place-items:center; }
.cs-avatar img{ width:100%; height:100%; object-fit:cover; }
.cs-avatar-fallback{ font-weight:700; }
.cs-read{ display:inline-block; margin-top:4px; color:#e85a2a; text-decoration:none; border-bottom:1px solid transparent; }
.cs-read:hover{ border-color:#e85a2a; }
.cs-next{ position:absolute; right:14px; bottom:12px; width:44px; height:44px; border-radius:50%;
  border:none; background:#f2f2f2; display:grid; place-items:center; }
.cs-next:hover{ background:#e9e9e9; }
@media (max-width: 991px){
  .cs-hero{ min-height:360px; }
}

/* =========================
   Pure/Milky white canvas + pop-out sections
   ========================= */

/* 1) Base canvas colors (tweak only these two if you want whiter/creamier) */
:root{
  --bg-canvas: #ffffff;    /* pure white */
  --bg-milky:  #fffaf2;    /* soft milky-white option */
  --surface:   #ffffff;    /* card/section surface */

  /* shadow + glow system */
  --shadow-rgb: 16,24,40;          /* neutral shadow body */
  --glow-accent: var(--accent);    /* orange from your theme */
  --glow-warm:   #b09383;          /* matches your taupe headings */
  --glow-cool:   #0E8AA7;          /* your header/footer theme */
  --ring-color:  rgba(0,0,0,.06);
  --radius-lg:   16px;
  --radius-xl:   22px;
  --section-gap: clamp(18px, 3.5vw, 36px);
  --section-pad: clamp(16px, 3vw, 28px);
}

/* 2) Make the page background white (or milky) */
html, body{
  background: var(--bg-canvas) !important; /* swap to var(--bg-milky) if you prefer */
}

/* If you had a previous body gradient, this neutralizes it */
body {
  background-image: none !important;
}

/* 3) Elevation helpers (cards/sections) */
.elev-1{
  box-shadow:
    0 1px 2px rgba(var(--shadow-rgb), .06),
    0 6px 16px rgba(var(--shadow-rgb), .08);
}
.elev-2{
  box-shadow:
    0 2px 4px rgba(var(--shadow-rgb), .08),
    0 10px 28px rgba(var(--shadow-rgb), .12);
}
.elev-3{
  box-shadow:
    0 6px 14px rgba(var(--shadow-rgb), .10),
    0 18px 46px rgba(var(--shadow-rgb), .16);
}

/* 4) Pop-out surfaces with subtle colored glow */
.surface, .surface-pop{
  background: var(--surface);
  border: 1px solid var(--ring-color);
  border-radius: var(--radius-lg);
}
.surface-pop{
  /* neutral lift + a hint of ambient color via mask shadow */
  box-shadow:
    0 1px 2px rgba(var(--shadow-rgb), .05),
    0 10px 26px rgba(var(--shadow-rgb), .10),
    0 0 0 3px rgba(255,255,255,.6) inset; /* gentle inner lift */
}

/* color glows */
.surface-glow-accent{
  box-shadow:
    0 2px 6px rgba(var(--shadow-rgb), .06),
    0 14px 36px rgba(var(--shadow-rgb), .12),
    0 12px 40px  -8px color-mix(in srgb, var(--glow-accent) 28%, transparent);
}
.surface-glow-warm{
  box-shadow:
    0 2px 6px rgba(var(--shadow-rgb), .06),
    0 14px 36px rgba(var(--shadow-rgb), .12),
    0 12px 40px  -8px color-mix(in srgb, var(--glow-warm) 26%, transparent);
}
.surface-glow-cool{
  box-shadow:
    0 2px 6px rgba(var(--shadow-rgb), .06),
    0 14px 36px rgba(var(--shadow-rgb), .12),
    0 12px 40px  -8px color-mix(in srgb, var(--glow-cool) 24%, transparent);
}

/* 5) A ready-to-use SECTION wrapper that pads, rounds, and lifts */
.vris-section{
  background: var(--surface);
  border: 1px solid var(--ring-color);
  border-radius: var(--radius-xl);
  padding: var(--section-pad);
  margin: var(--section-gap) auto;
}
.vris-section.elev-1{ box-shadow:
  0 1px 2px rgba(var(--shadow-rgb), .05),
  0 8px 20px rgba(var(--shadow-rgb), .10);
}
.vris-section.elev-2{ box-shadow:
  0 2px 4px rgba(var(--shadow-rgb), .07),
  0 12px 28px rgba(var(--shadow-rgb), .14);
}
.vris-section.elev-3{ box-shadow:
  0 6px 12px rgba(var(--shadow-rgb), .09),
  0 18px 46px rgba(var(--shadow-rgb), .18);
}

/* 6) Optional: a colorful ring accent to make the section pop even more */
.vris-ring-accent   { box-shadow: 0 0 0 2px color-mix(in srgb, var(--glow-accent) 28%, transparent); }
.vris-ring-warm     { box-shadow: 0 0 0 2px color-mix(in srgb, var(--glow-warm)   26%, transparent); }
.vris-ring-cool     { box-shadow: 0 0 0 2px color-mix(in srgb, var(--glow-cool)   24%, transparent); }

/* 7) Nice hover lift for any pop-out surface */
.vris-hover:hover{
  transform: translateY(-3px);
  transition: transform .2s ease, box-shadow .22s ease;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .vris-hover:hover{ transform:none; }
}

/* 8) Quick utility for cards that live inside sections */
.surface-card{
  background:#fff;
  border:1px solid var(--ring-color);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(var(--shadow-rgb), .05),
    0 8px 22px rgba(var(--shadow-rgb), .10);
}

/* ===== View All row spacing (keeps button away from cards) ===== */
.dest-cta{
  display:flex;
  justify-content:flex-end;
}
.dest-cta--spaced{
  margin-top: clamp(28px, 3vw, 44px); /* desktop roomy, mobile tighter */
}
@media (max-width: 768px){
  .dest-cta--spaced{ margin-top: 18px; }
}

/* ==== Equal vertical gap between homepage sections (keeps centering) ==== */
.vris-stack{
  --stack-gap: clamp(40px, 5vw, 72px);
}

/* reset ONLY vertical margins so container's margin-inline:auto remains */
.vris-stack > *{
  margin-block: 0 !important;                 /* do not touch margin-left/right */
}

/* add equal vertical space between siblings */
.vris-stack > * + *{
  margin-block-start: var(--stack-gap) !important;
}

/* --- Reviews (slider) ----------------------------------------------------- */
.reviews-section { background: #f7f4ef; }
.reviews-section .section-title{ font-weight:700; letter-spacing:.2px; }

.rv-track{
  display:flex; gap:24px; overflow:auto; scroll-snap-type:x mandatory;
  padding:6px 2px 6px 2px; scroll-behavior:smooth;
}
.rv-track::-webkit-scrollbar{ height:8px; }
.rv-track::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.15); border-radius:10px; }

.rv-card{
  scroll-snap-align:start;
  flex:0 0 clamp(280px, 33%, 420px);
  background:#fff; border-radius:18px; padding:20px 20px 16px;
  box-shadow: 0 6px 22px rgba(0,0,0,.08);
  display:flex; flex-direction:column; min-height: 260px;
}

/* top row */
.rv-top{ display:flex; align-items:center; gap:14px; }
.rv-avatar{ width:56px; height:56px; border-radius:50%; overflow:hidden; background:#eee; flex:0 0 56px; }
.rv-avatar img{ width:100%; height:100%; object-fit:cover; }
.rv-avatar-fallback{ width:100%; height:100%; display:grid; place-items:center; font-weight:700; color:#555; background:#e7edf3; }
.rv-stars{ color:#ffb400; font-size:14px; }

.rv-quote{ margin:14px 0 6px; font-size:16px; line-height:1.6; color:#222; }

/* 4-line clamp */
.rv-clamp{
  display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical;
  overflow:hidden;
}
.rv-card.expanded .rv-clamp{ -webkit-line-clamp:unset; display:block; }
.rv-more{ display:inline-block; font-size:14px; margin-bottom:6px; }
.rv-card:not(.has-overflow) .rv-more{ display:none; }

/* stars to the right (already in your CSS) */
.rv-top{ display:flex; align-items:center; gap:14px; justify-content:space-between; }
.rv-stars{ color:#ffb400; font-size:14px; white-space:nowrap; }

/* ===== Hero (video) layout & mobile safety ===== */
.hero-home{ position:relative; min-height:min(80vh, 720px); color:#fff; }
.hero-home .hero-poster,
.hero-home .hero-media{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.hero-home .hero-shade{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55)); }
.hero-home .hero-inner{ position:relative; z-index:2; padding-top:calc(var(--header-h, 80px) + 24px); padding-bottom:48px; }

/* Phones/tablets: show poster, hide video to prevent memory spikes */
@media (max-width: 991.98px){
  .hero-home .hero-media{ display:none !important; }
  .hero-home .hero-poster{ display:block; }
}

/* Desktops: show video, hide poster */
@media (min-width: 992px){
  .hero-home .hero-media{ display:block; }
  .hero-home .hero-poster{ display:none; }
}

/* === Header & Footer Off-white Theme ================= */

/* Header background + text */
.site-header,
.floating-header {
  background: #f8f9f5 !important;   /* off-white */
  color: #111 !important;            /* black text */
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.06) !important;
}

/* Header nav links */
.site-header .nav-link,
.floating-header .navbar-nav .nav-link,
.site-header .top-item,
.site-header .wishlist-link,
.site-header .dropdown-toggle {
  color: #111 !important;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus,
.floating-header .navbar-nav .nav-link:hover,
.floating-header .navbar-nav .nav-link.active {
  color: var(--accent, #e94d2c) !important; /* keep brand accent on hover */
}

/* Mobile toggler (burger icon) */
.navbar-toggler-icon { filter: none !important; }
.navbar-toggler { border-color: rgba(0,0,0,.4) !important; }

/* Footer background + text */
.site-footer {
  background: #f8f9f5 !important;   /* off-white */
  color: #111 !important;
  border-top: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 -4px 12px rgba(0,0,0,.06) !important;
}

/* Footer links */
.site-footer .footer-link,
.site-footer .footer-about,
.site-footer .footer-label,
.site-footer .footer-list li,
.footer-bottom .fb-left,
.footer-bottom .fb-right a,
.footer-bottom .copy {
  color: #111 !important;   /* black text */
}

/* Footer links hover */
.site-footer .footer-link:hover,
.footer-bottom .fb-right a:hover {
  color: var(--accent, #e94d2c) !important; /* accent hover */
  text-decoration: none;
}

/* Footer bottom bar */
.footer-bottom {
  background: #fafafa !important;
  border-top: 1px solid rgba(0,0,0,.08) !important;
}
