/* ==========================================================================
   CROWNHILLS TOURISM — main.css  (v2, matched to actual theme markup)
   Pure CSS. No Tailwind / Bootstrap / SCSS. Royal Blue + Gold theme.
   Layout styled after the KingHills reference.
   --------------------------------------------------------------------------
   01. Reset
   02. Variables  (--brand-blue / --brand-gold / --slate-* / --cream)
   03. Base / Typography
   04. Layout helpers (.container, .section, .grid, .row, .bg-cream)
   05. Buttons
   06. Header topbar (.topbar)
   07. Header main (.header-main, .site-logo)
   08. Inline search (.inline-search, .field, .divider, .search-btn)
   09. Header icon buttons (.icon-btn, .flag-btn)
   10. Nav row (.nav-row, .main-nav, .nav-right)
   11. Mobile drawer (.mobile-drawer, .search-stack)
   12. Section headers (.section-header, .kicker, .section-title, .section-sub,
       .section-header-row, .slider-controls)
   13. Hero slider (.hero, .slide, .overlay, .content, .inner, .pill, .meta,
       .actions, .hero-controls, .hero-dots)
   14. Slider row (.slider-row, .no-scrollbar)
   15. Package card (.pkg-card)
   16. Destination card (.dest-card)
   17. Quotation (.quotation, .steps, .form-card)
   18. Activities (.activity-card)
   19. Stats (.stats, .stat-item)
   20. Contact branch (.contact-grid, .contact-info, .contact-map)
   21. Testimonial (.testimonial)
   22. Newsletter (.newsletter)
   23. Forms (.crownhills-form, .form-input, .form-select, .form-textarea,
       .form-row, .form-message)
   24. Enquiry modal (#enquiryModal)
   25. Floating buttons
   26. Footer (.site-footer)
   27. Utilities
   28. Animations
   29. Responsive
   ========================================================================== */


/* ===== 01. RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; font-size: 16px; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; transition: color .18s ease; }
img, picture, video, svg, canvas { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }
iframe { border: 0; }
:focus-visible { outline: 2px solid var(--brand-gold); outline-offset: 2px; }
::selection { background: var(--brand-gold); color: #fff; }


/* ===== 02. VARIABLES ===== */
:root {
  --brand-blue: #15327a;
  --brand-blue-dark: #0d1f52;
  --brand-blue-light: #1f47a8;
  --brand-gold: #d4a72c;
  --brand-gold-dark: #b8881f;
  --brand-gold-light: #f0cf6b;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --white: #ffffff;
  --cream: #fbf8ef;
  --ink: #1f2433;
  --border: #e6e9f0;
  --border-dark: #d2d8e6;

  --grad-gold: linear-gradient(135deg, #f0cf6b 0%, #d4a72c 55%, #b8881f 100%);
  --grad-blue: linear-gradient(135deg, #1f47a8 0%, #15327a 55%, #0d1f52 100%);
  --grad-blue-soft: linear-gradient(135deg, #15327a 0%, #1f47a8 100%);
  --overlay-hero: linear-gradient(90deg, rgba(13,31,82,.82) 0%, rgba(13,31,82,.45) 45%, rgba(13,31,82,.10) 80%);
  --overlay-card: linear-gradient(180deg, rgba(13,31,82,0) 40%, rgba(13,31,82,.78) 100%);

  --sh-xs: 0 1px 2px rgba(13,31,82,.06);
  --sh-sm: 0 2px 8px rgba(13,31,82,.08);
  --sh-md: 0 8px 22px rgba(13,31,82,.10);
  --sh-lg: 0 16px 38px rgba(13,31,82,.15);
  --sh-xl: 0 24px 56px rgba(13,31,82,.20);
  --sh-gold: 0 8px 22px rgba(212,167,44,.40);
  --sh-blue: 0 8px 22px rgba(21,50,122,.30);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  --font-body: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-head: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-fancy: "Comfortaa", "Poppins", cursive, sans-serif;

  --container: 1240px;
  --gap: 24px;

  --ease: cubic-bezier(.22,1,.36,1);
  --t: .3s var(--ease);
  --t-fast: .18s ease;
}


/* ===== 03. BASE / TYPOGRAPHY ===== */
body { font-family: var(--font-body); font-size: 1rem; color: var(--slate-700); background: var(--white); }
h1, h2, h3, h4 { color: var(--brand-blue); font-family: var(--font-head); }
p { color: var(--slate-600); line-height: 1.7; }
a:hover { color: var(--brand-gold); }
strong, b { font-weight: 700; }
.gold { color: var(--brand-gold) !important; }


/* ===== 04. LAYOUT HELPERS ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section { padding-top: 72px; padding-bottom: 72px; }
.row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.grid { display: grid; gap: var(--gap); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.bg-cream { background: var(--cream); }


/* ===== 05. BUTTONS ===== */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: .8em 1.6em; font-family: var(--font-body); font-size: .95rem;
  font-weight: 600; line-height: 1; white-space: nowrap; border-radius: var(--r-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
}
.btn svg { stroke: currentColor; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--grad-gold); color: #3a2d05; box-shadow: var(--sh-gold); }
.btn-primary:hover { color: #3a2d05; transform: translateY(-3px); box-shadow: 0 14px 32px rgba(212,167,44,.5); }

.btn-secondary { background: var(--grad-blue); color: #fff; box-shadow: var(--sh-blue); }
.btn-secondary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 32px rgba(21,50,122,.42); }

.btn-outline { background: transparent; color: var(--brand-gold-light); border-color: var(--brand-gold); }
.btn-outline:hover { background: var(--brand-gold); color: #3a2d05; transform: translateY(-3px); }

.btn-ghost { background: var(--slate-100); color: var(--brand-blue); border-color: var(--slate-200); }
.btn-ghost:hover { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }

.btn-chat { background: #25d366; color: #fff; border-radius: var(--r-pill); box-shadow: 0 8px 20px rgba(37,211,102,.4); }
.btn-chat:hover { color: #fff; transform: translateY(-3px); }

.btn-block { display: flex; width: 100%; }
.btn:disabled, .btn.is-disabled { opacity: .55; pointer-events: none; }


/* ===== 06. HEADER TOPBAR (.topbar) ===== */
.site-header { position: relative; background: var(--white); z-index: 1000; }

.topbar { background: var(--grad-blue); color: rgba(255,255,255,.85); font-size: .8rem; }
.topbar .container.row { min-height: 40px; }
.topbar a { color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--brand-gold-light); }
.topbar > .container > div:first-child,
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-hours { opacity: .8; }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { stroke: currentColor; }
.topbar .right a.gold { color: var(--brand-gold-light); font-weight: 600; }
.topbar .right a svg { width: 15px; height: 15px; }
.topbar .right a:not(.gold) {
  width: 30px; height: 30px; justify-content: center; border-radius: 50%;
  background: rgba(255,255,255,.12); transition: background var(--t-fast), transform var(--t-fast);
}
.topbar .right a:not(.gold):hover { background: var(--brand-gold); transform: translateY(-2px); }


/* ===== 07. HEADER MAIN ===== */
.header-main { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 70px; padding-top: 6px; padding-bottom: 6px; }
.site-logo { flex-shrink: 0; }
.site-logo img { height: 54px; width: auto; border-radius: 10px; object-fit: contain; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Sticky header (JS adds .is-stuck to #siteHeader on scroll) */
.site-header.is-stuck { position: fixed; top: 0; left: 0; right: 0; box-shadow: var(--sh-md); animation: chSlideDown .4s var(--ease); }
.site-header.is-stuck .topbar { display: none; }
.site-header.is-stuck .header-main { min-height: 72px; }
.site-header.is-stuck { background: rgba(255,255,255,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
body.has-stuck-header { padding-top: 150px; }
@keyframes chSlideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }


/* ===== 08. INLINE SEARCH ===== */
.inline-search {
  display: flex; align-items: center; flex: 0 1 640px; margin: 0;
  padding: 4px 5px 4px 6px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-pill); box-shadow: var(--sh-sm);
}
.inline-search .field { display: flex; align-items: center; gap: 9px; flex: 1; padding: 9px 18px; min-width: 0; }
.inline-search .field:first-of-type { flex: 1.4; }
.inline-search .field svg { flex-shrink: 0; stroke: var(--slate-500); width: 17px; height: 17px; }
.inline-search .field-inner { display: block; min-width: 0; flex: 1; }
.inline-search .field-inner label { display: none; }
.inline-search .field select {
  width: 100%; font-size: .95rem; font-weight: 500; color: var(--slate-600);
  background: transparent; cursor: pointer; appearance: none; -webkit-appearance: none;
  text-overflow: ellipsis; white-space: nowrap; overflow: hidden; padding: 0; line-height: 1.3;
}
.inline-search .divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.inline-search .search-btn {
  flex-shrink: 0; width: 44px; height: 44px; margin-left: 4px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--grad-gold); box-shadow: var(--sh-gold); transition: filter var(--t), transform var(--t);
}
.inline-search .search-btn svg { stroke: #3a2d05; width: 18px; height: 18px; }
.inline-search .search-btn:hover { filter: brightness(1.06); transform: scale(1.05); }


/* ===== 09. HEADER ICON BUTTONS ===== */
.icon-btn {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--slate-100); color: var(--brand-blue); transition: var(--t);
}
.icon-btn svg { stroke: var(--brand-blue); }
.icon-btn:hover { background: var(--brand-blue); color: #fff; transform: translateY(-2px); }
.icon-btn:hover svg { stroke: #fff; }
.flag-btn { background: transparent; padding: 4px; }
.flag-btn svg { width: 30px; height: 20px; border-radius: 3px; box-shadow: var(--sh-xs); }
.flag-btn:hover { background: transparent; transform: translateY(-2px); }


/* ===== 10. NAV ROW ===== */
.nav-row { border-top: 1px solid var(--border); background: var(--white); }
.nav-row { border-top: 1px solid var(--border); background: var(--white); position: relative; z-index: 20; }
.nav-row .container.row { min-height: 56px; flex-wrap: nowrap; gap: 16px; }
.main-nav { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; flex: 1; min-width: 0; justify-content: center; }
.main-nav a {
  position: relative; padding: .7em .9em; font-weight: 600; font-size: .92rem; white-space: nowrap;
  color: var(--brand-blue); border-radius: var(--r-sm); transition: color var(--t-fast);
}
.main-nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; width: 0; height: 2px;
  background: var(--grad-gold); border-radius: 2px; transform: translateX(-50%); transition: width var(--t);
}
.main-nav a:hover, .main-nav a.current,
.main-nav .current-menu-item > a, .main-nav .current_page_item > a { color: var(--brand-gold-dark); }
.main-nav a:hover::after, .main-nav a.current::after,
.main-nav .current-menu-item > a::after, .main-nav .current_page_item > a::after { width: 60%; }

.nav-right { display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 600; flex-shrink: 0; white-space: nowrap; }
.nav-right a { color: var(--slate-600); }
.nav-right a:hover { color: var(--brand-gold-dark); }
.nav-right .nav-sep { color: var(--slate-300); }
.nav-right a.book-now-btn:hover { color: #3a2d05; }
.nav-right .phone { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-blue); }
.nav-right .phone svg { stroke: var(--brand-gold); }

/* Book Now CTA in nav */
.nav-cta { flex-shrink: 0; }
.book-now-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: .6em 1.2em; white-space: nowrap;
  font-weight: 700; font-size: .88rem; color: #3a2d05; background: var(--grad-gold);
  border-radius: var(--r-pill); border: 2px solid transparent; box-shadow: var(--sh-gold);
  transition: transform var(--t), box-shadow var(--t), filter var(--t);
}
.book-now-btn svg { stroke: #3a2d05; }
.book-now-btn:hover { color: #3a2d05; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(212,167,44,.5); filter: brightness(1.04); }


/* ===== 11. MOBILE DRAWER ===== */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 340px; max-width: 88vw; z-index: 1100;
  background: var(--white); box-shadow: -20px 0 60px rgba(13,31,82,.25);
  transform: translateX(100%); visibility: hidden; transition: transform var(--t), visibility var(--t); overflow-y: auto;
}
.mobile-drawer.is-open, .mobile-drawer.active { transform: translateX(0); visibility: visible; }
.mobile-drawer__head {
  display: flex; align-items: center; justify-content: space-between; padding: 16px 20px;
  background: var(--grad-blue);
}
.mobile-drawer__head .site-logo img { height: 46px; }
.drawer-close {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.18); transition: var(--t-fast);
}
.drawer-close svg { stroke: #fff; }
.drawer-close:hover { background: rgba(255,255,255,.32); transform: rotate(90deg); }
.mobile-drawer .container { padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer > .container > a {
  display: flex; align-items: center; gap: 8px; padding: .9em .4em; font-weight: 600;
  color: var(--brand-blue); border-bottom: 1px solid var(--border);
}
.mobile-drawer > .container > a:hover { color: var(--brand-gold-dark); padding-left: 12px; }
.mobile-drawer > .container > a.book-now-btn { justify-content: center; border-bottom: none; color: #3a2d05; }
.mobile-drawer .drawer-link { color: var(--brand-blue) !important; font-weight: 600; }
.mobile-drawer .drawer-link svg { stroke: var(--brand-blue); }
.search-stack {
  display: flex; flex-direction: column; gap: 10px; padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid var(--border);
}
body.drawer-open { overflow: hidden; }
.drawer-overlay {
  position: fixed; inset: 0; z-index: 1099; background: rgba(13,31,82,.5);
  opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t);
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }


/* ===== 12. SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section-header.left { text-align: left; margin-left: 0; }
.kicker {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-gold-dark); margin-bottom: 6px;
}
.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; color: var(--brand-blue);
  line-height: 1.15; margin-bottom: 8px;
}
.section-sub { font-size: 1rem; color: var(--slate-500); }
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap;
}
.slider-controls { display: flex; gap: 10px; flex-shrink: 0; }
.slider-controls button {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--white); border: 1px solid var(--border);
  color: var(--brand-blue); box-shadow: var(--sh-sm); transition: var(--t);
}
.slider-controls button svg { stroke: var(--brand-blue); }
.slider-controls button:hover { background: var(--grad-gold); border-color: transparent; transform: translateY(-2px); box-shadow: var(--sh-gold); }
.slider-controls button:hover svg { stroke: #3a2d05; }


/* ===== 13. HERO SLIDER ===== */
.hero { position: relative; z-index: 1; width: 100%; height: clamp(360px, 52vh, 520px); overflow: hidden; background: var(--brand-blue-dark); }
.hero .slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.06);
  transition: opacity 1s var(--ease), transform 6s ease-out, visibility 1s var(--ease); z-index: 1;
}
.hero .slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .slide.active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }

.hero .overlay { position: absolute; inset: 0; background: var(--overlay-hero); z-index: 3; }

.hero .content { position: absolute; inset: 0; display: flex; align-items: center; z-index: 4; }
.hero .inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; color: #fff; }
.hero .inner > * { max-width: 640px; }

.hero .pill {
  display: inline-block; padding: .45em 1.1em; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #3a2d05; background: var(--grad-gold);
  border-radius: var(--r-pill); margin-bottom: 16px; box-shadow: var(--sh-gold);
}
.hero .inner h1 {
  font-size: clamp(1.8rem, 4vw, 3.1rem); font-weight: 800; line-height: 1.12;
  color: var(--brand-gold-light); text-shadow: 0 4px 20px rgba(0,0,0,.45); margin-bottom: 12px;
}
.hero .inner .sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 600; color: #fff;
  margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero .inner .meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 1.02rem;
  font-weight: 600; color: #fff; margin-bottom: 22px;
}
.hero .inner .meta svg { stroke: var(--brand-gold); vertical-align: middle; }
.hero .inner .meta .price { color: var(--brand-gold-light); font-weight: 800; }
.hero .inner .actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.hero-controls {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
  color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: var(--sh-md); z-index: 5; transition: var(--t);
}
.hero-controls svg { stroke: #fff; }
.hero-controls.prev { left: 18px; }
.hero-controls.next { right: 18px; }
.hero-controls:hover { background: var(--brand-gold); border-color: var(--brand-gold); transform: translateY(-50%) scale(1.08); }
.hero-controls:hover svg { stroke: #3a2d05; }

.hero-dots { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; align-items: center; gap: 8px; z-index: 5; }
.hero-dots span {
  width: 11px; height: 11px; border-radius: var(--r-pill); background: rgba(255,255,255,.45);
  border: 2px solid rgba(255,255,255,.7); cursor: pointer; transition: var(--t);
}
.hero-dots span:hover { background: rgba(255,255,255,.85); }
.hero-dots span.active { width: 30px; background: var(--brand-gold); border-color: var(--brand-gold); }


/* ===== 14. SLIDER ROW ===== */
.slider-row { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px 20px; }
.slider-row > * { scroll-snap-align: start; flex: 0 0 auto; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }


/* ===== 15. PACKAGE CARD (.pkg-card) ===== */
.pkg-card {
  position: relative; display: flex; flex-direction: column; width: 300px; flex: 0 0 300px;
  background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border);
  box-shadow: var(--sh-sm); overflow: hidden; transition: transform var(--t), box-shadow var(--t);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.pkg-card .img { position: relative; width: 100%; height: 200px; overflow: hidden; }
.pkg-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.pkg-card:hover .img img { transform: scale(1.08); }

.pkg-card .discount-badge {
  position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 4px;
  padding: .45em .8em; font-size: .78rem; font-weight: 800; color: #3a2d05; background: var(--grad-gold);
  border-radius: var(--r-sm); box-shadow: var(--sh-sm);
}
.pkg-card .special-badge {
  position: absolute; top: 12px; right: 12px; padding: .4em .75em; font-size: .66rem; font-weight: 800;
  letter-spacing: .06em; color: var(--brand-blue); background: rgba(255,255,255,.92); border-radius: var(--r-sm); box-shadow: var(--sh-xs);
}
.pkg-card .orig-price {
  position: absolute; left: 14px; bottom: 14px; font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.85); text-decoration: line-through; text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.pkg-card .price-tag {
  position: absolute; right: 14px; bottom: 14px; padding: .45em .9em; font-size: 1rem; font-weight: 800;
  color: #fff; background: var(--grad-blue); border-radius: var(--r-sm); box-shadow: var(--sh-blue);
}
.pkg-card .body { display: flex; flex-direction: column; gap: 12px; padding: 18px; flex: 1; }
.pkg-card .body h3 {
  font-size: 1.12rem; font-weight: 700; color: var(--brand-blue); line-height: 1.35; min-height: 2.6em; transition: color var(--t-fast);
}
.pkg-card:hover .body h3 { color: var(--brand-gold-dark); }
.pkg-card .meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .88rem; color: var(--slate-500); }
.pkg-card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.pkg-card .meta span:last-child {
  margin-left: auto; padding: .3em .9em; font-weight: 700; color: #3a2d05; background: var(--grad-gold); border-radius: var(--r-pill);
}
.pkg-card .meta i, .pkg-card .locations i { font-style: normal; color: var(--brand-gold-dark); }
.pkg-card .locations {
  display: flex; align-items: flex-start; gap: 6px; font-size: .88rem; color: var(--slate-500);
  line-height: 1.5; padding-top: 10px; border-top: 1px dashed var(--border);
}
.pkg-card .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; padding-top: 4px; }
.pkg-card .actions .btn { width: 100%; padding: .75em 1em; font-size: .9rem; }


/* ===== 16. DESTINATION CARD (.dest-card) ===== */
.dest-card {
  position: relative; display: block; width: 240px; flex: 0 0 240px; height: 300px;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform var(--t), box-shadow var(--t);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.dest-card:hover img { transform: scale(1.1); }
.dest-card .overlay { position: absolute; inset: 0; background: var(--overlay-card); transition: background var(--t); }
.dest-card:hover .overlay { background: linear-gradient(180deg, rgba(212,167,44,.08) 30%, rgba(13,31,82,.82) 100%); }
.dest-card .label { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; color: #fff; }
.dest-card .label .kicker { color: var(--brand-gold-light); margin-bottom: 2px; opacity: 0; transform: translateY(6px); transition: var(--t); }
.dest-card:hover .label .kicker { opacity: 1; transform: translateY(0); }
.dest-card .label h4 { font-size: 1.2rem; font-weight: 700; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.5); }


/* ===== 17. QUOTATION ===== */
.quotation {
  position: relative; padding: 72px 0;
  background: linear-gradient(135deg, rgba(240,207,107,.12), rgba(21,50,122,.05)), var(--cream);
}
.quotation .container { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.quotation .steps { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.quotation .step { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--slate-700); }
.quotation .step .num {
  flex-shrink: 0; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: .9rem; font-weight: 800; color: #fff; background: var(--grad-blue); box-shadow: var(--sh-blue);
}
.form-card { padding: 28px; background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--sh-lg); }
.form-card h3 { display: flex; align-items: center; gap: 8px; font-size: 1.3rem; color: var(--brand-blue); margin-bottom: 18px; }
.form-card h3 svg { stroke: var(--brand-gold); }


/* ===== 18. ACTIVITIES ===== */
.activity-card {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 30px 20px; background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border);
  box-shadow: var(--sh-sm); overflow: hidden; transition: transform var(--t), box-shadow var(--t);
}
.activity-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.activity-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.activity-card:hover::before { transform: scaleX(1); }
.activity-card .icon {
  width: 70px; height: 70px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); background: var(--grad-blue); box-shadow: var(--sh-blue); transition: var(--t);
}
.activity-card .icon svg { stroke: #fff; }
.activity-card:hover .icon { background: var(--grad-gold); transform: rotate(-6deg) scale(1.05); box-shadow: var(--sh-gold); }
.activity-card:hover .icon svg { stroke: #3a2d05; }
.activity-card h4 { font-size: 1.08rem; font-weight: 700; color: var(--brand-blue); }
.activity-card .location { font-size: .9rem; color: var(--slate-500); }
.activity-card .more { margin-top: 4px; font-size: .9rem; font-weight: 700; color: var(--brand-gold-dark); cursor: pointer; transition: var(--t-fast); }
.activity-card .more:hover { color: var(--brand-blue); }


/* ===== 19. STATS ===== */
.stats { position: relative; padding: 72px 0; background: var(--grad-blue); color: #fff; }
.stats .header { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.stats .header .kicker { color: var(--brand-gold-light); }
.stats .header h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; }
.stats .grid.cols-4 { max-width: 960px; margin: 0 auto; }
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 10px; }
.stat-item .icon {
  width: 90px; height: 90px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
  margin-bottom: 8px; background: rgba(255,255,255,.08); border: 2px solid rgba(240,207,107,.5); transition: var(--t);
}
.stat-item .icon svg { stroke: var(--brand-gold-light); width: 30px; height: 30px; }
.stat-item:hover .icon { background: rgba(240,207,107,.16); transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.stat-item .num { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1; }
.stat-item .label { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.8); }


/* ===== 20. CONTACT BRANCH ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-info h3 { display: flex; align-items: center; gap: 8px; font-size: 1.5rem; color: var(--brand-blue); }
.contact-info h3 svg { stroke: var(--brand-gold); }
.contact-info .phone { font-size: 1.4rem; font-weight: 800; color: var(--brand-gold-dark); }
.contact-info p { color: var(--slate-600); }
.contact-info .row { display: flex; align-items: center; gap: 10px; justify-content: flex-start; font-size: .95rem; color: var(--slate-600); }
.contact-info .row svg { stroke: var(--brand-gold-dark); flex-shrink: 0; }
.contact-info .row a:hover { color: var(--brand-gold-dark); }
.contact-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-md); min-height: 320px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; display: block; }


/* ===== 21. TESTIMONIAL ===== */
.testimonial {
  position: relative; display: flex; align-items: center; gap: 28px; max-width: 820px; margin: 0 auto;
  padding: 36px; background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--sh-md);
}
.testimonial::before {
  content: "\201C"; position: absolute; top: 6px; right: 28px; font-family: Georgia, serif;
  font-size: 5rem; line-height: 1; color: rgba(212,167,44,.16);
}
.testimonial > img {
  flex-shrink: 0; width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--white); box-shadow: 0 0 0 3px var(--brand-gold-light), var(--sh-sm);
}
.testimonial .stars { display: flex; gap: 2px; margin-bottom: 10px; }
.testimonial .stars svg { stroke: var(--brand-gold); fill: var(--brand-gold); }
.testimonial blockquote { font-size: 1.05rem; line-height: 1.7; color: var(--slate-700); font-style: italic; margin-bottom: 12px; }
.testimonial cite { display: block; font-style: normal; font-weight: 700; color: var(--brand-blue); font-size: 1rem; }
.testimonial .location { font-size: .85rem; color: var(--slate-400); }


/* ===== 22. NEWSLETTER ===== */
.newsletter { position: relative; padding: 72px 0; background: var(--grad-gold); color: #3a2d05; text-align: center; overflow: hidden; }
.newsletter::before, .newsletter::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.18); pointer-events: none; }
.newsletter::before { width: 260px; height: 260px; top: -120px; right: -70px; }
.newsletter::after  { width: 190px; height: 190px; bottom: -100px; left: -50px; }
.newsletter .container { position: relative; z-index: 1; max-width: 640px; }
.newsletter .kicker { color: #5a4708; }
.newsletter h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: #3a2d05; margin-bottom: 8px; }
.newsletter p { color: #5a4708; margin-bottom: 22px; }
.newsletter .crownhills-form {
  display: flex; gap: 8px; max-width: 520px; margin: 0 auto; padding: 6px;
  background: rgba(255,255,255,.35); border-radius: var(--r-pill); flex-wrap: wrap; justify-content: center;
}
.newsletter .crownhills-form .form-input { flex: 1; min-width: 200px; margin: 0; border: none; background: #fff; border-radius: var(--r-pill); }
.newsletter .crownhills-form button {
  flex-shrink: 0; padding: .8em 1.8em; font-weight: 700; color: #fff; background: var(--grad-blue);
  border-radius: var(--r-pill); box-shadow: var(--sh-blue); transition: var(--t);
}
.newsletter .crownhills-form button:hover { transform: translateY(-2px); filter: brightness(1.08); }


/* ===== 23. FORMS ===== */
.crownhills-form { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .8em 1.05em; font-size: .95rem; color: var(--slate-700); background: var(--slate-50);
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--slate-400); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: #fff; border-color: var(--brand-gold); box-shadow: 0 0 0 4px rgba(212,167,44,.15);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4a72c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.05em center; padding-right: 2.6em; cursor: pointer;
}
.form-message { font-size: .9rem; font-weight: 500; border-radius: var(--r-sm); }
.form-message:not(:empty) { padding: .8em 1.1em; border: 1px solid transparent; margin-top: 4px; }
.form-message.success, .form-message.is-success { color: #1c7a52; background: rgba(43,182,115,.12); border-color: rgba(43,182,115,.4); }
.form-message.error, .form-message.is-error { color: #b13226; background: rgba(231,76,60,.12); border-color: rgba(231,76,60,.4); }


/* ===== 24. ENQUIRY MODAL ===== */
#enquiryModal { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
#enquiryModal .crownhills-form .form-input, #enquiryModal .crownhills-form .form-textarea { margin-bottom: 10px; }


/* ===== 25. FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 90px; z-index: 900; width: 58px; height: 58px;
  display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
  color: #fff; background: #25d366; box-shadow: 0 10px 26px rgba(37,211,102,.45); font-size: 1.6rem;
}
.whatsapp-float:hover { color: #fff; transform: translateY(-3px); }
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
  color: #3a2d05; background: var(--grad-gold); box-shadow: var(--sh-gold);
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: var(--t);
}
.back-to-top.is-visible, .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }
.side-float { position: fixed; right: 0; top: 30%; z-index: 900; display: flex; flex-direction: column; gap: 8px; }
.side-float a {
  display: inline-flex; align-items: center; gap: 6px; padding: .65em 1em; font-weight: 700; font-size: .82rem;
  color: #fff; border-top-left-radius: var(--r-pill); border-bottom-left-radius: var(--r-pill); box-shadow: var(--sh-md); transition: transform var(--t);
}
.side-float a:hover { transform: translateX(-4px); color: #fff; }
.side-float .ask-me { background: #2bb673; }
.side-float .business { background: var(--grad-gold); color: #3a2d05; }


/* ===== 26. FOOTER ===== */
.site-footer { position: relative; background: var(--grad-blue); color: rgba(255,255,255,.78); overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; top: -150px; right: -150px; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,167,44,.18), transparent 70%); pointer-events: none;
}
.site-footer .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; padding-top: 64px; padding-bottom: 48px; }
.site-footer img { height: 56px; border-radius: 8px; margin-bottom: 16px; }
.site-footer h4 { position: relative; color: #fff; font-size: 1.1rem; margin-bottom: 22px; padding-bottom: 12px; }
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 42px; height: 3px; border-radius: 3px; background: var(--grad-gold); }
.site-footer ul li { margin-bottom: 12px; }
.site-footer ul li a { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; color: rgba(255,255,255,.72); }
.site-footer ul li a:hover { color: #fff; padding-left: 6px; }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; text-align: center; font-size: .88rem; color: rgba(255,255,255,.6); }
.site-footer .footer-social { display: flex; gap: 12px; }
.site-footer .footer-social a {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; transition: var(--t);
}
.site-footer .footer-social a:hover { background: var(--grad-gold); transform: translateY(-3px); }
.site-footer .footer-social a svg { stroke: #fff; }


/* ===== 26b. TOURS LISTING PAGE ===== */
.tours-hero {
  background: var(--grad-blue);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.tours-hero .kicker { color: var(--brand-gold-light); }
.tours-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; margin-bottom: 6px; }
.tours-hero .crumb { color: rgba(255,255,255,.75); font-size: .9rem; }
.tours-hero .crumb a { color: var(--brand-gold-light); }
.tours-hero .crumb span { margin: 0 6px; }

/* --- Intro block (description + callback form) --- */
.tours-intro {
  padding: 40px 0 30px;
  background: linear-gradient(180deg, #fbf8ef 0%, #fff 100%);
}
.tours-intro-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}
.tours-intro-copy h2 {
  color: var(--brand-blue);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}
.tours-intro-copy p {
  color: var(--slate-600);
  font-size: .95rem;
  line-height: 1.75;
}
.callback-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-md);
}
.callback-card h3 {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.2rem;
  color: var(--brand-blue);
  margin-bottom: 16px;
}
.callback-ico { font-size: 1.3rem; color: #e91e63; }
.callback-form .cb-field {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--slate-50);
  margin-bottom: 12px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.callback-form .cb-field:focus-within {
  background: #fff;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(212,167,44,.12);
}
.callback-form .cb-field .form-input {
  flex: 1; margin: 0; padding: 0;
  background: transparent; border: 0; box-shadow: none;
}
.callback-form .cb-field .form-input:focus { box-shadow: none; }

.tours-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.tours-main { display: flex; flex-direction: column; gap: 20px; }
.tours-count { font-size: .95rem; color: var(--slate-500); }
.tours-count strong { color: var(--brand-blue); font-size: 1.1rem; }
.tours-empty { text-align: center; padding: 48px 20px; background: var(--slate-50); border-radius: var(--r-lg); }
.tours-empty p { margin-bottom: 16px; }

/* Horizontal tour card (image | body | side) */
.tour-list-card {
  display: grid;
  grid-template-columns: 280px 1fr 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.tour-list-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }

.tlc-media { position: relative; display: block; min-height: 240px; overflow: hidden; }
.tlc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.tour-list-card:hover .tlc-media img { transform: scale(1.06); }

.tlc-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; border-right: 1px solid var(--border); }
.tlc-tag {
  align-self: flex-start; padding: .35em 1em; font-size: .74rem; font-weight: 700;
  color: #fff; background: linear-gradient(135deg, #22c55e 0%, #15a34a 100%);
  border-radius: var(--r-pill); box-shadow: 0 4px 12px rgba(34,197,94,.35);
}
.tlc-body h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.35; }
.tlc-body h3 a { color: var(--brand-blue); }
.tlc-body h3 a:hover { color: var(--brand-gold-dark); }
.tlc-meta { display: flex; gap: 16px; font-size: .9rem; color: var(--slate-600); font-weight: 600; }
.tlc-meta span { display: inline-flex; align-items: center; gap: 6px; }
.tlc-feats { display: flex; flex-wrap: wrap; gap: 14px; font-size: .85rem; color: var(--slate-500); }
.tlc-feats span { display: inline-flex; align-items: center; gap: 5px; }
.tlc-feats svg { stroke: var(--brand-gold-dark); }
.tlc-loc { display: flex; align-items: flex-start; gap: 6px; font-size: .88rem; color: var(--slate-500); line-height: 1.5; padding-top: 10px; border-top: 1px dashed var(--border); }

/* Right side: price + timer */
.tlc-side {
  padding: 18px 20px;
  display: flex; flex-direction: column; align-items: stretch;
  gap: 6px;
  background: linear-gradient(180deg, #fff 0%, var(--slate-50) 100%);
}
.tlc-timer {
  align-self: center;
  padding: .4em .9em;
  margin-bottom: 4px;
  font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  color: #fff; background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: var(--r-sm);
  box-shadow: 0 4px 10px rgba(220,38,38,.3);
  white-space: nowrap;
}
.tlc-timer .tlc-timer-val { font-weight: 800; }
.tlc-sharebar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 4px;
}
.tlc-sharebar a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--slate-100);
  transition: transform var(--t-fast), background var(--t-fast);
}
.tlc-sharebar a:hover { background: var(--slate-200); transform: translateY(-1px); }
.tlc-deal {
  font-size: .72rem; font-weight: 800; letter-spacing: .05em;
  color: #16a34a;
}
.tlc-dates {
  font-size: .78rem; color: var(--slate-600); font-weight: 500;
}
.tlc-price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 2px;
}
.tlc-amount { font-size: 1.4rem; font-weight: 800; color: var(--brand-blue); line-height: 1.1; }
.tlc-orig { font-size: .9rem; color: var(--slate-400); text-decoration: line-through; }
.tlc-per { font-size: .74rem; color: var(--slate-500); margin-bottom: 10px; }
.tlc-side .btn { margin-top: 4px; padding: .65em 1em; font-size: .88rem; }

/* Filters sidebar */
.tours-filters { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.filter-card, .filter-help {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sh-sm);
}
.filter-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.filter-head h4 { color: var(--brand-blue); font-size: 1.1rem; }
.filter-clear { font-size: .85rem; font-weight: 600; color: var(--brand-gold-dark); }
.filter-group { margin-bottom: 16px; }
.filter-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--slate-600); margin-bottom: 6px; }
.filter-help h4 { color: var(--brand-blue); font-size: 1.05rem; margin-bottom: 6px; }
.filter-help p { font-size: .9rem; margin-bottom: 14px; }
.filter-help .btn { margin-bottom: 10px; }





/* ===== 26c. TOUR DETAIL SINGLE PAGE ===== */

/* Hero */
.tds-hero { padding: 32px 0 24px; background: var(--cream); }
.tds-hero-grid { display: block; }
.tds-title-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.tds-title-row .kicker { display: block; margin-bottom: 4px; }
.tds-title-row h1 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); font-weight: 800; color: var(--slate-800); line-height: 1.2; }
.tds-price-tag { text-align: right; }
.tds-orig { color: var(--slate-400); text-decoration: line-through; margin-right: 8px; }
.tds-price { font-size: 1.5rem; font-weight: 800; color: var(--brand-blue); }

.tds-hero-img { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 2.4 / 1; margin-bottom: 20px; }
.tds-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.tds-timer { position: absolute; top: 16px; left: 0; padding: .5em 1em; font-size: .82rem; font-weight: 700; color: #fff; background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); border-radius: 0 var(--r-sm) var(--r-sm) 0; box-shadow: var(--sh-md); }
.tds-timer .tds-timer-val { font-weight: 800; }
.tds-hero-actions { position: absolute; top: 16px; right: 16px; display: flex; gap: 8px; }
.tds-icon-btn { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--grad-gold); box-shadow: var(--sh-gold); border: 0; cursor: pointer; transition: transform var(--t-fast), filter var(--t-fast); }
.tds-icon-btn:hover { transform: translateY(-2px) scale(1.05); filter: brightness(1.05); }
.tds-icon-btn--wa { background: #25d366; box-shadow: 0 8px 22px rgba(37,211,102,.4); }

/* Tabs */
.tds-tabs { display: flex; gap: 8px; flex-wrap: wrap; padding: 10px; background: #fff; border-radius: var(--r-md); box-shadow: var(--sh-sm); }
.tds-tab { padding: .6em 1.2em; font-weight: 600; font-size: .95rem; color: var(--slate-600); border-radius: var(--r-sm); transition: background var(--t-fast), color var(--t-fast); }
.tds-tab:hover { background: var(--slate-100); color: var(--brand-blue); }
.tds-tab.is-active { background: #fee2e2; color: #dc2626; }

/* Body grid */
.tds-body { padding: 32px 0 56px; background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); }
.tds-body-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.tds-main { display: flex; flex-direction: column; gap: 24px; }
.tds-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-sm); }
.tds-card h2 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 800; color: var(--slate-800); margin-bottom: 14px; line-height: 1.3; }
.tds-card h2 + p { color: var(--slate-600); line-height: 1.75; margin-bottom: 12px; }
.tds-sub { font-size: 1.05rem; color: var(--brand-blue); margin: 18px 0 10px; }
.tds-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 8px 20px; }
.tds-highlights li { display: flex; align-items: flex-start; gap: 8px; font-size: .92rem; color: var(--slate-700); line-height: 1.55; padding: 4px 0; }

/* Itinerary timeline */
.tds-timeline { position: relative; }
.tds-day { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding-bottom: 24px; position: relative; }
.tds-day:not(:last-child)::before { content: ""; position: absolute; left: 62px; top: 40px; bottom: 0; width: 2px; background: repeating-linear-gradient(180deg, #f97316 0 6px, transparent 6px 12px); }
.tds-day-num { display: flex; flex-direction: column; align-items: center; padding-top: 6px; }
.tds-day-label { font-size: .9rem; font-weight: 800; color: var(--slate-500); letter-spacing: .05em; }
.tds-day-n { font-size: 1.9rem; font-weight: 800; color: #f97316; line-height: 1; margin-top: 2px; }
.tds-day-body { position: relative; }
.tds-day-body::before { content: ""; position: absolute; left: -30px; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: #f97316; box-shadow: 0 0 0 4px #fff, 0 0 0 6px #fed7aa; }
.tds-day-body h4 { color: #f97316; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.tds-day-body ul { padding-left: 18px; }
.tds-day-body ul li { list-style: disc; color: var(--slate-700); line-height: 1.7; font-size: .95rem; margin-bottom: 4px; }
.tds-meals { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.tds-meal-chip { display: inline-flex; align-items: center; gap: 6px; padding: .45em 1em; font-size: .85rem; font-weight: 500; color: var(--slate-700); background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill); box-shadow: var(--sh-xs); }

/* Inclusions / Exclusions */
.tds-ie-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.tds-ie-tab { padding: .55em 1.4em; font-weight: 600; font-size: .95rem; color: var(--slate-600); background: var(--slate-100); border-radius: var(--r-sm); border: 0; cursor: pointer; transition: var(--t-fast); }
.tds-ie-tab.is-active { background: #fee2e2; color: #dc2626; }
.tds-ie-list { display: none; }
.tds-ie-list.is-active { display: block; }
.tds-ie-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; color: var(--slate-700); font-size: .95rem; line-height: 1.55; border-bottom: 1px dashed var(--border); }

/* Departure Cities */
.tds-cities { display: flex; flex-wrap: wrap; gap: 10px; }
.tds-city { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: .55em 1.2em; font-size: .92rem; font-weight: 500; color: var(--slate-600); border: 1.5px solid var(--border); border-radius: var(--r-pill); cursor: pointer; transition: var(--t-fast); background: #fff; }
.tds-city:hover { border-color: var(--brand-gold); color: var(--brand-blue); }
.tds-city input { position: absolute; opacity: 0; pointer-events: none; }
.tds-city::before { content: ""; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--slate-300); background: #fff; }
.tds-city.is-selected { background: linear-gradient(135deg, #fb923c 0%, #f97316 100%); color: #fff; border-color: transparent; }
.tds-city.is-selected::before { background: #fff; border-color: #fff; }

/* Related tours */
.tds-related { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.tds-related-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform var(--t), box-shadow var(--t); display: block; }
.tds-related-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.tds-related-img { height: 140px; overflow: hidden; }
.tds-related-img img { width: 100%; height: 100%; object-fit: cover; }
.tds-related-body { padding: 14px; }
.tds-related-tag { display: inline-block; padding: .25em .75em; font-size: .7rem; font-weight: 700; color: #fff; background: linear-gradient(135deg, #22c55e 0%, #15a34a 100%); border-radius: var(--r-pill); margin-bottom: 8px; }
.tds-related-body h4 { font-size: .95rem; font-weight: 700; color: var(--brand-blue); line-height: 1.35; margin-bottom: 8px; min-height: 2.6em; }
.tds-related-meta { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; color: var(--slate-500); }
.tds-related-price { color: var(--brand-blue); font-weight: 800; }

/* Sticky sidebar */
.tds-side { position: sticky; top: 90px; }
.tds-side-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.tds-side-datepicker { padding: 16px 20px; border-bottom: 2px dashed #f97316; background: linear-gradient(180deg, #fff 0%, #fff7ed 100%); }
.tds-side-label { color: #f97316; font-weight: 700; font-size: .95rem; margin-bottom: 10px; }
.tds-side-route { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.tds-side-route-city { display: flex; flex-direction: column; align-items: center; font-size: .8rem; color: var(--slate-500); }
.tds-side-route-city strong { color: var(--slate-800); font-size: .9rem; margin-top: 2px; }
.tds-side-route-dur { flex: 1; text-align: center; color: #f97316; font-size: .78rem; }
.tds-side-route-dur::before, .tds-side-route-dur::after { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #f97316; vertical-align: middle; }
.tds-side-route-dur span { display: inline-block; padding: 0 6px; }
.tds-side-cal { padding: 16px 20px; }
.tds-side-cal-label { font-weight: 700; color: var(--slate-800); margin-bottom: 8px; }
.tds-side-year { display: inline-block; padding: .25em .8em; font-size: .78rem; font-weight: 700; color: #fff; background: #22c55e; border-radius: var(--r-pill); margin-bottom: 10px; }
.tds-side-month { display: grid; grid-template-columns: 42px 1fr; gap: 10px; align-items: center; margin-bottom: 8px; }
.tds-side-mname { display: inline-flex; align-items: center; justify-content: center; padding: .4em .7em; font-size: .78rem; font-weight: 700; color: #fff; background: #fca5a5; border-radius: var(--r-sm); }
.tds-side-days { display: flex; flex-wrap: wrap; gap: 6px; }
.tds-side-day { min-width: 30px; padding: .3em .55em; font-size: .82rem; font-weight: 500; color: var(--slate-700); background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm); cursor: pointer; transition: var(--t-fast); }
.tds-side-day:hover { background: var(--slate-100); border-color: var(--brand-gold); }
.tds-side-day.is-selected { background: #f97316; color: #fff; border-color: #f97316; box-shadow: 0 4px 10px rgba(249,115,22,.35); }
.tds-side-summary { padding: 16px 20px; border-top: 1px solid var(--border); background: #fafafa; }
.tds-side-deal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.tds-side-deal span { color: var(--slate-700); font-size: .9rem; font-weight: 500; }
.tds-side-deal strong { color: var(--brand-blue); font-size: 1.5rem; font-weight: 800; }
.tds-side-rooms { padding: 16px 20px; border-top: 1px solid var(--border); }
.tds-side-rooms-title { font-weight: 700; color: var(--slate-800); margin-bottom: 10px; font-size: .95rem; }
.tds-side-room-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: .88rem; color: var(--slate-600); border-bottom: 1px dashed var(--border); }
.tds-side-room-row strong { color: var(--slate-800); }
.tds-side-room-row:last-child { border-bottom: 0; }

@media (max-width: 992px) {
  .tds-body-grid { grid-template-columns: 1fr; }
  .tds-side { position: static; }
  .tds-title-row { flex-direction: column; align-items: flex-start; }
  .tds-price-tag { text-align: left; }
  .tds-day { grid-template-columns: 60px 1fr; gap: 14px; }
  .tds-day-body::before { display: none; }
  .tds-day:not(:last-child)::before { left: 30px; }
}


/* ===== 26d. CUSTOMIZED TOUR ENQUIRY PAGE ===== */

.tcus-hero {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1e40af 50%, #1d4ed8 100%);
  padding: 56px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tcus-hero::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><circle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.08)'/></svg>");
  pointer-events: none;
}
.tcus-hero h1 {
  color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  margin-bottom: 6px; position: relative;
}
.tcus-hero .crumb {
  color: rgba(255,255,255,.85); font-size: .95rem; font-weight: 500; position: relative;
}
.tcus-hero .crumb a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.tcus-hero .crumb span { margin: 0 8px; opacity: .8; }

.tcus-wrap { padding: 48px 0 72px; background: linear-gradient(180deg, #fafafa 0%, #fff 100%); }
.tcus-card {
  max-width: 820px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-md);
}
.tcus-head {
  padding: 22px 32px; background: linear-gradient(180deg, #eef2ff 0%, #dbeafe 100%);
  border-bottom: 1px solid var(--border); text-align: center;
}
.tcus-head h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 800;
  color: var(--brand-blue); line-height: 1.3;
}
.tcus-body { padding: 28px 32px 32px; }
.tcus-lead { color: var(--slate-600); line-height: 1.75; margin-bottom: 6px; font-size: .96rem; }
.tcus-lead .link { color: var(--brand-gold); font-weight: 600; }
.tcus-sub { color: var(--slate-800); font-size: 1.1rem; font-weight: 700; margin: 14px 0 20px; }

.tcus-field { margin-bottom: 16px; }
.tcus-field > label {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--slate-700); margin-bottom: 6px;
}
.tcus-opt { color: var(--slate-400); font-weight: 400; margin-left: 4px; }

.tcus-field .form-input {
  width: 100%; padding: 12px 14px;
  font-size: .95rem; font-family: inherit;
  color: var(--slate-800); background: #fff;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.tcus-field .form-input:focus {
  outline: none; border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(21,50,122,.12);
}
.tcus-field textarea.form-input { resize: vertical; min-height: 90px; }

.tcus-field.tcus-two {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.tcus-field.tcus-two > div label {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--slate-700); margin-bottom: 6px;
}

.tcus-submit {
  width: 100%; padding: 14px; margin-top: 8px;
  font-size: 1.05rem; font-weight: 700; letter-spacing: .03em;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1e40af 100%);
  color: #fff; border: 0; border-radius: var(--r-sm);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(21,50,122,.35);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.tcus-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(21,50,122,.45); }

@media (max-width: 640px) {
  .tcus-body { padding: 22px 20px; }
  .tcus-head { padding: 18px 20px; }
  .tcus-field.tcus-two { grid-template-columns: 1fr; gap: 0; }
  .tcus-field.tcus-two > div { margin-bottom: 16px; }
}


/* ===== 28. ANIMATIONS ===== */
@keyframes chFadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero .inner > * { animation: chFadeUp .8s var(--ease) both; }
.hero .inner .pill { animation-delay: .05s; }
.hero .inner h1   { animation-delay: .12s; }
.hero .inner .sub { animation-delay: .2s; }
.hero .inner .meta{ animation-delay: .28s; }
.hero .inner .actions { animation-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}


/* ===== 29. RESPONSIVE ===== */
@media (max-width: 1200px) {
  :root { --container: 1080px; }
  .inline-search { flex: 0 1 520px; }
  .main-nav a { padding: .7em .65em; font-size: .86rem; }
  .site-footer .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 992px) {
  .inline-search { display: none; }
  .nav-row { display: none; }
  .topbar { display: none; }
  .header-main { min-height: 72px; }
  body.has-stuck-header { padding-top: 72px; }
  .header-actions .icon-btn[title^="Call"],
  .header-actions .icon-btn[title="Log in"] { display: none; }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .quotation .container { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer .footer-top { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: 1fr; }
  .tours-filters { position: static; flex-direction: row; flex-wrap: wrap; }
  .filter-card, .filter-help { flex: 1; min-width: 260px; }
  .tours-intro-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .section { padding-top: 56px; padding-bottom: 56px; }
  .hero { height: clamp(340px, 60vh, 460px); }
  .hero .inner > * { max-width: 100%; }
  .hero .inner .actions { flex-direction: column; align-items: stretch; }
  .hero .inner .actions .btn { width: 100%; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .pkg-card { width: 82vw; flex-basis: 82vw; max-width: 340px; }
  .dest-card { width: 64vw; flex-basis: 64vw; max-width: 280px; }
  .grid.cols-4, .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial { flex-direction: column; text-align: center; padding: 28px 20px; }
  .testimonial .stars { justify-content: center; }
  .testimonial::before { right: 16px; }
  .newsletter .crownhills-form { flex-direction: column; border-radius: var(--r-lg); }
  .newsletter .crownhills-form .form-input, .newsletter .crownhills-form button { width: 100%; }
  .stat-item .icon { width: 76px; height: 76px; }
  .site-footer .footer-top { grid-template-columns: 1fr; }
  .tour-list-card { grid-template-columns: 1fr; }
  .tlc-media { min-height: 200px; }
  .tlc-body { border-right: none; border-bottom: 1px solid var(--border); }
  .tlc-side { text-align: left; }
  .tours-filters { flex-direction: column; }
}

@media (max-width: 480px) {
  .site-logo img { height: 50px; }
  .header-main { gap: 10px; }
  .icon-btn { width: 38px; height: 38px; }
  .pkg-card { width: 88vw; flex-basis: 88vw; }
  .pkg-card .actions { grid-template-columns: 1fr; }
  .whatsapp-float { right: 14px; bottom: 80px; width: 52px; height: 52px; }
  .back-to-top { right: 14px; bottom: 14px; }
}

@media print {
  .topbar, .nav-row, .inline-search, .mobile-drawer, .hero-controls,
  .hero-dots, .whatsapp-float, .back-to-top, .side-float, .newsletter { display: none !important; }
}

/* ===== END — Crownhills Tourism main.css v2 ===== */

/* ===== 26e. B2B PARTNER PAGE (Brand Blue + Gold) ===== */

.b2b-hero {
  background: linear-gradient(180deg, #eef2ff 0%, #dbeafe 50%, #bfdbfe 100%);
  padding: 56px 0 48px;
  text-align: left;
}
.b2b-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1.2;
  margin-bottom: 10px;
}
.b2b-hero h1 span { color: var(--brand-gold); }
.b2b-hero p {
  font-size: 1.05rem;
  color: var(--slate-600);
}

/* --- Section 2: Form + Video 2-column --- */
.b2b-register { background: linear-gradient(180deg, #bfdbfe 0%, #eef2ff 15%, #fff 40%); padding-top: 0; }
.b2b-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.b2b-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.b2b-form-card h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-800);
  margin-bottom: 4px;
}
.b2b-form-sub {
  color: var(--slate-500);
  font-size: .92rem;
  margin-bottom: 12px;
}
.b2b-form-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}
.b2b-field { margin-bottom: 14px; }
.b2b-field .form-input {
  width: 100%;
  padding: 13px 16px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--slate-800);
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.b2b-field .form-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(21,50,122,.1);
}
.b2b-field select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'><path d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.b2b-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.b2b-submit-btn {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .03em;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1e40af 100%);
  color: #fff;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(21,50,122,.3);
  transition: transform .2s, box-shadow .2s;
}
.b2b-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(21,50,122,.4);
}

/* Right column */
.b2b-info-col h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--slate-800);
  margin-bottom: 10px;
}
.b2b-info-col > p {
  color: var(--slate-600);
  line-height: 1.7;
  font-size: .95rem;
  margin-bottom: 20px;
}
.b2b-video-placeholder {
  background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 100%);
  border: 2px dashed #93c5fd;
  border-radius: 14px;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 20px;
}
.b2b-play-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  color: var(--brand-blue);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.b2b-video-placeholder p { color: var(--slate-500); font-size: .9rem; }
.b2b-contact-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.b2b-contact-box p { margin: 0; color: var(--slate-600); font-size: .9rem; }
.b2b-phone-link {
  display: flex; align-items: center; gap: 6px;
  color: var(--brand-blue); font-weight: 700; font-size: .95rem;
  text-decoration: none;
}
.b2b-phone-link:hover { text-decoration: underline; }

/* --- Section 3: Why Choose --- */
.b2b-why { background: linear-gradient(180deg, #eef2ff 0%, #dbeafe 100%); }
.b2b-section-title {
  text-align: center;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--slate-800);
  margin-bottom: 6px;
}
.b2b-section-sub {
  text-align: center;
  color: var(--slate-600);
  font-size: .95rem;
  margin-bottom: 36px;
}
.b2b-why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.b2b-why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.b2b-why-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s;
}
.b2b-why-card:hover { transform: translateY(-3px); }
.b2b-why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--brand-blue), #1e40af);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.b2b-why-card strong {
  display: block;
  font-size: 1.05rem;
  color: var(--brand-blue);
  font-weight: 800;
}
.b2b-why-card span {
  display: block;
  font-size: .78rem;
  color: var(--slate-600);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.b2b-why-image {
  border-radius: 16px;
  overflow: hidden;
}
.b2b-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* --- Section 4: Advantages --- */
.b2b-advantages { background: linear-gradient(180deg, #dbeafe 0%, #eef2ff 50%, #fff 100%); }
.b2b-adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.b2b-adv-card {
  background: #fff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .2s, transform .2s;
}
.b2b-adv-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.b2b-adv-icon {
  width: 48px; height: 48px;
  background: #eef2ff;
  border: 1px solid #93c5fd;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.b2b-adv-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--slate-800);
  margin-bottom: 4px;
}
.b2b-adv-card p {
  font-size: .85rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin: 0;
}

/* --- Section 5: Branch --- */
.b2b-branch { background: linear-gradient(180deg, #eef2ff 0%, #dbeafe 100%); }
.b2b-branch-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: start;
}
.b2b-branch-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.b2b-branch-icon { font-size: 2rem; margin-bottom: 8px; }
.b2b-branch-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--slate-800);
  margin-bottom: 10px;
}
.b2b-branch-card p {
  color: var(--slate-600);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.b2b-branch-phone { font-weight: 700; color: var(--slate-800); }
.b2b-directions-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--brand-blue), #1e40af);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .2s;
}
.b2b-directions-btn:hover { transform: translateY(-2px); }

/* --- B2B Responsive --- */
@media (max-width: 992px) {
  .b2b-row,
  .b2b-why-row,
  .b2b-branch-row {
    grid-template-columns: 1fr;
  }
  .b2b-why-image { max-height: 300px; }
}
@media (max-width: 640px) {
  .b2b-hero { padding: 36px 0 28px; }
  .b2b-hero h1 { font-size: 1.5rem; }
  .b2b-form-card { padding: 22px 18px; }
  .b2b-two { grid-template-columns: 1fr; gap: 14px; }
  .b2b-why-cards { grid-template-columns: 1fr; }
  .b2b-adv-grid { grid-template-columns: 1fr; }
  .b2b-branch-row { grid-template-columns: 1fr; }
}

/* ===== 29. FOOTER (KingHills-style dark) ===== */

.ch-footer {
  background: #1e293b;
  color: #cbd5e1;
  padding-top: 0;
}
.ch-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 52px 0 36px;
}
.ch-footer-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.ch-footer-about {
  font-size: .88rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 18px;
}
.ch-footer-social {
  display: flex;
  gap: 12px;
}
.ch-footer-social a {
  width: 40px; height: 40px;
  border: 1.5px solid #ea580c;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ea580c;
  transition: background .2s, color .2s;
}
.ch-footer-social a:hover {
  background: #ea580c;
  color: #fff;
}

.ch-footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.ch-footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: #ea580c;
  border-radius: 2px;
}
.ch-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ch-footer-col ul li {
  margin-bottom: 10px;
}
.ch-footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s, padding-left .2s;
}
.ch-footer-col ul li a:hover {
  color: #fb923c;
  padding-left: 6px;
}

.ch-footer-contact p {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #94a3b8;
}
.ch-footer-contact a {
  color: #94a3b8;
  text-decoration: none;
}
.ch-footer-contact a:hover { color: #fb923c; }

.ch-footer-bottom {
  border-top: 1px solid #334155;
  text-align: center;
  padding: 18px 0;
}
.ch-footer-bottom p {
  color: #64748b;
  font-size: .85rem;
  margin: 0;
}

@media (max-width: 992px) {
  .ch-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .ch-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 24px;
  }
}

/* ===== 30. FLOATING SIDE BUTTONS (Ask Me + B2B) ===== */

.ch-float-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ch-float-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  color: #fff;
  border-radius: 8px 0 0 8px;
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
}
.ch-float-btn:hover {
  transform: translateX(-4px);
  box-shadow: -4px 0 16px rgba(0,0,0,.2);
}
.ch-float-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  margin-bottom: 4px;
}
.ch-float-b2b {
  background: linear-gradient(135deg, var(--brand-gold), #b8860b);
}

@media (max-width: 640px) {
  .ch-float-btn {
    padding: 8px 10px;
    font-size: .72rem;
  }
  .ch-float-btn svg { width: 14px; height: 14px; }
}

/* ===== 31. SCROLL TO TOP BUTTON ===== */

.ch-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(234,88,12,.4);
  transition: transform .2s;
}
.ch-scroll-top:hover { transform: translateY(-3px); }

@media (max-width: 640px) {
  .ch-scroll-top {
    width: 38px; height: 38px;
    bottom: 16px; right: 16px;
  }
}

/* ===== HIDE "Featured Tour" kicker on hero slider ===== */
.hero-slide .kicker,
.hero-slide .badge-featured,
.hero-slide [class*="featured"],
.hero-banner .kicker,
.hero .kicker { display: none !important; }

/* ===== Activities section — make cards look clickable ===== */
.activity-card,
.activities-card,
[class*="activity"] .card {
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.activity-card:hover,
.activities-card:hover,
[class*="activity"] .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}


/* ==========================================================================
   CROWNHILLS main.css — KingHills Rebuild Additions (v3)
   
   MERGE INSTRUCTIONS:
   Run merge-css.php in browser (localhost/wordpress/merge-css.php)
   — OR —
   1. Open main.css, go to END
   2. DELETE from "HIDE Featured Tour kicker" comment to file end (~20 lines)
   3. PASTE this entire file at the END of main.css
   4. Save
   ========================================================================== */


/* ==========================================================================
   A. KingHills-style HERO — background image + tagline + search bar
   ========================================================================== */
.ch-hero {
  position: relative;
  width: 100%;
  height: clamp(420px, 58vh, 580px);
  overflow: hidden;
  background: var(--brand-blue-dark);
  z-index: 1;
}

/* Slides */
.ch-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease), transform 7s ease-out;
  z-index: 1;
}
.ch-hero__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ch-hero__slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Overlay */
.ch-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(13, 31, 82, 0.20) 0%,
    rgba(13, 31, 82, 0.10) 40%,
    rgba(13, 31, 82, 0.50) 100%
  );
}

/* Content: tagline + search bar */
.ch-hero__content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}

.ch-hero__tagline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 28px;
  line-height: 1.2;
  max-width: 680px;
  animation: chFadeUp 0.8s var(--ease) both;
}

/* Search bar */
.ch-hero__search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--r-pill);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  animation: chFadeUp 0.8s var(--ease) 0.15s both;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ch-hero__search-input {
  flex: 1;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-700);
  background: transparent;
  border: none;
  outline: none;
}
.ch-hero__search-input::placeholder {
  color: var(--slate-400);
  font-weight: 400;
}
.ch-hero__search-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: var(--sh-gold);
  border: none;
  cursor: pointer;
  transition: transform var(--t), filter var(--t);
}
.ch-hero__search-btn:hover {
  transform: scale(1.08);
  filter: brightness(1.06);
}

/* Dots */
.ch-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}
.ch-hero__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--t);
}
.ch-hero__dots span.active {
  width: 26px;
  border-radius: var(--r-pill);
  background: var(--brand-gold);
}


/* ==========================================================================
   B. CIRCULAR LOCATION THUMBNAILS — "Best Top Rated Locations"
   ========================================================================== */
.ch-locations {
  padding: 40px 0 36px;
  background: #fff;
}

.ch-locations__title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 24px;
  padding-left: 4px;
}

/* Scrollable row */
.ch-locations__row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 18px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ch-locations__row::-webkit-scrollbar { display: none; }

/* Individual circular item */
.ch-loc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-decoration: none;
  min-width: 100px;
  transition: transform var(--t-fast);
}
.ch-loc-item:hover {
  transform: translateY(-5px);
}

.ch-loc-item__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--brand-gold-light);
  box-shadow: 0 4px 16px rgba(212, 167, 44, 0.22);
  transition: border-color var(--t), box-shadow var(--t);
}
.ch-loc-item:hover .ch-loc-item__img {
  border-color: var(--brand-gold);
  box-shadow: 0 8px 24px rgba(212, 167, 44, 0.4);
}
.ch-loc-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.ch-loc-item:hover .ch-loc-item__img img {
  transform: scale(1.12);
}

.ch-loc-item__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-700);
  text-align: center;
  line-height: 1.25;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ==========================================================================
   C. TRAVELLERS LOVE US — warm background testimonials
   ========================================================================== */
.ch-testimonials {
  padding: 48px 0 52px;
  background: linear-gradient(
    135deg,
    rgba(21, 50, 122, 0.06) 0%,
    rgba(212, 167, 44, 0.16) 50%,
    rgba(240, 207, 107, 0.20) 100%
  );
}

.ch-testimonials__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.ch-testimonials__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ch-testimonials__title-row h2 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--brand-blue);
  margin: 0;
}

.ch-testimonials__view-all {
  display: inline-flex;
  align-items: center;
  padding: 0.5em 1.4em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-blue);
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  transition: var(--t);
}
.ch-testimonials__view-all:hover {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
}

/* Testimonial slider */
.ch-testimonials__slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ch-testimonials__slider::-webkit-scrollbar { display: none; }

/* Testimonial card */
.ch-testi-card {
  flex: 0 0 auto;
  width: 340px;
  max-width: 85vw;
  scroll-snap-align: start;
  background: var(--brand-blue-dark);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: 0 8px 28px rgba(13, 31, 82, 0.25);
  transition: transform var(--t);
}
.ch-testi-card:hover {
  transform: translateY(-4px);
}

.ch-testi-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ch-testi-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-gold);
  flex-shrink: 0;
}

.ch-testi-card__info {
  flex: 1;
  min-width: 0;
}
.ch-testi-card__info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ch-testi-card__info span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.ch-testi-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.ch-testi-card__rating span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-gold);
}

.ch-testi-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ==========================================================================
   D. BOTTOM NAVIGATION BAR (mobile only)
   ========================================================================== */
.ch-bottom-nav {
  display: none; /* hidden on desktop */
}

@media (max-width: 992px) {
  .ch-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(13, 31, 82, 0.1);
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom, 0px));
  }

  .ch-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    padding: 6px 4px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--slate-500);
    text-decoration: none;
    transition: color var(--t-fast);
    -webkit-tap-highlight-color: transparent;
  }
  .ch-bottom-nav__item svg {
    stroke: var(--slate-400);
    transition: stroke var(--t-fast);
  }
  .ch-bottom-nav__item.active,
  .ch-bottom-nav__item:hover {
    color: var(--brand-blue);
  }
  .ch-bottom-nav__item.active svg,
  .ch-bottom-nav__item:hover svg {
    stroke: var(--brand-blue);
  }

  /* Content doesn't hide behind bottom nav */
  body { padding-bottom: 70px; }
  .whatsapp-float { bottom: 90px; }
  .back-to-top, .ch-scroll-top { bottom: 82px; }
  .side-float, .ch-float-btns { bottom: auto; top: 35%; }
}


/* ==========================================================================
   E. SECTION BACKGROUND VARIANTS
   ========================================================================== */
body {
  background: #f7f9fc;
}
.ch-section-warm {
  background: linear-gradient(180deg, #f0f4fa 0%, #e8eef8 100%);
}
.ch-section-cream {
  background: linear-gradient(180deg, #fbf8ef 0%, #f5f0e0 100%);
}


/* ==========================================================================
   F. ACTIVITY "Book Now" BUTTON
   ========================================================================== */
.activity-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 0.55em 1.2em;
  font-size: 0.88rem;
  font-weight: 700;
  color: #3a2d05;
  background: var(--grad-gold);
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: var(--sh-gold);
  transition: transform var(--t), box-shadow var(--t), filter var(--t);
}
.activity-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212, 167, 44, 0.5);
  filter: brightness(1.06);
}
.activity-card { cursor: pointer; }
.activity-card:hover .activity-book-btn {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.activity-card .more { display: none; }


/* ==========================================================================
   G. OLD HERO .pill — hide (correct selector)
   ========================================================================== */
.hero .pill {
  display: none !important;
}


/* ==========================================================================
   H. DESKTOP-SPECIFIC ENHANCEMENTS (>992px)
      Laptop pe professional look — bade circles, side-by-side testimonials
   ========================================================================== */
@media (min-width: 993px) {
  /* Hero — tall, grand, centered */
  .ch-hero {
    height: clamp(440px, 60vh, 620px);
  }
  .ch-hero__tagline {
    font-size: 2.8rem;
    margin-bottom: 32px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  }
  .ch-hero__search {
    max-width: 580px;
  }
  .ch-hero__search-input {
    padding: 20px 28px;
    font-size: 1.05rem;
  }

  /* Circular locations — bigger, wrapping grid on large screens */
  .ch-locations {
    padding: 48px 0 40px;
  }
  .ch-locations__title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 28px;
  }
  .ch-locations__row {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 28px;
    padding-bottom: 24px;
  }
  .ch-loc-item {
    min-width: 110px;
  }
  .ch-loc-item__img {
    width: 110px;
    height: 110px;
    border-width: 3.5px;
  }
  .ch-loc-item__name {
    font-size: 0.85rem;
    max-width: 110px;
  }

  /* Testimonials — wider cards, 3 visible */
  .ch-testimonials {
    padding: 56px 0 60px;
  }
  .ch-testimonials__slider {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 24px;
  }
  .ch-testi-card {
    width: calc(33.333% - 16px);
    max-width: 380px;
    min-width: 280px;
  }
}

/* Large desktop (1200px+) */
@media (min-width: 1201px) {
  .ch-hero { height: clamp(480px, 62vh, 660px); }
  .ch-hero__tagline { font-size: 3rem; }
  .ch-loc-item__img { width: 120px; height: 120px; }
  .ch-loc-item__name { font-size: 0.88rem; max-width: 120px; }
  .ch-loc-item { min-width: 120px; }
  .ch-locations__row { gap: 32px; }
}


/* ==========================================================================
   I. MOBILE SPACING & POLISH
   ========================================================================== */

/* --- Tablet (992px) --- */
@media (max-width: 992px) {
  .ch-hero {
    height: clamp(340px, 52vh, 460px);
  }
  .ch-hero__tagline {
    font-size: clamp(1.4rem, 4.5vw, 2.2rem);
  }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {
  .section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  /* Hero */
  .ch-hero {
    height: clamp(280px, 48vh, 380px);
  }
  .ch-hero__tagline {
    font-size: clamp(1.25rem, 5vw, 1.8rem);
    margin-bottom: 18px;
  }
  .ch-hero__search {
    max-width: 92%;
  }
  .ch-hero__search-input {
    padding: 14px 16px;
    font-size: 0.88rem;
  }
  .ch-hero__search-btn {
    width: 42px;
    height: 42px;
  }

  /* Circular locations — smaller */
  .ch-locations {
    padding: 24px 0 20px;
  }
  .ch-locations__title {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }
  .ch-locations__row {
    gap: 14px;
    padding-bottom: 12px;
  }
  .ch-loc-item__img {
    width: 74px;
    height: 74px;
  }
  .ch-loc-item__name {
    font-size: 0.7rem;
    max-width: 76px;
  }
  .ch-loc-item {
    min-width: 78px;
  }

  /* Section headers */
  .section-header { margin-bottom: 20px; }
  .section-title {
    font-size: clamp(1.25rem, 4.5vw, 1.7rem);
    margin-bottom: 4px;
  }
  .section-sub { font-size: 0.85rem; }
  .section-header-row { margin-bottom: 16px; gap: 10px; }

  /* Quotation */
  .quotation { padding: 36px 0; }

  /* Stats */
  .stats { padding: 36px 0; }
  .stats .header { margin-bottom: 22px; }
  .stat-item .icon { width: 60px; height: 60px; margin-bottom: 4px; }
  .stat-item .num { font-size: 1.5rem; }

  /* Testimonials */
  .ch-testimonials { padding: 28px 0 32px; }
  .ch-testi-card {
    width: 280px;
    padding: 16px;
  }

  /* Newsletter */
  .newsletter { padding: 36px 0; }

  /* Contact */
  .contact-map { min-height: 200px; }
  .contact-map iframe { min-height: 200px; }

  /* Activities */
  .grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .activity-card {
    padding: 18px 12px;
    gap: 8px;
  }
  .activity-card .icon { width: 52px; height: 52px; }
  .activity-card h4 { font-size: 0.92rem; }
  .activity-card .location { font-size: 0.8rem; }
  .activity-book-btn { font-size: 0.76rem; padding: 0.45em 0.9em; }

  /* Slider row */
  .slider-row { padding-bottom: 10px; gap: 14px; }

  /* Cards */
  .pkg-card { width: 82vw; flex-basis: 82vw; max-width: 340px; }
  .dest-card { width: 64vw; flex-basis: 64vw; max-width: 280px; }

  /* Old hero (if still present anywhere) */
  .hero { height: clamp(280px, 50vh, 380px); }
}

/* --- Small phone (480px) --- */
@media (max-width: 480px) {
  .section {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .ch-hero { height: clamp(240px, 44vh, 320px); }
  .ch-hero__tagline { font-size: 1.2rem; margin-bottom: 14px; }

  .ch-loc-item__img { width: 66px; height: 66px; }
  .ch-loc-item__name { font-size: 0.65rem; max-width: 68px; }
  .ch-loc-item { min-width: 70px; }
  .ch-locations__row { gap: 12px; }

  .pkg-card { width: 88vw; flex-basis: 88vw; }
  .pkg-card .actions { grid-template-columns: 1fr; }
  .dest-card { width: 56vw; flex-basis: 56vw; height: 200px; }
  .stats .grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .ch-testi-card { width: 260px; }
}

/* --- Tiny phone (360px) --- */
@media (max-width: 360px) {
  .ch-hero__tagline { font-size: 1.05rem; }
  .ch-hero__search-input { padding: 12px 14px; font-size: 0.82rem; }
  .grid.cols-4 { grid-template-columns: 1fr; gap: 10px; }
  .ch-loc-item__img { width: 60px; height: 60px; border-width: 2px; }
}

/* ===== Mobile: extra horizontal space / side-scroll rokna ===== */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Menu drawer aur overlay ko floating buttons ke upar rakhna */
.mobile-drawer { z-index: 10001; }
.drawer-overlay { z-index: 10000; }

/* ============================================================
   FIX PACK — menu drawer + mobile image sizes
   ============================================================ */

/* 1. Side scroll / extra space band */
html, body { overflow-x: hidden; max-width: 100%; }

/* 2. Drawer aur overlay ko sabse upar (floating buttons ke bhi upar) */
.mobile-drawer  { z-index: 10001 !important; }
.drawer-overlay { z-index: 10000 !important; }

/* 3. Saari images box ke andar hi rahein, bahar na niklein */
img { max-width: 100%; height: auto; }

/* 4. Mobile pe hero circular locations — sabhi ek jaise chhote */
@media (max-width: 768px) {
  .ch-loc-item,
  .ch-loc-item__img {
    width: 70px !important;
    min-width: 70px !important;
    height: 70px !important;
  }
  .ch-loc-item__img { flex: 0 0 70px; }
  .ch-loc-item__name { max-width: 70px; font-size: 0.68rem; }

  /* Package / destination cards ki images barabar height */
  .pkg-card .img,
  .pkg-card .img img { height: 170px !important; }
  .dest-card { height: 240px !important; }
  .dest-card img { height: 100% !important; object-fit: cover; }

  /* Testimonial avatar chhota */
  .ch-testi-card__avatar { width: 44px !important; height: 44px !important; }
}

/* ===== FIX: mobile drawer visible + on top ===== */
.mobile-drawer {
  z-index: 100000 !important;
  transition: transform .3s ease, visibility .3s ease !important;
}
.mobile-drawer.is-open {
  transform: translateX(0) !important;
  visibility: visible !important;
}
.drawer-overlay {
  z-index: 99999 !important;
}
.drawer-overlay.is-open {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ============ FORCE DRAWER TO BE VISIBLE WHEN OPEN ============ */
 
.mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 340px !important;
  max-width: 88vw !important;
  background: #ffffff !important;
  box-shadow: -20px 0 60px rgba(13, 31, 82, 0.25) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
 
  /* Closed state */
  transform: translateX(100%) !important;
  visibility: hidden !important;
  opacity: 0 !important;
 
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.3s ease,
              opacity 0.3s ease !important;
 
  z-index: 100001 !important;
}
 
/* Open state — MUST slide in fully visible */
.mobile-drawer.is-open,
.mobile-drawer.open,
.mobile-drawer.active {
  transform: translateX(0) !important;
  visibility: visible !important;
  opacity: 1 !important;
}
 
/* Body lock scroll when drawer open */
body.drawer-open {
  overflow: hidden !important;
}
 
/* ============ OVERLAY ============ */
 
.drawer-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(13, 31, 82, 0.55) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
  z-index: 100000 !important;
  cursor: pointer;
}
.drawer-overlay.is-open {
  opacity: 1 !important;
  visibility: visible !important;
}
 
/* ============ DRAWER HEAD + CONTENTS ============ */
 
.mobile-drawer .mobile-drawer__head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  background: linear-gradient(135deg, #1f47a8 0%, #15327a 55%, #0d1f52 100%) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 2 !important;
}
 
.mobile-drawer .mobile-drawer__head .site-logo img {
  height: 44px !important;
  border-radius: 8px !important;
}
 
.mobile-drawer .drawer-close {
  width: 40px !important;
  height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: none !important;
  cursor: pointer !important;
}
.mobile-drawer .drawer-close svg {
  stroke: #fff !important;
}
 
.mobile-drawer .container {
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}
 
.mobile-drawer .container > a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 8px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #15327a !important;
  border-bottom: 1px solid #e6e9f0 !important;
  text-decoration: none !important;
}
.mobile-drawer .container > a:last-child {
  border-bottom: none !important;
}
.mobile-drawer .container > a.book-now-btn {
  justify-content: center !important;
  color: #3a2d05 !important;
  border-bottom: none !important;
  margin-top: 10px !important;
}
 
.mobile-drawer .search-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding-bottom: 16px !important;
  margin-bottom: 8px !important;
  border-bottom: 1px solid #e6e9f0 !important;
}
/* Testimonial card ka top row — avatar hata diya, ab sirf info + rating */
.ch-testi-card__top {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}
 
.ch-testi-card__info {
  flex: 1 !important;
  min-width: 0 !important;
}
 
.ch-testi-card__info strong {
  display: block !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 2px !important;
}
 
.ch-testi-card__info span {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
}
 
/* Rating chip — gold badge style */
.ch-testi-card__rating {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 4px 10px !important;
  background: rgba(212, 167, 44, 0.2) !important;
  border: 1px solid var(--brand-gold) !important;
  border-radius: 20px !important;
  flex-shrink: 0 !important;
}
.ch-testi-card__rating span {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: var(--brand-gold-light) !important;
}
 
 
/* ==========================================================================
   BOARDING POINT — visual polish in package card locations line
   ========================================================================== */
 
.pkg-card .locations {
  align-items: center !important;
}
.pkg-card .locations strong {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
}

/* ============================================================
   HEADER V6 + LAYOUT COMPAT OVERRIDES — v1
   Append this at the VERY END of assets/css/main.css
   ============================================================
   Fixes:
   1. Compact inline search bar (labels hidden, transparent fields)
   2. Gold Book Now button (was pale)
   3. Floating buttons visible on right (ASK ME + B2B)
   4. Hero content overlay visible (tagline + subtitle + actions)
   ============================================================ */


/* ===== 1. COMPACT INLINE SEARCH (labels hidden, transparent fields) ===== */
.inline-search .field label,
.inline-search .field-inner label,
.inline-search label,
.inline-search .field-label,
.inline-search .field > .label {
  display: none !important;
}

.inline-search {
  background: #fff !important;
  border: 1px solid #e6e9f0 !important;
  border-radius: 999px !important;
  padding: 4px 5px 4px 6px !important;
  box-shadow: 0 2px 8px rgba(13,31,82,0.08) !important;
  display: flex !important;
  align-items: center !important;
  flex: 0 1 640px !important;
  margin: 0 !important;
}

.inline-search .field {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  flex: 1 !important;
  padding: 9px 18px !important;
  min-width: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.inline-search .field:first-of-type { flex: 1.4 !important; }

.inline-search .field svg {
  flex-shrink: 0 !important;
  stroke: #64748b !important;
  width: 17px !important;
  height: 17px !important;
}

.inline-search .field select,
.inline-search .field input,
.inline-search .field .form-select,
.inline-search .field .form-input,
.inline-search .field-inner select,
.inline-search .field-inner input,
.inline-search .field-inner .form-select,
.inline-search .field-inner .form-input {
  width: 100% !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #475569 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  line-height: 1.3 !important;
  min-height: unset !important;
  height: auto !important;
}

.inline-search .divider {
  width: 1px !important;
  height: 28px !important;
  background: #e6e9f0 !important;
  flex-shrink: 0 !important;
  border: none !important;
}

.inline-search .search-btn {
  flex-shrink: 0 !important;
  width: 44px !important;
  height: 44px !important;
  margin-left: 4px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #f0cf6b 0%, #d4a72c 55%, #b8881f 100%) !important;
  box-shadow: 0 8px 22px rgba(212,167,44,0.40) !important;
  border: none !important;
  cursor: pointer !important;
}
.inline-search .search-btn svg {
  stroke: #3a2d05 !important;
  width: 18px !important;
  height: 18px !important;
}


/* ===== 2. GOLD BOOK NOW BUTTON ===== */
.book-now-btn,
a.book-now-btn,
button.book-now-btn,
.nav-cta .book-now-btn,
.nav-right .book-now-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 0.6em 1.2em !important;
  white-space: nowrap !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  color: #3a2d05 !important;
  background: linear-gradient(135deg, #f0cf6b 0%, #d4a72c 55%, #b8881f 100%) !important;
  border-radius: 999px !important;
  border: 2px solid transparent !important;
  box-shadow: 0 8px 22px rgba(212,167,44,0.40) !important;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease !important;
}
.book-now-btn svg,
a.book-now-btn svg,
button.book-now-btn svg {
  stroke: #3a2d05 !important;
}
.book-now-btn:hover,
a.book-now-btn:hover,
button.book-now-btn:hover {
  color: #3a2d05 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 32px rgba(212,167,44,0.5) !important;
  filter: brightness(1.04) !important;
}


/* ===== 3. FLOATING SIDE BUTTONS VISIBLE (ASK ME + B2B on right) ===== */
.ch-float-btns {
  position: fixed !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.ch-float-btn {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 10px 16px !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 8px 0 0 8px !important;
  white-space: nowrap !important;
  box-shadow: -4px 0 12px rgba(0,0,0,0.15) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.ch-float-btn:hover {
  transform: translateX(-4px) !important;
  color: #fff !important;
}
.ch-float-wa {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  margin-bottom: 4px !important;
}
.ch-float-b2b {
  background: linear-gradient(135deg, #d4a72c, #b8860b) !important;
  color: #3a2d05 !important;
}
.ch-float-b2b:hover { color: #3a2d05 !important; }


/* ===== 4. HERO CONTENT OVERLAY VISIBLE (tagline + subtitle + actions) ===== */

/* Ensure hero slides are visible when active */
.hero .slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1) !important;
  z-index: 2 !important;
}

/* Force first slide visible if JS activation fails */
.hero .slide:first-of-type {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
}

/* Hero content layer on top of image */
.hero .overlay { z-index: 3 !important; }
.hero .content {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  z-index: 4 !important;
}

/* Hero inner elements — kill animation opacity 0 stuck state */
.hero .inner > * {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  visibility: visible !important;
}
.hero .inner .pill,
.hero .inner h1,
.hero .inner .sub,
.hero .inner .meta,
.hero .inner .actions {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  visibility: visible !important;
  display: block !important;
}
.hero .inner .actions {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}

/* Also fix ch-hero if front-page uses new markup */
.ch-hero__slide.active {
  opacity: 1 !important;
  transform: scale(1) !important;
  z-index: 2 !important;
}
.ch-hero__slide:first-of-type {
  opacity: 1 !important;
  z-index: 2 !important;
}
.ch-hero__tagline,
.ch-hero__search {
  opacity: 1 !important;
  animation: none !important;
  visibility: visible !important;
}

/* ============================================================
   MOBILE RESPONSIVE PATCH — v2
   Append this AFTER the previous main-css-fix block
   at the VERY END of assets/css/main.css
   ============================================================
   Fixes:
   1. Desktop search bar HIDDEN on mobile (<= 992px)
   2. Hamburger menu button VISIBLE on mobile
   3. Topbar hidden on mobile
   4. Clean compact mobile header (logo + hamburger only)
   ============================================================ */


/* ===== MOBILE (up to 992px) ===== */
@media (max-width: 992px) {

  /* Hide desktop-only elements */
  .inline-search,
  .topbar,
  .nav-row {
    display: none !important;
  }

  /* Header main row — compact on mobile */
  .header-main {
    min-height: 60px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    gap: 8px !important;
  }
  .site-logo img {
    height: 46px !important;
  }

  /* Hide desktop-only icon buttons on mobile (call, user), keep hamburger */
  .header-actions .icon-btn[title^="Call"],
  .header-actions .icon-btn[title="Log in"],
  .header-actions .icon-btn[title="Account"],
  .header-actions .flag-btn {
    display: none !important;
  }

  /* Hamburger menu button — force visible on mobile */
  .header-actions .icon-btn.js-drawer-toggle,
  .header-actions .icon-btn[title="Menu"],
  .header-actions .icon-btn.menu-toggle,
  .header-actions .js-drawer-toggle,
  .js-drawer-toggle,
  .menu-toggle,
  button.js-drawer-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #f1f5f9 !important;
    color: #15327a !important;
    border: none !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .header-actions .icon-btn.js-drawer-toggle svg,
  .js-drawer-toggle svg,
  .menu-toggle svg {
    stroke: #15327a !important;
    width: 22px !important;
    height: 22px !important;
  }

  /* Header actions row — align right */
  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
  }

  /* Body padding-top adjustment for compact mobile header */
  body.has-stuck-header { padding-top: 60px !important; }
}


/* ===== SMALL PHONES (up to 480px) ===== */
@media (max-width: 480px) {
  .header-main {
    min-height: 56px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .site-logo img {
    height: 40px !important;
  }
  .header-actions .icon-btn.js-drawer-toggle,
  .js-drawer-toggle {
    width: 38px !important;
    height: 38px !important;
  }
}


/* ===== DESKTOP (993px+) — keep inline-search visible ===== */
@media (min-width: 993px) {
  .inline-search {
    display: flex !important;
  }
}

/* ============================================================
   FLAG RESTORE PATCH — v3
   Append this at the VERY END of assets/css/main.css
   ============================================================
   Fix: Restore India flag icon on mobile header
   ============================================================ */

@media (max-width: 992px) {
  .header-actions .flag-btn,
  .flag-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 4px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .header-actions .flag-btn svg,
  .flag-btn svg {
    width: 28px !important;
    height: 20px !important;
    border-radius: 3px !important;
    box-shadow: 0 1px 2px rgba(13,31,82,0.06) !important;
  }
}

@media (max-width: 480px) {
  .header-actions .flag-btn svg,
  .flag-btn svg {
    width: 24px !important;
    height: 18px !important;
  }
}
/* ============================================================
   FINAL POLISH — v4 (multiple fixes)
   Append this at the VERY END of assets/css/main.css
   ============================================================
   Fixes:
   1. Logo — remove dark background tint
   2. Search button — force icon visible
   3. Circle location names — force visible (including 2nd row)
   4. Sticky header — don't cut heading text on scroll
   5. Footer social icons — brand gold (was orange)
   6. Scroll-top button — brand BLUE (was orange)
   7. Footer text — better contrast
   8. Hero — soft BLUE overlay on TOP (like KingHills orange)
   ============================================================ */


/* ===== 1. LOGO — transparent bg, no dark tint ===== */
.site-logo,
.site-logo a,
.mobile-drawer__head .site-logo,
.mobile-drawer__head .site-logo a {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.site-logo img {
  background: transparent !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}


/* ===== 2. SEARCH BUTTON — icon visible ===== */
.ch-hero__search-btn,
button.ch-hero__search-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}
.ch-hero__search-btn svg,
button.ch-hero__search-btn svg {
  stroke: #3a2d05 !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
/* Fallback magnifying glass emoji if SVG is missing */
.ch-hero__search-btn:empty::before {
  content: "🔍";
  font-size: 18px;
  line-height: 1;
  color: #3a2d05;
}


/* ===== 3. CIRCLE LOCATION NAMES — force visible everywhere ===== */
.ch-loc-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}
.ch-loc-item__name,
.ch-loc-item span,
.ch-loc-item .name,
.ch-loc-item p {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #15327a !important;
  font-weight: 600 !important;
  text-align: center !important;
  line-height: 1.25 !important;
  min-height: 1.4em !important;
  padding: 2px 0 !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .ch-loc-item__name,
  .ch-loc-item span,
  .ch-loc-item .name {
    font-size: 0.7rem !important;
    max-width: 80px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: break-word !important;
  }
  /* Give more vertical space between rows on mobile */
  .ch-locations__row {
    row-gap: 18px !important;
  }
}

@media (max-width: 480px) {
  .ch-loc-item__name {
    font-size: 0.65rem !important;
    max-width: 70px !important;
  }
}


/* ===== 4. STICKY HEADER — heading text NOT cut on scroll ===== */
h1, h2, h3,
.tds-hero h1,
.tours-hero h1,
.tcus-hero h1 {
  scroll-margin-top: 110px !important;
}

.tds-hero,
.tours-hero,
.tcus-hero {
  padding-top: 60px !important;
}

/* When sticky header is active, add extra top padding */
body.has-stuck-header .tds-hero,
body.has-stuck-header .tours-hero,
body.has-stuck-header .tcus-hero {
  padding-top: 100px !important;
}


/* ===== 5. FOOTER SOCIAL ICONS — brand GOLD (was orange) ===== */
.ch-footer-social a {
  border-color: #d4a72c !important;
  color: #d4a72c !important;
  background: transparent !important;
  transition: background 0.2s, color 0.2s !important;
}
.ch-footer-social a:hover {
  background: linear-gradient(135deg, #f0cf6b 0%, #d4a72c 100%) !important;
  color: #3a2d05 !important;
  border-color: #d4a72c !important;
}

/* Footer heading underline — gold gradient */
.ch-footer-col h4::after {
  background: linear-gradient(90deg, #f0cf6b 0%, #d4a72c 100%) !important;
  height: 3px !important;
}

/* Footer link hover — gold accent */
.ch-footer-col ul li a:hover,
.ch-footer-contact a:hover {
  color: #f0cf6b !important;
  padding-left: 6px !important;
}


/* ===== 6. SCROLL-TOP BUTTON — brand BLUE (was orange) ===== */
.ch-scroll-top,
button.ch-scroll-top,
#scrollTopBtn {
  background: linear-gradient(135deg, #1f47a8 0%, #15327a 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(21, 50, 122, 0.4) !important;
}
.ch-scroll-top:hover,
button.ch-scroll-top:hover,
#scrollTopBtn:hover {
  box-shadow: 0 6px 18px rgba(21, 50, 122, 0.55) !important;
  filter: brightness(1.08) !important;
}
.ch-scroll-top svg,
#scrollTopBtn svg {
  stroke: #ffffff !important;
}


/* ===== 7. FOOTER TEXT — better contrast, readable ===== */
.ch-footer-brand {
  color: #ffffff !important;
  font-weight: 800 !important;
}
.ch-footer-about {
  color: #cbd5e1 !important;
  line-height: 1.7 !important;
}
.ch-footer-col h4 {
  color: #ffffff !important;
  font-weight: 700 !important;
}
.ch-footer-col ul li a,
.ch-footer-contact p,
.ch-footer-contact a {
  color: #cbd5e1 !important;
}
.ch-footer-bottom p {
  color: #94a3b8 !important;
}


/* ===== 8. HERO — SOFT BLUE OVERLAY ON TOP (KingHills-style) ===== */
.ch-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(21, 50, 122, 0.55) 0%,
    rgba(31, 71, 168, 0.35) 15%,
    rgba(13, 31, 82, 0.10) 40%,
    rgba(13, 31, 82, 0.15) 70%,
    rgba(13, 31, 82, 0.55) 100%
  ) !important;
}

/* On mobile — stronger top blue for logo/menu visibility */
@media (max-width: 768px) {
  .ch-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(21, 50, 122, 0.65) 0%,
      rgba(31, 71, 168, 0.40) 20%,
      rgba(13, 31, 82, 0.10) 50%,
      rgba(13, 31, 82, 0.55) 100%
    ) !important;
  }
}

/* ============================================================
   FINAL POLISH — v5 (targeted fixes)
   Append this at the VERY END of assets/css/main.css
   ============================================================
   Fixes:
   A. Circle names UNDER images — force visible (height fix)
   B. Hero BLUE shade UPAR — stronger (like KingHills orange)
   C. Footer bottom copyright — space above mobile bottom-nav
   ============================================================ */


/* ===== A. CIRCLE NAMES — remove parent height constraint ===== */

/* Kill the height:70px !important that was hiding names */
.ch-loc-item,
a.ch-loc-item {
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  width: auto !important;
  min-width: 90px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  padding-bottom: 4px !important;
  overflow: visible !important;
}

.ch-loc-item__img {
  flex-shrink: 0 !important;
}

/* Force names visible with all possible selectors */
.ch-loc-item__name,
.ch-loc-item > span,
.ch-loc-item > p,
.ch-loc-item .name,
.ch-loc-item small,
a.ch-loc-item > span,
a.ch-loc-item > p {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #15327a !important;
  font-weight: 600 !important;
  text-align: center !important;
  line-height: 1.25 !important;
  min-height: 1.4em !important;
  height: auto !important;
  max-height: none !important;
  padding: 2px 0 !important;
  margin: 0 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  font-size: 0.85rem !important;
  word-break: break-word !important;
  -webkit-line-clamp: unset !important;
}

@media (max-width: 768px) {
  .ch-loc-item {
    min-width: 82px !important;
    max-width: 100px !important;
  }
  .ch-loc-item__name,
  .ch-loc-item > span,
  .ch-loc-item > p {
    font-size: 0.72rem !important;
    max-width: 90px !important;
  }

  /* More vertical breathing room between circle rows */
  .ch-locations__row {
    row-gap: 20px !important;
    gap: 16px 12px !important;
  }
}

@media (max-width: 480px) {
  .ch-loc-item {
    min-width: 74px !important;
  }
  .ch-loc-item__name,
  .ch-loc-item > span,
  .ch-loc-item > p {
    font-size: 0.66rem !important;
    max-width: 78px !important;
  }
}


/* ===== B. HERO — STRONG BLUE OVERLAY ON TOP (KingHills-style) ===== */
.ch-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(21, 50, 122, 0.90) 0%,       /* very strong blue at top */
    rgba(31, 71, 168, 0.75) 8%,
    rgba(21, 50, 122, 0.45) 20%,
    rgba(13, 31, 82, 0.15) 45%,
    rgba(13, 31, 82, 0.15) 70%,
    rgba(13, 31, 82, 0.55) 100%
  ) !important;
}

/* Even stronger on mobile — like KingHills orange band */
@media (max-width: 768px) {
  .ch-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(21, 50, 122, 0.92) 0%,
      rgba(31, 71, 168, 0.80) 12%,
      rgba(21, 50, 122, 0.50) 25%,
      rgba(13, 31, 82, 0.15) 50%,
      rgba(13, 31, 82, 0.55) 100%
    ) !important;
  }
}


/* ===== C. FOOTER BOTTOM — mobile space above bottom-nav ===== */
@media (max-width: 992px) {
  body {
    padding-bottom: 90px !important;  /* more space so footer doesn't chipko */
  }
  .ch-footer-bottom {
    padding: 22px 0 !important;
  }
  .ch-footer {
    padding-bottom: 24px !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 100px !important;
  }
  .ch-footer-bottom {
    padding: 24px 0 30px !important;
  }
  .ch-footer {
    margin-bottom: 30px !important;
  }
}

/* ============================================================
   FOOTER MOBILE STACK FIX — v6
   Append this at the VERY END of assets/css/main.css
   ============================================================
   Fix: Footer columns (Quick Links / Useful Links / Contact Us)
   ko mobile pe force STACK vertically karega — same line pe
   chipki hui nahi rahengi.
   ============================================================ */


/* ===== TABLET (768-992px) — 2 columns with proper gap ===== */
@media (max-width: 992px) {
  .ch-footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 24px !important;
    padding: 44px 20px 32px !important;
  }
}


/* ===== MOBILE (768px and below) — SINGLE COLUMN, STACKED ===== */
@media (max-width: 768px) {
  .ch-footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;  /* single column */
    gap: 32px !important;
    padding: 36px 20px 28px !important;
  }

  .ch-footer-col {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Add subtle divider between columns for visual separation */
  .ch-footer-col + .ch-footer-col {
    padding-top: 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  /* Column headings — proper spacing */
  .ch-footer-col h4 {
    margin-bottom: 14px !important;
    padding-bottom: 8px !important;
  }

  /* First column (About) — no border above */
  .ch-footer-col:first-child {
    padding-top: 0 !important;
    border-top: none !important;
  }

  /* Compact links list */
  .ch-footer-col ul li {
    margin-bottom: 8px !important;
  }
  .ch-footer-col ul li a {
    font-size: 0.9rem !important;
    padding: 4px 0 !important;
  }

  .ch-footer-contact p {
    margin-bottom: 8px !important;
    font-size: 0.9rem !important;
  }
}


/* ===== SMALL PHONE (480px and below) — extra breathing room ===== */
@media (max-width: 480px) {
  .ch-footer-grid {
    gap: 28px !important;
    padding: 32px 16px 24px !important;
  }
  .ch-footer-col + .ch-footer-col {
    padding-top: 20px !important;
  }
}

/* ============================================================
   HERO BLUE OVERLAY — AGGRESSIVE FIX v7
   Append at VERY END of assets/css/main.css
   ============================================================
   Ye 3 techniques use kar raha hai:
   1. Existing .ch-hero__overlay ko force blue (agar hai)
   2. .ch-hero pe pseudo ::before se blue band (fallback)
   3. Content (tagline + search) ko upar rakhna z-index se
   ============================================================ */


/* ===== 1. Force blue on any existing overlay div ===== */
.ch-hero__overlay,
.ch-hero .overlay,
.ch-hero .ch-hero__slide-overlay {
  background: linear-gradient(
    180deg,
    rgba(21, 50, 122, 0.85) 0%,
    rgba(31, 71, 168, 0.65) 15%,
    rgba(21, 50, 122, 0.35) 35%,
    rgba(13, 31, 82, 0.10) 55%,
    rgba(13, 31, 82, 0.15) 75%,
    rgba(13, 31, 82, 0.55) 100%
  ) !important;
  z-index: 3 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: absolute !important;
  inset: 0 !important;
}


/* ===== 2. FALLBACK — pseudo-element on .ch-hero ===== */
/* Ye guaranteed hai kaam karna — chahe HTML mein overlay div ho ya na ho */
.ch-hero {
  position: relative !important;
  overflow: hidden !important;
}

.ch-hero::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 55% !important;
  z-index: 8 !important;
  background: linear-gradient(
    180deg,
    rgba(21, 50, 122, 0.88) 0%,
    rgba(31, 71, 168, 0.72) 25%,
    rgba(21, 50, 122, 0.30) 65%,
    transparent 100%
  ) !important;
  pointer-events: none !important;
  display: block !important;
}

/* Optional: subtle blue at bottom too for depth */
.ch-hero::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 25% !important;
  z-index: 8 !important;
  background: linear-gradient(
    0deg,
    rgba(13, 31, 82, 0.55) 0%,
    transparent 100%
  ) !important;
  pointer-events: none !important;
}


/* ===== 3. Content (tagline + search) — force ABOVE blue overlay ===== */
.ch-hero__content {
  z-index: 15 !important;
  position: relative !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.ch-hero__tagline {
  position: relative !important;
  z-index: 16 !important;
  color: #ffffff !important;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4) !important;
}

.ch-hero__search {
  position: relative !important;
  z-index: 16 !important;
}

.ch-hero__dots {
  z-index: 12 !important;
}


/* ===== MOBILE — even stronger blue band on top ===== */
@media (max-width: 768px) {
  .ch-hero::before {
    height: 60% !important;
    background: linear-gradient(
      180deg,
      rgba(21, 50, 122, 0.92) 0%,
      rgba(31, 71, 168, 0.78) 30%,
      rgba(21, 50, 122, 0.35) 70%,
      transparent 100%
    ) !important;
  }
}


/* ============================================================
   END — Hero Blue Overlay Aggressive Fix v7
   ============================================================ */

   /* ============================================================
   HEADER BLUE BAND — v8
   Append at VERY END of assets/css/main.css
   ============================================================
   Fix: Mobile pe puri top area (header included) BLUE band
   dikhega — bilkul KingHills ke ORANGE band jaisa.
   ============================================================ */


/* ===== MOBILE (<=992px) — Header BLUE tinted background ===== */
@media (max-width: 992px) {

  .site-header {
    background: linear-gradient(180deg,
      rgba(21, 50, 122, 0.90) 0%,
      rgba(31, 71, 168, 0.78) 60%,
      rgba(21, 50, 122, 0.65) 100%
    ) !important;
    box-shadow: 0 2px 12px rgba(13, 31, 82, 0.15) !important;
    position: relative !important;
    z-index: 100 !important;
  }

  /* Icons — light circular backgrounds so they pop on blue */
  .header-actions .icon-btn,
  .header-actions button.icon-btn {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
  }
  .header-actions .icon-btn svg {
    stroke: #15327a !important;
  }

  /* Hamburger menu button — light bg, blue lines */
  .js-drawer-toggle,
  .header-actions .icon-btn.js-drawer-toggle,
  .header-actions .icon-btn[title="Menu"] {
    background: rgba(255, 255, 255, 0.95) !important;
  }
  .js-drawer-toggle svg,
  .header-actions .icon-btn.js-drawer-toggle svg {
    stroke: #15327a !important;
  }

  /* Flag button — transparent so flag colors show clearly */
  .flag-btn,
  .header-actions .flag-btn {
    background: transparent !important;
    box-shadow: none !important;
  }

  /* Logo — subtle white glow to stand out on blue */
  .site-logo img {
    background: transparent !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25)) !important;
  }
}


/* ===== MERGE with hero — smooth blue transition ===== */
@media (max-width: 992px) {
  /* Kill hero top margin so it starts right after blue header */
  .ch-hero {
    margin-top: 0 !important;
  }

  /* Hero top overlay — even stronger to merge with header */
  .ch-hero::before {
    height: 65% !important;
    background: linear-gradient(180deg,
      rgba(21, 50, 122, 0.85) 0%,
      rgba(31, 71, 168, 0.65) 30%,
      rgba(21, 50, 122, 0.25) 70%,
      transparent 100%
    ) !important;
  }
}


/* ===== DESKTOP — keep white header (unchanged) ===== */
@media (min-width: 993px) {
  .site-header {
    background: #ffffff !important;
  }
}

/* ============================================================
   HEADER POLISH — v9 (KingHills-style clean look)
   Append at VERY END of assets/css/main.css
   ============================================================
   Fixes:
   1. Logo — no more "box" look, subtle white glow ring
   2. Phone + Hamburger icons — transparent white with white icons
   3. Flag — clean minimal with white outline
   ============================================================ */


/* ===== MOBILE (<=992px) — clean blue theme ===== */
@media (max-width: 992px) {

  /* ===== LOGO — remove boxy look, add subtle white ring ===== */
  .site-logo,
  .site-logo a {
    background: transparent !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  .site-logo img {
    background: transparent !important;
    height: 44px !important;
    width: auto !important;
    border-radius: 10px !important;
    /* subtle white ring — makes logo look intentional, not boxy */
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.18),
      0 4px 14px rgba(0, 0, 0, 0.30) !important;
    filter: none !important;
  }


  /* ===== PHONE + HAMBURGER — transparent glass style with WHITE icons ===== */
  .header-actions .icon-btn,
  .header-actions button.icon-btn,
  .header-actions .icon-btn.js-drawer-toggle,
  .js-drawer-toggle {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
    color: #ffffff !important;
    width: 40px !important;
    height: 40px !important;
    transition: all 0.2s ease !important;
  }

  .header-actions .icon-btn svg,
  .header-actions button.icon-btn svg,
  .js-drawer-toggle svg {
    stroke: #ffffff !important;
    stroke-width: 2 !important;
  }

  /* Hover effect — brighter */
  .header-actions .icon-btn:hover,
  .js-drawer-toggle:hover {
    background: rgba(255, 255, 255, 0.28) !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
    transform: translateY(-1px) !important;
  }


  /* ===== FLAG — small clean with white outline ===== */
  .flag-btn,
  .header-actions .flag-btn {
    background: transparent !important;
    padding: 5px !important;
    box-shadow: none !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .flag-btn svg,
  .header-actions .flag-btn svg {
    width: 26px !important;
    height: 18px !important;
    border-radius: 3px !important;
    box-shadow:
      0 0 0 1.5px rgba(255, 255, 255, 0.5),
      0 2px 6px rgba(0, 0, 0, 0.25) !important;
  }


  /* Header actions row spacing */
  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }
}
/* ============================================================
   HEADER + HERO RESET — v10 (CLEAN BRAND LOOK)
   Append at VERY END of assets/css/main.css
   ============================================================
   Undo all experimental overlays, set clean brand-matching look:
   - Hero image saaf (no blue overlay on image)
   - Header solid blue gradient (brand banner)
   - Icons: white circles with blue icons (high contrast)
   - Logo: subtle white ring (intentional badge, not box)
   - Flag: simple clean
   ============================================================ */


/* ===== 1. KILL hero blue overlays (user doesn't want on slider) ===== */
.ch-hero::before,
.ch-hero::after {
  display: none !important;
  content: none !important;
  background: transparent !important;
  height: 0 !important;
}
.ch-hero__overlay,
.ch-hero .overlay {
  background: linear-gradient(
    180deg,
    rgba(13, 31, 82, 0.15) 0%,
    rgba(13, 31, 82, 0.05) 40%,
    rgba(13, 31, 82, 0.35) 100%
  ) !important;
}


/* ===== 2. MOBILE (<=992px) — Clean blue header banner ===== */
@media (max-width: 992px) {

  /* Header — solid brand blue gradient */
  .site-header {
    background: linear-gradient(135deg,
      #1f47a8 0%,
      #15327a 55%,
      #0d1f52 100%
    ) !important;
    box-shadow: 0 2px 14px rgba(13, 31, 82, 0.25) !important;
    position: relative !important;
    z-index: 100 !important;
  }


  /* ===== LOGO — subtle white ring border (intentional badge) ===== */
  .site-logo,
  .site-logo a {
    background: transparent !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  .site-logo img {
    background: transparent !important;
    height: 46px !important;
    width: auto !important;
    border-radius: 10px !important;
    border: 2px solid rgba(255, 255, 255, 0.28) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28) !important;
    filter: none !important;
  }


  /* ===== PHONE + HAMBURGER — WHITE solid circles with BRAND BLUE icons ===== */
  .header-actions .icon-btn,
  .header-actions button.icon-btn,
  .js-drawer-toggle,
  .header-actions .icon-btn.js-drawer-toggle {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: none !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.20) !important;
    color: #15327a !important;
    width: 42px !important;
    height: 42px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
  }
  .header-actions .icon-btn svg,
  .js-drawer-toggle svg,
  .header-actions button.icon-btn svg {
    stroke: #15327a !important;
    stroke-width: 2.5 !important;
    width: 20px !important;
    height: 20px !important;
    fill: none !important;
  }

  /* Icon hover — gold accent */
  .header-actions .icon-btn:hover,
  .js-drawer-toggle:hover {
    background: linear-gradient(135deg, #f0cf6b 0%, #d4a72c 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 5px 14px rgba(212, 167, 44, 0.35) !important;
  }
  .header-actions .icon-btn:hover svg,
  .js-drawer-toggle:hover svg {
    stroke: #3a2d05 !important;
  }


  /* ===== FLAG — clean small transparent ===== */
  .flag-btn,
  .header-actions .flag-btn,
  .header-actions button.flag-btn {
    background: transparent !important;
    padding: 4px !important;
    box-shadow: none !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .flag-btn svg,
  .header-actions .flag-btn svg {
    width: 28px !important;
    height: 20px !important;
    border-radius: 3px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.20) !important;
  }


  /* Header actions row */
  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
  }


  /* Compact header main row */
  .header-main {
    min-height: 66px !important;
    padding: 8px 14px !important;
    gap: 8px !important;
  }
}


/* ===== 3. DESKTOP — keep original white header (unchanged) ===== */
@media (min-width: 993px) {
  .site-header {
    background: #ffffff !important;
  }
  .site-header::before,
  .site-header::after {
    display: none !important;
    content: none !important;
  }
}


/* ============================================================
   END — Header + Hero Reset v10
   ============================================================ */
/* ============================================================
   MOBILE TEXT LOGO — v11 (KingHills-style)
   Append at VERY END of assets/css/main.css
   ============================================================
   Mobile pe boxy image logo hide karke — elegant TEXT LOGO
   with gold crown icon. Desktop pe image logo rahega same.
   ============================================================ */


/* ===== MOBILE (<=992px) — Text logo replacement ===== */
@media (max-width: 992px) {

  /* Hide the boxy image logo */
  .site-logo img,
  .site-logo picture,
  .site-logo svg {
    display: none !important;
  }

  /* Style the logo link as a text logo */
  .site-logo,
  .site-logo a,
  .site-header .site-logo a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
    line-height: 1 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    max-width: 240px !important;
  }

  /* Gold crown icon — via SVG data URI */
  .site-logo a::before {
    content: "" !important;
    display: inline-block !important;
    width: 28px !important;
    height: 28px !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f0cf6b'><path d='M5 16L3 5l5.5 5L12 4l3.5 6L21 5l-2 11H5zm14 3c0 .6-.4 1-1 1H6c-.6 0-1-.4-1-1v-1h14v1z'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35)) !important;
    flex-shrink: 0 !important;
  }

  /* White text logo */
  .site-logo a::after {
    content: "CROWNHILLS" !important;
    font-size: 1.15rem !important;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
    letter-spacing: 0.05em !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
  }
}


/* ===== SMALL PHONES (<=480px) — slightly smaller ===== */
@media (max-width: 480px) {
  .site-logo a::before {
    width: 24px !important;
    height: 24px !important;
  }
  .site-logo a::after {
    content: "CROWNHILLS" !important;
    font-size: 1rem !important;
  }
}

/* ============================================================
   MOBILE TEXT LOGO — FIX v12
   Append at VERY END of assets/css/main.css
   ============================================================
   Pichli baar pseudo-elements .site-logo a::before pe the.
   Agar HTML mein <a> nahi tha inside .site-logo, kuch dikhta hi
   nahi tha. Ab .site-logo::before/::after DIRECTLY pe attach hai
   — koi bhi structure ho, DIKHEGA HI.
   ============================================================ */


@media (max-width: 992px) {

  /* ===== Hide image / picture (baked-in dark blue box) ===== */
  .site-logo img,
  .site-logo picture,
  .site-logo > svg {
    display: none !important;
  }

  /* ===== Force .site-logo as inline-flex container ===== */
  .site-logo,
  a.site-logo,
  div.site-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Poppins', 'Segoe UI', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
    line-height: 1 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    min-height: auto !important;
    max-width: 240px !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* ===== Inner anchor (agar hai) — same flex behavior ===== */
  .site-logo > a,
  .site-logo a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: inherit !important;
    text-decoration: none !important;
    padding: 0 !important;
  }


  /* ===== GOLD CROWN ICON (::before) — attached directly to .site-logo ===== */
  .site-logo::before {
    content: "" !important;
    display: inline-block !important;
    width: 28px !important;
    height: 28px !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f0cf6b'><path d='M5 16L3 5l5.5 5L12 4l3.5 6L21 5l-2 11H5zm14 3c0 .6-.4 1-1 1H6c-.6 0-1-.4-1-1v-1h14v1z'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35)) !important;
    flex-shrink: 0 !important;
    vertical-align: middle !important;
    visibility: visible !important;
    opacity: 1 !important;
  }


  /* ===== WHITE "CROWNHILLS" TEXT (::after) — attached directly to .site-logo ===== */
  .site-logo::after {
    content: "CROWNHILLS" !important;
    display: inline-block !important;
    font-size: 1.15rem !important;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
    letter-spacing: 0.05em !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    font-family: 'Poppins', 'Segoe UI', sans-serif !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}


/* ===== SMALL PHONES (<=480px) — slightly compact ===== */
@media (max-width: 480px) {
  .site-logo::before {
    width: 24px !important;
    height: 24px !important;
  }
  .site-logo::after {
    font-size: 1rem !important;
    letter-spacing: 0.04em !important;
  }
}


/* ============================================================
   END — Mobile Text Logo Fix v12
   ============================================================ */

   /* ============================================================
   LOGO RESTORE + SEARCH BOX POLISH — v13
   Append at VERY END of assets/css/main.css
   ============================================================
   Fix:
   1. Original Crownhills IMAGE LOGO wapas + gold border ring
   2. Text logo (crown + CROWNHILLS) hata do
   3. Hero search box pe blue border + subtle shadow
   ============================================================ */


/* ===== 1. TEXT LOGO HATA DO (pichli v12 undo) ===== */
.site-logo::before,
.site-logo::after,
.site-logo a::before,
.site-logo a::after {
  display: none !important;
  content: none !important;
  background: none !important;
  visibility: hidden !important;
}


/* ===== 2. IMAGE LOGO WAPAS with GOLD BORDER RING (mobile) ===== */
@media (max-width: 992px) {

  /* Reset site-logo container */
  .site-logo,
  .site-logo a {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0 !important;
    background: transparent !important;
    gap: 0 !important;
  }

  /* Show image logo with premium framing */
  .site-logo img,
  .site-logo picture {
    display: block !important;
    height: 52px !important;
    width: auto !important;
    max-width: 140px !important;
    border-radius: 12px !important;
    /* Gold border ring — premium badge look */
    border: 2px solid rgba(240, 207, 107, 0.65) !important;
    /* Layered shadow for depth */
    box-shadow:
      0 0 0 3px rgba(255, 255, 255, 0.08),
      0 6px 18px rgba(0, 0, 0, 0.35) !important;
    filter: none !important;
    background: transparent !important;
  }
}


/* ===== 3. HERO SEARCH BOX — Blue border + subtle shadow ===== */
.ch-hero__search {
  border: 2.5px solid #15327a !important;
  box-shadow:
    0 10px 34px rgba(21, 50, 122, 0.30),
    0 0 0 4px rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.ch-hero__search:focus-within {
  border-color: #d4a72c !important;
  box-shadow:
    0 12px 40px rgba(212, 167, 44, 0.35),
    0 0 0 4px rgba(240, 207, 107, 0.2) !important;
}

/* Search input inside — clean text */
.ch-hero__search-input {
  color: #15327a !important;
  font-weight: 500 !important;
}
.ch-hero__search-input::placeholder {
  color: #64748b !important;
  font-weight: 400 !important;
}


/* ===== SMALL PHONES — Slightly smaller logo ===== */
@media (max-width: 480px) {
  .site-logo img {
    height: 46px !important;
    max-width: 120px !important;
  }
}


/* ============================================================
   END — Logo Restore + Search Polish v13
   ============================================================ */
   /* ============================================================
   STICKY HEADER OVERLAP FIX — v14
   Append at VERY END of assets/css/main.css
   ============================================================
   Fix: Sticky mobile header ab page ke top content
   (Packages heading, Kashmir subtitle, etc.) ko cover
   nahi karega. Sab hero sections ko proper top padding
   diya hai.
   ============================================================ */


/* ===== HTML — scroll-padding-top for anchor jumps ===== */
html {
  scroll-padding-top: 100px !important;
  scroll-behavior: smooth !important;
}


/* ===== MOBILE (<=992px) — Hero sections top padding ===== */
@media (max-width: 992px) {
  html {
    scroll-padding-top: 90px !important;
  }

  /* Tour listing hero (Packages, Kashmir tours, etc.) */
  .tours-hero {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }

  /* Tour single (detail) hero */
  .tds-hero {
    padding-top: 90px !important;
  }

  /* Customized tour enquiry hero */
  .tcus-hero {
    padding-top: 90px !important;
    padding-bottom: 40px !important;
  }

  /* B2B partner hero */
  .b2b-hero {
    padding-top: 90px !important;
  }

  /* Destination page hero */
  .destination-hero,
  .single-destination-hero,
  section.hero-mini {
    padding-top: 90px !important;
  }

  /* Any content section that appears right after header */
  .site-main > section:first-child,
  main > section:first-child {
    padding-top: 90px !important;
  }
}


/* ===== SMALL PHONES (<=480px) ===== */
@media (max-width: 480px) {
  html {
    scroll-padding-top: 80px !important;
  }

  .tours-hero,
  .tds-hero,
  .tcus-hero,
  .b2b-hero {
    padding-top: 80px !important;
  }
}


/* ===== MOBILE DRAWER — proper top offset for content ===== */
@media (max-width: 992px) {
  .mobile-drawer {
    top: 0 !important;
    padding-top: 0 !important;
  }

  /* Drawer header stays sticky at top of drawer */
  .mobile-drawer .mobile-drawer__head {
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
    background: linear-gradient(135deg, #1f47a8 0%, #15327a 55%, #0d1f52 100%) !important;
  }

  /* Drawer scrollable content */
  .mobile-drawer .container {
    padding-top: 20px !important;
    padding-bottom: 40px !important;
    overflow-y: auto !important;
  }
}


/* ============================================================
   END — Sticky Header Overlap Fix v14
   ============================================================ */

   /* ============================================================
   SEAMLESS BLUE FLOW — v15 (header + slider merge)
   Append at VERY END of assets/css/main.css
   ============================================================
   Fix: Header aur slider ke beech ki VISIBLE LINE ko hatana
   Blue shade smoothly flow karega header se slider mein — bilkul
   KingHills orange flow jaisa. NO edge, NO shadow, NO gap.
   ============================================================ */


/* ===== MOBILE (<=992px) — Seamless blue flow ===== */
@media (max-width: 992px) {

  /* 1. HEADER — no bottom edge, gradient ends smoothly */
  .site-header {
    background: linear-gradient(180deg,
      #1f47a8 0%,
      #15327a 100%
    ) !important;
    box-shadow: none !important;
    border-bottom: none !important;
    border: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* 2. HERO — starts right below header, no top margin/gap */
  .ch-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border: none !important;
    border-top: none !important;
  }

  /* 3. Kill existing overlay (usually has hard edge) */
  .ch-hero__overlay {
    background: transparent !important;
    display: none !important;
  }

  /* 4. CONTINUOUS BLUE FLOW — top of hero starts SAME color as header bottom */
  .ch-hero::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 60% !important;
    /* Starts AT #15327a (same as header bottom), fades down to transparent */
    background: linear-gradient(180deg,
      rgba(21, 50, 122, 0.95) 0%,      /* solid blue at very top — merges with header */
      rgba(21, 50, 122, 0.75) 15%,
      rgba(21, 50, 122, 0.45) 35%,
      rgba(21, 50, 122, 0.20) 60%,
      transparent 100%
    ) !important;
    z-index: 5 !important;
    pointer-events: none !important;
  }

  /* Kill the extra bottom overlay to reduce clutter */
  .ch-hero::after {
    display: none !important;
    content: none !important;
  }

  /* 5. Hero content stays ABOVE the blue overlay */
  .ch-hero__content {
    z-index: 10 !important;
    position: relative !important;
  }
  .ch-hero__tagline,
  .ch-hero__search {
    z-index: 11 !important;
    position: relative !important;
  }
  .ch-hero__dots {
    z-index: 10 !important;
  }
}


/* ============================================================
   END — Seamless Blue Flow v15
   ============================================================ */
   /* ============================================================
   PERFECT SEAMLESS FLOW — v16
   Append at VERY END of assets/css/main.css
   ============================================================
   Fix: Header ka SOLID blue aur hero ka semi-transparent blue
   ke beech subtle line ko fix karo. Hero ka top 12% PURA SOLID
   blue karo (jo header ke bottom se bilkul match kare).
   ============================================================ */


@media (max-width: 992px) {

  /* ===== HEADER — solid blue bottom, no edge ===== */
  .site-header {
    background: linear-gradient(180deg,
      #1f47a8 0%,
      #15327a 100%
    ) !important;
    box-shadow: none !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }


  /* ===== HERO — no top edge, no gap ===== */
  .ch-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    outline: none !important;
    position: relative !important;
    overflow: hidden !important;
  }


  /* ===== KILL any existing overlay divs ===== */
  .ch-hero__overlay,
  .ch-hero .overlay {
    background: transparent !important;
    display: none !important;
  }


  /* ===== PERFECT SEAMLESS OVERLAY ===== */
  /* Top 12% is PURE SOLID BLUE — matches header bottom exactly */
  /* Then gradual fade */
  .ch-hero::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: -1px !important;                  /* -1px to overlap header edge */
    left: 0 !important;
    right: 0 !important;
    height: 65% !important;
    background: linear-gradient(180deg,
      #15327a 0%,                          /* SOLID blue - matches header */
      #15327a 12%,                         /* stays solid for 12% - no line */
      rgba(21, 50, 122, 0.85) 22%,
      rgba(21, 50, 122, 0.55) 38%,
      rgba(21, 50, 122, 0.25) 60%,
      rgba(21, 50, 122, 0.10) 80%,
      transparent 100%
    ) !important;
    z-index: 5 !important;
    pointer-events: none !important;
    border: none !important;
    outline: none !important;
  }


  /* ===== HERO CONTENT stays ABOVE overlay ===== */
  .ch-hero__content {
    z-index: 10 !important;
    position: relative !important;
    padding-top: 20px !important;          /* push content down from solid area */
  }
  .ch-hero__tagline,
  .ch-hero__search {
    z-index: 11 !important;
    position: relative !important;
  }
  .ch-hero__dots {
    z-index: 10 !important;
  }
}


/* ============================================================
   END — Perfect Seamless Flow v16
   ============================================================ */
/* ============================================================
   END — Mobile Text Logo v11
   ============================================================ */

