/*
  Chardham.com Revamp
  Spiritual palette: Saffron + Indigo + Gold + warm sandstone
  Mobile-first.
*/
html{
  scroll-behavior: smooth;
}

:root{
  --rv-bg: #fbf6ee;            /* warm off-white */
  --rv-card: rgba(255,255,255,.86);
  --rv-text: #1b1b1f;
  --rv-muted: rgba(27,27,31,.72);
  --rv-indigo: #131a3a;
  --rv-indigo2: #0b0f24;
  --rv-saffron: #e08b1b;
  --rv-saffron2: #f0b04a;
  --rv-gold: #d7b35b;
  --rv-border: rgba(19,26,58,.12);
  --rv-shadow: 0 18px 50px rgba(11,15,36,.18);
  --rv-radius: 18px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--rv-text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(224,139,27,.22), transparent 60%),
              radial-gradient(900px 550px at 90% 10%, rgba(19,26,58,.18), transparent 55%),
              var(--rv-bg);
  overflow-x: hidden;
}

.revamp-wrapper{overflow-x:hidden;}

/* Make revamp independent of Bootstrap/legacy container rules */
#revamp .container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
@media (min-width: 1200px){
  #revamp .container{padding:0 22px;}
}
@media (max-width: 980px){
  .rv-nav{gap:14px;}
  .rv-nav a, .rv-dd-btn{padding:10px 8px;}
}

/* Top bar */
/* Enquire Now – primary CTA */
.rv-nav a.rv-enquire-btn{
  background: linear-gradient(135deg, var(--rv-saffron), var(--rv-saffron2));
  color: #1c1205;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .3px;
  box-shadow: 0 12px 30px rgba(224,139,27,.35);
  border: 1px solid rgba(224,139,27,.45);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.rv-nav a.rv-enquire-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(224,139,27,.45);
  filter: brightness(1.03);
}
rv-dd-btn
.rv-topbar{
  position:sticky;
  top:0;
  z-index:999;
  background: linear-gradient(90deg, rgba(255,248,234,.96), rgba(255,238,214,.96));
  border-bottom: 1px solid rgba(223,156,56,.35);
  backdrop-filter: blur(10px);
}
.rv-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:12px;
}
.rv-brand{display:flex;align-items:center;gap:10px;color:var(--rv-indigo);}
.rv-brand-mark{font-size:22px;}
.rv-brand-text{
  font-weight:800;
  letter-spacing:.2px;
  font-size:14px;
  color:rgba(19,26,58,.95);
}
.rv-top-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end;}
.rv-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 14px;
  border-radius: 999px;
 background: rgba(255,255,255,.10);
  border: 0;
  color: #fff;
  font-weight: 700;
  font-size: 13px;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: none;   /* remove heavy outline look */
}
.rv-pill:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.18);
}
.rv-pill i{
  font-size: 15px;
  opacity: .9;
}
.rv-pill-wa{border-color: rgba(240,176,74,.35);}
.rv-pill-mail{border-color: rgba(215,179,91,.25);}

/* Header */
.rv-header{
  position:sticky;
  top: var(--rv-topbar-h, 48px); /* below topbar */
  z-index:998;
  background: rgba(251,246,238,.75);
  border-bottom: 1px solid rgba(19,26,58,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.rv-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:22px;
}
.rv-logo{flex:0 0 auto; display:flex; flex-direction:column; text-decoration:none;}
.rv-logo-title{
  font-family: Raleway, sans-serif;
  font-weight:900;
  letter-spacing:.6px;
  font-size:32px;
  line-height:1;
  background: linear-gradient(90deg, var(--rv-indigo), rgba(224,139,27,.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rv-logo-sub{font-size:14px;color:rgba(19,26,58,.78);margin-top:4px;font-weight:700;}

.rv-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:26px;                 
  flex:1 1 auto;            
  white-space:nowrap;      
}
.rv-nav a{
  display:inline-flex;
  align-items:center;
  padding:10px 10px;        
  line-height:1;
  color:rgba(19,26,58,.86);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  letter-spacing:.2px;
}
.rv-nav a:hover{color:var(--rv-indigo);}

/* Dropdown */
.rv-dd{position:relative; display:inline-flex; align-items:center;}
.rv-dd-btn{
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 800;
  color: rgba(19,26,58,.86);
  transition: background .15s ease, color .15s ease;
}
.rv-dd:hover .rv-dd-btn,
.rv-dd.open .rv-dd-btn{
  background: rgba(224,139,27,.12);
  color: var(--rv-indigo);
}
.rv-dd-btn i{
  font-size: 12px;
  opacity: .7;
}

.rv-dd-btn:hover{background:rgba(19,26,58,.06); color:var(--rv-indigo);}
.rv-dd-menu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width: 280px;
  padding:10px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(19,26,58,.12);
  box-shadow: var(--rv-shadow);
  border-radius: 16px;
  display:none;
  z-index: 2000;
}
.rv-dd-menu a{
  display:block;
  padding:10px 10px;
  border-radius: 12px;
  font-weight:700;
  color:rgba(19,26,58,.88);
}
.rv-dd-menu a:hover{background:rgba(224,139,27,.10); color:var(--rv-indigo);} 
.rv-dd-sep{height:1px; background:rgba(19,26,58,.10); margin:8px 6px;}
.rv-dd-hd{padding:8px 10px 6px; font-size:11px; letter-spacing:.9px; text-transform:uppercase; color:rgba(19,26,58,.55); font-weight:900;}
.rv-dd.open .rv-dd-menu{display:block;}
/* Header Enquire Now – Primary CTA */
.rv-nav-cta{
  flex: 0 0 auto;
  margin-left: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    var(--rv-saffron),
    var(--rv-saffron2)
  );

  color: #1c1205;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .3px;
  text-decoration: none;

  border: 1px solid rgba(224,139,27,.45);
  box-shadow: 0 14px 36px rgba(224,139,27,.35);

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

/* Hover */
.rv-nav-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 46px rgba(224,139,27,.45);
  filter: brightness(1.04);
}

/* Keyboard accessibility */
.rv-nav-cta:focus{
  outline: none;
  box-shadow:
    0 0 0 4px rgba(224,139,27,.25),
    0 20px 46px rgba(224,139,27,.45);
}


/* Burger */
.rv-burger{display:none; background:transparent; border:0; width:42px; height:36px; border-radius:10px;}
.rv-burger span{display:block; height:2px; background:rgba(19,26,58,.85); margin:7px 6px; border-radius:2px;}

/* Hero */
.rv-hero{padding:26px 0 10px;}
.rv-hero-grid{
  display:grid;
  grid-template-columns: 1.5fr .9fr;
  gap:18px;
  align-items:stretch;
}

.rv-hero-media{
  position:relative;
  min-height: 430px;
  border-radius: var(--rv-radius);
  overflow:hidden;
  box-shadow: var(--rv-shadow);
  background:
    radial-gradient(900px 550px at 20% 10%, rgba(224,139,27,.35), transparent 55%),
    linear-gradient(180deg, rgba(11,15,36,.55), rgba(11,15,36,.65));
}
.rv-hero-media::before{
  content:"";
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
  transition: opacity .8s ease, transform 2.8s ease;
  opacity: 1;
  filter: saturate(1.08) contrast(1.05);
}
.rv-hero-media.rv-slide-anim::before{transform: scale(1.08);}

.rv-hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(19,26,58,.85) 10%, rgba(19,26,58,.35) 55%, rgba(224,139,27,.22) 100%);
}

.rv-hero-content{
  position:relative;
  z-index:2;
  padding:28px 28px 22px;
  max-width: 640px;
}

.rv-badges{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:14px;}
.rv-badge{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  color:#fff;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
}

/* Typography refinements (mobile-friendly, no edge-cuts) */
h1,h2,h3,h4{word-break:break-word;}
.rv-section-head h2{font-size:clamp(22px, 2.4vw, 34px); line-height:1.12;}
.rv-section-head p{max-width:68ch;}

/* How it works */
.rv-how-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.rv-how-card{
  background: rgba(255,255,255,.86);
  border:1px solid rgba(19,26,58,.12);
  border-radius: var(--rv-radius);
  padding:16px;
  box-shadow: 0 10px 26px rgba(11,15,36,.08);
}
.rv-how-step{
  width:34px;height:34px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(224,139,27,.28), rgba(19,26,58,.12));
  margin-bottom:10px;
}
.rv-how-card h3{margin:0 0 6px; font-size:16px;}
.rv-how-card p{margin:0; color:var(--rv-muted); font-size:13px;}

/* Trust strip */
.rv-trust{padding:0 0 10px;}
.rv-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.rv-trust-item{
  display:flex;gap:12px;align-items:flex-start;
  background: rgba(255,255,255,.78);
  border:1px solid rgba(19,26,58,.10);
  border-radius: 16px;
  padding:14px;
}
.rv-trust-ic{font-size:18px; line-height:1;}
.rv-trust-title{font-weight:900; font-size:13px; color:rgba(19,26,58,.92);}
.rv-trust-sub{font-size:12px; color:rgba(19,26,58,.68);}

/* Read more (welcome) */
.rv-readmore{
  margin-top:10px;
  border:1px solid rgba(19,26,58,.16);
  background: rgba(19,26,58,.04);
  color:rgba(19,26,58,.86);
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  cursor:pointer;
}
.rv-more{transition:max-height .35s ease, opacity .35s ease;}

/* Package cards (uniform, faster understanding) */
.rv-pack{display:block; text-decoration:none;}
.rv-pack-img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}
.rv-pack-body{padding:14px 14px 16px;}
.rv-pack-top{display:flex; align-items:center; justify-content:space-between; gap:10px;}
.rv-tag{
  font-size:11px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(19,26,58,.08);
  border:1px solid rgba(19,26,58,.12);
  color:rgba(19,26,58,.9);
  white-space:nowrap;
}
.rv-tag-pop{background: rgba(224,139,27,.16); border-color: rgba(224,139,27,.28);}
.rv-pack-meta{display:flex; flex-wrap:wrap; gap:8px 10px; margin-top:10px; color:rgba(19,26,58,.74); font-size:12px; font-weight:800;}
.rv-pack-incl{margin-top:10px; color:rgba(27,27,31,.72); font-size:12px;}

/* FAQ */
.rv-faq-list{display:grid; gap:12px;}
.rv-faq-item{
  background: rgba(255,255,255,.82);
  border:1px solid rgba(19,26,58,.12);
  border-radius: 16px;
  padding: 0;
  overflow:hidden;
}
.rv-faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:14px 14px;
  font-weight:900;
  color:rgba(19,26,58,.92);
}
.rv-faq-item summary::-webkit-details-marker{display:none;}
.rv-faq-body{padding:0 14px 14px; color:rgba(27,27,31,.78); line-height:1.6;}

/* Mobile bottom action bar */
.rv-mobile-bar{display:none;}


.rv-hero h1{
  margin:0;
  font-family: Raleway, sans-serif;
  font-weight:900;
  letter-spacing:.4px;
  font-size:42px;
  line-height:1.08;
  color:#fff;
}
.rv-hero p{margin:12px 0 0; color: rgba(255,255,255,.86); font-size:15.5px; line-height:1.55; max-width: 540px;}

.rv-hero-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px;}

.rv-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  padding:12px 14px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.rv-btn:hover{transform: translateY(-1px);}

.rv-btn-primary{
  background: linear-gradient(135deg, var(--rv-saffron), var(--rv-saffron2));
  color:#1c1205;
  box-shadow: 0 18px 40px rgba(224,139,27,.25);
}

.rv-btn-ghost{
  background: rgba(255,255,255,.10);
  color:#fff;
  border-color: rgba(255,255,255,.16);
}

.rv-btn-block{width:100%;}

.rv-dots{
  position:absolute;
  left:22px;
  bottom:18px;
  display:flex;
  gap:8px;
  z-index:3;
}
.rv-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.18);
  opacity:.85;
}
.rv-dot.active{background: linear-gradient(135deg, var(--rv-saffron), var(--rv-saffron2)); border-color: rgba(240,176,74,.6);}

/* Form card */
.rv-formcard{
  border-radius: var(--rv-radius);
  background: rgba(255,255,255,.70);
  border:1px solid rgba(19,26,58,.12);
  box-shadow: 0 18px 46px rgba(11,15,36,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding:18px;
}
.rv-form-head{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:12px;}
.rv-form-head h3{margin:0;font-family: Raleway, sans-serif;font-weight:900;color:var(--rv-indigo);}
.rv-form-head p{margin:4px 0 0;color:var(--rv-muted);font-size:13px;}
.rv-form-icon{width:44px;height:44px;border-radius:14px;display:flex;align-items:center;justify-content:center;background: rgba(224,139,27,.16);border:1px solid rgba(224,139,27,.18);font-size:20px;}

.rv-form label{display:block;margin-bottom:10px;}
.rv-form span{display:block;font-size:12px;font-weight:800;color:rgba(19,26,58,.78);margin-bottom:6px;}
.rv-form input, .rv-form select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(19,26,58,.14);
  background: rgba(255,255,255,.88);
  outline:none;
}
.rv-form input:focus, .rv-form select:focus{border-color: rgba(224,139,27,.55); box-shadow: 0 0 0 4px rgba(224,139,27,.14);}
.rv-form-note{margin:10px 0 0; font-size:11.5px; color:rgba(19,26,58,.62); line-height:1.45;}

/* Strip */
.rv-strip{padding: 12px 0 0;}
.rv-strip-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(224,139,27,.14), rgba(19,26,58,.08));
  border: 1px solid rgba(19,26,58,.10);
}
.rv-strip-badge{
  font-weight:900;
  font-family: Raleway, sans-serif;
  color:#1c1205;
  background: linear-gradient(135deg, var(--rv-saffron), var(--rv-saffron2));
  padding:7px 10px;
  border-radius:999px;
  white-space:nowrap;
}
.rv-strip-text{color:rgba(19,26,58,.85); font-weight:700; font-size:13px; line-height:1.3;}
.rv-strip-cta{white-space:nowrap; text-decoration:none; font-weight:900; color:var(--rv-indigo); padding:10px 12px; border-radius:14px; background: rgba(255,255,255,.65); border:1px solid rgba(19,26,58,.10);}

/* Sections */
.rv-section{padding: 36px 0;}
.rv-section-head{margin-bottom:14px;}
.rv-section-head h2{margin:0; font-family: Raleway, sans-serif; font-weight:900; color:var(--rv-indigo);}
.rv-section-head p{margin:8px 0 0; color:var(--rv-muted); font-weight:700;}

.rv-two{display:grid;grid-template-columns: 1.1fr .9fr; gap:18px;}
.rv-card{border-radius: var(--rv-radius); background: var(--rv-card); border:1px solid var(--rv-border); box-shadow: 0 18px 46px rgba(11,15,36,.10); padding:22px;}

.rv-about h2{margin:0 0 10px; font-family: Raleway, sans-serif; font-weight:900; color:var(--rv-indigo);}
.rv-about p{color:rgba(19,26,58,.78); line-height:1.65;}
.rv-points{list-style:none;padding:0;margin:14px 0 0;display:grid;gap:10px;}
.rv-points li{display:flex;gap:10px;align-items:flex-start;color:rgba(19,26,58,.86);font-weight:700;}
.rv-pt{width:28px;height:28px;border-radius:10px;display:flex;align-items:center;justify-content:center;background: rgba(215,179,91,.14);border:1px solid rgba(215,179,91,.20);}
.rv-link{display:inline-flex;align-items:center;gap:8px;text-decoration:none;font-weight:900;color:var(--rv-indigo);} 

/* Reviews */
.rv-rev-head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;}
.rv-rev-head h2{margin:0;font-family: Raleway, sans-serif;font-weight:900;color:var(--rv-indigo);}
.rv-stars{color: var(--rv-gold); font-weight:900; letter-spacing:1px;}
.rv-rev-window{margin-top:14px; height: 260px; overflow:hidden; border-radius:16px; background: rgba(19,26,58,.04); border: 1px solid rgba(19,26,58,.08);}
.rv-rev-track{display:flex;flex-direction:column; gap:12px; padding:14px; animation: rvScroll 16s linear infinite;}
.rv-rev-window:hover .rv-rev-track{animation-play-state: paused;}
.rv-rev{padding:14px;border-radius:16px;background: rgba(255,255,255,.82);border:1px solid rgba(19,26,58,.10);} 
.rv-rev p{margin:0;color:rgba(19,26,58,.80);line-height:1.55;font-weight:700;}
.rv-rev-meta{margin-top:10px;font-weight:900;color:rgba(19,26,58,.78);} 
@keyframes rvScroll{0%{transform:translateY(0);}100%{transform:translateY(-50%);}}

.rv-rev-foot{margin-top:12px;}

/* Packages grid */
.rv-grid{
  align-items: stretch;
}

.rv-pack{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rv-pack-body{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rv-grid{display:grid;grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:16px;}
.rv-pack{display:block;text-decoration:none;color:inherit;border-radius: var(--rv-radius); overflow:hidden; border:1px solid rgba(19,26,58,.10); background: rgba(255,255,255,.78); box-shadow: 0 18px 46px rgba(11,15,36,.10); transition: transform .15s ease;}
.rv-pack:hover{transform: translateY(-2px);} 
.rv-pack-img{height: 150px; width:100%; object-fit:cover; display:block; filter: saturate(1.06) contrast(1.04);} 
.rv-pack-body{padding:14px;}
.rv-pack-title{font-family: Raleway, sans-serif; font-weight:900; color:var(--rv-indigo);}
.rv-pack-sub{margin-top:6px;color:rgba(19,26,58,.72);font-weight:700;font-size:12.8px;line-height:1.35;}
.rv-pack-cta{margin-top:10px;font-weight:900;color: rgba(224,139,27,.95);} 

/* Welcome section (image + expanded text) */
.rv-welcome-card{padding:0; overflow:hidden;}
.rv-welcome-grid{display:grid; grid-template-columns:1fr;}
.rv-welcome-img{min-height:260px; background-size:cover; background-position:center; filter:saturate(1.05) contrast(1.03);} 
.rv-welcome-body{padding:24px;}
.rv-welcome-body .rv-lead{font-size:16px;color:rgba(19,26,58,.9);line-height:1.55;}

@media (min-width: 992px){
  .rv-welcome-grid{grid-template-columns: 0.95fr 1.05fr;}
  .rv-welcome-img{min-height:100%;}
  .rv-welcome-body{padding:34px;}
}

/* Reviews + quote layout */
.rv-quote{position:relative; overflow:hidden;}
.rv-quote-top{display:inline-flex;align-items:center;gap:8px; padding:8px 12px; border-radius:999px; background:rgba(224,139,27,.14); border:1px solid rgba(224,139,27,.25); font-weight:900; color:rgba(19,26,58,.92); font-size:12px;}
.rv-quote h3{margin:14px 0 10px; font-family: Raleway, sans-serif; font-weight:900; letter-spacing:.3px; color:rgba(19,26,58,.95);} 
.rv-quote p{color:rgba(27,27,31,.75); line-height:1.6;}
.rv-quote-mark{margin-top:14px; font-size:18px; opacity:.85;}



/* Dropdown categories (accordion inside menu) */
.rv-dd-cat{margin:0; padding:0;}
.rv-dd-cat-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 10px;
  border:0;
  background:transparent;
  color: rgba(19,26,58,.92);
  font-weight:900;
  cursor:pointer;
  text-align:left;
}
.rv-dd-cat-btn i{transition:transform .2s ease; opacity:.7;}
.rv-dd-cat-btn[aria-expanded="true"] i{transform:rotate(90deg);}
.rv-dd-sub{padding: 0 6px 10px 6px;}
.rv-dd-sub a{display:block;}

/* Mobile enquiry pill (matches old style) */
.rv-enquiry-pill{display:none;}
.rv-enquiry-link{
  display:block;
  padding:14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(223,156,56,.62), rgba(60,62,72,.62));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color:#fff;
  font-weight:900;
  text-align:center;
  text-decoration:none;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 18px 44px rgba(0,0,0,.22);
}
@media (max-width: 768px){
  .rv-enquiry-pill{
    display:block;
    position:fixed;
    left:16px; right:16px;
    bottom:18px;
    z-index:998;
  }
  .rv-float-wa{bottom:88px;}
  body{padding-bottom:140px;}
}


/* Floating WhatsApp (original style) */
.rv-float-wa{background:#25D366 !important; border:0 !important; box-shadow:0 16px 40px rgba(0,0,0,.22);} 
.rv-wa-svg{width:22px; height:22px; display:block; fill:#fff;}

/* Why */
.rv-why-grid{margin-top:14px; display:grid; gap:12px;}
.rv-why-item{display:flex;gap:12px;align-items:flex-start;padding:14px;border-radius:16px;background: rgba(19,26,58,.04);border:1px solid rgba(19,26,58,.08);} 
.rv-why-ic{width:42px;height:42px;border-radius:16px;display:flex;align-items:center;justify-content:center;background: rgba(224,139,27,.16);border:1px solid rgba(224,139,27,.18);font-size:18px;} 
.rv-why-item h4{margin:0;font-family: Raleway, sans-serif;font-weight:900;color:var(--rv-indigo);font-size:14px;}
.rv-why-item p{margin:6px 0 0;color:rgba(19,26,58,.72);font-weight:700;line-height:1.45;font-size:12.8px;}

/* Footer */
.rv-footer{
  padding: 36px 0 0;
  background:
    radial-gradient(900px 420px at 20% -10%, rgba(223,156,56,.25), transparent 55%),
    radial-gradient(700px 380px at 85% 0%, rgba(140,86,255,.22), transparent 55%),
    linear-gradient(180deg, rgba(19,26,58,.96), rgba(11,15,36,.98));
  color:#fff;
  border-top: 1px solid rgba(223,156,56,.35);
}
.rv-footer-grid{display:grid;grid-template-columns: 1.4fr .8fr 1fr; gap:18px; padding-bottom: 20px;}
.rv-footer-logo{font-family: Raleway, sans-serif; font-weight:900; font-size:18px; letter-spacing:.4px;}
.rv-footer-note{margin-top:10px;color:rgba(255,255,255,.78);line-height:1.6;}
.rv-footer h5{margin:0 0 10px; font-family: Raleway, sans-serif; font-weight:900; color: rgba(240,176,74,.95);} 
.rv-footer a{display:block; color: rgba(255,255,255,.85); text-decoration:none; margin:8px 0; font-weight:700;}
.rv-footer a:hover{color:#fff;}
.rv-footer-bottom{
  margin-top: 14px;
  padding: 14px 0;
  background: rgba(0,0,0,.12);
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

/* Floating WhatsApp */
.rv-float-wa{
  position:fixed;
  right:18px;
  bottom:18px;
  width:54px;
  height:54px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background: linear-gradient(135deg, var(--rv-saffron), var(--rv-saffron2));
  color:#1c1205;
  box-shadow: 0 18px 40px rgba(224,139,27,.28);
  z-index: 1200;
}
.rv-float-wa i{font-size:28px;}

/* Responsive */
@media (max-width: 991px){
  .rv-hero-grid{grid-template-columns: 1fr;}
  .rv-hero-media{min-height: 380px;}
  .rv-two{grid-template-columns: 1fr;}
  .rv-grid{grid-template-columns: repeat(2, 1fr);} 
  .rv-footer-grid{grid-template-columns: 1fr;}
}

@media (max-width: 768px){
  .rv-top-actions span{display:none;} /* icons only */
  .rv-pill{padding:8px 9px;}

  .rv-burger{display:inline-block;}
  .rv-nav{display:none; position:absolute; left:0; right:0; top:100%; background: rgba(251,246,238,.96); border-bottom:1px solid rgba(19,26,58,.10); padding: 10px 16px; flex-direction:column; align-items:stretch; gap:10px;}
  .rv-nav.open{display:flex;}
  .rv-nav a{padding:10px 12px; border-radius:14px; background: rgba(255,255,255,.55); border:1px solid rgba(19,26,58,.08);} 
  

  .rv-hero h1{font-size:34px;}
  .rv-strip-inner{flex-direction:column; align-items:flex-start;}
  .rv-grid{grid-template-columns: 1fr;} 
}

.rv-topbar .rv-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 10px 0;
  color: var(--rv-indigo);
}


.rv-footer-grid{display:grid; grid-template-columns: 1.2fr 1fr 1fr 1.1fr; gap:24px; padding-bottom: 22px;}
.rv-footer-col h5{margin: 0 0 10px; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85);}
.rv-footer-col a{display:block; color: rgba(255,255,255,.86); text-decoration:none; padding: 6px 0;}
.rv-footer-col a:hover{color:#fff; text-decoration:underline;}
.rv-footer-brand .rv-footer-address{margin-top: 14px; padding-top: 14px; border-top: 1px dashed rgba(255,255,255,.18);}
.rv-footer-label{font-size: 12px; letter-spacing:.12em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 6px;}
.rv-footer-form{display:flex; flex-direction:column; gap:10px;}
.rv-footer-form input,.rv-footer-form select{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
  padding: 12px 12px;
  outline:none;
}
.rv-footer-form input::placeholder{color: rgba(255,255,255,.7);}
.rv-footer-form select{color:#fff;}
.rv-footer-form option{color:#111;}
.rv-footer-ctas{display:flex; gap:10px; flex-wrap:wrap; margin-top: 6px;}
.rv-chip{
  display:inline-flex; align-items:center; gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration:none;
  color:#fff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.rv-chip:hover{background: rgba(255,255,255,.10);}
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
@media (max-width: 980px){
  .rv-footer-grid{grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .rv-footer-grid{grid-template-columns: 1fr; }
}

/* Responsive: new sections + mobile action bar */
@media (max-width: 980px){
  .rv-how-grid{grid-template-columns:repeat(2,1fr);}
  .rv-trust-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width: 640px){
  .rv-how-grid{grid-template-columns:1fr;}
  .rv-trust-grid{grid-template-columns:1fr;}
  .rv-readmore{width:100%;}
  .rv-more{max-height:0; overflow:hidden; opacity:0;}
  .rv-more.open{max-height:600px; opacity:1;}
  body{padding-bottom:76px;}
  .rv-mobile-bar{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    z-index:2000;
    background: rgba(255,255,255,.82);
    border:1px solid rgba(19,26,58,.12);
    border-radius: 18px;
    padding:10px;
    box-shadow: 0 18px 50px rgba(11,15,36,.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .rv-mb{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 10px;
    border-radius: 14px;
    text-decoration:none;
    font-weight:900;
    border:1px solid rgba(19,26,58,.12);
  }
  .rv-mb-wa{background: rgba(37,211,102,.14); color: rgba(10,60,28,.95); border-color: rgba(37,211,102,.35);}
  .rv-mb-cb{background: rgba(224,139,27,.14); color: rgba(41,22,3,.95); border-color: rgba(224,139,27,.35);}
}


.rv-topbar .rv-pill{
  color: var(--rv-indigo);
  background: rgba(19,26,58,.06);
  border: 1px solid rgba(19,26,58,.12);
}
.rv-topbar .rv-pill:hover{background: rgba(223,156,56,.12); border-color: rgba(223,156,56,.35);}


/* Form success/error messages */
.rv-form-msg{margin-top:12px; font-size:14px; line-height:1.35;}
.rv-form-msg.success{color:#0f5132; background:rgba(223,156,56,.10); border:1px solid rgba(223,156,56,.25); padding:10px 12px; border-radius:12px;}
.rv-form-msg.error{color:#842029; background:rgba(255, 179, 179, .18); border:1px solid rgba(255, 179, 179, .35); padding:10px 12px; border-radius:12px;}
.rv-btn[disabled]{opacity:.65; cursor:not-allowed;}


/* Mobile enquiry text link (from legacy UI) */
.rv-mobile-enquiry-link{display:none; margin-top:12px; font-weight:900; text-decoration:underline; color: var(--rv-indigo);}
.rv-mobile-enquiry-link:focus{outline:3px solid rgba(223,156,56,.35); outline-offset:3px; border-radius:10px;}

/* Mini Call 24×7 button near header (mobile) */
.rv-call-mini{display:none; position:fixed; right:14px; top:88px; z-index:2100;
  padding:10px 12px; border-radius:999px; text-decoration:none; font-weight:900;
  background: rgba(223,156,56,.92); color: rgba(41,22,3,.98);
  box-shadow: 0 14px 40px rgba(11,15,36,.22);
  border: 1px solid rgba(223,156,56,.55);
}
.rv-call-mini:hover{filter:brightness(.98);}

/* Booking + FAQ duo layout (above footer) */
.rv-bottom-duo-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:stretch;}
.rv-bottom-duo-col .rv-section-head{margin-bottom:12px;}
.rv-bottom-duo-col{background:rgba(255,255,255,.78); border:1px solid rgba(19,26,58,.10); border-radius:22px; padding:18px; box-shadow: 0 18px 55px rgba(11,15,36,.08);}

/* Welcome image crispness */
.rv-welcome-img{background-position:center; background-size:cover; image-rendering:auto; filter:none; transform:none;}


@media (max-width: 980px){
  .rv-bottom-duo-grid{grid-template-columns:1fr;}
}

@media (min-width: 1200px){
  .rv-grid{grid-template-columns: repeat(5, 1fr);} 
}

/* --- v4final refinements --- */
/* Welcome image: use real <img> for crisp rendering */
.rv-welcome-img{background:none !important; filter:none !important; overflow:hidden;}
.rv-welcome-img img{width:100%; height:100%; min-height:260px; object-fit:cover; display:block;}

/* Hide “Read more” on desktop; keep full text visible */
@media (min-width: 641px){
  .rv-readmore{display:none;}
  .rv-more{max-height:none; overflow:visible; opacity:1;}
}

/* Package grouping layout */
.rv-pack-group{margin-top:18px;}
.rv-pack-group:first-of-type{margin-top:0;}
.rv-pack-group-head h3{margin:0; font-size:18px;}
.rv-pack-group-head p{margin:6px 0 12px; color:var(--rv-muted); font-weight:700;}
.rv-grid-compact{grid-template-columns:repeat(4,1fr);}
@media (max-width: 1100px){
  .rv-grid-compact{grid-template-columns:repeat(3,1fr);} 
}
@media (max-width: 860px){
  .rv-grid-compact{grid-template-columns:repeat(2,1fr);} 
}
@media (max-width: 520px){
  .rv-grid-compact{grid-template-columns:1fr;} 
}


/* =========================
   Packages CTA (Home)
   ========================= */
.rv-pack-cta-section{padding-top:0}
.rv-pack-cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}
.rv-pack-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.2px;
  text-decoration:none;
  border:1px solid rgba(19,26,58,.12);
  background:#fff;
  color:rgba(19,26,58,.92);
  box-shadow:0 16px 46px rgba(19,26,58,.10);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.rv-pack-cta-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 22px 60px rgba(19,26,58,.14);
}
.rv-pack-cta-btn-primary{
  background:linear-gradient(135deg, var(--rv-saffron), var(--rv-saffron2));
  color:#1c1205;
  border-color:rgba(224,139,27,.45);
  box-shadow:0 16px 46px rgba(224,139,27,.28);
}
.rv-pack-cta-btn-primary:hover{
  box-shadow:0 22px 64px rgba(224,139,27,.38);
  filter:brightness(1.03);
}
.rv-pack-cta-btn-ghost{
  background:rgba(255,255,255,.75);
}

/* =========================
   Packages page: tabs
   ========================= */
.rv-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-start;
  background:rgba(255,255,255,.6);
  border:1px solid rgba(19,26,58,.10);
  border-radius:999px;
  padding:8px;
  width:fit-content;
  box-shadow:0 10px 34px rgba(19,26,58,.08);
}
.rv-tab{
  border:0;
  background:transparent;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
  color:rgba(19,26,58,.78);
  transition:background .15s ease, color .15s ease, filter .15s ease;
}
.rv-tab[aria-selected="true"]{
  background:linear-gradient(135deg, var(--rv-saffron), var(--rv-saffron2));
  color:#1c1205;
  border:1px solid rgba(224,139,27,.40);
}
.rv-tab:hover{background:rgba(19,26,58,.06);}

/* Hide/show sections when filtering */
[data-rv-filter]{display:block}
[data-rv-filter].is-hidden{display:none}

/* Make section anchor scroll nicer under sticky header */
#char-dham,#do-dham,#all-packages{scroll-margin-top:110px}



/* --- Image crispness tweaks (packages + welcome) --- */
.rv-pack-img{
  filter: none !important;          /* avoid softening from filters */
  transform: none !important;
  image-rendering: auto;
}
.rv-welcome-img img{
  filter: none !important;
  transform: none !important;
  image-rendering: auto;
}
/* Topbar pills alignment fix (Call 24×7 + WhatsApp) */
.rv-top-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.rv-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 38px;            /* force same height */
  padding: 0 14px;         /* vertical padding removed (height controls it) */
  line-height: 1;          /* prevent baseline shift */
  white-space: nowrap;
}

.rv-pill i{
  font-size: 16px;
  line-height: 1;
  display:inline-block;
  margin-top: 1px;         /* tiny nudge to align perfectly */
}

/* Optional: if you use svg in WhatsApp button */
.rv-pill svg{
  width: 18px;
  height: 18px;
  display:block;
}
/* REMOVE oval outline/ring on Call/WhatsApp pills (force override) */
.rv-topbar .rv-pill{
  border: none !important;
  box-shadow: none !important;
  outline: none !important;

  /* also kill any “ring” created via inset shadows */
  -webkit-box-shadow: none !important;

  /* cleaner look */
  background: rgba(19,26,58,.06) !important;
}

/* If any pseudo element is drawing a ring, kill it */
.rv-topbar .rv-pill::before,
.rv-topbar .rv-pill::after{
  content: none !important;
  display: none !important;
}

/* Optional: subtle hover without outline */
.rv-topbar .rv-pill:hover{
  background: rgba(223,156,56,.12) !important;
}
/* Footer Call/WhatsApp chips – remove ugly oval outline */
.rv-footer-ctas .rv-chip{
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;

  background: transparent !important;   
  color: rgba(255,255,255,.92) !important;

  padding: 10px 14px !important;
  border-radius: 999px !important;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* subtle hover */
.rv-footer-ctas .rv-chip:hover{
  background: rgba(255,255,255,.12) !important;
}

/* icon alignment */
.rv-footer-ctas .rv-chip i{
  font-size: 16px;
  line-height: 1;
}
/* Mobile header padding fix */
@media (max-width: 768px){
  .rv-header-inner{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* ensure logo itself isn’t stuck to edge */
  .rv-logo{
    margin-left: 4px;
  }
}
@media (max-width: 768px){
  .rv-logo-title{
    font-size: 26px;   /* slightly smaller for mobile */
  }
  .rv-logo-sub{
    font-size: 13px;
  }
}
@media (max-width: 768px){
  .rv-burger{
    margin-right: 4px;
  }
}
/* ===============================
   MOBILE HEADER – FINAL POLISH
   =============================== */
@media (max-width: 768px){

  /* Comfortable safe padding (no edge-touching) */
  .rv-header-inner{
    padding: 14px 16px !important;
    align-items: center;
  }

  /* Logo breathing space */
  .rv-logo{
    margin-left: 2px;
  }

  /* Better mobile typography */
  .rv-logo-title{
    font-size: 26px;
    line-height: 1.1;
  }

  .rv-logo-sub{
    font-size: 12.5px;
    margin-top: 2px;
  }

  /* Burger alignment + tap comfort */
  .rv-burger{
    margin-right: 2px;
    width: 40px;
    height: 36px;
  }

  /* Slightly softer header on mobile */
  .rv-header{
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

/* ===============================
   SUBTLE DIVIDER ON SCROLL
   =============================== */
.rv-header{
  transition: box-shadow .25s ease, border-color .25s ease;
}

.rv-header.scrolled{
  box-shadow: 0 6px 18px rgba(11,15,36,.10);
  border-bottom-color: rgba(19,26,58,.16);
}


/* =========================
   MOBILE FIXES
========================= */
@media (max-width: 991px){

  .rv-hero-single{
    min-height: auto;
    padding: 80px 0 40px;
  }

  .rv-hero-grid{
    grid-template-columns: 1fr;
  }

  .rv-hero-content{
    text-align: center;
  }

  .rv-hero-ctas{
    justify-content: center;
    flex-wrap: wrap;
  }

  .rv-formcard{
    margin-top: 30px;
  }

  .rv-nav{
    position: fixed;
    inset: 0 0 0 auto;
    width: 85%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .rv-nav.open{
    transform: translateX(0);
  }
}

@media (max-width: 576px){
  h1{
    font-size: 1.8rem;
  }

  .rv-badge{
    font-size: 12px;
  }
}
/* =========================
   HERO – SINGLE IMAGE
========================= */
.rv-hero-single{
  position: relative;
  background: url("../assets/images/kedarnath-hd.jpg") center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.rv-hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.35)
  );
}

.rv-hero-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}


/* ===============================
   MOBILE TOP + HERO HOTFIX
   Ensures the topbar/header stack & hero occupy full width on small screens.
   =============================== */
@media (max-width: 991px){
  .rv-hero-grid{grid-template-columns: 1fr !important;}
  .rv-hero-media{width:100% !important;}
  .rv-hero-content{max-width: none !important;}
  .rv-badges{justify-content:flex-start; gap:10px;}
  .rv-badge{border-radius:999px !important; white-space:nowrap;}
}

@media (max-width: 768px){
  /* Prevent topbar actions from wrapping into extra height */
  .rv-topbar-inner{flex-wrap:nowrap !important;}
  .rv-brand-text{display:none !important;}
  .rv-top-actions{flex-wrap:nowrap !important; gap:8px !important;}

  /* Off-canvas nav: force fixed drawer (overrides legacy rules) */
  .rv-nav{
    display:flex !important;
    position:fixed !important;
    top:0 !important;
    right:0 !important;
    left:auto !important;
    bottom:0 !important;
    width:85% !important;
    max-width:320px !important;
    padding:80px 20px !important;
    background: rgba(251,246,238,.98) !important;
    transform: translateX(100%) !important;
    transition: transform .3s ease !important;
    gap:10px !important;
    z-index: 2500 !important;
  }
  .rv-nav.open{transform: translateX(0) !important;}
}




/* =========================
   Mobile-only fixes for package pages
   - Keep desktop unchanged
   ========================= */
.rv-only-mobile{display:none !important;}

@media (max-width: 768px){
  /* Make CTA buttons and form controls truly mobile-friendly */
  .rv-cta-row{flex-direction:column; align-items:stretch;}
  .rv-cta-row .rv-btn{width:100%; max-width:100%;}
  .rv-pkg-hero .rv-hero-card{max-width:100%;}
  .rv-pkg-hero .rv-hero-card .rv-form button{width:100% !important;}

  /* Ensure any split fields stack */
  .rv-form .rv-field,
  .rv-form label{display:block; width:100%;}
  .rv-form input, .rv-form select{width:100% !important; max-width:100%;}

  /* Floating CTAs: mobile only */
  .rv-only-mobile{display:flex !important;}
  /* Keep WhatsApp above bottom enquiry pill */
  .rv-float-wa{right:16px; bottom:88px;}
  /* Make enquiry pill not cover content */
  body{padding-bottom:140px;}
}

/* If any legacy element causes horizontal scroll, clamp it */
@media (max-width: 520px){
  #revamp .container{padding-left:14px; padding-right:14px;}
  .rv-table{display:block; width:100%; overflow-x:auto;}
}
