@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Epunda+Slab:ital,wght@0,300..900;1,300..900&family=Gruppo&family=Inconsolata:wdth,wght@112.5,200..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Macondo&family=Michroma&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Oswald:wght@200..700&family=Playpen+Sans:wght@100..800&family=Protest+Revolution&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sedan+SC&family=Tapestry&display=swap');

body{
	
}

img{
    max-width:100%;
}

.header-transparent {
    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #000;
}



.header-transparent a,
.header-transparent .btn {
    color: #000;
    /*border:1px solid #4296BC;*/
}

.header-transparent img {
    max-height: 100px;
}





.hero-text {
    max-width: 620px;
}

/* Main Title */
.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
}

/* Price Highlight */
.hero-title span {
    display: inline-block;
    margin-top: 10px;
    color: #00e676;
    font-size: 46px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    margin-top: 15px;
    color: rgba(255,255,255,0.9);
}

/* Trust Points */
.hero-points {
    list-style: none;
    padding: 0;
    margin-top: 18px;
}

.hero-points li {
    font-size: 15px;
    margin-bottom: 6px;
    color: #fff;
}

/* Button spacing */
.hero-text .btn {
    padding: 14px 32px;
    border-radius: 50px;
}

.text-end{
    text-align:right;
}

/* SERVICE WRAPPER */
.services-div {
    text-align: center;
    padding: 35px 20px;
    position: relative;
    transition: all 0.4s ease;
}

/* BEFORE – subtle base underline */
.services-div::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #ddd;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

/* AFTER – glow accent (hidden initially) */
.services-div::after {
    content: "";
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(26, 127, 90, 0.12);
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

/* IMAGE */
.services-div img {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: block;
    transition: all 0.4s ease;
}

/* TEXT */
.recommended-description h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.recommended-description p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    max-width: 260px;
    margin: 0 auto;
}

/* HOVER EFFECTS */
.services-div:hover {
    transform: translateY(-8px);
}

/* underline grows */
.services-div:hover::before {
    width: 70px;
    background: #1a7f5a;
}

/* glow appears */
.services-div:hover::after {
    width: 160px;
    height: 160px;
    opacity: 1;
}

/* image pop */
.services-div:hover img {
    transform: translateY(-6px) scale(1.08);
}

/* title color */
.services-div:hover h5 {
    color: #1a7f5a;
}

/* MOBILE TUNING */
@media (max-width: 767px) {
    .services-div {
        padding: 25px 15px;
    }

    .services-div::after {
        display: none;
    }
}

.home4_section_area2{
    padding:70px 0;
}

.centertitle {
    text-align: center;
    position: relative;
}

/* Title styling */
.centertitle h2 {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #111;
    position: relative;
    padding: 0 20px; /* spacing for the lines */
}



.centertitle h2::before {
    left: -70px; /* space from the title */
}

.centertitle h2::after {
    right: -70px; /* space from the title */
}

/* Responsive tuning */
@media (max-width: 767px) {
    .centertitle h2::before,
    .centertitle h2::after {
        width: 40px;
        left: -50px;
        right: -50px;
    }

    .centertitle h2 {
        font-size: 24px;
        padding: 0 15px;
    }
}

/* Section wrapper relative for background */
.home4_section_area2 {
    position: relative;
    padding: 70px 0;
    overflow: hidden; /* hide shapes overflow */
    background: #f9fafb;
}

/* COMMON SHAPE STYLE */
.home4_section_area2 .bg-shape {
    position: absolute;
    border-radius: 50%; /* circle by default */
    opacity: 0.15;
    z-index: 0; /* behind content */
    animation: float 20s linear infinite;
}

/* FLOATING ANIMATION */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* DIFFERENT SHAPES */
.bg-shape.shape1 {
    width: 100px;
    height: 100px;
    background: #1a7f5a;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.bg-shape.shape2 {
    width: 150px;
    height: 150px;
    background: #e0f2eb;
    top: 50%;
    left: 80%;
    animation-duration: 30s;
}

.bg-shape.shape3 {
    width: 80px;
    height: 80px;
    background: #1a7f5a;
    top: 70%;
    left: 30%;
    animation-duration: 22s;
}

.bg-shape.shape4 {
    width: 120px;
    height: 120px;
    background: #e0f2eb;
    top: 20%;
    left: 60%;
    animation-duration: 28s;
}

/* Ensure content is above shapes */
.home4_section_area2 .container,
.home4_section_area2 .row {
    position: relative;
    z-index: 1;
}

/* SECTION TITLE */
.offerpackage h1 {
    text-align: center;
    font-size: 30px;
     font-family: "Protest Revolution", sans-serif;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

/* PACKAGE CARD */
.offr {
    margin-bottom: 30px;
}

.fblock_thumb {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 15px;
    position: relative;
    min-height:635px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fblock_thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.fblock_thumb img {
    width: 100%;
    border-radius: 15px 15px 0 0;
    object-fit: cover;
}

/* DISCOUNT BADGE */
.offfmy {
    position: absolute;
    top: 15px;
    left: 15px;
    background:#4195BB;
    color: #fff;
    padding: 5px 12px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 14px;
}

/* TITLE */
.fblock_thumb h6 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px 0;
    color: #111;
}

/* RATINGS */
.artting {
    font-size: 14px;
    color: #4195BB;
    font-weight: 600;
}

.artting .red {
    color: #f39c12;
}

/* PRICE */
.artting2 {
    text-align: right;
    font-size: 14px;
}

.artting2 .cut {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.artting2 .peradult {
    font-weight: 600;
    color: #F16026;
}

/* CLOCK / LOCATION DETAILS */
.clock-ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    font-size: 13px;
    margin-bottom: 15px;
}

.clock-ul li p {
    margin: 0;
    display: flex;
    align-items: center;
    color: #555;
}

.clock-ul li p i {
    color: #4195BB;
    margin-right: 5px;
}

/* FACILITY ICONS */
.facilit-icon {
    text-align: center;
    margin-top: 10px;
}

.facilit-icon i {
    font-size: 20px;
    color: #BACE64;
    margin-bottom: 5px;
}

.facilit-icon p {
    font-size: 13px;
    margin: 0;
    color: #555;
}

/* BUTTON */
.fblock_thumb button {
    width: 100%;
    background: #007bff;
    color: #fff;
    padding: 10px 0;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fblock_thumb button:hover {
    background: #159153;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .clock-ul {
        flex-direction: column;
        gap: 8px;
    }

    .artting2 {
        text-align: left;
        margin-top: 5px;
    }

    .offr {
        margin-bottom: 20px;
    }
}


.short-itenary ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.short-itenary ul li {
    display: flex;
    align-items: center;
    /*gap: 6px;*/
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    background: #fff4f0;
    padding: 4px 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.short-itenary ul li i {
    color:var(--orange);
    font-size: 14px;
}




/* Section Wrapper */
.home4_section_area {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Center Title */
.home4_section_area .centertitle {
    text-align: center;
    margin-bottom: 35px;
}

.home4_section_area .centertitle h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* Title Underline */
.home4_section_area .centertitle h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Carousel Wrapper */
.home4_section_area .owl-carousel {
    padding: 20px 0;
}

/* Individual Logo Item */
.home4_section_area .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Box */
.home4_section_area .owl-item img {
    max-height: 80px;
    width: auto;
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* Hover Effect */
.home4_section_area .owl-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Owl Dots */
.home4_section_area .owl-dots {
    margin-top: 20px;
}

.home4_section_area .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.home4_section_area .owl-dot.active span {
    background: #1b7f5a;
    width: 20px;
    border-radius: 10px;
}

/* Mobile Optimisation */
@media (max-width: 767px) {
    .home4_section_area {
        padding: 40px 0;
    }

    .home4_section_area .centertitle h2 {
        font-size: 26px;
    }

    .home4_section_area .owl-item img {
        max-height: 60px;
    }
}

/* =========================
   FOOTER BASE
========================= */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    background-size: 300% 300%;
    animation: footerGradient 12s ease infinite;
    color: #eaeaea;
    overflow: hidden;
    font-size: 15px;
}



/* =========================
   FOOTER TOP
========================= */
.footer-top {
    padding: 70px 0 40px;
    position: relative;
    z-index: 2;
}

/* Headings */
.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #F16026;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* Text & Icons */
.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer p i {
    color: #F16026;
    margin-right: 8px;
}

/* =========================
   FOOTER LINKS
========================= */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links {
    color: #dcdcdc;
    text-decoration: none;
    position: relative;
    padding-left: 18px;
    transition: all 0.3s ease;
}

/* Arrow Before Link */
.footer-links::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #F16026;
    transition: transform 0.3s ease;
}

.footer-links:hover {
    color: #ffffff;
    padding-left: 24px;
}

.footer-links:hover::before {
    transform: translateX(4px);
}

/* =========================
   SOCIAL ICONS
========================= */
.social-network {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
}

.social-network li a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    transition: all 0.4s ease;
}

/* Hover Glow */
.social-network li a:hover {
    background: #3cb371;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(60,179,113,0.6);
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    background: rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

.template-name {
    color: #F16026;
    font-weight: 600;
}

/* =========================
   MODAL ENHANCEMENT
========================= */
.modal-header {
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.modal-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.modal-header h2,
.modal-header button {
    position: relative;
    z-index: 2;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 767px) {
    .footer-top {
        padding: 50px 0 30px;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-network {
        justify-content: center;
    }
}


/* Show only on mobile */
@media (max-width: 767px) {
    .home-heroo {
        display: block;
    }
    
    .hero-content h1{
        font-size:30px;
    }
    
    .hero-title span{
        font-size:35px;
    }
}

/* Hide form on desktop */
.mobile-hero-form {
    /*display: none;*/
}

/* Show form only on mobile */
@media (max-width: 767px) {
    .mobile-hero-form {
        display: block;
    }
    .hero-overlay{
        background:transparent;
    }
    .water-btn{
        margin-bottom:5px;
    }
}


/* Call button */
.btn-call {
    border: none;
}



/* Hover */
.btn-call:hover,
.btn-quote:hover {
    opacity: 0.9;
}
@media (max-width: 767px) {

    /* Ratings + Price in one row */
    .fblock_thumb > .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .fblock_thumb > .row > div {
        width: 50%;
    }

    .artting {
        font-size: 13px;
    }

    .artting2 {
        text-align: right;
        font-size: 13px;
    }
}

.thankyoudiv{
    padding:120px 0;
}

/* Modal Base */
.travel-offer-modal .modal-content {
  border-radius: 10px;
  overflow: hidden;
  border: none;
}

/* Header */
.travel-modal-header {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 40px 25px;
  color: #fff;
  text-align: center;
}

.travel-modal-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.travel-modal-header * {
  position: relative;
  z-index: 2;
}

.travel-modal-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.travel-modal-header h2 span {
  color: #ffd200;
}

.travel-modal-header p {
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* Close Button */
.travel-modal-close {
  color: #fff;
  opacity: 1;
  font-size: 28px;
}

/* Body */
.travel-modal-body {
  background: #f7f9fc;
  padding: 10px;
}

.travel-form-box {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.travel-form-box h3 {
  text-align: center;
  color: #004288;
  font-weight: 700;
  margin-bottom: 5px;
}

.travel-form-sub {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* Contact Form 7 Styling */
.travel-form-box input,
.travel-form-box textarea,
.travel-form-box select {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.travel-form-box input:focus,
.travel-form-box textarea:focus {
  border-color: #004288;
  box-shadow: none;
}

/* Submit Button */
.travel-form-box input[type="submit"] {
  background: #004288;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.travel-form-box input[type="submit"]:hover {
  background: #002d5a;
}

/* Footer */
.travel-modal-footer {
  background: #fff;
  border-top: 1px solid #eee;
  text-align: center;
}

.privacy-points {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.privacy-points li {
  font-size: 13px;
  color: #666;
}

/* Close Button */
.travel-close-btn {
  background: #ddd;
  border-radius: 20px;
  padding: 6px 18px;
}

.modal-footer{
    display:flex !important;
    justify-content:space-between !important;
}

.footer p a{
    color:#fff;
}

.footer-line{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-line i{
    min-width: 18px;
    margin-top: 4px;
}

.footer-text *{
    text-align:left;
    margin: 0;
    padding: 0;
}
.innerproducts{
    padding:100px 0;
}

.footer-text a{
    color:#fff;
}

/* HERO SECTION */
.kashmir-hero-section {
    position: relative;
    color: #fff;
}

/* TEXT AREA */
.kashmir-hero-text {
    margin-bottom: 20px;
}

.kashmir-hero-title {
    font-size: 48px;
    color:#000;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.kashmir-hero-title span {
    display: inline-block;
    color: #000;
    font-size: 36px;
    font-weight: 600;
    margin-top: 10px;
}

.kashmir-hero-description {
    font-size: 18px;
    color:#000;
    opacity: 0.9;
}

/* BUTTON */
.kashmir-hero-btn {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.kashmir-hero-btn:hover {
    background: #1e7e34;
    transform: translateY(-2px);
}

/* FORM BOX */
.kashmir-enquiry-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.kashmir-form-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .kashmir-hero-title {
        font-size: 32px;
    }

    .kashmir-hero-title span {
        font-size: 24px;
    }

    .kashmir-hero-description {
        font-size: 15px;
    }
}

label{
    color:#fff;
}

/* Mobile Bottom Contact Bar */
.mobile-contact-bar {
    display: none;
}

@media (max-width: 768px) {

    .mobile-contact-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    .mobile-contact-bar a {
        flex: 1;
        text-align: center;
        padding: 14px 10px;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .mobile-contact-bar .call-btn {
        background: #F58E35;
        border-radius:0;
    }

    .mobile-contact-bar .whatsapp-btn {
        background: #008000;
    }
}

.package-actions .btn {
    font-weight: 600;
    padding: 10px 8px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 0;
}

.btn-call {
    background: #F58E35;
    color: #fff;
}

.btn-call:hover {
    background: #e68310;
    color: #fff;
}

.btn-whatsapp {
    background: #008000;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
}



.btn-quote:hover {
    background: #0069d9;
    color: #fff;
}

.navbar-brand img{
    width:340px;
}

.section-padding {
    padding: 70px 0;
}

.about-hero {
    background: #f8f9fa;
    padding: 14px 0;
}

.about-hero h1 {
    font-size: 40px;
    font-weight: 700;
}

.about-content h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.about-cta {
    background: #007bff;
    color: #fff;
    padding: 60px 0;
}

.about-cta h3 {
    font-size: 28px;
    font-weight: 600;
}

.section-padding {
    padding: 80px 0;
}

/* HERO */
.contact-hero {
    background: #f8f9fa;
    padding: 90px 0;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

/* CONTACT CARDS */
.contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 15px;
    display: block;
}

.contact-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* MAP */
.map-box {
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Section Background */
.thankyou-section {
    background: #f3f3f3;
    padding: 30px 0 120px;
}

/* Center Box */
.thankyou-box {
    text-align: center;
}

/* Main Heading (Purple Playful Look) */
.thank-title {
    font-size: 48px;
    font-weight: 700;
    color: #6f5bd4;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Subtitle */
.thank-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 45px;
}

/* Grey Rounded Call Box */
.call-box {
    background: #e9e9e9;
    padding: 22px 40px;
    border-radius: 60px;
    display: inline-block;
    margin-bottom: 40px;
    min-width: 70%;
}

/* Red Call Text */
.call-box h4 {
    color: #ff0000;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
}

/* Phone Icon */
.call-box i {
    margin-right: 8px;
}

/* Social Icons Container */
.social-icons {
    margin-bottom: 35px;
        margin-bottom: 35px;
    display: flex;
    justify-content: center;
}

/* Square Social Boxes */
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    margin: 0 8px;
    background: #ffffff;
    border: 1px solid #ddd;
    font-size: 22px;
    color: #444;
    border-radius: 6px;
    transition: 0.3s ease;
}

/* Hover Effect */
.social-icons a:hover {
    background: #6f5bd4;
    color: #fff;
    transform: translateY(-3px);
}

/* Back Button */
.btn-back {
    display: inline-block;
    background: #8e4c5f;
    color: #fff;
    padding: 14px 55px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Button Hover */
.btn-back:hover {
    background: #6f5bd4;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    .thank-title {
        font-size: 34px;
    }

    .call-box {
        min-width: 100%;
        padding: 18px 20px;
    }

    .call-box h4 {
        font-size: 18px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .btn-back {
        padding: 12px 35px;
        font-size: 16px;
    }
}
.footer-payment-btn .btn {
    background-color: #ff6600;
    border: none;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s ease;
}

.footer-payment-btn .btn:hover {
    background-color: #e05500;
}

/* ============================================
   KASHMIR BANNER — Premium Hero CSS
   ============================================ */

/* --- Base Section --- */
.ksh-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

/* --- Background Image --- */
.ksh-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ksh-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.05);
    animation: ksh-zoomin 12s ease forwards;
}

@keyframes ksh-zoomin {
    from { transform: scale(1.08); }
    to   { transform: scale(1.00); }
}

/* --- Gradient Overlay (cinematic multi-stop) --- */
.ksh-banner__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            110deg,
            rgba(5, 20, 40, 0.82) 0%,
            rgba(10, 40, 60, 0.65) 45%,
            rgba(0, 0, 0, 0.15) 100%
        ),
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.55) 0%,
            transparent 50%
        );
}




/* Common Mobile Button Styling */
.book-btn,
.call-btn,
.whatsapp-btn {
    width: 100%;
    padding: 12px 18px;
    font-weight: 600;
    border-radius: 0;
    color: #fff !important;
    text-align: center;
    transition: 0.3s ease;
    display: inline-block;
}

/* Book Now Button */
.book-btn {
    background-color: #007bff;
    border: none;
}

.book-btn:hover {
    background-color: #0069d9;
}

/* Call Now Button */
.call-btn {
    background-color: #F58E35;
    border: none;
}

.call-btn:hover {
    background-color: #e07c28;
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #008000;
    border: none;
}

.whatsapp-btn:hover {
    background-color: #006400;
}

.modal-header .close {
    margin:0 !important;
    padding:0 !important;
}

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

  .mobile-sidebar {
    background: linear-gradient(160deg, #0a1628 0%, #0d2444 60%, #0a3060 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    padding: 20px 16px 28px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);

  }

  /* Subtle snow/mountain texture feel */
  .mobile-sidebar::before {

    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(100, 180, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
  }

  .mobile-sidebar .navbar-nav {
    gap: 4px;
    display: flex;
    flex-direction: column;
  }

  /* Each nav item */
  .mobile-sidebar .nav-item {
    border-radius: 10px;
    overflow: hidden;
  }

  .mobile-sidebar .nav-link {
    color: rgba(220, 235, 255, 0.85) !important;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 12px 18px !important;
    border-radius: 10px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
  }

  /* Hover/Active state */
  .mobile-sidebar .nav-link:hover,
  .mobile-sidebar .nav-item.active .nav-link {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    padding-left: 24px !important;
  }



  /* Divider line between links */
  .mobile-sidebar .nav-item + .nav-item {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Book Now Button */
  .mobile-sidebar .book-btn {
    background: linear-gradient(135deg, #1a6fd4, #0a9ecc) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px;
    padding: 14px 18px !important;
    border-radius: 12px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(26, 111, 212, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    margin-top: 8px !important;
  }

  .mobile-sidebar .book-btn:hover {
    background: linear-gradient(135deg, #2279e8, #12b4e2) !important;
    box-shadow: 0 6px 24px rgba(26, 111, 212, 0.6);
    transform: translateY(-1px);
    padding-left: 18px !important; /* override the shift on hover */
  }

  /* Remove the left-bar effect from book button */
  .mobile-sidebar .nav-item:has(.book-btn) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 6px;
    padding-top: 6px;
  }

  .mobile-sidebar .nav-item:has(.book-btn) .nav-link::before {
    display: none;
  }
}

.pay-btn{
    background: linear-gradient(45deg,#6c5ce7,#8e7dff);
    color:#fff !important;
}

.navbar-light .navbar-nav .nav-link{
    /*color:#000 !important;*/
     font-family: 'Nunito Sans', sans-serif;
}

              :root {
            --orange: #80502C;
            --orange-dark: #d45520;
            --orange-light: #fff4f0;
            --dark: #1a1a1a;
            --text: #2e2e2e;
            --muted: #777;
            --card-radius: 16px;
            --shadow: 0 8px 32px rgba(0,0,0,0.10);
            --shadow-hover: 0 16px 48px rgba(0,0,0,0.16);
              --footer-bg: #111111;
            --footer-card: #1a1a1a;
            --footer-border: rgba(255,255,255,0.07);
            --footer-text: rgba(255,255,255,0.62);
            --footer-heading: #ffffff;
        }
 
 
        /* ══════════════════════════════════════════
           TOP STRIP — phone + location (NEW)
        ══════════════════════════════════════════ */
        .top-info-strip {
            background: var(--orange);
            padding: 5px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: rgba(255,255,255,0.93);
        }
        .top-info-strip .strip-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .top-info-strip .strip-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            letter-spacing: 0.2px;
        }
        .top-info-strip .strip-item i {
            font-size: 11px;
            opacity: 0.85;
        }
        .top-info-strip .strip-item a {
            color: #fff;
            text-decoration: none;
        }
        .top-info-strip .strip-item a:hover {
            text-decoration: underline;
        }
        .top-info-strip .strip-right {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.3px;
            opacity: 0.88;
        }
        .top-info-strip .strip-divider {
            color: rgba(255,255,255,0.35);
            font-size: 14px;
        }
 
        /* ══════════════════════════════════════════
           TOPBAR — social icons
        ══════════════════════════════════════════ */
        .mobile-social-topbar {
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 7px 24px;
            gap: 12px;
        }
        .topbar-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .topbar-tagline {
            font-size: 11px;
            color: #888;
            letter-spacing: 0.4px;
            font-style: italic;
        }
        .topbar-tagline span {
            color: var(--orange);
            font-style: normal;
            font-weight: 700;
        }
        .topbar-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .mobile-social-topbar .find-us {
            color: #aaa;
            font-size: 11px;
            letter-spacing: 0.7px;
            text-transform: uppercase;
            font-weight: 600;
            white-space: nowrap;
        }
        .mobile-social-topbar .mobile-social-icons {
            display: flex;
            align-items: center;
            gap: 7px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .mobile-social-topbar .mobile-social-icons li a {
            width: 30px;
            height: 30px;
            background: #252525;
            border: 1px solid #363636;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.22s ease;
            text-decoration: none;
        }
        .mobile-social-topbar .mobile-social-icons li a:hover {
            background: var(--orange);
            border-color: var(--orange);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(236,101,50,0.35);
        }
        .mobile-social-topbar .mobile-social-icons li a img {
            width: 24px;
            height: 24px;
            object-fit: contain;
            transition: filter 0.2s ease;
        }
        .mobile-social-topbar .mobile-social-icons li a:hover img {
            filter: brightness(0) invert(1);
        }
 
        /* ══════════════════════════════════════════
           NAVBAR
        ══════════════════════════════════════════ */
        .navbar.navbar-light.bg-light {
            background: #ffffff !important;
            border-bottom: 3px solid var(--orange);
            padding: 0 24px;
            min-height: 74px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07);
        }
 
        .navbar .navbar-brand {
            padding: 6px 0;
        }
        .navbar .navbar-brand img {
            height: 84px;
            width: auto;
            object-fit: contain;
        }
 
        /* Toggler */
        .navbar .navbar-toggler {
            border: 2px solid var(--orange);
            border-radius: 8px;
            padding: 6px 10px;
            box-shadow: none !important;
            outline: none !important;
            transition: background 0.2s;
        }
        .navbar .navbar-toggler:hover { background: var(--orange-light); }
        .navbar .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23EC6532' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
 
        /* Nav links */
        .navbar .navbar-nav {
            gap: 2px;
        }
        .navbar .navbar-nav .nav-item .nav-link {
            color: var(--text);
            font-size: 14.5px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 8px;
            transition: color 0.2s, background 0.2s;
            position: relative;
            letter-spacing: 0.1px;
        }
        .navbar .navbar-nav .nav-item .nav-link:hover {
            color: var(--orange);
            background: var(--orange-light);
        }
        .navbar .navbar-nav .nav-item.active .nav-link {
            color: var(--orange);
            font-weight: 700;
        }
        .navbar .navbar-nav .nav-item.active .nav-link::after {
            content: '';
            position: absolute;
            bottom: 3px;
            left: 16px;
            right: 16px;
            height: 2.5px;
            background: var(--orange);
            border-radius: 2px;
        }
 
        /* Nav badge (NEW) */
        .nav-badge {
            display: inline-block;
            background: var(--orange);
            color: #fff;
            font-size: 9px;
            font-weight: 800;
            padding: 1px 5px;
            border-radius: 20px;
            vertical-align: super;
            margin-left: 3px;
            letter-spacing: 0.3px;
            line-height: 1.6;
        }
 
        /* Desktop Book Now */
        .d-none.d-lg-flex .btn.water-btn.water-light {
            background: var(--orange);
            color: #fff;
            border: none;
            padding: 10px 26px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 700;
            font-family: 'Nunito', sans-serif;
            letter-spacing: 0.3px;
            transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(236,101,50,0.35);
        }
        .d-none.d-lg-flex .btn.water-btn.water-light:hover {
            background: var(--orange-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(236,101,50,0.45);
            color: #fff;
        }
        .d-none.d-lg-flex .btn.water-btn.water-light:active {
            transform: scale(0.97);
        }
 
        /* Mobile Book Now */
        .navbar .navbar-nav .nav-item.d-lg-none .btn.book-btn {
            background: var(--orange);
            color: #fff !important;
            border-radius: 10px;
            font-size: 14.5px;
            font-weight: 700;
            font-family: 'Nunito', sans-serif;
            padding: 11px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.2s;
            border: none;
            text-decoration: none;
            margin: 6px 16px 4px;
            box-shadow: 0 4px 14px rgba(236,101,50,0.3);
        }
        .navbar .navbar-nav .nav-item.d-lg-none .btn.book-btn:hover {
            background: var(--orange-dark);
            color: #fff !important;
        }
 
        /* ══════════════════════════════════════════
           MOBILE RESPONSIVE
        ══════════════════════════════════════════ */
        @media (max-width: 991.98px) {
            .top-info-strip { display: none; }
 
            .mobile-social-topbar {
                padding: 7px 16px;
                justify-content: center;
            }
            .topbar-tagline { display: none; }
 
            .navbar.navbar-light.bg-light {
                padding: 0 16px;
            }
            .collapse.navbar-collapse {
                background: #fff;
                border-top: 3px solid var(--orange);
                padding: 8px 0 14px;
                margin: 0 -16px;
                padding-left: 0;
                padding-right: 0;
            }
            .navbar .navbar-nav .nav-item .nav-link {
                padding: 11px 20px;
                border-radius: 0;
                border-left: 3px solid transparent;
                font-size: 15px;
            }
            .navbar .navbar-nav .nav-item .nav-link:hover {
                border-left-color: var(--orange);
                border-radius: 0;
                background: var(--orange-light);
            }
            .navbar .navbar-nav .nav-item.active .nav-link {
                border-left: 3px solid var(--orange);
                background: var(--orange-light);
            }
            .navbar .navbar-nav .nav-item.active .nav-link::after {
                display: none;
            }
 
            /* Mobile nav separator (NEW) */
            .navbar .navbar-nav .nav-item:not(:last-child) .nav-link {
                border-bottom: 1px solid #f5f5f5;
            }
        }
        
              .ksh-banner {
            position: relative;
            width: 100%;
            overflow: hidden;
            min-height: 100vh;
        }
 
        /* Background image wrapper */
        .ksh-banner__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .ksh-banner__bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transform: scale(1.04);
            animation: slowZoom 14s ease-out forwards;
        }
        @keyframes slowZoom {
            from { transform: scale(1.04); }
            to   { transform: scale(1); }
        }
 
        /* Multi-layer veil */
        .ksh-banner__veil {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(105deg, rgba(20,12,6,0.82) 0%, rgba(20,12,6,0.55) 55%, rgba(20,12,6,0.18) 100%),
                linear-gradient(to top, rgba(20,12,6,0.65) 0%, transparent 50%);
        }
 
        /* Decorative orange vertical bar */
        .ksh-banner__veil::before {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            left: 0;
            width: 5px;
            background: var(--orange);
            z-index: 2;
        }
 
        /* Stage — content layer */
        .ksh-banner__stage {
            position: relative;
            z-index: 2;
        }
 
        /* Copy column */
        .ksh-banner__copy {
            padding: 67px 0 100px;
            animation: fadeUp 0.9s ease both;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(28px); }
            to   { opacity: 1; transform: translateY(0); }
        }
 
        /* Eyebrow */
        .ksh-banner__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(236,101,50,0.15);
            border: 1px solid rgba(236,101,50,0.4);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 22px;
            animation: fadeUp 0.9s 0.1s ease both;
        }
        .ksh-banner__eyebrow::before {
            content: '';
            width: 6px; height: 6px;
            background: var(--orange);
            border-radius: 50%;
            display: inline-block;
        }
 
        /* Headline */
        .ksh-banner__headline {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 5vw, 40px);
            font-weight: 800;
            color: #fff;
            line-height: 1.18;
            animation: fadeUp 0.9s 0.2s ease both;
        }
 
        /* Price tag inline */
        .ksh-banner__price-tag {
            display: block;
            font-family: 'Nunito', sans-serif;
            font-size: clamp(15px, 2vw, 20px);
            font-weight: 700;
            color: #fff;
            margin-top: 10px;
            letter-spacing: 0.2px;
        }
        .ksh-banner__price-tag::before {
            content: '—  ';
            color: rgba(255,255,255,0.3);
            font-weight: 400;
        }
 
        /* Lead text */
        .ksh-banner__lead {
            font-size: clamp(14px, 1.6vw, 16.5px);
            color: rgba(255,255,255,0.78);
            line-height: 1.75;
            max-width: 480px;
            font-weight: 500;
            animation: fadeUp 0.9s 0.3s ease both;
        }
 
        /* Trust list */
        .ksh-banner__trust-list {
            list-style: none;
            padding: 0;
            margin: 0 0 36px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            animation: fadeUp 0.9s 0.4s ease both;
        }
        .ksh-banner__trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.88);
            font-size: 14.5px;
            font-weight: 600;
        }
        .ksh-trust-icon {
            width: 32px;
            height: 32px;
            background: rgba(236,101,50,0.18);
            border: 1px solid rgba(236,101,50,0.35);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            flex-shrink: 0;
        }
 
        /* CTA Button */
        .ksh-banner__cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--orange);
            color: #fff;
            text-decoration: none;
            font-size: 15.5px;
            font-weight: 800;
            font-family: 'Nunito', sans-serif;
            padding: 15px 32px;
            border-radius: 12px;
            letter-spacing: 0.3px;
            transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s;
            box-shadow: 0 6px 24px rgba(236,101,50,0.45);
            animation: fadeUp 0.9s 0.5s ease both;
            position: relative;
            overflow: hidden;
        }
        .ksh-banner__cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255,255,255,0.08);
            opacity: 0;
            transition: opacity 0.2s;
        }
        .ksh-banner__cta:hover {
            background: var(--orange-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(236,101,50,0.5);
            text-decoration: none;
        }
        .ksh-banner__cta:hover::before { opacity: 1; }
        .ksh-banner__cta:active { transform: scale(0.97); }
 
        .ksh-cta__icon {
            font-size: 18px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50%       { transform: scale(1.18); }
        }
 
        /* Secondary CTA (optional explore link) */
        .ksh-banner__copy-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .ksh-banner__secondary {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 2px;
        }
        .ksh-banner__secondary:hover {
            color: #fff;
            text-decoration: none;
        }
        .ksh-banner__secondary i { font-size: 12px; }
 
        /* Bottom stat bar */
        .ksh-banner__stats {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            z-index: 3;
            background: rgba(15,8,3,0.72);
            backdrop-filter: blur(8px);
            border-top: 1px solid rgba(236,101,50,0.25);
            padding: 18px 0;
        }
        .ksh-stats__inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
        }
        .ksh-stat {
            flex: 1;
            text-align: center;
            padding: 0 24px;
            position: relative;
        }
        .ksh-stat + .ksh-stat::before {
            content: '';
            position: absolute;
            left: 0; top: 15%; bottom: 15%;
            width: 1px;
            background: rgba(255,255,255,0.12);
        }
        .ksh-stat__number {
            font-size: clamp(20px, 3vw, 28px);
            font-weight: 900;
            color: var(--orange);
            line-height: 1;
            font-family: 'Playfair Display', serif;
        }
        .ksh-stat__label {
            font-size: 11.5px;
            color: rgba(255,255,255,0.55);
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-top: 4px;
        }
 
        /* ══════════════════════════════════════
           MOBILE
        ══════════════════════════════════════ */
        @media (max-width: 767px) {
            .ksh-banner__copy {
                padding: 10px;
            }
            .ksh-banner__veil {
                background:
                    linear-gradient(180deg, rgba(20,12,6,0.65) 0%, rgba(20,12,6,0.82) 100%);
            }
            .ksh-stats__inner {
                gap: 0;
                flex-wrap: nowrap;
            }
            .ksh-stat { padding: 0 12px; }
            .ksh-stat__number { font-size: 20px; }
            .ksh-stat__label { font-size: 10px; }
            .ksh-banner__cta { width: 100%; justify-content: center; }
        }
        
              .pkg-section {
            padding: 72px 0 80px;
            background: #f7f4f1;
        }
 
        .pkg-section__header {
            text-align: center;
            margin-bottom: 48px;
        }
        .pkg-section__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--orange);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
        }
        .pkg-section__eyebrow::before,
        .pkg-section__eyebrow::after {
            content: '';
            width: 28px; height: 2px;
            background: var(--orange);
            border-radius: 2px;
            display: inline-block;
        }
        .pkg-section__title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(26px, 4vw, 40px);
            font-weight: 800;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 12px;
            margin-top:0;
        }
        .pkg-section__title span { color: var(--orange); }
        .pkg-section__subtitle {
            font-size: 15px;
            color: var(--muted);
            font-weight: 500;
            /*max-width: 480px;*/
            margin: 0 auto;
        }
 
        /* ══════════════════════════════════════
           CARD
        ══════════════════════════════════════ */
        .pkg-col {
            margin-bottom: 32px;
        }
 
        .pkg-card {
            background: #fff;
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.28s ease, box-shadow 0.28s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .pkg-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
 
        /* ── Image + Overlay ── */
        .pkg-card__media {
            position: relative;
            overflow: hidden;
            /*height: 220px;*/
        }
        .pkg-card__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        .pkg-card:hover .pkg-card__media img {
            transform: scale(1.07);
        }
 
        /* Dark gradient overlay */
        .pkg-card__media-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(0,0,0,0.08) 0%,
                rgba(0,0,0,0.15) 40%,
                rgba(20,8,2,0.72) 100%
            );
            z-index: 1;
        }
 
        /* Discount badge */
        .pkg-card__badge {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
            background: var(--orange);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            padding: 5px 12px;
            border-radius: 20px;
            letter-spacing: 0.3px;
            box-shadow: 0 3px 10px rgba(236,101,50,0.4);
        }
 
        /* Duration + location pinned on image bottom */
        .pkg-card__media-meta {
            position: absolute;
            bottom: 12px;
            left: 14px;
            right: 14px;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }
        .pkg-card__meta-pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255,255,255,0.22);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 5px 10px;
            border-radius: 20px;
        }
        .pkg-card__meta-pill i { font-size: 10px; opacity: 0.85; }
 
        /* ── Card Body ── */
        .pkg-card__body {
            padding: 18px 18px 14px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
 
        /* Title row */
        .pkg-card__title {
            font-size: 16px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.3;
            margin: 0;
        }
 
        /* Rating + Price row */
        .pkg-card__info-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }
        .pkg-card__rating {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #fffbf0;
            border: 1px solid #ffe082;
            color: #b8860b;
            font-size: 12px;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 20px;
        }
        .pkg-card__rating i { font-size: 10px; color: #f5a623; }
 
        .pkg-card__pricing {
            display: flex;
            align-items: baseline;
            gap: 6px;
        }
        .pkg-card__price-cut {
            font-size: 13px;
            color: var(--muted);
            text-decoration: line-through;
            font-weight: 600;
        }
        .pkg-card__price-main {
            font-size: 20px;
            font-weight: 900;
            color: var(--orange);
            line-height: 1;
        }
        .pkg-card__price-pp {
            font-size: 11px;
            color: var(--muted);
            font-weight: 600;
        }
 
        /* Description excerpt */
        .pkg-card__desc {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.65;
            font-weight: 500;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
 
        /* Amenities row */
        .pkg-card__amenities {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 14px;
            background: #faf9f8;
            border-radius: 10px;
            border: 1px solid #f0ede9;
        }
        .pkg-card__amenity {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        .pkg-card__amenity i {
            font-size: 15px;
            color: var(--orange);
        }
        .pkg-card__amenity span {
            font-size: 10px;
            color: var(--muted);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .pkg-amenity-divider {
            width: 1px;
            height: 28px;
            background: #ece8e3;
        }
 
        /* ── CTA Footer ── */
        .pkg-card__footer {
            padding: 0 18px 18px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 8px;
        }
 
        .pkg-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 12.5px;
            font-weight: 800;
            font-family: 'Nunito', sans-serif;
            padding: 9px 8px;
            border-radius: 9px;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        .pkg-btn i { font-size: 13px; }
 
        .pkg-btn--call {
            background: var(--orange-light);
            color: var(--orange-dark);
            border: 1.5px solid rgba(236,101,50,0.25);
        }
        .pkg-btn--call:hover {
            background: var(--orange);
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
 
        .pkg-btn--whatsapp {
            background: #e8f8ef;
            color: #1a7a40;
            border: 1.5px solid rgba(37,211,102,0.25);
        }
        .pkg-btn--whatsapp:hover {
            background: #25d366;
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
 
        .pkg-btn--quote {
            background: var(--orange);
            color: #fff;
            border: 1.5px solid var(--orange);
            box-shadow: 0 4px 12px rgba(236,101,50,0.3);
        }
        .pkg-btn--quote:hover {
            background: var(--orange-dark);
            border-color: var(--orange-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(236,101,50,0.4);
        }
 
        /* ══════════════════════════════════════
           MOBILE
        ══════════════════════════════════════ */
        @media (max-width: 767px) {
            .pkg-section { padding: 48px 0 56px; }
            .pkg-btn { font-size: 11.5px; padding: 8px 4px; }
        }
        
               .about-section {
            padding: 30px 0 40px;
            background: #f7f4f1;
            position: relative;
            overflow: visible;
        }
        
        /* ── IMAGE COLUMN ── */
        .about-media {
            position: relative;
            padding-bottom: 40px;
            padding-right: 24px;
            z-index: 1;
        }
 
        .about-media__dots {
            position: absolute;
            top: -16px; right: 10px;
            z-index: 0;
            width: 80px; height: 80px;
            background-image: radial-gradient(#123049 1.5px, transparent 1.5px);
            background-size: 12px 12px;
            opacity: 0.25;
            pointer-events: none;
        }
 
        .about-media__frame {
            position: absolute;
            top: 24px; left: 24px;
            right: 0; bottom: 64px;
            border: 3px solid #123049;
            border-radius: 20px;
            opacity: 0.18;
            z-index: 1;
            pointer-events: none;
        }
 
        .about-media__main {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.18);
            z-index: 2;
        }
        .about-media__main img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }
        .about-media__main-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                160deg,
                rgba(236,101,50,0.12) 0%,
                transparent 40%,
                rgba(20,8,2,0.45) 100%
            );
            z-index: 1;
            pointer-events: none;
        }
 
        .about-media__badge {
            position: absolute;
            bottom: -20px; left: -20px;
            z-index: 4;
            background: #123049;
            color: #fff;
            border-radius: 16px;
            padding: 20px 24px;
            box-shadow:0 6px 22px rgba(18,48,73,0.38);
            text-align: center;
            min-width: 130px;
        }
        .about-media__badge-number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 38px;
            font-weight: 800;
            line-height: 1;
            display: block;
        }
        .about-media__badge-text {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            opacity: 0.9;
            margin-top: 4px;
            display: block;
            line-height: 1.4;
        }
 
        .about-media__float {
            position: absolute;
            bottom: 0; right: -10px;
            z-index: 3;
            width: 48%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 36px rgba(0,0,0,0.2);
            border: 4px solid #fff;
        }
        .about-media__float img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }
        .about-media__float-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 30%, rgba(20,8,2,0.55) 100%);
            z-index: 1;
            pointer-events: none;
        }
        .about-media__float-label {
            position: absolute;
            bottom: 10px; left: 12px;
            z-index: 2;
            font-size: 11.5px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.3px;
        }
        .about-media__float-label i {
            color: #123049;
            margin-right: 4px;
        }
 
        /* ── COPY COLUMN ── */
        .about-copy {
            padding-left: 16px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
        }
 
        .about-copy__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #123049;
            font-size: 11.5px;
            font-weight: 800;
            letter-spacing: 2.8px;
            text-transform: uppercase;
        }
        .about-copy__eyebrow::before {
            content: '';
            width: 32px; height: 2.5px;
            background: #123049;
            border-radius: 2px;
            display: inline-block;
        }
 
        .about-copy__title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(28px, 3.5vw, 44px);
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1.18;
            margin: 0;
        }
        .about-copy__title span {
            color: #123049;
            font-style: italic;
        }
 
        .about-copy__intro {
            font-size: 15.5px;
            color: #2e2e2e;
            line-height: 1.8;
            font-weight: 600;
            border-left: 3px solid #123049;
            background: #fff4f0;
            padding: 14px 16px;
            border-radius: 0 10px 10px 0;
            margin: 0;
        }
 
        .about-copy__body {
            font-size: 14.5px;
            color: #777;
            line-height: 1.82;
            font-weight: 500;
            margin: 0;
        }
 
        .about-copy__features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .about-copy__feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14.5px;
            color: #2e2e2e;
            font-weight: 600;
            line-height: 1.5;
        }
        .about-copy__feature-icon {
            width: 34px; height: 34px;
            background: #fff4f0;
            border: 1.5px solid rgba(236,101,50,0.25);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .about-copy__feature-icon i {
            font-size: 14px;
            color: #123049;
        }
        .about-copy__feature-text strong {
            display: block;
            color: #1a1a1a;
            font-weight: 800;
            font-size: 14px;
            margin-bottom: 1px;
        }
        .about-copy__feature-text span {
            font-size: 13px;
            color: #777;
            font-weight: 500;
        }
 
        .about-copy__cta-row {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            padding-top: 6px;
        }
        .about-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: #123049;
            color: #fff;
            text-decoration: none;
            font-size: 14.5px;
            font-weight: 800;
            font-family: 'Nunito', sans-serif;
            padding: 13px 28px;
            border-radius: 11px;
            letter-spacing: 0.3px;
            box-shadow: 0 6px 22px rgba(18,48,73,0.38);
            transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
        }
        .about-cta-primary:hover {
            background: #d45520;
            color: #fff;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .about-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #1a1a1a;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            border-bottom: 2px solid #123049;
            padding-bottom: 2px;
            transition: color 0.2s;
        }
        .about-cta-secondary:hover {
            color: #123049;
            text-decoration: none;
        }
 
        .about-copy__signature {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 16px;
            border-top: 1px solid #ece8e3;
        }
        .about-signature__avatar {
            width: 48px; height: 48px;
            background: #123049;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 20px;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }
        .about-signature__info strong {
            display: block;
            font-size: 14px;
            font-weight: 800;
            color: #1a1a1a;
        }
        .about-signature__info span {
            font-size: 12px;
            color: #777;
            font-weight: 600;
        }
 
        /* ── MOBILE ── */
        @media (max-width: 991px) {
            .about-media {
                padding-right: 0;
                margin-bottom: 60px;
            }
            .about-media__main img { height: 380px; }
            .about-media__badge { left: 10px; bottom: -10px; }
            .about-copy { padding-left: 0; margin-top: 20px; }
        }
        @media (max-width: 575px) {
            .about-section { padding: 56px 0 64px; }
            .about-media__main img { height: 280px; }
            .about-media__float { width: 52%; right: 0; }
            .about-cta-primary { width: 100%; justify-content: center; }
        }
        
        
             .sidebar {
            position: sticky;
            top: 24px;
        }
 
        .sidebar-widget {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0,0,0,0.08);
        }
 
        /* Widget header */
        .sidebar-widget__header {
            background: var(--orange);
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }
        .sidebar-widget__header::before {
            content: '';
            position: absolute;
            top: -20px; right: -20px;
            width: 80px; height: 80px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            pointer-events: none;
        }
        .sidebar-widget__header::after {
            content: '';
            position: absolute;
            bottom: -30px; right: 20px;
            width: 60px; height: 60px;
            border-radius: 50%;
            background: rgba(255,255,255,0.07);
            pointer-events: none;
        }
        .sidebar-widget__header-icon {
            width: 36px; height: 36px;
            background: rgba(255,255,255,0.2);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .sidebar-widget__header-icon i {
            font-size: 15px;
            color: #fff;
        }
        .sidebar-widget__header-text {
            flex: 1;
        }
        .sidebar-widget__title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 17px;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin: 0;
        }
        .sidebar-widget__subtitle {
            font-size: 11px;
            color: rgba(255,255,255,0.75);
            font-weight: 600;
            letter-spacing: 0.4px;
            margin-top: 2px;
        }
 
        /* Widget body */
        .sidebar-widget__body {
            padding: 20px 20px 22px;
        }
 
        /* Tags cloud */
        .sidebar-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
 
        .sidebar-tags li {
            display: block;
        }
 
        .sidebar-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            font-family: 'Nunito', sans-serif;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1.5px solid transparent;
            line-height: 1;
        }
 
        /* Alternating styles for visual interest */
        .sidebar-tag--solid {
            background: var(--orange-light);
            color: var(--orange-dark);
            border-color: rgba(236,101,50,0.22);
        }
        .sidebar-tag--solid:hover {
            background: var(--orange);
            color: #fff;
            border-color: var(--orange);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(236,101,50,0.3);
            text-decoration: none;
        }
 
        .sidebar-tag--outline {
            background: transparent;
            color: var(--text);
            border-color: #e0dbd5;
        }
        .sidebar-tag--outline:hover {
            background: var(--orange);
            color: #fff;
            border-color: var(--orange);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(236,101,50,0.3);
            text-decoration: none;
        }
 
        .sidebar-tag i {
            font-size: 10px;
            opacity: 0.7;
        }
        .sidebar-tag:hover i {
            opacity: 1;
        }
 
        /* Divider inside widget */
        .sidebar-widget__divider {
            height: 1px;
            background: #f0ede9;
            margin: 16px 0;
        }
 
        /* Footer CTA inside widget */
        .sidebar-widget__footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 4px;
        }
        .sidebar-widget__count {
            font-size: 12px;
            color: var(--muted);
            font-weight: 600;
        }
        .sidebar-widget__count span {
            color: var(--orange);
            font-weight: 800;
        }
        .sidebar-widget__cta {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12.5px;
            font-weight: 800;
            color: var(--orange);
            text-decoration: none;
            transition: gap 0.2s;
        }
        .sidebar-widget__cta:hover {
            color: var(--orange-dark);
            text-decoration: none;
            gap: 8px;
        }
        .sidebar-widget__cta i { font-size: 11px; }
 
        /* ── MOBILE ── */
        @media (max-width: 767px) {
            .sidebar { position: static; }
        }
        
             .ksh-footer {
            background: var(--footer-bg);
            position: relative;
            overflow: hidden;
        }
 
        /* Subtle top orange line */
        .ksh-footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--orange), var(--orange-dark), transparent);
        }
 
        /* Background decorative blob */
        .ksh-footer::after {
            content: '';
            position: absolute;
            bottom: -120px; right: -120px;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: rgba(236,101,50,0.04);
            pointer-events: none;
        }
 
        /* ══════════════════════════════════════
           FOOTER PRE-STRIP — tagline bar
        ══════════════════════════════════════ */
        .ksh-footer__prestrip {
            background: #0d0d0d;
            border-bottom: 1px solid var(--footer-border);
            padding: 18px 0;
        }
        .ksh-footer__prestrip-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .ksh-footer__brand-wrap {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .ksh-footer__logo-mark {
            width: 44px; height: 44px;
            background: var(--orange);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .ksh-footer__logo-mark svg {
            width: 24px; height: 24px;
            fill: #fff;
        }
        .ksh-footer__brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }
        .ksh-footer__brand-sub {
            font-size: 10px;
            color: var(--orange);
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-top: 2px;
        }
        .ksh-footer__tagline {
            font-size: 13px;
            color: var(--footer-text);
            font-style: italic;
            font-weight: 500;
        }
        .ksh-footer__tagline span {
            color: var(--orange);
            font-style: normal;
            font-weight: 700;
        }
 
        /* ══════════════════════════════════════
           FOOTER MAIN BODY
        ══════════════════════════════════════ */
        .ksh-footer__body {
            padding: 56px 0 40px;
            position: relative;
            z-index: 1;
        }
 
        /* ── Heading style ── */
        .ksh-footer__col-heading {
            font-size: 13px;
            font-weight: 800;
            color: var(--footer-heading);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 22px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .ksh-footer__col-heading::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, var(--orange), transparent);
            opacity: 0.5;
        }
 
        /* ── About col (NEW) ── */
        .ksh-footer__about-text {
            font-size: 13.5px;
            color: var(--footer-text);
            line-height: 1.8;
            font-weight: 500;
            margin-bottom: 18px;
        }
        .ksh-footer__cert {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(236,101,50,0.1);
            border: 1px solid rgba(236,101,50,0.25);
            padding: 7px 14px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            color: var(--orange);
        }
        .ksh-footer__cert i { font-size: 12px; }
 
        /* ── Contact col ── */
        .ksh-footer__contact-list {
            list-style: none;
            padding: 0; margin: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .ksh-footer__contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .ksh-footer__contact-icon {
            width: 32px; height: 32px;
            background: rgba(236,101,50,0.12);
            border: 1px solid rgba(236,101,50,0.22);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .ksh-footer__contact-icon i {
            font-size: 13px;
            color: var(--orange);
        }
        .ksh-footer__contact-detail {
            font-size: 13.5px;
            color: var(--footer-text);
            font-weight: 500;
            line-height: 1.6;
        }
        .ksh-footer__contact-detail a {
            color: var(--footer-text);
            text-decoration: none;
            transition: color 0.2s;
        }
        .ksh-footer__contact-detail a:hover { color: var(--orange); }
        .ksh-footer__contact-label {
            display: block;
            font-size: 10.5px;
            font-weight: 800;
            color: var(--orange);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 2px;
        }
 
        /* ── Links col ── */
        .ksh-footer__links-list {
            list-style: none;
            padding: 0; margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .ksh-footer__links-list li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13.5px;
            color: var(--footer-text);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s, gap 0.2s;
        }
        .ksh-footer__links-list li a::before {
            content: '';
            width: 5px; height: 5px;
            background: var(--orange);
            border-radius: 50%;
            flex-shrink: 0;
            opacity: 0.5;
            transition: opacity 0.2s;
        }
        .ksh-footer__links-list li a:hover {
            color: var(--orange);
            gap: 12px;
        }
        .ksh-footer__links-list li a:hover::before {
            opacity: 1;
        }
 
        /* ── Social col ── */
        .ksh-footer__social-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            list-style: none;
            padding: 0; margin: 0 0 24px;
        }
        .ksh-footer__social-grid li a {
            width: 42px; height: 42px;
            background: #222;
            border: 1px solid var(--footer-border);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.22s, border-color 0.22s, transform 0.15s;
            text-decoration: none;
        }
        .ksh-footer__social-grid li a:hover {
            background: var(--orange);
            border-color: var(--orange);
            transform: translateY(-3px);
        }
        .ksh-footer__social-grid li a img {
            width: 18px; height: 18px;
            object-fit: contain;
            transition: filter 0.2s;
        }
        .ksh-footer__social-grid li a:hover img {
            filter: brightness(0) invert(1);
        }
 
        /* WhatsApp CTA (NEW) */
        .ksh-footer__whatsapp {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(37,211,102,0.1);
            border: 1px solid rgba(37,211,102,0.25);
            padding: 11px 16px;
            border-radius: 10px;
            text-decoration: none;
            transition: background 0.2s;
        }
        .ksh-footer__whatsapp:hover {
            background: rgba(37,211,102,0.18);
            text-decoration: none;
        }
        .ksh-footer__whatsapp i {
            font-size: 20px;
            color: #25d366;
        }
        .ksh-footer__whatsapp-text strong {
            display: block;
            font-size: 13px;
            font-weight: 800;
            color: #fff;
        }
        .ksh-footer__whatsapp-text span {
            font-size: 11.5px;
            color: var(--footer-text);
            font-weight: 500;
        }
 
        /* ── Divider ── */
        .ksh-footer__divider {
            border: none;
            border-top: 1px solid var(--footer-border);
            margin: 0;
        }
 
        /* ══════════════════════════════════════
           FOOTER BOTTOM BAR
        ══════════════════════════════════════ */
        .ksh-footer__bottom {
            padding: 18px 0;
            background: #0d0d0d;
        }
        .ksh-footer__bottom-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .ksh-footer__copyright {
            font-size: 12.5px;
            color: var(--footer-text);
            font-weight: 500;
            margin: 0;
        }
        .ksh-footer__copyright span {
            color: var(--orange);
            font-weight: 800;
        }
        .ksh-footer__bottom-links {
            display: flex;
            align-items: center;
            gap: 20px;
            list-style: none;
            padding: 0; margin: 0;
        }
        .ksh-footer__bottom-links li a {
            font-size: 12px;
            color: var(--footer-text);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }
        .ksh-footer__bottom-links li a:hover { color: var(--orange); }
        .ksh-footer__bottom-links li + li::before {
            content: '·';
            margin-right: 20px;
            color: rgba(255,255,255,0.15);
        }
        .ksh-footer__made-with {
            font-size: 12px;
            color: rgba(255,255,255,0.25);
            font-weight: 500;
        }
        .ksh-footer__made-with i { color: var(--orange); font-size: 11px; }
 
        /* ── MOBILE ── */
        @media (max-width: 767px) {
            .ksh-footer__prestrip-inner { justify-content: center; text-align: center; flex-direction: column; }
            .ksh-footer__tagline { display: none; }
            .ksh-footer__body { padding: 40px 0 28px; }
            .ksh-footer__bottom-inner { justify-content: center; text-align: center; flex-direction: column; }
            .ksh-footer__bottom-links li + li::before { display: none; }
        }
        
        /* ============================================
   DESTINATIONS SECTION — CSS
   Color scheme: Orange brand + dark/neutral
   ============================================ */

:root {
  --orange: #80502C;
  --orange-dark: #d45520;
  --orange-light: #fff4f0;
  --dark: #1a1a1a;
  --text: #2e2e2e;
  --muted: #777;
  --card-radius: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.16);
  --footer-bg: #111111;
  --footer-card: #1a1a1a;
  --footer-border: rgba(255, 255, 255, 0.07);
  --footer-text: rgba(255, 255, 255, 0.62);
  --footer-heading: #ffffff;
}

/* ── Section wrapper ─────────────────────── */
.destinations-section {
  background: #fafaf8;
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Subtle warm texture strip at top */
.destinations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange), var(--orange-dark), var(--orange));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Section header ──────────────────────── */
.destinations-header {
  margin-bottom: 12px;
}

.destinations-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

/* Underline accent on title */
.destinations-title::after {
  content: '';
  display: block;
  margin: 10px auto 0;
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
}

.destinations-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.65;
  font-family: 'Georgia', serif;
  font-style: italic;
}

/* ── Destination cards ───────────────────── */
.destination-item {
  animation: fadeUp 0.55s ease both;
}

.destination-item:nth-child(1) { animation-delay: 0.05s; }
.destination-item:nth-child(2) { animation-delay: 0.15s; }
.destination-item:nth-child(3) { animation-delay: 0.25s; }
.destination-item:nth-child(4) { animation-delay: 0.32s; }
.destination-item:nth-child(5) { animation-delay: 0.38s; }
.destination-item:nth-child(6) { animation-delay: 0.44s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destination-link {
  display: block;
  text-decoration: none;
  color: var(--text) !important;
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.32s ease, transform 0.32s ease;
  border: 1px solid rgba(236, 101, 50, 0.08);
  position: relative;
}

.destination-link:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  text-decoration: none;
  color: var(--text) !important;
}

/* ── Destination image ───────────────────── */
.destination-image {
  width: 100%;
  overflow: hidden;
  background: var(--orange-light);
  position: relative;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-link:hover .destination-image img {
  transform: scale(1.07);
}

/* Gradient overlay — always present, intensifies on hover */
.destination-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 10, 5, 0.72) 0%,
    rgba(20, 10, 5, 0.18) 45%,
    transparent 70%
  );
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.destination-link:hover .destination-image::after {
  opacity: 0.88;
}

/* ── Destination title — overlaid on image ── */
.destination-link .destination-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 16px 18px 18px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  transform: translateY(4px);
  transition: transform 0.3s ease, color 0.22s ease;
}

/* Arrow icon that appears on hover */
.destination-link .destination-title::after {
  content: '→';
  font-style: normal;
  font-size: 1rem;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  margin-left: auto;
  flex-shrink: 0;
}

.destination-link:hover .destination-title {
  transform: translateY(0);
  color: #ffffff;
}

.destination-link:hover .destination-title::after {
  opacity: 1;
  transform: translateX(0);
}

/* ── View All button ─────────────────────── */
.destinations-view-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--orange);
  color: #ffffff !important;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--orange);
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(236, 101, 50, 0.30);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.destinations-view-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.destinations-view-btn:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 8px 28px rgba(236, 101, 50, 0.42);
  transform: translateY(-2px);
  color: #ffffff !important;
  text-decoration: none;
}

.destinations-view-btn:hover::before {
  opacity: 1;
}

.destinations-view-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(236, 101, 50, 0.28);
}

/* ── Responsive tweaks ───────────────────── */
@media (max-width: 768px) {
  .destinations-section {
    padding: 56px 0 72px;
  }

  .destinations-title {
    font-size: 1.9rem;
  }

  .destination-item {
    margin-bottom: 20px;
  }

  .destinations-view-btn {
    padding: 13px 32px;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .destinations-title {
    font-size: 1.65rem;
  }

  .destination-link .destination-title {
    font-size: 0.97rem;
    padding: 12px 14px 15px;
  }
}

.cabs-section {
    background: #f8f5f2;
    padding: 96px 0 110px;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}
 
/* Decorative top edge */
.cabs-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange-light), var(--orange), var(--orange-dark), var(--orange));
}
 
/* Subtle watermark background text */
.cabs-section::after {
    content: 'KASHMIR';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(80px, 18vw, 200px);
    font-weight: 800;
    color: rgba(236,101,50,0.04);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.1em;
    z-index: 0;
}
 
/* ── Section Header ──────────────────────────── */
.cabs-section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}
 
.cabs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}
 
.cabs-eyebrow svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
}
 
.cabs-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin: 0 0 16px;
}
 
.cabs-section-title span {
    color: var(--orange);
}
 
.cabs-section-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
 
/* Region pills */
.cabs-regions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
 
.cabs-region-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(236,101,50,0.25);
    background: white;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.22s ease;
    cursor: default;
}
 
.cabs-region-pill:hover {
    border-color: var(--orange);
    background: var(--orange-light);
    color: var(--orange-dark);
    transform: translateY(-2px);
}
 
.cabs-region-pill svg {
    width: 14px; height: 14px;
    color: var(--orange);
}
 
/* ── Cards Grid ──────────────────────────────── */
.cabs-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -14px;
}
 
.cabs-wrapper > [class*="col-"] {
    padding: 0 14px;
    margin-bottom: 28px;
}
 
/* ── Single Cab Card ─────────────────────────── */
.cab-card {
    background: #ffffff;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.32s cubic-bezier(.22,.68,0,1.2),
                box-shadow 0.32s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}
 
.cab-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-hover);
}
 
/* Orange top accent bar */
.cab-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    opacity: 0;
    transition: opacity 0.28s ease;
    z-index: 2;
}
 
.cab-card:hover::before {
    opacity: 1;
}
 
/* ── Card Image ──────────────────────────────── */
.cab-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f0ebe5;
}
 
.cab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(.22,.68,0,1.1);
}
 
.cab-card:hover .cab-img img {
    transform: scale(1.07);
}
 
/* Image overlay gradient */
.cab-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 55%,
        rgba(26,26,26,0.35) 100%
    );
    pointer-events: none;
}
 
/* ── Card Content ────────────────────────────── */
.cab-content {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
 
.cab-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.25;
    transition: color 0.2s;
}
 
.cab-card:hover .cab-title {
    color: var(--orange-dark);
}
 
/* ── Meta Row ────────────────────────────────── */
.cab-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 6px;
    border-top: 1px dashed rgba(0,0,0,0.08);
}
 
.cab-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.01em;
}
 
.cab-price svg {
    width: 18px; height: 18px;
    opacity: 0.7;
}
 
.cab-persons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 999px;
}
 
.cab-persons svg {
    width: 14px; height: 14px;
    color: var(--orange);
}
 
/* ── Book Button ─────────────────────────────── */
.cab-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 11px 20px;
    border-radius: 10px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all 0.22s ease;
    cursor: pointer;
}
 
.cab-book-btn svg {
    width: 15px; height: 15px;
    transition: transform 0.22s ease;
}
 
.cab-card:hover .cab-book-btn {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
 
.cab-card:hover .cab-book-btn svg {
    transform: translateX(4px);
}
 
/* ── No cabs fallback ────────────────────────── */
.cabs-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
    font-size: 16px;
}
 
/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
    .cabs-section { padding: 64px 0 72px; }
    .cabs-section-header { margin-bottom: 40px; }
}
 
@media (max-width: 480px) {
    .cab-content { padding: 18px 18px 20px; }
    .cab-price { font-size: 18px; }
}

/* ── Glass Form Card ── */
.ksh-glass-form {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    padding: 13px 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
    position: relative;
}

.ksh-glass-form::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240,192,96,.7), transparent);
}

.ksh-glass-form__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ksh-glass-form__sub {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 22px;
}

.ksh-glass-form__note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ── CF7 Fields ── */
.ksh-glass-form .wpcf7-form p {
    margin-bottom: 14px;
}

.ksh-glass-form .wpcf7-form input[type="text"],
.ksh-glass-form .wpcf7-form input[type="email"],
.ksh-glass-form .wpcf7-form input[type="tel"],
.ksh-glass-form .wpcf7-form input[type="number"],
.ksh-glass-form .wpcf7-form select,
.ksh-glass-form .wpcf7-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.92rem;
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.ksh-glass-form .wpcf7-form input::placeholder,
.ksh-glass-form .wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.ksh-glass-form .wpcf7-form select {
    color: rgba(255, 255, 255, 0.72);
    appearance: none;
    -webkit-appearance: none;
}

.ksh-glass-form .wpcf7-form select option {
    background: #1a2a3a;
    color: #fff;
}

.ksh-glass-form .wpcf7-form input:focus,
.ksh-glass-form .wpcf7-form textarea:focus,
.ksh-glass-form .wpcf7-form select:focus {
    border-color: rgba(240, 192, 96, 0.65);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 0 3px rgba(240, 192, 96, 0.15);
}

.ksh-glass-form .wpcf7-form textarea {
    resize: vertical;
    min-height: 90px;
}

/* ── CF7 Submit Button ── */
.ksh-glass-form .wpcf7-form input[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, #f0c060, #e07b20);
    color: #1a0d00;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    padding: 13px 24px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(224, 123, 32, 0.45);
    transition: transform .22s, box-shadow .22s, filter .22s;
    margin-top: 4px;
}

.ksh-glass-form .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(224, 123, 32, 0.6);
    filter: brightness(1.06);
}

/* ── CF7 Response & Spinner ── */
.ksh-glass-form .wpcf7-response-output {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.82rem;
    padding: 10px 14px;
    margin-top: 8px;
}

.ksh-glass-form .wpcf7-spinner {
    filter: invert(1);
}

/* ── Validation errors ── */
.ksh-glass-form .wpcf7-not-valid-tip {
    color: #ffb3a0;
    font-size: 0.78rem;
    margin-top: 4px;
}

.ksh-glass-form .wpcf7-not-valid input,
.ksh-glass-form .wpcf7-not-valid textarea {
    border-color: rgba(255, 120, 80, 0.6);
}