:root{
  --sp-navy:#0c1434;
  --sp-blue:#114675;
  --sp-yellow:#faba0c;
  --sp-white:#ffffff;
  --sp-ink:#172033;
  --sp-muted:#667085;
  --sp-line:#e7eaf0;
  --sp-soft:#edeeef;
  --sp-soft-blue:#eef6fb;
  --sp-shadow:0 14px 40px rgba(12,20,52,.08);
  --sp-radius:22px;
  --sp-radius-sm:14px;
}

html{scroll-behavior:smooth}
body{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--sp-ink);
  background:#dcdcdc30;
}
a{text-decoration:none}
img{display:block;max-width:100%}
.sp-section-soft{background:var(--sp-soft)}
.sp-eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  color:var(--sp-blue);font-size:.72rem;font-weight:800;
  letter-spacing:.12em;text-transform:uppercase;margin-bottom:.65rem;
}



.sp-link{color:var(--sp-blue);font-weight:800}
.sp-link:hover{color:var(--sp-navy)}


.btn-sp-primary:hover{
  background:#e9aa00;border-color:#e9aa00;color:var(--sp-navy);
  transform:translateY(-1px);
}
.btn-sp-dark{
  background:var(--sp-navy);
  border-color:var(--sp-navy);
  color:#fff;
  font-weight:800;
}
.btn-sp-dark:hover{background:#111d4d;border-color:#111d4d;color:#fff}


.sp-header{
  position:sticky;top:0;z-index:1030;
  background:#fff;
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(12,20,52,.07);
  margin-top: -25px;
}
.sp-header .navbar{min-height:76px}
.sp-logo{height:50px;width:auto}

.sp-nav-link:hover{color:var(--sp-blue)!important}
.sp-header .navbar-toggler{
  border:0;
  background:var(--sp-navy);
  color:#fff;
  width:44px;height:44px;border-radius:10px;
}
.sp-offcanvas .offcanvas-title{color:var(--sp-navy);font-weight:800}
.sp-offcanvas .nav-link{
  padding:.85rem 0;border-bottom:1px solid var(--sp-line);
  color:var(--sp-navy);font-weight:700;
}

.sp-hero{
  min-height:620px;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:#fff;
  background:var(--sp-navy);
}
.sp-hero:after{
  left:44%;
  background-image:url('https://srinagarpackages.com/crmnew/img_master/package/lehladakh_17698369100.webp');
  clip-path:polygon(18% 0,100% 0,100% 100%,0 100%);
}
.sp-hero-overlay{
  position:absolute;inset:0;z-index:-2;
  background:
    linear-gradient(90deg,rgba(12,20,52,.76),rgba(12,20,52,.44) 48%,rgba(12,20,52,.68)),
    linear-gradient(0deg,rgba(12,20,52,.58),transparent 60%);
}
.sp-hero-content{max-width:820px;margin:auto;text-align:center;padding:90px 0 120px}
.sp-hero-chip{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.5rem .8rem;border-radius:999px;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.1);
  font-size:.72rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
}

.sp-hero h1 span{color:var(--sp-yellow)}




.sp-hero-destination.right{right:max(30px,calc((100vw - 1140px)/2));text-align:right}
.sp-pin{
  width:38px;height:38px;border-radius:50%;
  display:grid;place-items:center;background:var(--sp-yellow);color:var(--sp-navy)
}
.sp-destination-card {
  position: relative;
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--sp-shadow);
  isolation: isolate;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Actual IMG */
.sp-destination-card .sp-destination-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
  object-position: center;
  transition: transform .3s ease;
}

/* Dark gradient overlay */
.sp-destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(12, 20, 52, .05) 20%,
    rgba(12, 20, 52, .9) 88%
  );
  pointer-events: none;
}

/* Image zoom on hover */
.sp-destination-card:hover .sp-destination-img {
  transform: scale(1.03);
}

/* Keep content above image/overlay */
.sp-destination-label,
.sp-destination-card h3,
.sp-destination-card .tags,
.sp-destination-card p,
.sp-destination-card .row,
.sp-destination-card a {
  position: relative;
  z-index: 1;
}





.sp-destination-card p {
  color: rgba(255, 255, 255, .84);
  margin: .7rem 0 1rem;
}

.sp-meta{
  display:flex;gap:.6rem;align-items:center;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  padding:.65rem;border-radius:13px;
}
.sp-meta i{color:var(--sp-yellow)}
.sp-meta small{display:block;color:rgba(255,255,255,.62);font-size:.58rem}
.sp-meta strong{font-size:.7rem}



.sp-trust-item strong{display:block;color:var(--sp-navy);font-size:16px}
.sp-trust-item small{display:block;color:var(--sp-muted);font-size:13px;margin-top:.15rem}

.nav-pills.sp-tabs{gap:.5rem}

.sp-card{
  height:100%;
  border:1px solid var(--sp-line);
  border-radius:var(--sp-radius-sm);
  overflow:hidden;background:#fff;
  transition:.22s ease;
}
.sp-card:hover{transform:translateY(-4px);box-shadow:var(--sp-shadow)}
.sp-card-img{height:210px;position:relative;overflow:hidden;background:#e2e8ef}
.sp-card-img img{width:100%;height:100%;object-fit:initial;transition:.3s ease}
.sp-card:hover .sp-card-img img{transform:scale(1.03)}
.sp-card-badge{
  position:absolute;left:12px;top:12px;
  padding:6px 14px;border-radius:999px;
  background:white;color: #000;
  font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.05em;
}
.sp-card-body{padding:1rem}
.sp-card-sub{color:var(--sp-muted);font-size:13px;margin:.35rem 0 .8rem;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}
.sp-card-facts{display:flex;gap:.8rem;flex-wrap:wrap;color:var(--sp-muted);font-size:13px;margin-bottom:.9rem}
.sp-card-price small{display:block;color:var(--sp-muted);font-size:12px}
.sp-card-price strong{display:block;color:var(--sp-navy);font-size:1.2rem}
.sp-card-price em{font-size:12px;color:var(--sp-muted);font-style:normal}

.sp-style-card{
  height:100%;
  display:flex;align-items:center;gap:.85rem;
  padding:1rem;border:1px solid var(--sp-line);border-radius:14px;background:#fff;
}
.sp-style-icon{
  width:50px;height:50px;flex:0 0 50px;border-radius:15px;
  display:grid;place-items:center;background:#fff7dc;color:var(--sp-navy);
  border:1px solid #fde5a0;font-size:1.1rem;
}
.sp-style-card h3{font-size:.9rem;color:var(--sp-navy);font-weight:800;margin:0}
.sp-style-card p{font-size:.68rem;color:var(--sp-muted);margin:.15rem 0 0}
.sp-style-card .arrow{margin-left:auto;color:var(--sp-blue)}

.sp-hub-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  color: #fff;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Actual image */
.sp-hub-card .sp-hub-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: initial;
  object-position: center;
  transition: transform .3s ease;
}

/* Dark gradient overlay */
.sp-hub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(12, 20, 52, .08),
    rgba(12, 20, 52, .9)
  );
  pointer-events: none;
}

/* Image zoom */
.sp-hub-card:hover .sp-hub-img {
  transform: scale(1.03);
}

/* Keep content above image */
.sp-hub-card h3,
.sp-hub-card p,
.sp-hub-links {
  position: relative;
  z-index: 1;
}





.sp-hub-links {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}


.sp-hub-links a:hover {
  background: var(--sp-yellow);
  border-color: var(--sp-yellow);
  color: var(--sp-navy);
}



.viewallnewbtn{
  background: var(--sp-navy);
    border-color: var(--sp-navy);
    color: #fff;
        border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    padding: .55rem .9rem;
        border: 1px solid #dfe4ec;
}
.sp-about-img{height:300px;border-radius:24px;overflow:hidden;position:relative}
.sp-about-img img{width:100%;height:100%;object-fit:cover}
.sp-about-quote{
  position:absolute;left:18px;right:18px;bottom:18px;
  padding:1rem;border-radius:14px;
  background:rgba(12,20,52,.8);color:#fff;font-size:1.05rem;font-weight:700
}

.sp-step-no{
  width:42px;height:42px;border-radius:50%;display:grid;place-items:center;
  background:var(--sp-blue);color:#fff;font-size:16px;font-weight:900;margin-bottom:.8rem
}
.sp-step h3{font-size:.9rem;color:var(--sp-navy);font-weight:800}
.sp-step p{font-size:.72rem;color:var(--sp-muted);margin:0}

.sp-review{
  height:100%;padding:1.25rem;border:1px solid var(--sp-line);border-radius:14px;background:#fff
}
.sp-stars{color:var(--sp-yellow);letter-spacing:2px}
.sp-review blockquote{font-size:.8rem;color:#455065;margin:.8rem 0}
.sp-review strong{color:var(--sp-navy);font-size:.8rem}
.sp-review small{color:var(--sp-muted);font-size:.66rem}
.sp-dest-pill{
  background:var(--sp-soft-blue);color:var(--sp-blue);
  padding:.3rem .55rem;border-radius:999px;font-size:.58rem;font-weight:800
}

.sp-guide-card{
  height:100%;border:1px solid var(--sp-line);border-radius:14px;overflow:hidden;background:#fff
}
.sp-guide-card img{width:100%;height:115px;object-fit:cover}
.sp-guide-card h3{font-size:.75rem;color:var(--sp-navy);font-weight:800;margin:0}


.sp-final-cta h3{color:var(--sp-navy);font-size:1.45rem;font-weight:800;margin:0}

.sp-footer{background:var(--sp-navy);color:#fff;padding:46px 0 18px}
.sp-footer img{height:50px;filter:brightness(0) invert(1)}





.sp-mobile-sticky{display:none}

@media(max-width:991.98px){
  .sp-header .navbar{min-height:68px}
  .sp-logo{height:44px}
  .sp-hero{min-height:590px}
  .sp-trust-item{border-right:0;border-bottom:1px solid var(--sp-line)}
  .sp-trust-item.last-md{border-bottom:0}
}

@media(max-width:767.98px){
  .sp-section{padding:56px 0}
  .sp-hero{min-height:650px}
  .sp-hero:before{right:0;clip-path:none;opacity:.93}
  .sp-hero:after{left:46%;clip-path:none;opacity:.42}
  .sp-hero-content{padding:70px 0 150px}
  .sp-hero h1{font-size:2.75rem}
  .sp-hero p{font-size:.9rem}
  .sp-hero-destination{bottom:22px;font-size:.72rem}
  .sp-hero-destination.left{left:14px}
  .sp-hero-destination.right{right:14px}
  .sp-hero-destination small{display:none}
  .sp-pin{width:32px;height:32px}
  .sp-destination-card{min-height:395px;padding:1.3rem}
  .sp-destination-card h3{font-size:1.7rem}
  .sp-card-img{height:180px}
  .sp-mobile-sticky{
    position:fixed;left:0;right:0;bottom:0;z-index:1040;
    display:grid;grid-template-columns:1fr 1.15fr;gap:.5rem;
    padding:.55rem .75rem;background:#fff;border-top:1px solid var(--sp-line);
    box-shadow:0 -10px 30px rgba(12,20,52,.08)
  }
  .sp-mobile-sticky .btn{min-height:48px;font-size:.72rem}
}
.sp-section-soft{background:var(--sp-soft)}
.sp-eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  color:var(--sp-blue);font-size:.72rem;font-weight:800;
  letter-spacing:.12em;text-transform:uppercase;margin-bottom:.65rem;
}



.sp-link{color:var(--sp-blue);font-weight:800}
.sp-link:hover{color:var(--sp-navy)}


.btn-sp-primary:hover{
  background:#e9aa00;border-color:#e9aa00;color:var(--sp-navy);
  transform:translateY(-1px);
}
.btn-sp-dark{
  background:var(--sp-navy);
  border-color:var(--sp-navy);
  color:#fff;
  font-weight:800;
}
.btn-sp-dark:hover{background:#111d4d;border-color:#111d4d;color:#fff}


.sp-header{
  position:sticky;top:0;z-index:1030;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(12,20,52,.07);
}
.sp-header .navbar{min-height:76px}
.sp-logo{height:50px;width:auto}

.sp-nav-link:hover{color:var(--sp-blue)!important}
.sp-header .navbar-toggler{
  border:0;
  background:var(--sp-navy);
  color:#fff;
  width:44px;height:44px;border-radius:10px;
}
.sp-offcanvas .offcanvas-title{color:var(--sp-navy);font-weight:800}
.sp-offcanvas .nav-link{
  padding:.85rem 0;border-bottom:1px solid var(--sp-line);
  color:var(--sp-navy);font-weight:700;
}

.sp-hero{
  min-height:620px;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:#fff;
  background:var(--sp-navy);
}
.sp-hero:after{
  left:44%;
  background-image:url('https://srinagarpackages.com/crmnew/img_master/package/lehladakh_17698369100.webp');
  clip-path:polygon(18% 0,100% 0,100% 100%,0 100%);
}
.sp-hero-overlay{
  position:absolute;inset:0;z-index:-2;
  background:
    linear-gradient(90deg,rgba(12,20,52,.76),rgba(12,20,52,.44) 48%,rgba(12,20,52,.68)),
    linear-gradient(0deg,rgba(12,20,52,.58),transparent 60%);
}
.sp-hero-content{max-width:820px;margin:auto;text-align:center;padding:90px 0 120px}
.sp-hero-chip{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.5rem .8rem;border-radius:999px;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.1);
  font-size:.72rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
}

.sp-hero h1 span{color:var(--sp-yellow)}



.sp-hero-destination.right{right:max(30px,calc((100vw - 1140px)/2));text-align:right}
.sp-pin{
  width:38px;height:38px;border-radius:50%;
  display:grid;place-items:center;background:var(--sp-yellow);color:var(--sp-navy)
}

.sp-destination-card{
  position:relative;min-height:430px;border-radius:28px;overflow:hidden;
  color:#fff;box-shadow:var(--sp-shadow);isolation:isolate;
  padding:1.8rem;
  display:flex;flex-direction:column;justify-content:flex-end;
}
.sp-destination-card:before{
  content:"";position:absolute;inset:0;z-index:-2;background-size:cover;background-position:center;transition:.3s ease;
}

.sp-destination-card.ladakh:before{
  background-image:url('https://srinagarpackages.com/crmnew/img_master/package/lehladakh_17698369100.webp');
}

.sp-destination-card:hover:before{transform:scale(1.03)}

.sp-destination-card p{color:rgba(255,255,255,.84);margin:.7rem 0 1rem}
.sp-meta{
  display:flex;gap:.6rem;align-items:center;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  padding:.65rem;border-radius:13px;
}
.sp-meta i{color:var(--sp-yellow)}
.sp-meta small{display:block;color:rgba(255,255,255,.62);font-size:.58rem}
.sp-meta strong{font-size:.7rem}


.sp-trust-item strong{display:block;color:var(--sp-navy);font-size: 15px}
.sp-trust-item small{display:block;color:var(--sp-muted);font-size:13px;margin-top:.15rem}

.nav-pills.sp-tabs{gap:.5rem}

.sp-card{
  height:100%;
  border:1px solid var(--sp-line);
  border-radius:var(--sp-radius-sm);
  overflow:hidden;background:#fff;
  transition:.22s ease;
}
.sp-card:hover{transform:translateY(-4px);box-shadow:var(--sp-shadow)}
.sp-card-img{height:238px !important;position:relative;overflow:hidden;background:#e2e8ef}
.sp-card-img img{width:100%;height:100%;object-fit:initial;transition:.3s ease}
.sp-card:hover .sp-card-img img{transform:scale(1.03)}

.sp-card-body{padding:1rem}
.sp-card-price strong{display:block;color:var(--sp-navy);font-size:1.2rem}

.sp-style-card{
  height:100%;
  display:flex;align-items:center;gap:.85rem;
  padding:1rem;border:1px solid var(--sp-line);border-radius:14px;background:#fff;
}
.sp-style-icon{
  width:50px;height:50px;flex:0 0 50px;border-radius:15px;
  display:grid;place-items:center;background:#fff7dc;color:var(--sp-navy);
  border:1px solid #fde5a0;font-size:1.1rem;
}
.sp-style-card h3{font-size:.9rem;color:var(--sp-navy);font-weight:800;margin:0}
.sp-style-card p{font-size:.68rem;color:var(--sp-muted);margin:.15rem 0 0}
.sp-style-card .arrow{margin-left:auto;color:var(--sp-blue)}



.sp-hub-card{
  min-height:300px;position:relative;overflow:hidden;isolation:isolate;
  border-radius:24px;color:#fff;padding:1.6rem;
  display:flex;flex-direction:column;justify-content:flex-end;
}
.sp-hub-card:before{
  content:"";position:absolute;inset:0;z-index:-2;background-size:cover;background-position:center
}
.sp-hub-card.kashmir:before{background-image:url('https://srinagarpackages.com/crmnew/img_master/package/srinagar_17698361510.webp')}
.sp-hub-card.ladakh:before{background-image:url('https://srinagarpackages.com/crmnew/img_master/package/lehladakh_17698369100.webp')}
.sp-hub-card:after{
  content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(12,20,52,.08),rgba(12,20,52,.9))
}
.sp-hub-links{display:flex;gap:.5rem;flex-wrap:wrap}

.sp-hub-links a:hover{background:var(--sp-yellow);border-color:var(--sp-yellow);color:var(--sp-navy)}


.sp-why-no{font-size:16px;color:var(--sp-blue);font-weight:900;margin-bottom:1rem}
.sp-about-img img{width:100%;height:100%;object-fit:cover}
.sp-about-quote{
  position:absolute;left:18px;right:18px;bottom:18px;
  padding:1rem;border-radius:14px;
  background:rgba(12,20,52,.8);color:#fff;font-size:1.05rem;font-weight:700
}
.sp-about-check {
    color: var(--sp-green, #247456);
    font-weight: 700;
    font-size: 14px;
}
.sp-step-no{
  width:42px;height:42px;border-radius:50%;display:grid;place-items:center;
  background:var(--sp-blue);color:#fff;font-size:.8rem;font-weight:900;margin-bottom:.8rem
}
.sp-step h3{font-size:.9rem;color:var(--sp-navy);font-weight:800}
.sp-step p{font-size:.72rem;color:var(--sp-muted);margin:0}

.sp-review{
  height:100%;padding:1.25rem;border:1px solid var(--sp-line);border-radius:14px;background:#fff
}
.sp-stars{color:var(--sp-yellow);letter-spacing:2px}
.sp-review blockquote{font-size:.8rem;color:#455065;margin:.8rem 0}
.sp-review strong{color:var(--sp-navy);font-size:.8rem}
.sp-review small{color:var(--sp-muted);font-size:.66rem}
.sp-dest-pill{
  background:var(--sp-soft-blue);color:var(--sp-blue);
  padding:.3rem .55rem;border-radius:999px;font-size:.58rem;font-weight:800
}

.sp-guide-card{
  height:100%;border:1px solid var(--sp-line);border-radius:14px;overflow:hidden;background:#fff
}
.sp-guide-card img{width:100%;height:115px;object-fit:cover}
.sp-guide-card h3{font-size:.75rem;color:var(--sp-navy);font-weight:800;margin:0}

.sp-final-cta h3{color:var(--sp-navy);font-size:1.45rem;font-weight:800;margin:0}

.sp-footer{background:var(--sp-navy);color:#fff;padding:46px 0 18px;margin-top: -24px;}
.sp-footer img{height:50px;filter:brightness(0) invert(1)}





.sp-mobile-sticky{display:none}

@media(max-width:991.98px){
  .sp-header .navbar{min-height:68px}
  .sp-logo{height:44px}
  .sp-hero{min-height:590px}
  .sp-trust-item{border-right:0;border-bottom:1px solid var(--sp-line)}
  .sp-trust-item.last-md{border-bottom:0}
}

@media(max-width:767.98px){
  .sp-section{padding:56px 0}
  .sp-hero{min-height:650px}
  .sp-hero:before{right:0;clip-path:none;opacity:.93}
  .sp-hero:after{left:46%;clip-path:none;opacity:.42}
  .sp-hero-content{padding:70px 0 150px}
  .sp-hero h1{font-size:2.75rem}
  .sp-hero p{font-size:.9rem}
  .sp-hero-destination{bottom:22px;font-size:.72rem}
  .sp-hero-destination.left{left:14px}
  .sp-hero-destination.right{right:14px}
  .sp-hero-destination small{display:none}
  .sp-pin{width:32px;height:32px}
  .sp-destination-card{min-height:395px;padding:1.3rem}
  .sp-destination-card h3{font-size:1.7rem}
  .sp-card-img{height:180px}
  .sp-mobile-sticky{
    position:fixed;left:0;right:0;bottom:0;z-index:1040;
    display:grid;grid-template-columns:1fr 1.15fr;gap:.5rem;
    padding:.55rem .75rem;background:#fff;border-top:1px solid var(--sp-line);
    box-shadow:0 -10px 30px rgba(12,20,52,.08)
  }
  .sp-mobile-sticky .btn{min-height:48px;font-size:.72rem}
}
.sp-section{padding:50px 0}
.sp-section-soft{background:var(--sp-soft)}

.sp-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color:var(--sp-blue);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:.65rem;
}

.sp-link{color:var(--sp-blue);font-weight:800}
.sp-link:hover{color:var(--sp-navy)}


.btn-sp-primary:hover{
  background:#e9aa00;
  border-color:#e9aa00;
  color:var(--sp-navy);
  transform:translateY(-1px);
}
.btn-sp-dark{
  background:var(--sp-navy);
  border-color:var(--sp-navy);
  color:#fff;
  font-weight:800;
}
.btn-sp-dark:hover{background:#111d4d;border-color:#111d4d;color:#fff}


/* HEADER — SAME SYSTEM AS HOME / DESTINATION */
.sp-header{
  position:sticky;
  top:0;
  z-index:1030;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(12,20,52,.07);
}
.sp-header .navbar{min-height:76px}
.sp-logo{height:50px;width:auto}

.sp-nav-link:hover{color:var(--sp-blue)!important}
.sp-header .navbar-toggler{
  border:0;
  background:var(--sp-navy);
  color:#fff;
  width:44px;height:44px;border-radius:10px;
}
.sp-offcanvas .offcanvas-title{color:var(--sp-navy);font-weight:800}
.sp-offcanvas .nav-link{
  padding:.85rem 0;
  border-bottom:1px solid var(--sp-line);
  color:var(--sp-navy);
  font-weight:700;
}

/* BREADCRUMB */
.sp-breadcrumb-bar{
  background:#fff;
  border-bottom:1px solid var(--sp-line);
}
.sp-breadcrumb{
  padding:.75rem 0;
  color:var(--sp-muted);
  font-size:.68rem;
  padding-left: 18px !important;
}
.sp-breadcrumb span{font-size: 14px;}

/* PLACE HERO — SAME VISUAL LANGUAGE */
.sp-place-hero{
  min-height:555px;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:#fff;
  background:var(--sp-navy);
  display:flex;
  align-items:center;
}
.sp-place-hero img{
  position:absolute;
  inset:0;
  z-index:-3;
  width:100%;
  height:100%;
  object-fit:cover;
}
.sp-place-hero:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(12,20,52,.93) 0%,rgba(12,20,52,.72) 42%,rgba(12,20,52,.24) 78%),
    linear-gradient(0deg,rgba(12,20,52,.6),transparent 52%);
}
.sp-place-hero-content{
  max-width:850px;
  padding:76px 0 92px;
}
.sp-place-tag{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.48rem .78rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.10);
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:1rem;
}
.sp-place-tag i{color:var(--sp-yellow)}
.sp-place-hero h1{
  margin:0 0 1rem;
  color:#fff;
  font-size:clamp(2.8rem,5.5vw,4rem);
  line-height:1.03;
  font-weight:800;
  letter-spacing:-.05em;
}
.sp-place-hero p{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.88);
  font-size:14px;
}

/* QUICK FACTS */
.sp-quick-wrap{
  position:relative;
  z-index:10;
  margin-top:-35px;
}
.sp-quick-grid{
  overflow:hidden;
  border:1px solid var(--sp-line);
  border-radius:20px;
  background:#fff;
  box-shadow:var(--sp-shadow);
}
.sp-quick-item{
  min-height:96px;
  display:flex;
  align-items:center;
  gap:.8rem;
  padding:1.15rem 1.2rem;
  border-right:1px solid var(--sp-line);
}
.sp-quick-item.last{border-right:0}
.sp-icon{
  width:42px;height:42px;
  flex:0 0 42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:#fff8e3;
  color:var(--sp-blue);
}

.sp-quick-item strong{
  display:block;
  color:var(--sp-navy);
  font-size:16px;
  margin-top:.15rem;
}

/* CONTENT */
.sp-place-content{padding:50px 0px;}

.sp-article-intro h2{
  color:var(--sp-navy);
  font-size:2rem;
  font-weight:800;
  letter-spacing:-.03em;
}
.sp-article-intro p{
  color:#4f5f72;
  font-size:1rem;
  margin:0;
}

.sp-jumpnav{
  position:sticky;
  top:76px;
  z-index:1010;
  display:flex;
  gap:.45rem;
  flex-wrap:wrap;
  padding:.75rem;
  margin:1.5rem auto 2.5rem;
  border:1px solid #dbe8f0;
  border-radius:16px;
  background:rgba(238,246,251,.96);
  backdrop-filter:blur(10px);
}
.sp-jumpnav a{
  padding:.5rem .72rem;
  border:1px solid var(--sp-line);
  border-radius:10px;
  background:#fff;
  color:var(--sp-blue);
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
}
.sp-jumpnav a:hover{color:var(--sp-navy);border-color:#bdd4e3}

.sp-content-section{
  scroll-margin-top:155px;
  margin-bottom:2.8rem;
}
.sp-content-section h2{
  position:relative;
  padding-left:15px;
  margin:0 0 1rem;
  color:var(--sp-navy);
  font-size:1.75rem;
  font-weight:800;
  letter-spacing:-.025em;
}
.sp-content-section h2:before{
  content:"";
  position:absolute;
  left:0;top:4px;
  width:4px;height:29px;
  border-radius:99px;
  background:var(--sp-blue);
}
.sp-content-section p{color:#46586a}
.sp-callout{
  margin:1.3rem 0;
  padding:1.2rem;
  border:1px solid #dfe8ef;
  border-radius:16px;
  background:linear-gradient(135deg,#f5fafc,#fffaf0);
}
.sp-callout strong{color:var(--sp-navy)}

.sp-timeline{
  position:relative;
  margin-top:1.5rem;
  padding-left:2rem;
}
.sp-timeline:before{
  content:"";
  position:absolute;
  left:9px;top:8px;bottom:8px;
  width:2px;
  background:#e1e8ef;
}
.sp-time-item{
  position:relative;
  margin-bottom:1.5rem;
}
.sp-time-item:last-child{margin-bottom:0}
.sp-time-item:before{
  content:"";
  position:absolute;
  left:-30px;top:7px;
  width:12px;height:12px;
  border-radius:50%;
  background:var(--sp-yellow);
  box-shadow:0 0 0 5px #fff5d8;
}
.sp-time-item h3{
  margin:0 0 .3rem;
  color:var(--sp-navy);
  font-size:1rem;
  font-weight:800;
}
.sp-time-item p{
  margin:0;
  color:#526477;
  font-size:.82rem;
}

.sp-info-card{
  height:100%;
  padding:1.2rem;
  border:1px solid var(--sp-line);
  border-radius:16px;
  background:#fff;
}
.sp-info-card .sp-icon{margin-bottom:.8rem}
.sp-info-card h3{
  color:var(--sp-navy);
  font-size:1rem;
  font-weight:800;
}
.sp-info-card p{
  margin:0;
  color:var(--sp-muted);
  font-size:.78rem;
}
.sp-list{
  list-style:none;
  margin:1rem 0 0;
  padding:0;
}
.sp-list li{
  position:relative;
  margin-bottom:.8rem;
  padding-left:1.4rem;
  color:#46586a;
}
.sp-list li:before{
  content:"";
  position:absolute;
  left:2px;top:9px;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--sp-yellow);
  box-shadow:0 0 0 4px #fff5d8;
}

/* SHARED CARDS — SAME AS HOME / HUB */
.sp-card{
  height:100%;
  overflow:hidden;
  border:1px solid var(--sp-line);
  border-radius:var(--sp-radius-sm);
  background:#fff;
  transition:.22s ease;
}
.sp-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--sp-shadow);
}
.sp-card-img{
  height:190px;
  position:relative;
  overflow:hidden;
  background:#e2e8ef;
}
.sp-card-img img{
  width:100%;
  height:100%;
  object-fit:initial;
  transition:.3s ease;
}
.sp-card:hover .sp-card-img img{transform:scale(1.03)}

.sp-card-body{padding:1rem}

.sp-card-price strong{
  display:block;
  color:var(--sp-navy);
  font-size:1.15rem;
}

/* FAQ */
.sp-faq .accordion-item{
  overflow:hidden;
  margin-bottom:.7rem;
  border:1px solid var(--sp-line);
  border-radius:14px!important;
}

.sp-faq .accordion-button:not(.collapsed){
  background:var(--sp-soft-blue);
  color:var(--sp-navy);
}
.sp-faq .accordion-body{
  color:var(--sp-muted);
  font-size:.74rem;
}



.sp-final-cta h3{
  margin:0;
  color:var(--sp-navy);
  font-size:1.45rem;
  font-weight:800;
}


/* FOOTER — SAME AS HOME / HUB */
.sp-footer{
  background:var(--sp-navy);
  color:#fff;
  padding:46px 0 18px;
}
.sp-footer img{height:50px;filter:brightness(0) invert(1)}





.sp-mobile-sticky{display:none}

@media(max-width:991.98px){
  .sp-header .navbar{min-height:68px}
  .sp-logo{height:44px}
  .sp-quick-item{border-bottom:1px solid var(--sp-line)}
  .sp-quick-item:nth-child(2n){border-right:0}
  .sp-quick-item:nth-last-child(-n+2){border-bottom:0}
}

@media(max-width:767.98px){
  .sp-section{padding:56px 0}
  .sp-breadcrumb-bar{display:none}
  .sp-place-hero{min-height:620px}
  .sp-place-hero:before{
    background:linear-gradient(180deg,rgba(12,20,52,.50),rgba(12,20,52,.91));
  }
  .sp-place-hero-content{padding:70px 0 90px}
  .sp-place-hero h1{font-size:2.65rem}
  .sp-place-hero p{font-size:.9rem}
  .sp-quick-wrap{margin-top:-28px}
  .sp-quick-item{min-height:88px;padding:.9rem}
  .sp-jumpnav{
    top:68px;
    flex-wrap:nowrap;
    overflow:auto;
    scrollbar-width:none;
    border-radius:0;
    margin-left:calc(var(--bs-gutter-x) * -.5);
    margin-right:calc(var(--bs-gutter-x) * -.5);
    max-width:none;
    padding:.7rem .75rem;
  }
  .sp-jumpnav::-webkit-scrollbar{display:none}
  .sp-content-section{margin-bottom:2.2rem}
  .sp-content-section h2{font-size:1.45rem}
  .sp-card-img{height:180px}
  .sp-mobile-sticky{
    position:fixed;
    left:0;right:0;bottom:0;
    z-index:1040;
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:.5rem;
    padding:.55rem .75rem;
    background:#fff;
    border-top:1px solid var(--sp-line);
    box-shadow:0 -10px 30px rgba(12,20,52,.08);
  }
  .sp-mobile-sticky .btn{
    min-height:48px;
    font-size:.72rem;
  }
}

@media(max-width:575.98px){
  .sp-quick-item{
    border-right:0!important;
    border-bottom:1px solid var(--sp-line)!important;
  }
  .sp-quick-item.last{border-bottom:0!important}
}

.sp-section-soft{background:var(--sp-soft)}

.sp-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color:var(--sp-blue);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:.65rem;
}
.sp-link{color:var(--sp-blue);font-weight:800}
.sp-link:hover{color:var(--sp-navy)}
.sp-inline-link{color:var(--sp-blue);font-weight:700;border-bottom:1px dotted #a9c3d7}
.sp-inline-link:hover{color:var(--sp-navy)}


.btn-sp-primary:hover{
  background:#e9aa00;border-color:#e9aa00;color:var(--sp-navy);
  transform:translateY(-1px);
}
.btn-sp-dark{
  background:var(--sp-navy);
  border-color:var(--sp-navy);
  color:#fff;
  font-weight:800;
}
.btn-sp-dark:hover{background:#111d4d;border-color:#111d4d;color:#fff}

.btn-sp-outline:hover{border-color:#cfd6df;color:var(--sp-navy)}

/* HEADER — SAME AS HOME / HUB / PLACE */
.sp-header{
  position:sticky;
  top:0;
  z-index:1030;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(12,20,52,.07);
}
.sp-header .navbar{min-height:76px}
.sp-logo{height:50px;width:auto}

.sp-nav-link:hover{color:var(--sp-blue)!important}
.sp-header .navbar-toggler{
  border:0;
  background:var(--sp-navy);
  color:#fff;
  width:44px;height:44px;border-radius:10px;
}
.sp-offcanvas .offcanvas-title{color:var(--sp-navy);font-weight:800}
.sp-offcanvas .nav-link{
  padding:.85rem 0;
  border-bottom:1px solid var(--sp-line);
  color:var(--sp-navy);
  font-weight:700;
}

/* BREADCRUMB */
.sp-breadcrumb-bar{background:#fff;border-bottom:1px solid var(--sp-line)}
.sp-breadcrumb{
  padding:.75rem 0;
  color:var(--sp-muted);
  font-size:.68rem;
}

/* PACKAGE HERO */
.sp-package-hero{
  min-height:575px;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:#fff;
  background:var(--sp-navy);
  display:flex;
  align-items:flex-end;
}
.sp-package-hero img{
  position:absolute;
  inset:0;
  z-index:-3;
  width:100%;
  height:100%;
  object-fit:cover;
}
.sp-package-hero:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(12,20,52,.94) 0%,rgba(12,20,52,.72) 47%,rgba(12,20,52,.2) 82%),
    linear-gradient(0deg,rgba(12,20,52,.62),transparent 55%);
}
.sp-package-hero-content{
  max-width:900px;
  padding:78px 0 96px;
}
.sp-package-tag{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.48rem .78rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.10);
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:1rem;
}
.sp-package-tag i{color:var(--sp-yellow)}
.sp-package-hero h1{
  max-width:850px;
  margin:0 0 1rem;
  color:#fff;
  font-size:clamp(2.7rem,5.5vw,4.1rem);
  line-height:1.03;
  font-weight:800;
  letter-spacing:-.05em;
}
.sp-package-hero p{
  margin:0;
  max-width:740px;
  color:rgba(255,255,255,.88);
  font-size:1rem;
}
.sp-hero-actions{display:flex;gap:.65rem;flex-wrap:wrap;margin-top:1.35rem}
.sp-hero-actions .btn-light{font-weight:800;color:var(--sp-navy)}
.btn-light{font-size: 13px;padding: 8px 16px;}
/* QUICK FACTS */
.sp-quick-wrap{position:relative;z-index:10;margin-top:-35px}
.sp-quick-grid{
  overflow:hidden;
  border:1px solid var(--sp-line);
  border-radius:20px;
  background:#fff;
  box-shadow:var(--sp-shadow);
}
.sp-quick-item{
  min-height:96px;
  display:flex;
  align-items:center;
  gap:.8rem;
  padding:1.15rem 1.2rem;
  border-right:1px solid var(--sp-line);
}
.sp-quick-item.last{border-right:0}
.sp-icon{
  width:42px;height:42px;
  flex:0 0 42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:#fff8e3;
  color:var(--sp-blue);
}
.sp-quick-item small {
    display: block;
    color: var(--sp-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.sp-price-fact strong{font-size:.93rem}
.sp-price-fact em{
  display:block;
  color:var(--sp-muted);
  font-size:12px;
  font-style:normal;
  font-weight:600;
}

/* STICKY PAGE NAV */
.sp-package-nav-wrap{
  position:sticky;
  top:76px;
  z-index:1018;
  margin:20px 0px;
  background:#fff;
  border-top:1px solid var(--sp-line);
  border-bottom:1px solid var(--sp-line);
  box-shadow:0 7px 18px rgba(12,20,52,.04);
}
.sp-package-nav{
  display:flex;
  gap:.45rem;
  overflow:auto;
  padding:.65rem 0;
  scrollbar-width:none;
}
.sp-package-nav::-webkit-scrollbar{display:none}
.sp-package-nav a{
  white-space:nowrap;
  padding:.5rem .78rem;
  border-radius:999px;
  color:#000;
  font-size:14px;
  font-weight:600;
}
.sp-package-nav a:hover,
.sp-package-nav a.active{background:var(--sp-navy);color:#fff}

/* MAIN PACKAGE AREA */
.sp-package-main{padding:0px}
.sp-content-card{
  margin-bottom:1.1rem;
  padding:1.55rem;
  border:1px solid var(--sp-line);
  border-radius:18px;
  background:#fff;
}
.sp-content-card h2{
  position:relative;
  padding-left:14px;
  color:var(--sp-navy);
  font-size:20px;
  font-weight:800;
  letter-spacing:-.025em;
  margin-bottom: 20px;
}
.accordion-header::before{display: none;}
.sp-content-card h2:before{
  content:"";
  position:absolute;
  left:0;top:3px;
  width:4px;height:22px;
  border-radius:99px;
  background:var(--sp-blue);
}
.sp-content-card p{color:#4c5f72;font-size:14px;}
.sp-content-card p:last-child{margin-bottom:0}

/* GALLERY */
.sp-gallery{
  display:grid;
  grid-template-columns:minmax(0,1.7fr) minmax(220px,.8fr);
  gap:.8rem;
  margin-bottom:1.3rem;
}
.sp-gallery-main,
.sp-gallery-thumb{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  background:#dfe6ec;
}
.sp-gallery-main{min-height:465px}
.sp-gallery-side{display:grid;grid-template-rows:1fr 1fr;gap:.8rem}
.sp-gallery-thumb{min-height:225px}
.sp-gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.3s ease;
}
.sp-gallery a:hover img{transform:scale(1.025)}
.sp-view-all{
  position:absolute;
  right:14px;
  bottom:14px;
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.55rem .75rem;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:var(--sp-navy);
  font-size:13px;
  font-weight:800;
  box-shadow:var(--sp-shadow-sm);
}
.sp-trip-title{
  margin:0 0 .45rem;
  color:var(--sp-navy);
  font-size:1.45rem;
  font-weight:800;
  letter-spacing:-.02em;
}
.sp-trip-meta{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  color:var(--sp-muted);
  font-size:14px;
  font-weight:700;
}
.sp-trip-meta i{color:var(--sp-blue);margin-right:.3rem}

/* SIDEBAR */
.sp-package-sidebar{
  position:sticky;
  top:145px;
}
.sp-book-card{
  overflow:hidden;
  border:1px solid var(--sp-line);
  border-radius:22px;
  background:#fff;
  box-shadow:var(--sp-shadow);
}
.sp-book-head{
  padding:1.25rem 1.25rem 1rem;
  background:#fff;
  border-bottom:1px solid var(--sp-line);
}
.sp-book-kicker{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.35rem .55rem;
  border-radius:999px;
  background:#fff8e3;
  color:var(--sp-blue);
  font-size:.58rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.sp-book-head h3{
  color:var(--sp-navy);
  font-size:1.2rem;
  font-weight:700;
}
.sp-book-body{padding:1.15rem 1.2rem 1.25rem}
.sp-price-label{
  color:var(--sp-muted);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.07em;
}
.sp-book-price{
  display:flex;
  align-items:flex-end;
  gap:.3rem;
  margin:.2rem 0 1rem;
}
.sp-book-price strong{
  color:var(--sp-navy);
  font-size:2rem;
  line-height:1;
  letter-spacing:-.04em;
}
.sp-book-price span{color:var(--sp-muted);font-size:.65rem}
.sp-book-facts{
  border-top:1px solid var(--sp-line);
  border-bottom:1px solid var(--sp-line);
  padding:.8rem 0;
  margin-bottom:1rem;
}
.sp-book-fact{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  margin:.45rem 0;
  font-size:.7rem;
}
.sp-book-fact span{color:var(--sp-muted);font-size: 13px;}
.sp-book-fact strong{color:var(--sp-navy);text-align:right;font-size: 13px;}
.sp-traveller-title{
  margin-bottom:.55rem;
  color:var(--sp-navy);
  font-size:.75rem;
  font-weight:800;
}
.sp-traveller-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.55rem 0;
}
.sp-traveller-row span{
  color:#536477;
  font-size:.7rem;
}
.sp-counter{
  display:flex;
  align-items:center;
  gap:.55rem;
}
.sp-counter button{
  width:30px;height:30px;
  border:1px solid var(--sp-line);
  border-radius:9px;
  background:#fff;
  color:var(--sp-navy);
  font-weight:900;
}
.sp-counter b{
  min-width:15px;
  color:var(--sp-navy);
  text-align:center;
  font-size:.75rem;
}
.sp-book-note{
  display:flex;
  gap:.55rem;
  padding:.7rem;
  margin:.8rem 0;
  border-radius:11px;
  background:var(--sp-soft-blue);
  color:#526477;
  font-size:12px;
}
.sp-book-note i{color:var(--sp-blue);margin-top:.12rem}
.sp-book-card .btn{width:100%;min-height:46px;margin-top:.5rem;font-size: 14px;}
.sp-secure{
  display:flex;
  justify-content:center;
  gap:.35rem;
  margin-top:.6rem;
  color:#8a95a0;
  font-size:12px;
}
.sp-side-trust{
  margin-top:1rem;
  padding-top:1rem;
  border-top:1px solid var(--sp-line);
}
.sp-side-trust h4{
  margin:0 0 .6rem;
  color:var(--sp-navy);
  font-size:16px;
  font-weight:800;
}
.sp-trust-line{
  display:flex;
  gap:.55rem;
  margin:.55rem 0;
  color:#637488;
  font-size:13px;
}
.sp-trust-check{
  width:22px;height:22px;
  flex:0 0 22px;
  display:grid;
  place-items:center;
  border-radius:7px;
  background:#fff8e3;
  color:var(--sp-blue);
  font-size:.55rem;
}

/* HIGHLIGHTS */
.sp-check-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.65rem 1rem;
  margin:0;
  padding:0;
  list-style:none;
}
.sp-check-grid li{
  position:relative;
  padding-left:1.45rem;
  color:#526477;
  font-size:.78rem;
}
.sp-check-grid li:before{
  content:"✓";
  position:absolute;
  left:0;top:.1rem;
  width:17px;height:17px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff5d8;
  color:#a87500;
  font-size:.55rem;
  font-weight:900;
}

/* ITINERARY */
.sp-itinerary{position:relative}
.sp-day{
  position:relative;
  padding-left:3.4rem;
  padding-bottom:1rem;
}
.sp-day:last-child{padding-bottom:0}
.sp-day:before{
  content:"";
  position:absolute;
  left:20px;
  top:44px;
  bottom:-3px;
  width:2px;
  background:#dfe7ee;
}
.sp-day:last-child:before{display:none}
.sp-day-head{
  display:flex;
  align-items:center;
  gap:.65rem;
  min-height:42px;
  cursor:pointer;
}
.sp-day-no{
  position:absolute;
  left:0;top:0;
  width:42px;height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--sp-yellow);
  color:var(--sp-navy);
  box-shadow:0 0 0 5px #fff6d9;
  font-size:14px;
  font-weight:900;
  z-index:2;
}
.sp-day-title{
  flex:1;
  color:var(--sp-navy);
  font-size:16px;
  font-weight:700;
}
.sp-day-toggle{
  width:30px;height:30px;
  flex:0 0 30px;
  display:grid;
  place-items:center;
  border:1px solid var(--sp-line);
  border-radius:50%;
  color:var(--sp-blue);
  background:#fff;
  font-size:.75rem;
}
.sp-day-body{
  padding:.8rem 0 .2rem;
}
.sp-day-points{
  margin:0;
  padding:0;
  list-style:none;
}
.sp-day-points li{
  position:relative;
  padding:.35rem 0 .35rem 1rem;
  color:#526477;
  font-size:.76rem;
}
.sp-day-points li:before{
  content:"";
  position:absolute;
  left:0;top:.78rem;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--sp-blue);
}

/* INCLUSION / EXCLUSION / POLICY */
.sp-policy-card{
  height:100%;
  padding:1.25rem;
  border:1px solid var(--sp-line);
  border-radius:16px;
  background:#fff;
}
.sp-policy-card h3{
  display:flex;
  align-items:center;
  gap:.55rem;
  margin:0 0 .9rem;
  color:var(--sp-navy);
  font-size:1rem;
  font-weight:800;
}
.sp-policy-icon{
  width:34px;height:34px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#fff8e3;
  color:var(--sp-blue);
}
.sp-policy-card ul{
  list-style:none;
  margin:0;
  padding:0;
}
.sp-policy-card li{
  position:relative;
  padding-left:1.35rem;
  margin-bottom:.65rem;
  color:#58697b;
  font-size:14px;
}
.sp-policy-card li:before{
  content:"✓";
  position:absolute;
  left:0;top:.05rem;
  color:#a87500;
  font-weight:900;
}
.sp-policy-card.exclude li:before{
  content:"×";
  color:var(--sp-red);
}
.sp-policy-card li:last-child{margin-bottom:0}
.sp-booking-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.7rem;
}
.sp-booking-step{
  padding:1rem;
  border:1px solid var(--sp-line);
  border-radius:14px;
  background:#fff;
}
.sp-booking-step b{
  display:block;
  color:var(--sp-blue);
  font-size:16px;
  margin-bottom:.55rem;
}
.sp-booking-step strong{
  display:block;
  color:var(--sp-navy);
  font-size:16px;
  margin-bottom:.25rem;
}
.sp-booking-step p{
  margin:0;
  color:var(--sp-muted);
  font-size:13px;
}

/* FAQ */
.sp-faq .accordion-item{
  overflow:hidden;
  margin-bottom:.7rem;
  border:1px solid var(--sp-line);
  border-radius:14px!important;
}
.sp-faq .accordion-button{
  box-shadow:none;
  color:var(--sp-navy);
  font-size:15px;
  font-weight:700;
}
.sp-faq .accordion-button:not(.collapsed){
  background:var(--sp-soft-blue);
  color:var(--sp-navy);
}
.sp-faq .accordion-body{
  color:var(--sp-muted);
  font-size:.74rem;
}
.accordion-button::after{
  background-size: 14px;
}
/* REVIEWS — UI SHELL FOR GENUINE CMS DATA */
.sp-rating-summary{
  height:100%;
  padding:1.25rem;
  border:1px solid var(--sp-line);
  border-radius:16px;
  background:#fff;
}
.sp-rating-summary strong{
  display:block;
  color:var(--sp-navy);
  font-size:2.5rem;
  line-height:1;
}
.sp-stars{color:var(--sp-yellow);letter-spacing:1px;margin:.55rem 0}
.sp-rating-summary small{color:var(--sp-muted);font-size:.65rem}
.sp-review-placeholder{
  height:100%;
  padding:1.2rem;
  border:1px solid var(--sp-line);
  border-radius:16px;
  background:#fff;
}
.sp-review-placeholder .sp-review-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.sp-review-placeholder strong{color:var(--sp-navy);font-size:.8rem}
.sp-review-placeholder span{
  padding:.3rem .5rem;
  border-radius:999px;
  background:var(--sp-soft-blue);
  color:var(--sp-blue);
  font-size:.56rem;
  font-weight:800;
}
.sp-review-placeholder p{
  margin:.75rem 0 0;
  color:var(--sp-muted);
  font-size:.72rem;
}

/* RELATED PACKAGE CARDS */
.sp-card{
  height:100%;
  overflow:hidden;
  border:1px solid var(--sp-line);
  border-radius:var(--sp-radius-sm);
  background:#fff;
  transition:.22s ease;
}
.sp-card:hover{transform:translateY(-4px);box-shadow:var(--sp-shadow)}
.sp-card-img{
  height:190px;
  position:relative;
  overflow:hidden;
  background:#e2e8ef;
}
.sp-card-img img{width:100%;height:100%;object-fit:cover;transition:.3s ease}
.sp-card:hover .sp-card-img img{transform:scale(1.03)}

.sp-card-body{padding:1rem}
.sp-card-price strong{display:block;color:var(--sp-navy);font-size:1.2rem}


/* PACKAGE DISCOVERY — CARD BASED */
.sp-theme-card,
.sp-duration-card{
  height:100%;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border:1px solid var(--sp-line);
  border-radius:18px;
  background:#fff;
  transition:.22s ease;
}

.sp-theme-card:hover,
.sp-duration-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--sp-shadow);
}

.sp-theme-card__visual{
  min-height:155px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  background:var(--sp-navy);
  isolation:isolate;
}

 .sp-theme-card img{
 height: 200px;
    width: 100%;
    object-fit: cover;
 }  

.sp-theme-card:hover .sp-theme-card__visual:before{transform:scale(1.035)}

.sp-theme-card__visual:after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(180deg,rgba(12,20,52,.08),rgba(12,20,52,.86));
}

.sp-theme-card__icon{
  width:38px;height:38px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:var(--sp-yellow);
  color:var(--sp-navy);
  font-size:.85rem;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.sp-theme-card__body{padding:1rem}
.sp-theme-card__body h3{
  margin:0;
  color:var(--sp-navy);
  font-size:16px;
  font-weight:800;
}
.sp-theme-card__body p{
 margin: .3rem 0 .75rem;
color: var(--sp-muted);
font-size: 14px;

display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
overflow: hidden;
}
.sp-faq{
  height: 450px;
  overflow: scroll;
}
.sp-theme-card__count{
  color:var(--sp-blue);
  font-size:13px;
  font-weight:800;
}

.sp-duration-card{
  padding:1.15rem;
}

.sp-duration-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.8rem;
  margin-bottom:1rem;
}

.sp-duration-icon{
  width:42px;height:42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:#fff8e3;
  color:var(--sp-blue);
}

.sp-duration-days{
  color:var(--sp-blue);
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.sp-duration-card h3{
  margin:0;
  color:var(--sp-navy);
  font-size:.95rem;
  font-weight:800;
}

.sp-duration-card p{
  margin:.35rem 0 1rem;
  color:var(--sp-muted);
  font-size:.68rem;
  flex:1;
}

.sp-duration-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.7rem;
  padding-top:.8rem;
  border-top:1px solid var(--sp-line);
}

.sp-duration-footer small{
  color:var(--sp-muted);
  font-size:.58rem;
}


.sp-final-cta h3{
  color:var(--sp-navy);
  font-size:1.45rem;
  font-weight:800;
  margin:0;
}

.sp-footer{
  background:var(--sp-navy);
  color:#fff;
  padding:46px 0 18px;
}
.sp-footer img{height:50px;filter:brightness(0) invert(1)}




.sp-mobile-sticky{display:none}


/* STICKY DISCOVERY SIDEBAR */

.sp-package-sidebar > *{
  position:relative;
}
.sp-package-sidebar .sp-side-module{
  box-shadow:none;
}
.sp-package-sidebar .sp-book-card{
  margin-bottom:.9rem;
}
.sp-package-sidebar .sp-side-module{
  margin-top:.75rem;
}
.sp-package-sidebar:after{
  content:"";
  position:absolute;
  left:22px;
  top:100%;
  width:1px;
  height:0;
}

.sp-package-sidebar{
  position:sticky;
  top:145px;
}
.sp-side-module{
  margin-top:.9rem;
  padding:1rem;
  border:1px solid var(--sp-line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--sp-shadow-sm);
}
.sp-side-module h4{
  margin-bottom:10px;
  color:var(--sp-navy);
  font-size:15px;
  font-weight:800;
}
.sp-side-module .sp-module-copy{
  margin:.2rem 0 .8rem;
  color:var(--sp-muted);
  font-size:.6rem;
}
.sp-mini-package{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  gap:.7rem;
  align-items:center;
  padding:.65rem 0;
  border-top:1px solid var(--sp-line);
}
.sp-mini-package:first-of-type{border-top:0;padding-top:0}
.sp-mini-package:last-of-type{padding-bottom:0}
.sp-mini-package img{
  width:72px;height:60px;
  object-fit:cover;
  border-radius:10px;
}
.sp-mini-package strong {
    display: block;
    color: var(--sp-navy);
    font-size: 15px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.sp-mini-package small{
  display:block;
  color:var(--sp-muted);
  font-size:13px;
  margin-top:.18rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.sp-mini-package .sp-mini-price{
  color:var(--sp-blue);
  font-weight:800;
}
.sp-guide-link{
  display:flex;
  align-items:flex-start;
  gap:.6rem;
  padding:.65rem 0;
  border-top:1px solid var(--sp-line);
}
.sp-guide-link:first-of-type{border-top:0;padding-top:0}
.sp-guide-link:last-of-type{padding-bottom:0}
.sp-guide-icon{
  width:32px;height:32px;
  flex:0 0 32px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:var(--sp-soft-blue);
  color:var(--sp-blue);
  font-size:.65rem;
}
.sp-guide-link strong{
  display:block;
  color:var(--sp-navy);
  font-size:15px;
  line-height:1.4;
}
.sp-guide-link small{
  display:block;
  color:var(--sp-muted);
  font-size:13px;
  margin-top:.12rem;
}
.sp-chip-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
}
.sp-filter-chip{
  display:inline-flex;
  align-items:center;
  gap:.3rem;
  padding:.42rem .62rem;
  border:1px solid var(--sp-line);
  border-radius:999px;
  background:#fff;
  color:var(--sp-blue);
  font-size:13px;
  font-weight:700;
}
.sp-filter-chip:hover{
  background:var(--sp-navy);
  border-color:var(--sp-navy);
  color:#fff;
}
.sp-discovery-band{
  margin-top:1.1rem;
  padding:1.4rem;
  border:1px solid #dbe8f0;
  border-radius:20px;
  background:linear-gradient(135deg,#f7fbfd,#fffaf0);
}
.sp-discovery-band h3{
  margin:0;
  color:var(--sp-navy);
  font-size:1.2rem;
  font-weight:800;
}
.sp-discovery-band p{
  margin:.25rem 0 1rem;
  color:var(--sp-muted);
  font-size:.72rem;
}
.sp-discovery-group h4{
  margin:0 0 .55rem;
  color:var(--sp-navy);
  font-size:.7rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.07em;
}
@media(min-width:992px){
  .sp-package-sidebar{
    position:sticky;
    top:145px;
    max-height:none;
    overflow:visible;
    padding-right:0;
  }
}



.sp-package-sidebar .sp-book-head{padding:1rem 1.05rem .8rem}
.sp-package-sidebar .sp-book-body{padding:.95rem 1.05rem 1rem}
.sp-package-sidebar .sp-book-price{margin:.15rem 0 .7rem}
.sp-package-sidebar .sp-book-price strong{font-size:1.7rem}
.sp-package-sidebar .sp-book-facts{padding:.55rem 0;margin-bottom:.7rem}
.sp-package-sidebar .sp-book-fact{margin:.3rem 0}
.sp-package-sidebar .sp-book-note{margin:.6rem 0;padding:.6rem}
.sp-package-sidebar .sp-side-trust{margin-top:.7rem;padding-top:.7rem}
.sp-package-sidebar .sp-trust-line{margin:.38rem 0}
.sp-package-sidebar .sp-side-module{padding:1rem}
.sp-package-sidebar .sp-mini-package{padding:.5rem 0}
.sp-package-sidebar .sp-mini-package img{width:75px;height:65px}
.sp-package-sidebar .sp-guide-link{padding:.5rem 0}
.sp-package-sidebar .sp-chip-wrap{gap:.35rem}
.sp-package-sidebar .sp-filter-chip{padding:.34rem .5rem}

/* RELIABLE FLOATING PACKAGE RAIL */
.sp-package-main,
.sp-package-main .container,
.sp-package-main .row,
.sp-sidebar-col{
  overflow:visible !important;
}

.sp-sidebar-col{
  position:relative;
  align-self:stretch;
}

@media(min-width:992px){
  .sp-package-sidebar{
    position:-webkit-sticky !important;
    position:sticky !important;
    top:145px !important;
    z-index:20;
    height:max-content;
    max-height:none !important;
    overflow:visible !important;
    transform:none !important;
  }
}

@media(max-width:991.98px){
  .sp-package-sidebar{
    position:static !important;
    top:auto !important;
  }
}

/* GALLERY MODAL */
.sp-modal-gallery .modal-content{background:#0b1026;border:0}
.sp-modal-gallery .modal-header{border:0;color:#fff}
.sp-modal-gallery .btn-close{filter:invert(1)}
.sp-modal-gallery .carousel-item img{
  width:100%;
  height:min(75vh,720px);
  object-fit:contain;
  background:#0b1026;
}

@media(max-width:1199.98px){
  .sp-booking-steps{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:991.98px){
  .sp-header .navbar{min-height:68px}
  .sp-logo{height:44px}
  .sp-quick-item{border-bottom:1px solid var(--sp-line)}
  .sp-quick-item:nth-child(2n){border-right:0}
  .sp-quick-item:nth-last-child(-n+2){border-bottom:0}
  .sp-package-sidebar{position:static}
  .sp-gallery{grid-template-columns:1fr}
  .sp-gallery-main{min-height:430px}
  .sp-gallery-side{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .sp-gallery-thumb{min-height:190px}
}
@media(max-width:767.98px){
  .sp-section{padding:56px 0}
  .sp-breadcrumb-bar{display:none}
  .sp-package-hero{min-height:650px}
  .sp-package-hero:before{
    background:linear-gradient(180deg,rgba(12,20,52,.5),rgba(12,20,52,.92));
  }
  .sp-package-hero-content{padding:70px 0 100px}
  .sp-package-hero h1{font-size:2.65rem}
  .sp-package-hero p{font-size:.9rem}
  .sp-quick-wrap{margin-top:-28px}
  .sp-quick-item{min-height:88px;padding:.9rem}
  .sp-package-nav-wrap{top:68px;margin-top:28px}
  .sp-package-main{padding:40px 0 56px}
  .sp-gallery-main{min-height:320px}
  .sp-gallery-thumb{min-height:135px}
  .sp-content-card{padding:1.2rem}
  .sp-content-card h2{font-size:1.4rem}
  .sp-check-grid{grid-template-columns:1fr}
  .sp-booking-steps{grid-template-columns:1fr 1fr}
  .sp-mobile-sticky{
    position:fixed;
    left:0;right:0;bottom:0;
    z-index:1040;
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:.5rem;
    padding:.55rem .75rem;
    background:#fff;
    border-top:1px solid var(--sp-line);
    box-shadow:0 -10px 30px rgba(12,20,52,.08);
  }
  .sp-mobile-sticky .btn{min-height:48px;font-size:.72rem}
}
@media(max-width:575.98px){
  .sp-quick-item{
    border-right:0!important;
    border-bottom:1px solid var(--sp-line)!important;
  }
  .sp-quick-item.last{border-bottom:0!important}
  .sp-gallery-side{grid-template-columns:1fr 1fr}
  .sp-booking-steps{grid-template-columns:1fr}
}
.sp-section-soft{background:var(--sp-soft)}
.sp-eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  color:var(--sp-blue);font-size:.72rem;font-weight:800;
  letter-spacing:.12em;text-transform:uppercase;margin-bottom:.65rem;
}



.sp-link{color:var(--sp-blue);font-weight:800}
.sp-link:hover{color:var(--sp-navy)}


.btn-sp-primary:hover{
  background:#e9aa00;border-color:#e9aa00;color:var(--sp-navy);
  transform:translateY(-1px);
}
.btn-sp-dark{
  background:var(--sp-navy);
  border-color:var(--sp-navy);
  color:#fff;
  font-weight:800;
}
.btn-sp-dark:hover{background:#111d4d;border-color:#111d4d;color:#fff}


.sp-header{
  position:sticky;top:0;z-index:1030;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(12,20,52,.07);
}
.sp-header .navbar{min-height:76px}
.sp-logo{height:50px;width:auto}

.sp-nav-link:hover{color:var(--sp-blue)!important}
.sp-header .navbar-toggler{
  border:0;
  background:var(--sp-navy);
  color:#fff;
  width:44px;height:44px;border-radius:10px;
}
.sp-offcanvas .offcanvas-title{color:var(--sp-navy);font-weight:800}
.sp-offcanvas .nav-link{
  padding:.85rem 0;border-bottom:1px solid var(--sp-line);
  color:var(--sp-navy);font-weight:700;
}

.sp-hero{
  min-height:620px;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:#fff;
  background:var(--sp-navy);
}
.sp-hero:after{
  left:44%;
  background-image:url('https://srinagarpackages.com/crmnew/img_master/package/lehladakh_17698369100.webp');
  clip-path:polygon(18% 0,100% 0,100% 100%,0 100%);
}
.sp-hero-overlay{
  position:absolute;inset:0;z-index:-2;
  background:
    linear-gradient(90deg,rgba(12,20,52,.76),rgba(12,20,52,.44) 48%,rgba(12,20,52,.68)),
    linear-gradient(0deg,rgba(12,20,52,.58),transparent 60%);
}
.sp-hero-content{max-width:820px;margin:auto;text-align:center;padding:90px 0 120px}
.sp-hero-chip{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.5rem .8rem;border-radius:999px;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.1);
  font-size:.72rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
}

.sp-hero h1 span{color:var(--sp-yellow)}

.sp-hero-destination{
  position:absolute;bottom:30px;display:flex;gap:.7rem;align-items:center;
  font-size:16px;font-weight:800;color:#fff;
}


.sp-hero-destination.right{right:max(30px,calc((100vw - 1140px)/2));text-align:right}
.sp-pin{
  width:38px;height:38px;border-radius:50%;
  display:grid;place-items:center;background:var(--sp-yellow);color:var(--sp-navy)
}

.sp-destination-card{
  position:relative;min-height:430px;border-radius:28px;overflow:hidden;
  color:#fff;box-shadow:var(--sp-shadow);isolation:isolate;
  padding:1.8rem;
  display:flex;flex-direction:column;justify-content:flex-end;
}
.sp-destination-card:before{
  content:"";position:absolute;inset:0;z-index:-2;background-size:cover;background-position:center;transition:.3s ease;
}
.sp-destination-card.kashmir:before{
  background-image:url('https://srinagarpackages.com/crmnew/img_master/package/srinagar_17698361510.webp');
}
.sp-destination-card.ladakh:before{
  background-image:url('https://srinagarpackages.com/crmnew/img_master/package/lehladakh_17698369100.webp');
}
.sp-destination-card:after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(12,20,52,.05) 20%,rgba(12,20,52,.9) 88%);
}
.sp-destination-card:hover:before{transform:scale(1.03)}

.sp-destination-card p{color:rgba(255,255,255,.84);margin:.7rem 0 1rem}
.sp-meta{
  display:flex;gap:.6rem;align-items:center;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  padding:.65rem;border-radius:13px;
}
.sp-meta i{color:var(--sp-yellow)}
.sp-meta small{display:block;color:rgba(255,255,255,.62);font-size:.58rem}
.sp-meta strong{font-size:.7rem}


.sp-trust-icon{
  width:44px;height:44px;flex:0 0 44px;border-radius:13px;
  display:grid;place-items:center;background:var(--sp-blue);color:#fff;
}
.sp-trust-item strong{display:block;color:var(--sp-navy);font-size: 16px}
.sp-trust-item small{display:block;color:var(--sp-muted);font-size:13px;margin-top:.15rem}

.nav-pills.sp-tabs{gap:.5rem}


.sp-card{
  height:100%;
  border:1px solid var(--sp-line);
  border-radius:var(--sp-radius-sm);
  overflow:hidden;background:#fff;
  transition:.22s ease;
}
.sp-card:hover{transform:translateY(-4px);box-shadow:var(--sp-shadow)}
.sp-card-img{height:190px;position:relative;overflow:hidden;background:#e2e8ef}
.sp-card-img img{width:100%;height:100%;object-fit:initial;transition:.3s ease}
.sp-card:hover .sp-card-img img{transform:scale(1.03)}

.sp-card-body{padding:1rem}
.sp-card-title { color: var(--sp-navy); font-size: 1rem; font-weight: 700 !important; margin: 0; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; margin-bottom: 10px;}
.sp-card-price strong{display:block;color:var(--sp-navy);font-size:1.2rem}

.sp-style-card{
  height:100%;
  display:flex;align-items:center;gap:.85rem;
  padding:1rem;border:1px solid var(--sp-line);border-radius:14px;background:#fff;
}
.sp-style-icon{
  width:50px;height:50px;flex:0 0 50px;border-radius:15px;
  display:grid;place-items:center;background:#fff7dc;color:var(--sp-navy);
  border:1px solid #fde5a0;font-size:1.1rem;
}
.sp-style-card h3{font-size:.9rem;color:var(--sp-navy);font-weight:800;margin:0}
.sp-style-card p{font-size:.68rem;color:var(--sp-muted);margin:.15rem 0 0}
.sp-style-card .arrow{margin-left:auto;color:var(--sp-blue)}

.sp-hub-card{
  min-height:300px;position:relative;overflow:hidden;isolation:isolate;
  border-radius:24px;color:#fff;padding:1.6rem;
  display:flex;flex-direction:column;justify-content:flex-end;
}
.sp-hub-card:before{
  content:"";position:absolute;inset:0;z-index:-2;background-size:cover;background-position:center
}
.sp-hub-card.kashmir:before{background-image:url('https://srinagarpackages.com/crmnew/img_master/package/srinagar_17698361510.webp')}
.sp-hub-card.ladakh:before{background-image:url('https://srinagarpackages.com/crmnew/img_master/package/lehladakh_17698369100.webp')}
.sp-hub-card:after{
  content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(12,20,52,.08),rgba(12,20,52,.9))
}
.sp-hub-links{display:flex;gap:.5rem;flex-wrap:wrap}

.sp-hub-links a:hover{background:var(--sp-yellow);border-color:var(--sp-yellow);color:var(--sp-navy)}


.sp-about-img img{width:100%;height:100%;object-fit:cover}
.sp-about-quote{
  position:absolute;left:18px;right:18px;bottom:18px;
  padding:1rem;border-radius:14px;
  background:rgba(12,20,52,.8);color:#fff;font-size:1.05rem;font-weight:700
}

.sp-step-no{
  width:42px;height:42px;border-radius:50%;display:grid;place-items:center;
  background:var(--sp-blue);color:#fff;font-size:.8rem;font-weight:900;margin-bottom:.8rem
}
.sp-step h3{font-size:.9rem;color:var(--sp-navy);font-weight:800}
.sp-step p{font-size:.72rem;color:var(--sp-muted);margin:0}

.sp-review{
  height:100%;padding:1.25rem;border:1px solid var(--sp-line);border-radius:14px;background:#fff
}
.sp-stars{color:var(--sp-yellow);letter-spacing:2px}
.sp-review blockquote{font-size:.8rem;color:#455065;margin:.8rem 0}
.sp-review strong{color:var(--sp-navy);font-size:.8rem}
.sp-review small{color:var(--sp-muted);font-size:.66rem}
.sp-dest-pill{
  background:var(--sp-soft-blue);color:var(--sp-blue);
  padding:.3rem .55rem;border-radius:999px;font-size:.58rem;font-weight:800
}

.sp-guide-card{
  height:100%;border:1px solid var(--sp-line);border-radius:14px;overflow:hidden;background:#fff
}
.sp-guide-card img{width:100%;height:115px;object-fit:cover}
.sp-guide-card h3{font-size:.75rem;color:var(--sp-navy);font-weight:800;margin:0}

.sp-final-cta h3{color:var(--sp-navy);font-size:1.45rem;font-weight:800;margin:0}
.sp-final-cta p{color:var(--sp-muted);font-size:.75rem;margin:.25rem 0 0}

.sp-footer{background:var(--sp-navy);color:#fff;padding:46px 0 18px}
.sp-footer img{height:50px;filter:brightness(0) invert(1)}





.sp-mobile-sticky{display:none}

@media(max-width:991.98px){
  .sp-header .navbar{min-height:68px}
  .sp-logo{height:44px}
  .sp-hero{min-height:590px}
  .sp-trust-item{border-right:0;border-bottom:1px solid var(--sp-line)}
  .sp-trust-item.last-md{border-bottom:0}
}

@media(max-width:767.98px){
  .sp-section{padding:56px 0}
  .sp-hero{min-height:650px}
  .sp-hero:before{right:0;clip-path:none;opacity:.93}
  .sp-hero:after{left:46%;clip-path:none;opacity:.42}
  .sp-hero-content{padding:70px 0 150px}
  .sp-hero h1{font-size:2.75rem}
  .sp-hero p{font-size:.9rem}
  .sp-hero-destination{bottom:22px;font-size:.72rem}
  .sp-hero-destination.left{left:14px}
  .sp-hero-destination.right{right:14px}
  .sp-hero-destination small{display:none}
  .sp-pin{width:32px;height:32px}
  .sp-destination-card{min-height:395px;padding:1.3rem}
  .sp-destination-card h3{font-size:1.7rem}
  .sp-card-img{height:180px}
  .sp-mobile-sticky{
    position:fixed;left:0;right:0;bottom:0;z-index:1040;
    display:grid;grid-template-columns:1fr 1.15fr;gap:.5rem;
    padding:.55rem .75rem;background:#fff;border-top:1px solid var(--sp-line);
    box-shadow:0 -10px 30px rgba(12,20,52,.08)
  }
  .sp-mobile-sticky .btn{min-height:48px;font-size:.72rem}
}
</style>


<style>
.sp-breadcrumb-bar{border-bottom:1px solid var(--sp-line);background:#fff}
.sp-breadcrumb{font-size:.68rem;color:var(--sp-muted);padding:.7rem 0}
/* .sp-hub-hero{
  min-height:570px;position:relative;isolation:isolate;color:#fff;
  background:url('https://srinagarpackages.com/crmnew/img_master/package/srinagar_17698361510.webp') center 55%/cover no-repeat;
} */
.sp-hub-hero:before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(90deg,rgba(12,20,52,.92),rgba(12,20,52,.68) 45%,rgba(12,20,52,.18) 80%);
}
.sp-hub-hero h1{
  font-size:clamp(3rem,6.2vw,4.8rem);line-height:1.0;font-weight:800;letter-spacing:-.055em
}
.sp-hub-hero h1 span{color:var(--sp-yellow)}
.sp-hub-hero p{max-width:660px;color:rgba(255,255,255,.88);font-size:1rem}
.sp-hub-snapshot{
  background:rgba(255,255,255,.95);border-radius:18px;padding:1rem;color:var(--sp-ink);
  box-shadow:var(--sp-shadow)
}
.sp-hub-snapshot .small-label{font-size:.62rem;color:var(--sp-blue);font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.sp-snapshot-item{
  display:flex;gap:.55rem;align-items:center;padding:.65rem;border-radius:10px;background:var(--sp-soft)
}
.sp-snapshot-item i{color:var(--sp-blue)}
.sp-snapshot-item small{display:block;font-size:.56rem;color:var(--sp-muted)}
.sp-snapshot-item strong{display:block;font-size:.68rem;color:var(--sp-navy)}
.sp-facts-bar{border-bottom:1px solid var(--sp-line);background:#fff}
.sp-fact{
  min-height:92px;display:flex;align-items:center;gap:.75rem;padding:1rem;border-right:1px solid var(--sp-line)
}
.sp-fact-icon{width:42px;height:42px;display:grid;place-items:center;border-radius:13px;background:var(--sp-soft-blue);color:var(--sp-blue)}
.sp-fact strong{display:block;color:var(--sp-navy);font-size:16px;}
.sp-fact small{display:block;color:var(--sp-muted);font-size:13px;white-space: nowrap;}
.sp-hub-nav-wrap{
  position:sticky;top:76px;z-index:1020;background:#fff;border-bottom:1px solid var(--sp-line);
  box-shadow:0 7px 18px rgba(12,20,52,.04)
}
.sp-hub-nav{display:flex;gap:.45rem;overflow:auto;padding:.65rem 0;scrollbar-width:none}
.sp-hub-nav::-webkit-scrollbar{display:none}
.sp-hub-nav a{
  white-space:nowrap;padding: 8px 16px;border-radius:999px;color:var(--sp-blue);font-size:14px;font-weight:700
}
.sp-hub-nav a:hover,.sp-hub-nav a.active{background:var(--sp-navy);color:#fff;font-weight: 600;}
.sp-intro-img{min-height:390px;border-radius:24px;overflow:hidden;position:relative}
.sp-intro-img img{width:100%;height:100%;object-fit:cover;height: 390px;}
.sp-intro-badge{
  position:absolute;left:18px;bottom:18px;background:rgba(12,20,52,.84);color:#fff;
  padding:.85rem 1rem;border-radius:14px
}
.sp-route-planner{background:var(--sp-navy);border-radius:26px;padding:1.8rem;color:#fff}
.sp-route-stop{text-align:center}
.sp-route-dot{
  width:44px;height:44px;border-radius:50%;display:grid;place-items:center;
  background:var(--sp-yellow);color:var(--sp-navy);font-weight:900;margin:0 auto .6rem;font-size: 20px;
}
.sp-season-card,.sp-know-card{
  height:100%;border:1px solid var(--sp-line);border-radius:16px;background:#fff;padding:1.15rem
}
.sp-season-card h3,.sp-know-card h3{color:var(--sp-navy);font-size:16px;font-weight:700}
.sp-season-card p,.sp-know-card p{font-size:13px;color:var(--sp-muted);margin:0}
.sp-season-icon,.sp-know-icon{
  width:44px;height:44px;border-radius:13px;display:grid;place-items:center;margin-bottom:.8rem;font-size: 20px;
}
.sp-route-planner h2{font-size: 23px;}
.sp-season-icon{background:#fff5d7;color:var(--sp-navy)}
.sp-know-icon{background:var(--sp-soft-blue);color:var(--sp-blue)}
.accordion.sp-faq .accordion-item{border:1px solid var(--sp-line);border-radius:14px!important;overflow:hidden;margin-bottom:.7rem}
.accordion.sp-faq .accordion-button:not(.collapsed){background:var(--sp-soft-blue);color:var(--sp-navy)}
.accordion.sp-faq .accordion-body{font-size:14px;color:var(--sp-muted)}
@media(max-width:767.98px){
  .sp-hub-hero{min-height:650px}
  .sp-hub-hero:before{background:linear-gradient(180deg,rgba(12,20,52,.52),rgba(12,20,52,.9))}
  .sp-hub-hero h1{font-size:2.8rem}
  .sp-hub-nav-wrap{top:68px}
}

.sp-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color:var(--sp-blue);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:.65rem;
}
.sp-link{color:var(--sp-blue);font-weight:800}
.sp-link:hover{color:var(--sp-navy)}


.btn-sp-primary:hover{
  background:#e9aa00;
  border-color:#e9aa00;
  color:var(--sp-navy);
}

/* HEADER — LOCKED GLOBAL THEME */
.sp-header{
  position:sticky;
  top:0;
  z-index:1030;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(12,20,52,.07);
}
.sp-header .navbar{min-height:76px}
.sp-logo{height:50px;width:auto}

.sp-nav-link:hover{color:var(--sp-blue)!important}
.sp-header .navbar-toggler{
  border:0;
  background:var(--sp-navy);
  color:#fff;
  width:44px;height:44px;border-radius:10px;
}
.sp-offcanvas .offcanvas-title{color:var(--sp-navy);font-weight:800}
.sp-offcanvas .nav-link{
  padding:.85rem 0;
  border-bottom:1px solid var(--sp-line);
  color:var(--sp-navy);
  font-weight:700;
}

/* BREADCRUMB */
.sp-breadcrumb-bar{background:#fff;border-bottom:1px solid var(--sp-line)}
.sp-breadcrumb{
  padding:.75rem 0;
  color:var(--sp-muted);
  font-size:.68rem;
}
.sp-breadcrumb a{color:var(--sp-blue);font-weight:700;font-size: 14px;}

/* LISTING HERO */
.sp-listing-hero{
  min-height:400px;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  background:var(--sp-navy);
  color:#fff;
}
.sp-listing-hero-content{
  max-width:820px;
  padding:65px 0 70px;
}
.sp-listing-tag{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.45rem .75rem;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  background:rgba(255,255,255,.1);
  font-size:.68rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:1rem;
}
.sp-listing-tag i{color:var(--sp-yellow)}
.sp-listing-hero h1{
  margin:0 0 .85rem;
  max-width:780px;
  color:#fff;
  font-size:clamp(2.65rem,5vw,3.8rem);
  line-height:1.04;
  font-weight:800;
  letter-spacing:-.05em;
}
.sp-listing-hero p{
  margin:0;
  max-width:690px;
  color:rgba(255,255,255,.84);
  font-size:14px;
}

/* DESTINATION SHORTCUTS */
.sp-destination-shortcuts{
  margin-top:-28px;
  position:relative;
  z-index:10;
  background: #80808017;
}
.sp-destination-shortcut{
  height:100%;
  display:flex;
  align-items:center;
  gap:.85rem;
  padding:1rem 1.1rem;
  border-radius:16px;
  background:#fff;
  color:var(--sp-navy);
  transition:.2s ease;
}
.sp-destination-shortcut:hover{
  transform:translateY(-3px);
  box-shadow:var(--sp-shadow);
}
.sp-destination-shortcut .sp-dest-icon{
  width:44px;height:44px;
  flex:0 0 44px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:#fff8e3;
  color:var(--sp-blue);
}
.sp-destination-shortcut strong{
  display:block;
  font-size:16px;
  font-weight:800;
}
.sp-destination-shortcut small{
  display:block;
  margin-top:.15rem;
  color:var(--sp-muted);
  font-size:13px;
}

/* RESULTS LAYOUT */
.sp-packages-main{padding:45px 0 35px;background: #80808017;;}
.sp-package-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 285px;
  gap:25px;
  align-items:start;
}
.sp-results-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1.15rem;
}
.sp-results-head h2{
  margin:0;
  color:var(--sp-navy);
  font-size:1.65rem;
  font-weight:800;
  letter-spacing:-.025em;
}
.sp-results-head p{
  margin:.3rem 0 0;
  color:var(--sp-muted);
  font-size:13px;
}
.sp-results-tools{
  display:flex;
  align-items:center;
  gap:.55rem;
}
.sp-sort{
  min-height:40px;
  border:1px solid var(--sp-line);
  border-radius:999px;
  padding:0 2.2rem 0 .9rem;
  color:var(--sp-navy);
  background-color:#fff;
  font-size:13px;
  font-weight:700;
}

/* =========================================================
   GLOBAL PACKAGE CARD — LOCKED / SAME EVERYWHERE
   ========================================================= */
.sp-card{
  height:100%;
  overflow:hidden;
  border-radius:14px;
  background:#fff;
  transition:.22s ease;
}
.sp-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--sp-shadow);
}
.sp-card-img{
  height:190px;
  position:relative;
  overflow:hidden;
  background:#e2e8ef;
}
.sp-card-img img{
  width:100%;
  height:100%;
  object-fit:initial;
  transition:.3s ease;
}
.sp-card:hover .sp-card-img img{transform:scale(1.03)}
.sp-card-body{padding:1rem}


.sp-card-price strong{
  display:block;
  color:var(--sp-navy);
  font-size:1.2rem;
}
.sp-package-item.is-hidden{display:none!important}

/* STICKY QUICK FILTER RAIL */
.sp-filter-col{
  position:relative;
  align-self:stretch;
  overflow:visible;
}
.sp-filter-rail{
  position:-webkit-sticky;
  position:sticky;
  top:100px;
  height:max-content;
}
.sp-filter-card{
  overflow:hidden;
  border:1px solid var(--sp-line);
  border-radius:20px;
  background:#fff;
  
}
.sp-filter-head{
  padding:1rem 1rem .8rem;
  border-bottom:1px solid var(--sp-line);
}
.sp-filter-head-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
}
.sp-filter-head h3{
  margin:0;
  color:var(--sp-navy);
  font-size:.95rem;
  font-weight:800;
}
.sp-clear-filter{
  border:0;
  padding:0;
  background:transparent;
  color:var(--sp-blue);
  font-size:13px;
  font-weight:800;
}

.sp-filter-body{padding:.9rem 1rem 1rem}
.sp-filter-group{
  padding:.85rem 0;
  border-bottom:1px solid var(--sp-line);
}
.sp-filter-group:first-child{padding-top:0}
.sp-filter-group:last-child{border-bottom:0;padding-bottom:0}
.sp-filter-title{
  display:flex;
  align-items:center;
  gap:.45rem;
  margin-bottom:.55rem;
  color:var(--sp-navy);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.sp-filter-title i{
  width:20px;
  color:var(--sp-blue);
  text-align:center;
}
.sp-filter-option{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.6rem;
  min-height:34px;
  padding:.33rem .45rem;
  border-radius:9px;
  cursor:pointer;
  transition:.15s ease;
}
.sp-filter-option:hover{background:var(--sp-soft-blue)}
.sp-filter-option-left{
  display:flex;
  align-items:center;
  gap:.5rem;
}
.sp-filter-option input{
  width:15px;height:15px;
  accent-color:var(--sp-navy);
}
.sp-filter-option span{
  color:#536477;
  font-size:13px;
  font-weight:600;
}
.sp-filter-option small{
  border-radius:999px;
  background:var(--sp-soft);
  color:var(--sp-muted);
  text-align:center;
  font-size:11px;
  font-weight:800;
  width: 25px;
    height: 25px;
    border-radius: 50px;
    line-height: 25px;
    border: 1px solid #ccc;
}

/* DESTINATION LINKS INSIDE SIDEBAR */
.sp-explore-links{
  display:grid;
  gap:.55rem;
}
.sp-explore-link{
  display:flex;
  align-items:center;
  gap:.6rem;
  padding:.65rem;
  border:1px solid var(--sp-line);
  border-radius:11px;
  color:var(--sp-navy);
  background:#fff;
}
.sp-explore-link:hover{
  border-color:#cbdbe6;
  background:var(--sp-soft-blue);
}
.sp-explore-link i{
  width:28px;height:28px;
  flex:0 0 28px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:#fff8e3;
  color:var(--sp-blue);
  font-size:.62rem;
}
.sp-explore-link strong{
  display:block;
  font-size:12px;
  font-weight:800;
}
.sp-explore-link small{
  display:block;
  color:var(--sp-muted);
  font-size:12px;
  margin-top:.08rem;
}

/* EMPTY STATE */
.sp-empty-state{
  display:none;
  padding:2.5rem 1.5rem;
  border:1px dashed #cfd8e2;
  border-radius:18px;
  text-align:center;
  background:var(--sp-soft);
}
.sp-empty-state i{
  width:48px;height:48px;
  display:grid;
  place-items:center;
  margin:0 auto .8rem;
  border-radius:14px;
  background:#fff;
  color:var(--sp-blue);
}
.sp-empty-state h3{
  margin:0;
  color:var(--sp-navy);
  font-size:1rem;
  font-weight:800;
}
.sp-empty-state p{
  margin:.3rem 0 .8rem;
  color:var(--sp-muted);
  font-size:.68rem;
}

/* PAGINATION */
.sp-pagination .page-link{
  min-width:38px;height:38px;
  display:grid;
  place-items:center;
  margin:0 .15rem;
  border:1px solid var(--sp-line);
  border-radius:10px!important;
  color:var(--sp-blue);
  font-size:.65rem;
  font-weight:800;
}
.sp-pagination .page-item.active .page-link{
  background:var(--sp-navy);
  border-color:var(--sp-navy);
  color:#fff;
}


.sp-final-cta h3{
  margin:0;
  color:var(--sp-navy);
  font-size:1.45rem;
  font-weight:800;
}

.sp-footer{
  background:var(--sp-navy);
  color:#fff;
  padding:46px 0 18px;
}
.sp-footer img{height:50px;filter:brightness(0) invert(1)}





.sp-mobile-filter-btn{display:none}
.sp-mobile-sticky{display:none}

/* MOBILE FILTER OFFCANVAS */
.sp-filter-offcanvas{--bs-offcanvas-width:min(90vw,360px)}
.sp-filter-offcanvas .offcanvas-header{
  border-bottom:1px solid var(--sp-line);
}
.sp-filter-offcanvas .offcanvas-title{
  color:var(--sp-navy);
  font-size:1rem;
  font-weight:800;
}

@media(max-width:1199.98px){
  .sp-package-layout{grid-template-columns:minmax(0,1fr) 265px;gap:25px}
}
@media(max-width:991.98px){
  .sp-header .navbar{min-height:68px}
  .sp-logo{height:44px}
  .sp-package-layout{display:block}
  .sp-filter-col{display:none}
  .sp-mobile-filter-btn{display:inline-flex}
  .sp-results-head{align-items:center}
}
@media(max-width:767.98px){
  .sp-breadcrumb-bar{display:none}
  .sp-listing-hero{min-height:500px}
  .sp-listing-hero:before{width:100%}
  .sp-listing-hero:after{display:none}
  .sp-listing-overlay{
    background:linear-gradient(180deg,rgba(12,20,52,.48),rgba(12,20,52,.93));
  }
  .sp-listing-hero-content{padding:65px 0 85px}
  .sp-listing-hero h1{font-size:2.7rem}
  .sp-destination-shortcuts{margin-top:-22px}
  .sp-packages-main{padding:42px 0 56px}
  .sp-results-head{display:block}
  .sp-results-tools{
    margin-top:.8rem;
    justify-content:space-between;
  }
  .sp-sort{flex:1}
  .sp-card-img{height:185px}
  .sp-mobile-sticky{
    position:fixed;
    left:0;right:0;bottom:0;
    z-index:1040;
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:.5rem;
    padding:.55rem .75rem;
    background:#fff;
    border-top:1px solid var(--sp-line);
    box-shadow:0 -10px 30px rgba(12,20,52,.08);
  }
  .sp-mobile-sticky .btn{min-height:48px;font-size:.72rem}
}

.sp-section-soft{background:var(--sp-soft)}

.sp-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color:var(--sp-blue);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:.65rem;
}
.sp-link{color:var(--sp-blue);font-weight:800}
.sp-link:hover{color:var(--sp-navy)}


.btn-sp-primary:hover{
  background:#e9aa00;border-color:#e9aa00;color:var(--sp-navy);
}
.btn-sp-outline{
  background:#fff;
  border:1px solid var(--sp-line);
  color:var(--sp-navy);
  font-weight:700;
  font-size: 13px;
  padding: 8px 16px;
}

/* HEADER */
.sp-header{
  position:sticky;
  top:0;
  z-index:1030;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(12,20,52,.07);
}
.sp-header .navbar{min-height:76px}
.sp-logo{height:50px;width:auto}

.sp-nav-link:hover{color:var(--sp-blue)!important}
.sp-header .navbar-toggler{
  border:0;
  background:var(--sp-navy);
  color:#fff;
  width:44px;height:44px;border-radius:10px;
}
.sp-offcanvas .offcanvas-title{color:var(--sp-navy);font-weight:800}
.sp-offcanvas .nav-link{
  padding:.85rem 0;border-bottom:1px solid var(--sp-line);
  color:var(--sp-navy);font-weight:700;
}

/* BREADCRUMB */
.sp-breadcrumb-bar{background:#fff;border-bottom:1px solid var(--sp-line)}


/* HERO */
.sp-blog-hero{
  min-height:520px;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:#fff;
  background:var(--sp-navy);
  display:flex;
  align-items:center;
}
.sp-blog-hero img{
  position:absolute;
  inset:0;
  z-index:-3;
  width:100%;
  height:100%;
  object-fit:cover;
}
.sp-blog-hero:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(12,20,52,.93),rgba(12,20,52,.70) 45%,rgba(12,20,52,.18) 80%),
    linear-gradient(0deg,rgba(12,20,52,.58),transparent 55%);
}
.sp-blog-hero-content{
  max-width:820px;
  padding:75px 0 88px;
}
.sp-blog-tag{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.48rem .78rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.1);
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:1rem;
}
.sp-blog-tag i{color:var(--sp-yellow)}
.sp-blog-hero h1{
  margin:0 0 1rem;
  color:#fff;
  font-size:clamp(2.8rem,5.5vw,4rem);
  line-height:1.03;
  font-weight:800;
  letter-spacing:-.05em;
}
.sp-blog-hero p{
  max-width:720px;
  margin:0;
  color:rgba(255,255,255,.88);
  font-size:14px;
}

/* CATEGORY NAV */
.sp-category-wrap{
  position:sticky;
  top:76px;
  z-index:1015;
  background:#fff;
  border-bottom:1px solid var(--sp-line);
  box-shadow:0 7px 18px rgba(12,20,52,.04);
}
.sp-category-nav{
  display:flex;
  gap:.45rem;
  overflow:auto;
  padding:.7rem 0;
  scrollbar-width:none;
}
.sp-category-nav::-webkit-scrollbar{display:none}
.sp-category-nav a{
  white-space:nowrap;
  padding:.52rem .78rem;
  border-radius:999px;
  color:#000;
  font-size:14px;
  font-weight:700;
}
.sp-category-nav a.active,
.sp-category-nav a:hover{
  background:var(--sp-navy);
  color:#fff;
}

/* FEATURED ARTICLE */
.sp-featured{
  overflow:hidden;
  border:1px solid var(--sp-line);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--sp-shadow-sm);
}
.sp-featured-image{
  min-height:440px;
  position:relative;
  overflow:hidden;
}
.sp-featured-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.sp-featured-label{
  position:absolute;
  left:18px;
  top:18px;
  padding:.4rem .65rem;
  border-radius:999px;
  background:var(--sp-yellow);
  color:var(--sp-navy);
  font-size:.62rem;
  font-weight:900;
  text-transform:uppercase;
}
.sp-featured-copy{padding:2rem}
.sp-featured-copy .meta{
  display:flex;
  gap:.8rem;
  flex-wrap:wrap;
  color:var(--sp-muted);
  font-size:13px;
  margin-bottom:.8rem;
}
.sp-featured-copy h2{
  margin:0;
  color:var(--sp-navy);
  font-size:2rem;
  line-height:1.18;
  font-weight:800;
  letter-spacing:-.03em;
}
.sp-featured-copy p{
  margin:.9rem 0 1.1rem;
  color:#536477;
  font-size:.82rem;
}

/* ARTICLE CARDS */
.sp-blog-card{
  height:100%;
  overflow:hidden;
  border:1px solid var(--sp-line);
  border-radius:16px;
  background:#fff;
  transition:.22s ease;
}
.sp-blog-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--sp-shadow);
}
.sp-blog-card-img{
  position:relative;
  height:200px !important;
  overflow:hidden;
}
.sp-blog-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.3s ease;
}
.sp-blog-card:hover .sp-blog-card-img img{transform:scale(1.03)}
.sp-blog-card-badge{
  position:absolute;
  left:12px;top:12px;
  padding:.35rem .55rem;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:var(--sp-blue);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}
.sp-blog-card-body{padding:1rem}.sp-blog-card-body p {
    color: var(--sp-muted);
    font-size: 13px;
    margin-top: 4px;
    height: 80px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.navbar-expand-lg .navbar-nav .nav-item i{font-size: 10px;margin: 0 4px;}
.sp-blog-meta{
  display:flex;
  gap:.7rem;
  flex-wrap:wrap;
  color:var(--sp-muted);
  font-size:13px;
  margin-bottom:.55rem;
}
.sp-blog-card h3{
  margin:0;
  color:var(--sp-navy);
  font-size:1rem;
  line-height:1.38;
  font-weight:700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* DESTINATION GUIDE CARDS */
.sp-destination-guide{
  min-height:300px;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  display:flex;
  align-items:flex-end;
  border-radius:22px;
  padding:1.4rem;
  color:#fff;
}
.sp-destination-guide:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background-size:cover;
  background-position:center;
  transition:.3s ease;
}
.sp-destination-guide.kashmir:before{
  background-image:url('https://srinagarpackages.com/crmnew/img_master/package/srinagar_17698361510.webp');
}
.sp-destination-guide.ladakh:before{
  background-image:url('https://srinagarpackages.com/crmnew/img_master/package/lehladakh_17698369100.webp');
}
.sp-destination-guide:after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(180deg,rgba(12,20,52,.08),rgba(12,20,52,.9));
}
.sp-destination-guide:hover:before{transform:scale(1.03)}
.sp-destination-guide h3{
  margin:0;
  font-size:1.65rem;
  font-weight:800;
}
.sp-destination-guide p{
  margin:.3rem 0 .9rem;
  color:rgba(255,255,255,.8);
  font-size:13px;
}
.sp-guide-links{
  display:flex;
  gap:.45rem;
  flex-wrap:wrap;
}
.sp-guide-links span{
  padding: 8px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  font-size:13px;
  font-weight:600;
}

/* POPULAR LIST */
.sp-popular-card{
  height:100%;
  padding:1.2rem;
  border:1px solid var(--sp-line);
  border-radius:18px;
  background:#fff;
}
.sp-popular-card h3{
  margin:0 0 .8rem;
  color:var(--sp-navy);
  font-size:16px;
  font-weight:800;
  margin-bottom: 20px;
}
.sp-popular-item{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:.7rem;
  padding:1rem 0;
  border-top:1px solid var(--sp-line);
}
.sp-popular-item:last-child{padding-bottom: 0px;}
.sp-popular-item:first-of-type{border-top:0;padding-top:0}
.sp-popular-no{
  width:42px;height:42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#fff8e3;
  color:var(--sp-blue);
  font-size:16px;
  font-weight:900;
}
.sp-popular-item strong{
  display:block;
  color:var(--sp-navy);
  font-size:15px;
  line-height:1.4;
}
.sp-popular-item small{
  color:var(--sp-muted);
  font-size:13px;
}

/* NEWSLETTER / CTA */
.sp-newsletter{
  overflow:hidden;
  position:relative;
  padding:2rem;
  border:1px solid #dce8f0;
  border-radius:24px;
  background:linear-gradient(135deg,#eef7fb,#fff9e9);
}
.sp-newsletter:after{
  content:"";
  position:absolute;
  width:160px;height:160px;
  right:-45px;top:-80px;
  border:34px solid rgba(250,186,12,.12);
  border-radius:50%;
}
.sp-newsletter h3{
  position:relative;z-index:2;
  margin:0;
  color:var(--sp-navy);
  font-size:1.45rem;
  font-weight:800;
}
.sp-newsletter p{
  position:relative;z-index:2;
  margin:.35rem 0 1rem;
  color:var(--sp-muted);
  font-size:.75rem;
  max-width:650px;
}
.sp-newsletter-form{
  position:relative;z-index:2;
  display:flex;
  gap:.55rem;
  max-width:560px;
}
.sp-newsletter-form input{
  min-height:46px;
  flex:1;
  border:1px solid var(--sp-line);
  border-radius:999px;
  padding:0 1rem;
  outline:0;
}
.sp-newsletter-form input:focus{
  border-color:var(--sp-blue);
  box-shadow:0 0 0 3px rgba(17,70,117,.07);
}

.sp-final-cta h3{
  margin:0;
  color:var(--sp-navy);
  font-size:1.45rem;
  font-weight:800;
}
.sp-final-cta p{
  margin:.25rem 0 0;
  color:var(--sp-muted);
  font-size:13px;
}

/* FOOTER */
.sp-footer{
  background:var(--sp-navy);
  color:#fff;
  padding:46px 0 18px;
}
.sp-footer img{height:50px;filter:brightness(0) invert(1)}





.sp-mobile-sticky{display:none}

@media(max-width:991.98px){
  .sp-header .navbar{min-height:68px}
  .sp-logo{height:44px}
  .sp-category-wrap{top:68px}
  .sp-featured-image{min-height:360px}
}
@media(max-width:767.98px){
  .sp-section{padding:56px 0}
  .sp-breadcrumb-bar{display:none}
  .sp-blog-hero{min-height:590px}
  .sp-blog-hero:before{
    background:linear-gradient(180deg,rgba(12,20,52,.48),rgba(12,20,52,.91));
  }
  .sp-blog-hero-content{padding:70px 0 95px}
  .sp-blog-hero h1{font-size:2.7rem}
  .sp-blog-hero p{font-size:.9rem}
  .sp-featured-image{min-height:300px}
  .sp-featured-copy{padding:1.25rem}
  .sp-featured-copy h2{font-size:1.5rem}
  .sp-blog-card-img{height:190px}
  .sp-newsletter-form{flex-direction:column}
  .sp-newsletter-form .btn{min-height:46px}
  .sp-mobile-sticky{
    position:fixed;
    left:0;right:0;bottom:0;
    z-index:1040;
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:.5rem;
    padding:.55rem .75rem;
    background:#fff;
    border-top:1px solid var(--sp-line);
    box-shadow:0 -10px 30px rgba(12,20,52,.08);
  }
  .sp-mobile-sticky .btn{min-height:48px;font-size:.72rem}
}
.sp-section-soft{background:var(--sp-soft)}
.sp-eyebrow{display:inline-flex;align-items:center;gap:.5rem;color:var(--sp-blue);font-size:.72rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;margin-bottom:.65rem}
.sp-eyebrow:before{content:"";width:26px;height:2px;border-radius:3px;background:var(--sp-yellow)}

.btn-sp-primary:hover{background:#e9aa00;border-color:#e9aa00;color:var(--sp-navy)}

/* header */
.sp-header{position:sticky;top:0;z-index:1030;background:rgba(255,255,255,.97);backdrop-filter:blur(14px);border-bottom:1px solid rgba(12,20,52,.07)}
.sp-header .navbar{min-height:76px}.sp-logo{height:50px;width:auto}.sp-nav-link:hover{color:var(--sp-blue)!important}
.sp-header .navbar-toggler{border:0;background:var(--sp-navy);color:#fff;width:44px;height:44px;border-radius:10px}.sp-offcanvas .offcanvas-title{color:var(--sp-navy);font-weight:800}.sp-offcanvas .nav-link{padding:.85rem 0;border-bottom:1px solid var(--sp-line);color:var(--sp-navy);font-weight:700}
.sp-breadcrumb-bar{background:#fff;border-bottom:1px solid var(--sp-line)}.sp-breadcrumb{padding:.75rem 0;color:var(--sp-muted);font-size:.68rem}

/* hero */
.sp-article-hero{position:relative;isolation:isolate;min-height:575px;overflow:hidden;color:#fff;background:var(--sp-navy);display:flex;align-items:center}
.sp-article-hero>img{position:absolute;inset:0;z-index:-3;width:100%;height:100%;object-fit:initial}
.sp-article-hero:before{content:"";position:absolute;inset:0;z-index:-2;background:linear-gradient(90deg,rgba(12,20,52,.94),rgba(12,20,52,.73) 48%,rgba(12,20,52,.18) 82%),linear-gradient(0deg,rgba(12,20,52,.60),transparent 58%)}
.sp-article-hero-content{max-width:900px;padding:50px 0px;}
.sp-article-tag{display:inline-flex;align-items:center;gap:.5rem;padding:.48rem .78rem;border-radius:999px;border:1px solid rgba(255,255,255,.28);background:rgba(255,255,255,.10);font-size:.7rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;margin-bottom:1rem}.sp-article-tag i{color:var(--sp-yellow)}
.sp-article-hero h1{margin:0 0 1rem;max-width:900px;color:#fff;font-size:clamp(2.8rem,5.5vw,4.25rem);line-height:1.03;font-weight:800;letter-spacing:-.052em}
.sp-article-hero p{margin:0;max-width:760px;color:rgba(255,255,255,.88);font-size:14px;}
.sp-article-meta{display:flex;flex-wrap:wrap;gap:.85rem 1.2rem;margin-top:1.25rem;color:rgba(255,255,255,.72);font-size:13px;font-weight:600}.sp-article-meta i{color:var(--sp-yellow);margin-right:.35rem}

/* reading layout */
.sp-reading-wrap{padding:50px 0px;overflow:visible}
.sp-reading-grid{display:grid;grid-template-columns:minmax(0,1020px) 330px;justify-content:center;gap:0px;align-items:start;overflow:visible}
.sp-article{width:100%;min-width:0;max-width:97%;}
.sp-article>.lead{margin:0 0 2.25rem;color:#43566b;font-size:1.08rem;line-height:1.78}
.sp-article-section{width:100%;scroll-margin-top:120px;margin-bottom:0px;padding: 1rem;box-shadow: var(--sp-shadow);border: 1px solid var(--sp-line);background-color: #fff;}
.sp-article-section h2{margin:0 0 1rem;color:var(--sp-navy);font-size:25px;line-height:1.25;font-weight:800;letter-spacing:-.025em}
.sp-article-section h3{margin:1.45rem 0 .6rem;color:var(--sp-navy);font-size:1.05rem;font-weight:800}
.sp-article-section p{margin:0 0 1rem;color:#4b5e72;font-size:.91rem;max-width:750px}
.sp-article-section ul{margin:.6rem 0 1rem;padding-left:1.2rem;max-width:750px}.sp-article-section li{margin-bottom:.55rem;color:#4b5e72;font-size:.87rem}.sp-inline-link{color:var(--sp-blue);font-weight:700;border-bottom:1px dotted #a9c3d7}

/* sticky right toc */
.sp-toc{position:-webkit-sticky;position:sticky;top:104px;align-self:start;height:max-content;z-index:20}
.sp-toc-card{padding:1rem;border:1px solid var(--sp-line);border-radius:18px;background:#fff;box-shadow:var(--sp-shadow)}
.sp-toc-title{margin:0 0 .7rem;color:var(--sp-navy);font-size:16px;font-weight:800;padding-left: 8px;}
.sp-toc nav{display:flex;flex-direction:column;gap:.16rem}.sp-toc a{padding:.48rem .55rem;border-radius:9px;color:#68788a;font-size:14px;font-weight:600;;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}.sp-toc a:hover,.sp-toc a.active{background:var(--sp-soft-blue);color:var(--sp-blue)}
.sp-toc-progress{margin-top:.8rem;padding-top:.75rem;border-top:1px solid var(--sp-line)}.sp-toc-progress small{display:flex;justify-content:space-between;color:var(--sp-muted);font-size:12px;margin-bottom:.35rem}.sp-progress-track{height:5px;overflow:hidden;border-radius:99px;background:#e9edf2}.sp-progress-bar{width:0;height:100%;background:var(--sp-yellow)}
.sp-toc-related{margin-top:.8rem;padding-top:.75rem;border-top:1px solid var(--sp-line)}.sp-toc-related strong{display:block;color:var(--sp-navy);font-size:16px;margin-bottom:.45rem}.sp-toc-related a{display:block;padding:.35rem 0;background:none!important;color:var(--sp-blue);font-size:13px}.sp-toc-related a:hover{color:var(--sp-navy)}

/* faq */
.sp-faq .accordion-item{overflow:hidden;margin-bottom:.7rem;border:1px solid var(--sp-line);border-radius:14px!important}.sp-faq .accordion-button:not(.collapsed){background:var(--sp-soft-blue);color:var(--sp-navy)}.sp-faq .accordion-body{color:var(--sp-muted);font-size:.74rem}

/* related guide cards */
.sp-blog-card{height:100%;overflow:hidden;border:1px solid var(--sp-line);border-radius:16px;background:#fff;transition:.22s ease}.sp-blog-card:hover{transform:translateY(-4px);box-shadow:var(--sp-shadow)}.sp-blog-card-img{position:relative;height:190px;overflow:hidden}.sp-blog-card-img img{width:100%;height:100%;object-fit:initial;transition:.3s ease}.sp-blog-card:hover .sp-blog-card-img img{transform:scale(1.03)}.sp-blog-card-body{padding:1rem}.sp-blog-meta{display:flex;gap:.7rem;flex-wrap:wrap;color:var(--sp-muted);font-size:13px;margin-bottom:.5rem}

/* GLOBAL package card — locked everywhere */
.sp-card{height:100%;overflow:hidden;border:1px solid var(--sp-line);border-radius:14px;background:#fff;transition:.22s ease}.sp-card:hover{transform:translateY(-4px);box-shadow:var(--sp-shadow)}.sp-card-img{height:190px;position:relative;overflow:hidden;background:#e2e8ef}.sp-card-img img{width:100%;height:100%;object-fit:initial;transition:.3s ease}.sp-card:hover .sp-card-img img{transform:scale(1.03)}.sp-card-body{padding:1rem}.sp-card-price strong{display:block;color:var(--sp-navy);font-size:1.2rem}

/* footer */
.sp-final-cta h3{margin:0;color:var(--sp-navy);font-size:1.45rem;font-weight:800}.sp-final-cta p{margin:.25rem 0 0;color:var(--sp-muted);font-size:13px}
.sp-footer{background:var(--sp-navy);color:#fff;padding:46px 0 18px}.sp-footer img{height:50px;filter:brightness(0) invert(1)}.sp-mobile-sticky{display:none}

@media(max-width:991.98px){
  .sp-header .navbar{min-height:68px}.sp-logo{height:44px}
  .sp-reading-wrap{padding-top:36px}.sp-reading-grid{display:flex;flex-direction:column;gap:24px}.sp-article{order:2;max-width:100%}.sp-toc{order:1;position:sticky;top:68px;width:100%;z-index:1010}.sp-toc-card{display:flex;align-items:center;gap:.5rem;overflow-x:auto;border-radius:13px;padding:.65rem;box-shadow:var(--sp-shadow);scrollbar-width:none}.sp-toc-card::-webkit-scrollbar{display:none}.sp-toc-title,.sp-toc-progress,.sp-toc-related{display:none}.sp-toc nav{flex-direction:row}.sp-toc a{white-space:nowrap}
}
.sp-theme-newcard {
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sp-theme-newcard .sp-theme-image {
    position: relative;
    height: 238px;
    overflow: hidden;
    background: #dce7f5;
}
.sp-theme-newcard .sp-theme-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: initial;
    transition: transform 0.45s ease;
}
.sp-theme-newcard .sp-theme-body {
    padding: 16px;
}
.sp-theme-newcard .sp-theme-body h3 {
    margin: 0 0 8px;
    color: #172033;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.sp-theme-newcard .sp-theme-description {
    margin: 0 0 18px;
    color: #667085;
    font-size: 14px;
    line-height: 1.65;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.sp-theme-newcard .sp-theme-choice-label {
    display: block;
    margin-bottom: 9px;
    color: #8a94a6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.sp-theme-newcard .sp-theme-destinations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}
.sp-theme-destinations  .btn-sp-primary{width: 100%;}
.sp-theme-newcard .sp-theme-destination-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    min-height: 65px;
    padding: 11px 12px;
    background: #f8fafc;
    border: 1px solid #e4eaf1;
    border-radius: 14px;
    color: #172033;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.sp-theme-newcard .sp-theme-badge {
    position: absolute;
    z-index: 2;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #172033;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.sp-theme-newcard .sp-theme-badge i {
    color: #2463a8;
}
.sp-theme-newcard .sp-destination-name {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.sp-theme-newcard .sp-theme-destination-link:hover {
    background: #ffffff;
    border-color: rgba(36, 99, 168, 0.42);
    color: #172033;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
}
.sp-theme-newcard .sp-theme-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 17, 31, 0.55) 0%, rgba(7, 17, 31, 0.14) 48%, rgba(7, 17, 31, 0) 100%);
}
.sp-theme-note i {
    color: #2463a8;
}
.sp-theme-newcard .sp-theme-destination-link i {
    flex-shrink: 0;
    color: #2463a8;
    font-size: 11px;
    transition: transform 0.2s ease;
}
.sp-theme-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
}

#loadMoreBtn{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:9px 11px 9px 20px;
  color:#0c1434;
  background:#fff;
  border:1px solid #e7eaf0;
  border-radius:999px;
  font-family:Inter,sans-serif;
  font-size:13px;
  font-weight:800;
  box-shadow:0 6px 18px rgba(12,20,52,.06);
  cursor:pointer;
  transition:.2s ease;
}

.sp-load-more-newicon{
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#faba0c;
  border-radius:50%;
}

.sp-chevronnew{
  width:7px;
  height:7px;
  border-right:2px solid #0c1434;
  border-bottom:2px solid #0c1434;
  transform:rotate(45deg) translateY(-2px);
}

#loadMoreBtn:hover{
  background:#fffaf0;
  border-color:#faba0c;
  transform:translateY(-1px);
}

#placeLoadMoreBtn{
   min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:9px 11px 9px 20px;
  color:#0c1434;
  background:#fff;
  border:1px solid #e7eaf0;
  border-radius:999px;
  font-family:Inter,sans-serif;
  font-size:13px;
  font-weight:800;
  box-shadow:0 6px 18px rgba(12,20,52,.06);
  cursor:pointer;
  transition:.2s ease;
}
#placeLoadMoreBtn:hover{
  background:#fffaf0;
  border-color:#faba0c;
  transform:translateY(-1px);
}

.newbtndesign{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:9px 11px 9px 20px;
  color:#0c1434;
  background:#fff;
  border:1px solid #e7eaf0;
  border-radius:999px;
  font-family:Inter,sans-serif;
  font-size:13px;
  font-weight:800;
  box-shadow:0 6px 18px rgba(12,20,52,.06);
  cursor:pointer;
  transition:.2s ease;
}

.newbtndesign:hover{
  background:#fffaf0;
  border-color:#faba0c;
  transform:translateY(-1px);
}

/* new */
.sp-footer a { display: block; color: rgba(255, 255, 255, .68); font-size: 13px; margin: 10px 0; }
.sp-footer h4 { font-size: 16px; font-weight: 700;margin-bottom: 15px;}
.sp-footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .55); font-size: 13px; }
.sp-footer p { color: rgba(255, 255, 255, .62); font-size: 13px; width: 250px;}
.btn-sp-primary {
    background: var(--sp-yellow);
    border-color: var(--sp-yellow);
    color: var(--sp-navy);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    display: flex;
    gap: 10px;
    width: fit-content;
    justify-content: center;
    align-items: center;
}
.sp-nav-link { color: var(--sp-navy) !important; font-size: .82rem; font-weight: 600; padding: .65rem .5rem !important;font-size: 15px; }
.sp-section-title { color: var(--sp-navy); font-size: 26px; line-height: 1.1; font-weight: 800; letter-spacing: -.035em; }
.sp-section-copy {
    color: var(--sp-muted);
    font-size: 14px;
}
.sp-filter-head p{font-size: 12px;margin-bottom: 0px;}
.sp-eyebrow:before { content: ""; width: 26px; height: 2px; border-radius: 3px; background: var(--sp-yellow);display: none; }
.sp-hero-destination small{display:block;color:rgba(255,255,255,.7);font-size:13px;font-weight:500}
.sp-hero-destination.left{left:max(30px,calc((100vw - 1140px)/2))}
.sp-hero p { max-width: 720px; margin: auto; color: rgba(255, 255, 255, .9); font-size: 14px; }
.sp-hero h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); line-height: 1.01; letter-spacing: -.055em; margin: 1.25rem 0 1rem; font-weight: 800;text-transform: capitalize;}
.sp-destination-card h3 { font-size: 25px; font-weight: 800; margin: 0; color: #fff; margin-bottom: 15px;}
.sp-destination-label { align-self: flex-start; margin-bottom: 10px; background: rgba(255, 255, 255, .94); color: #000; font-size: 13px; font-weight: 800; padding: 8px 16px; border-radius: 999px;display: inline-block;}
.sp-destination-card .tags { color: #fff; font-weight: 500; font-size: 13px;margin-bottom: 15px; }
.sp-trust-item {
    min-height: 94px;
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1.2rem 1.1rem;
    border: 1px solid var(--sp-line);
    background-color: #fff;
    border-radius: 10px;
}
.nav-pills.sp-tabs .nav-link.active {
    background: var(--sp-navy);
    border-color: var(--sp-navy);
    color: #fff;
}
.nav-pills.sp-tabs .nav-link {
    border: 1px solid #dfe4ec;
    background: #fff;
    color: var(--sp-blue);
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    padding: .55rem .9rem;
}
.sp-hub-links a {
    padding: .45rem .65rem;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(12, 20, 52, .35);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.sp-hub-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}
.sp-hub-card p {
    color: rgba(255, 255, 255, .78);
    margin: .25rem 0 1rem;
    font-size: 13px;
}
.sp-final-cta {
   padding: 30px 0;
    background: #dcdcdc47;
}

.sp-card-facts i{
  color: var(--sp-yellow);;
}
.sp-destination-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.sp-destination-card {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    color: #fff;
    box-shadow: var(--sp-shadow);
    isolation: isolate;
}

/* Actual image */
.sp-destination-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.4s ease;
}

/* Same dark gradient as your ::after */
.sp-destination-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        180deg,
        rgba(12, 20, 52, 0.05) 20%,
        rgba(12, 20, 52, 0.9) 88%
    );
}

/* Content */
.sp-destination-content {
    position: relative;
    z-index: 1;
    min-height: 430px;  
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

/* Hover effect */
.sp-destination-card:hover .sp-destination-img {
    transform: scale(1.06);
}

.sp-destination-label {
    display: inline-block;
    margin-bottom: 8px;
}

.sp-destination-card h3 {
    margin-bottom: 8px;
    color: #fff;
}

.sp-destination-card .tags {
    margin-bottom: 18px;
}
.sp-vehicle-img {
    height: 180px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f7f9fb, #fff);
    margin-bottom: .7rem;
    overflow: hidden;
}
.sp-vehicle-img img {
    width: 100%;
    object-fit: initial !important;
    height: 180px;
}
.sp-step {
        height: 100%;
    padding: 1.2rem 1.1rem;
    border: 1px solid var(--sp-line);
    background-color: #fff;
    border-radius: 10px;
}
.sp-step h3 {
    font-size: 16px;
    color: var(--sp-navy);
    font-weight: 700;
}
.sp-step p {
    font-size: 13px;
    color: var(--sp-muted);
    margin: 0;
}
.sp-why-card {
    height: 100%;
    padding: 1.2rem 1.1rem;
    border: 1px solid var(--sp-line);
    background-color: #fff;
    border-radius: 10px;
}
.sp-why-card h3 {
    font-size: 16px;
    color: var(--sp-navy);
    font-weight: 700;
}
.sp-why-card p {
    font-size: 13px;
    color: var(--sp-muted);
    margin: 0;
}
.sp-why-no{
  width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--sp-blue);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: .8rem;
}
.sp-route-list .list-group-item {
    border-color: var(--sp-line);
    color: var(--sp-blue);
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px !important;
    margin-bottom: .55rem;
    padding: .7rem .9rem;
}
.sp-vehicle-card {
    height: 100%;
    text-align: center;
    border-radius: 14px;
    background: #fff;
    padding: 10px;
    border: 1px solid var(--sp-line);
}
.sp-vehicle-card h3 {
    font-size: 17px;
    color: var(--sp-navy);
    font-weight: 700;
    margin: 0;
}
.sp-vehicle-card p {
    font-size: 13px;
    color: var(--sp-muted);
    margin: .2rem 0 0;
}
.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #000;
    font-size: 12px;
}
@media(max-width:576px){
  .sp-vehicle-img img {
    height: 130px;
}
.sp-vehicle-img {
    height: 130px;
    
}
.sp-query-hero{min-height: 310px !important;}
    .sp-query-section {
        padding: 42px 0 0px !important;
        
    }
    body{padding-bottom: 0px !important;}
    .info-grid{
      grid-template-columns: repeat(1,1fr) !important;
    }
    .time-item h3{font-size: 16px !important;}
    .sp-place-hero h1{font-size: 40px !important;}
    .section h2{font-size: 22px !important;}
    .sp-place-hero{min-height: 310px !important;}
.sp-optional{font-size: 10px !important;}
.sp-field label{font-size: 13px !important;white-space: nowrap !important;}
.sp-listing-hero{
  min-height: 310px !important;
}
.sp-listing-hero
.sp-vehicle-card h3{font-size: 16px !important;}
.btn-sp-primary{white-space: nowrap !important;}
.sp-theme-newcard .sp-theme-body h3{font-size: 16px !important;}
.sp-fact strong{font-size: 13px;}
.sp-fact{padding: 5px;}
.highlightsc ul{grid-template-columns: repeat(1, minmax(0, 1fr));}
.reviewsSwiper .swiper-button-prev, .reviewsSwiper .swiper-button-next{display: none !important;}
    .sp-booking-steps {
        grid-template-columns: auto auto !important;
    }
    .sp-booking-step strong{font-size: 15px;}
    .sp-mobile-filter-btn{font-size: 14px !important;align-items: center;}
    .sp-mobile-dropdown-menu a{padding-left: 0px !important;}
    .sp-mobile-dropdown-menu {padding-left: 6px !important;}
    .offcanvas-body{padding-top: 0px !important;}
    .sp-footer-bottom{margin-top: 0px !important;padding-bottom: 10px !important;}
    .sp-header .navbar-toggler{font-size: 18px !important;}
        .sp-section {
        padding: 30px 0;
    }
        .sp-blog-hero-content {
        padding: 40px 6px 50px !important;
    }
    .sp-article-hero h1{font-size: 40px !important;}
    .sp-article-hero p{font-size: 13px !important;}
    .sp-article-hero-image {
    height: 210px !important;
    overflow: hidden;
}
.sp-hero-content{
padding: 40px 6px 50px !important;
}
    .sp-taxi-hero-content {
        padding: 40px 6px 50px !important;
    }
        .sp-listing-hero-content {
        padding: 40px 6px 50px !important;
    }
        .sp-taxi-hero {
        min-height: 310px !important;
    }
.sp-hero h1{font-size: 40px !important;}
.sp-article-section .content-safe p{font-size: 14px !important;}
    .sp-taxi-hero h1 {
        font-size: 40px !important;
    }
    .sp-footer img{height: 40px !important;}
    .sp-logo{height: 40px !important;}
        .sp-listing-hero {
        min-height: 310px;
    }
    .sp-fact small{white-space: normal !important;}
    .sp-about-check{font-size: 13px !important;}
    .sp-hub-hero h1{font-size: 40px !important;}
    .guidesection{padding-top: 0px !important;}
    .sp-taxi-hero p{font-size: 13px !important;}
.viewallnewbtn{font-size: 12px !important;}
.sp-article-hero .col-lg-7{padding-left: 0px !important;}
.flexrow{flex-direction: column-reverse !important;}
    .sp-article-hero-content{padding: 40px 0px !important;padding-left: unset !important;}
    .sp-final-cta h3{font-size: 22px !important;}
    .sp-hub-card{padding: 1rem !important;}
    .sp-hub-links a{font-size: 12px !important;}
    .sp-footer .col-lg-4{margin-top: 0px !important;}
    .sp-popular-card{padding: 1rem !important;}
    .newbtndesign{white-space: nowrap;gap: 0px !important;}
        .sp-blog-hero {
        min-height: 310px !important;
    }
        .sp-packages-main {
        padding: 42px 0 0px !important;
    }
    .sp-listing-hero h1{
      font-size: 40px !important;
    }
    .highlightsc ul{
      grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
    .sp-package-main {
        padding: 40px 0 0px !important;
    }
        .sp-content-card h2 {
        font-size: 18px !important;
    }
      .sp-blog-hero p {
        font-size: 13px !important;
    }
    .sp-package-hero{
      min-height: 310px !important;
    }
    .sp-blog-tag{font-size: 11px !important;}
    .sp-blog-card-badge{font-size: 11px !important;}
    .sp-blog-hero h1 {
        font-size: 40px !important;
    }
        .sp-featured-image {
        min-height: 200px !important;
    }

        .sp-featured-copy h2 {
        font-size: 22px !important;
    }
    .sp-category-nav a{font-weight: 600 !important;padding: 8px 16px !important;}
    .sp-section-title{font-size: 22px !important;}
    .sp-section-copy{font-size: 13px !important;}
    .sp-footer a{word-wrap: anywhere;}
    .sp-newsletter{padding: 1rem !important;}
    .sp-newsletter h3{font-size: 22px !important;}
    .sp-newsletter-form input{font-size: 13px !important;}
}