  :root{
    --maroon:#6f1d2b;
    --maroon-dark:#4a1620;
    --gold:#c69a3a;
    --gold-light:#e8c877;
    --cream:#faf5ea;
    --ink:#2b201a;
    --teal:#26534a;
  }
  *{box-sizing:border-box;}
  body{
    font-family:'Poppins',sans-serif;
    color:var(--ink);
    background:var(--cream);
  }
  h1,h2,h3,h4,.brand{
    font-family:'Cormorant Garamond',serif;
  }
  .eyebrow{
    font-family:'Poppins',sans-serif;
    letter-spacing:.18em;
    font-size:.72rem;
    font-weight:600;
    text-transform:uppercase;
    color:var(--gold);
  }
  /* Topbar */
  .topbar{
    background:var(--maroon-dark);
    color:#f1e3d3;
    font-size:.85rem;
    padding:8px 0;
  }
  .topbar a{color:#f1e3d3;text-decoration:none;}
  .topbar a:hover{color:var(--gold-light);}
  .topbar .social a{
    display:inline-flex;align-items:center;justify-content:center;
    width:28px;height:28px;border-radius:50%;
    background:rgba(255,255,255,.12);margin-left:6px;
  }

  /* Navbar */
  .navbar-custom{
    background:var(--cream);
    padding:14px 0;
    border-bottom:1px solid rgba(111,29,43,.12);
  }
  .navbar-custom.scrolled{
    box-shadow:0 6px 24px rgba(43,32,26,.08);
  }
  .brand{
    font-size:1.9rem;
    font-weight:700;
    color:var(--maroon);
    line-height:1;
  }
  .brand small{
    display:block;
    font-family:'Poppins',sans-serif;
    font-size:.6rem;
    letter-spacing:.25em;
    color:var(--gold);
    font-weight:600;
  }
  .navbar-custom .nav-link{
    color:var(--ink);
    font-weight:500;
    margin:0 8px;
    position:relative;
  }
  .navbar-custom .nav-link.active,.navbar-custom .nav-link:hover{color:var(--maroon);}
  .navbar-custom .nav-link::after{
    content:"";
    position: absolute;
    right: -6px;
    bottom: 13px;
    height: 9px;
    width: 10px;
    transition:width .25s ease;
  }
  /*.navbar-custom .nav-link:hover::after{width:100%;}*/

  /* Pilgrimage dropdown */
  .navbar-custom .dropdown-menu{
    border:none;border-radius:8px;
    box-shadow:0 16px 36px rgba(43,32,26,.16);
    padding:8px;margin-top:10px;
    border-top:3px solid var(--gold);
  }
  .navbar-custom .dropdown-item{
    border-radius:6px;padding:9px 16px;font-weight:500;color:var(--ink);font-size:.92rem;
  }
  .navbar-custom .dropdown-item:hover,.navbar-custom .dropdown-item:focus{
    background:var(--maroon);color:#fff;
  }
  .navbar-custom .dropdown-toggle::after{
    transition: transform .3s ease;
  }
  .navbar-custom .dropdown:hover .dropdown-toggle::after{
    transform: rotate(180deg);
    bottom: 18px;
    
}

/* Open hone par bhi ulta rahe */
.navbar-custom .dropdown-toggle.show::after{
    transform: rotate(180deg);
    bottom: 18px;
}
  @media(min-width:992px){
    .navbar-custom .dropdown:hover .dropdown-menu{display:block;}
  }
  .btn-gold{
    background:var(--gold);
    border:none;
    color:var(--maroon-dark);
    font-weight:600;
    padding:10px 22px;
    border-radius:2px;
    letter-spacing:.03em;
    transition:.25s ease;
  }
  .btn-gold:hover{background:var(--maroon);color:#fff;}
  .btn-outline-maroon{
    border:1.5px solid var(--maroon);
    color:var(--maroon);
    font-weight:600;
    background:transparent;
  }
  .btn-outline-maroon:hover{background:var(--maroon);color:#fff;}

  /* Hero */
  .hero{
    background:linear-gradient(120deg,var(--maroon) 0%,var(--maroon-dark) 60%);
    color:#fff;
    position:relative;
    overflow:hidden;
    padding:90px 0 110px;
  }
  .hero::before{
    content:"";position:absolute;inset:0;
    background-image:radial-gradient(circle at 85% 20%, rgba(198,154,58,.25), transparent 45%);
  }
  .hero .kicker{color:var(--gold-light);letter-spacing:.2em;font-size:.8rem;font-weight:600;text-transform:uppercase;}
  .hero h1{font-size:3.1rem;font-weight:700;line-height:1.15;}
  .hero p.lead{color:#e9d9c4;font-size:1.1rem;}
  .hero-img-wrap{
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 30px 60px rgba(0,0,0,.35);
    border:6px solid rgba(255,255,255,.08);
  }
  .hero-img-wrap img{width:100%;display:block;}
  .phone-pill{
    display:inline-flex;align-items:center;gap:10px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    padding:8px 16px;border-radius:30px;color:#fff;font-size:.9rem;
  }

  /* Section titles */
  .section-title{
    font-size:2.3rem;font-weight:700;color:var(--maroon);position:relative;display:inline-block;
  }
  .section-title::after{
    content:"";display:block;width:60px;height:3px;background:var(--gold);margin-top:10px;
  }
  .section-title.center{display:block;text-align:center;}
  .section-title.center::after{margin:10px auto 0;}
  section{padding:80px 0;}
  .bg-teal-section{background:#f4efe2;}

  /* Package cards */
  .pkg-card{
    background:#fff;border-radius:10px;overflow:hidden;
    box-shadow:0 10px 30px rgba(43,32,26,.08);
    transition:transform .3s ease, box-shadow .3s ease;
    height:100%;
  }
  .pkg-card:hover{transform:translateY(-8px);box-shadow:0 20px 40px rgba(43,32,26,.16);}
  .pkg-card img{height:230px;width:100%;object-fit:cover;}
  .pkg-card .body{padding:22px;}
  .pkg-card .tag{
    display:inline-flex;align-items:center;gap:6px;
    font-size:.82rem;color:var(--teal);font-weight:500;
  }
  .pkg-card h5{color:var(--ink);font-weight:600;font-family:'Poppins',sans-serif;margin:8px 0 14px;}

  /* Small pilgrimage grid */
  .pilg-card{
    position:relative;border-radius:10px;overflow:hidden;height:280px;
  }
  .pilg-card img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
  .pilg-card:hover img{transform:scale(1.08);}
  .pilg-overlay{
    position:absolute;inset:0;
    background:linear-gradient(0deg,rgba(43,20,20,.85) 0%,rgba(43,20,20,0) 55%);
    display:flex;flex-direction:column;justify-content:flex-end;padding:18px;
  }
  .pilg-overlay h6{color:#fff;font-weight:600;margin-bottom:10px;font-family:'Poppins',sans-serif;}
  .pilg-overlay .btn{width:fit-content;}

  /* About */
  .about-text p{color:#5a4b40;line-height:1.85;}

  /* Pricing tables */
  .price-card{
    background:#fff;border-radius:10px;overflow:hidden;
    box-shadow:0 10px 24px rgba(43,32,26,.07);
    margin-bottom:28px;
  }
  .price-card .head{
    background:var(--maroon);color:#fff;padding:14px 20px;font-weight:600;
    display:flex;justify-content:space-between;font-family:'Poppins',sans-serif;
  }
  .price-card table{width:100%;margin:0;}
  .price-card td{padding:12px 20px;border-bottom:1px solid #f0e6d6;font-size:.95rem;}
  .price-card tr:last-child td{border-bottom:none;}
  .price-card td.amount{color:var(--maroon);font-weight:600;text-align:right;}

  /* Booking form card */
  .booking-card{
    background:#fff;border-radius:12px;padding:32px;
    box-shadow:0 20px 50px rgba(43,32,26,.12);
    border-top:4px solid var(--gold);
  }
  .booking-card label{font-weight:500;font-size:.88rem;color:var(--ink);margin-bottom:4px;}
  .booking-card .form-control,.booking-card .form-select{
    border-radius:4px;border:1px solid #e3d7c3;padding:10px 14px;margin-bottom:16px;
  }
  .booking-card .form-control:focus,.booking-card .form-select:focus{
    border-color:var(--gold);box-shadow:0 0 0 3px rgba(198,154,58,.18);
  }

  /* Contact info */
  .info-block{padding-left:0;list-style:none;}
  .info-block li{
    display:flex;gap:14px;margin-bottom:22px;align-items:flex-start;
  }
  .info-block .ic{
    width:42px;height:42px;border-radius:50%;background:var(--maroon);color:#fff;
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
  }
  .info-block h6{font-weight:600;margin-bottom:2px;color:var(--maroon);}

  /* Footer */
  footer{
    background:var(--ink);color:#d8c8b6;padding:60px 0 0;
  }
  footer h6{
    color:#fff;font-weight:600;letter-spacing:.05em;text-transform:uppercase;font-size:.85rem;
    border-left:3px solid var(--gold);padding-left:10px;margin-bottom:18px;
  }
  footer a{color:#c9b8a4;text-decoration:none;font-size:.92rem;line-height:2.1;}
  footer a:hover{color:var(--gold-light);}
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:40px;padding:18px 0;font-size:.82rem;color:#9c8b78;
  }
  .footer-social a{
    width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.06);
    display:inline-flex;align-items:center;justify-content:center;margin-right:8px;
  }
  .footer-social a:hover{background:var(--gold);color:var(--ink);}

  @media(max-width:420px){
      section {
            padding: 30px 0;
        }
  }
  @media(max-width:991px){
    .hero h1{font-size:2.3rem;}
    .hero-img-wrap{margin-top:40px;}
  }

  /* Page header (breadcrumb band) */
  .page-header{
    background:linear-gradient(90deg,var(--maroon) 0%,var(--maroon-dark) 100%);
    color:#fff;padding:34px 0;
  }
  .page-header h2{font-weight:700;margin:0;}
  .page-header .breadcrumb{
    margin:0;background:transparent;font-size:.9rem;
  }
  .page-header .breadcrumb a{color:#e9d9c4;text-decoration:none;}
  .page-header .breadcrumb a:hover{color:var(--gold-light);}
  .page-header .breadcrumb-item.active{color:var(--gold-light);}
  .page-header .breadcrumb-item+.breadcrumb-item::before{color:#e9d9c4;}

  .tour-hero-img{
    border-radius:10px;overflow:hidden;box-shadow:0 20px 40px rgba(43,32,26,.15);
  }
  .tour-hero-img img{width:100%;display:block;height:380px;object-fit:cover;}
  .tour-detail h3{color:var(--maroon);font-weight:700;font-size:1.7rem;margin-bottom:6px;}
  .tour-detail .divider{width:44px;height:3px;background:var(--gold);margin-bottom:18px;}
  .tour-detail ul{list-style:none;padding:0;}
  .tour-detail ul li{
    position:relative;padding-left:26px;margin-bottom:12px;color:#5a4b40;line-height:1.6;
  }
  .tour-detail ul li::before{
    content:"\f058";font-family:"Font Awesome 6 Free";font-weight:900;
    position:absolute;left:0;top:1px;color:var(--teal);
  }

  .booking-sidebar{
    background:#fff;border-radius:12px;padding:30px 26px;
    box-shadow:0 20px 50px rgba(43,32,26,.12);
    border-top:4px solid var(--gold);position:sticky;top:100px;
  }
  .booking-sidebar h4{color:var(--maroon);font-weight:700;margin-bottom:6px;}
  .booking-sidebar .divider{width:44px;height:3px;background:var(--gold);margin-bottom:16px;}
  .booking-sidebar p.help{color:#8a7a68;font-size:.88rem;margin-bottom:18px;}
  .booking-sidebar label{font-weight:500;font-size:.85rem;color:var(--ink);margin-bottom:4px;display:block;}
  .booking-sidebar .form-control{
    border-radius:4px;border:1px solid #e3d7c3;padding:10px 14px;margin-bottom:16px;width:100%;
  }
  .booking-sidebar .form-control:focus{
    outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(198,154,58,.18);
  }
  .booking-sidebar .form-control[readonly]{background:#faf5ea;color:#8a7a68;}

  .cta-center{
    text-align:center;margin-top:20px;
  }

  /* Booking modal form fields */
  #bookingForm label{font-weight:500;font-size:.85rem;color:var(--ink);margin-bottom:4px;display:block;}
  #bookingForm .form-control{
    border-radius:4px;border:1px solid #e3d7c3;padding:10px 14px;margin-bottom:16px;width:100%;
  }
  #bookingForm .form-control:focus,#bookingForm .form-select:focus{
    outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(198,154,58,.18);
  }
  .slide{
      /*height: 500px;*/
    background-position: center;
  }
  .w-100{
      width:100%;
  }
  /* Floating WhatsApp & Call Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #d4af37; /* aapke gold theme ke hisaab se */
  animation: pulse-call 2s infinite;
}

/* Pulse animation on call button to draw attention */
@keyframes pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* WhatsApp pulse too (optional) */
.whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-wa 2s infinite;
  z-index: -1;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile responsive */
@media (max-width: 767.98px) {
  .floating-buttons {
    right: 14px;
    bottom: 14px;
    gap: 12px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}