:root{
    --brand-gold:#eeb445;
    --brand-gold-light:#fbb931;
    --brand-gold-deep:#cf9426;
    --brand-charcoal:#5d5d5d;
    --brand-charcoal-soft:#727272;
    --brand-charcoal-deep:#3f3f3f;
    --dark:#252525;
    --muted:#6f6f6f;
    --line:#e5e7eb;
    --soft:#f8f8f7;
    --orange:#eeb445;
    --green:#22c55e;
}
*{
    box-sizing:border-box;
    font-family:'Inter',system-ui,sans-serif;
}
html{
    scroll-behavior:smooth;
}
.font-extrabold {
    font-weight: 700 !important;
}

body{
    margin:0;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;
}
.container-wrap{
    max-width:1180px;
    margin:0 auto;
    padding-left:18px;
    padding-right:18px;
}
.gradient-text{
    background:linear-gradient(135deg,var(--brand-gold-light) 0%,var(--brand-gold) 55%,var(--brand-gold-deep) 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}
.gradient-btn{
    background:linear-gradient(135deg,var(--brand-gold-light) 0%,var(--brand-gold) 55%,var(--brand-gold-deep) 100%);
}
.hero-bg{
    background:linear-gradient(90deg, rgba(46,46,46,.88) 0%, rgba(68,68,68,.72) 36%, rgba(93,93,93,.38) 100%),url('../img/Banner/kashmir-bg.png') center/cover no-repeat;
}
.glass-card{
    background:rgba(255,255,255,.97);
    border:1px solid rgba(255,255,255,.75);
    box-shadow:0 12px 34px rgba(17,24,39,.14);
}
.soft-card{
    background:#fff;
    border:1px solid var(--line);
    box-shadow:0 8px 22px rgba(16,24,40,.05);
}
.section-soft{
    background:linear-gradient(180deg,#ffffff 0%,#fbfaf6 100%);
}
.stats-strip{
    background:linear-gradient(135deg,var(--brand-gold-light) 0%,var(--brand-gold) 55%,var(--brand-gold-deep) 100%);
}
.field{
    width:100%;
    height:44px;
    border:1px solid #dbe1ea;
    border-radius:14px;
    padding:0 14px;
    font-size:13px;
    outline:none;
    color:var(--dark);
}
.field:focus,
.textarea-field:focus{
    border-color:var(--brand-gold);
    box-shadow:0 0 0 3px rgba(238,180,69,.18);
}
.textarea-field{
    width:100%;
    min-height:88px;
    border:1px solid #dbe1ea;
    border-radius:16px;
    padding:13px 14px;
    font-size:13px;
    outline:none;
    resize:none;
    color:var(--dark);
}
.review-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}
.review-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    max-width:1100px;
    margin:0 auto;
}

.review-head-center{
    flex:1;
    text-align:center;
}

.google-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:16px;
    background:#fff;
    border:1px solid #e8eaf0;
    box-shadow:0 8px 22px rgba(16,24,40,.06);
}

.google-badge img{
    width:28px;
    height:28px;
    object-fit:contain;
    display:block;
}

.review-carousel-wrap{
    position:relative;
}

.review-carousel{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:4px 2px;
}

.review-carousel::-webkit-scrollbar{
    display:none;
}

.review-slide{
    flex:0 0 calc(25% - 12px);
    min-width:calc(25% - 12px);
}

.review-card{
    position:relative;
    height:100%;
    background:#fff;
    border:1px solid #e8eaf0;
    box-shadow:0 8px 22px rgba(16,24,40,.05);
    border-radius:22px;
    padding:20px;
}

.review-google-icon{
    position:absolute;
    top:16px;
    right:16px;
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.review-google-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.review-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:999px;
    background:#fff;
    color:#111827;
    box-shadow:0 8px 22px rgba(16,24,40,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:2;
}

.review-nav.prev{
    left:-14px;
}

.review-nav.next{
    right:-14px;
}

@media (max-width:1024px){
    .review-slide{
        flex:0 0 calc(50% - 8px);
        min-width:calc(50% - 8px);
    }
}

@media (max-width:640px){
    .review-slide{
        flex:0 0 88%;
        min-width:88%;
    }

    .review-nav{
        display:none;
    }

    .review-google-icon{
        width:24px;
        height:24px;
        top:14px;
        right:14px;
    }
}
.faq details[open]{
    background:#fff;
}
.itinerary-scroll{
    max-height:min(50vh,390px);
    overflow-y:auto;
    padding-right:8px;
}
.itinerary-scroll::-webkit-scrollbar{
    width:6px;
}
.itinerary-scroll::-webkit-scrollbar-thumb{
    background:#d6d9e0;
    border-radius:99px;
}
.day-line{
    position:relative;
    padding-left:28px;
}
.day-line:before{
    content:"";
    position:absolute;
    left:8px;
    top:0;
    bottom:0;
    border-left:2px dashed rgba(238,180,69,.55);
}
.day-line:last-child:before{
    bottom:20px;
}
.gradient-outline-btn{
    border:1.5px solid rgba(255,255,255,.85);
    background:rgba(255,255,255,.08);
    color:#fff;
}
.gradient-outline-btn:hover{
    background:rgba(255,255,255,.16);
}
.slim-btn{
    min-height:44px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}
.section-title{
    font-size:26px;
    line-height:1.12;
    font-weight:700;
}
.hero-title{
    font-size:clamp(1.6rem,3.6vw,3rem);
    line-height:1.02;
    letter-spacing:-.04em;
    max-width:560px;
    font-weight:700;
}
.hero-subtitle{
    font-size:clamp(1rem,1.5vw,1.2rem);
    font-weight:500;
}
.modal-shell{
    max-height:min(80vh,680px);
}
.hero-rating-row{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:18px 28px;
}
.hero-rating-wrap{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:nowrap;
}
.hero-rating-logo{
    width:75px;
    height:75px;
    min-width:75px;
    border-radius:50%;
    background:#fff;
    padding:0;
    object-fit:cover;
    object-position:center;
    display:block;
}
.hero-rating-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.hero-rating-stars{
    font-size:31px;
    line-height:1;
    color:#f6d63b;
    letter-spacing:2px;
    font-weight:700;
}
.hero-rating-line{
    font-size:15px;
    line-height:1.25;
    color:rgba(255,255,255,.96);
    font-weight:600;
}
.sale-flash-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 14px;
    min-height:34px;
    border-radius:10px;
    font-size:10px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#fff;
    background:linear-gradient(90deg,#ff6a49,#ec1b67);
    animation:saleFlash 1.1s infinite ease-in-out;
    box-shadow:0 6px 18px rgba(236,27,103,.22);
    white-space:nowrap;
}
@keyframes saleFlash{
    0%{
        opacity:1;
        transform:scale(1);
        box-shadow:0 6px 18px rgba(236,27,103,.22);
    }
    50%{
        opacity:.78;
        transform:scale(1.04);
        box-shadow:0 10px 24px rgba(236,27,103,.34);
    }
    100%{
        opacity:1;
        transform:scale(1);
        box-shadow:0 6px 18px rgba(236,27,103,.22);
    }
}

/* ==================== PACKAGE CARD ==================== */
.package-card{
    background:#fff;
    border:1px solid #e8eaf0;
    box-shadow:0 8px 24px rgba(16,24,40,.05);
    transition:.25s ease;
    height:100%;
    display:flex;
    flex-direction:column;
    border-radius:24px;
    overflow:hidden;
}
.package-card:hover{
    transform:translateY(-4px);
}

.package-image-wrap{
    position:relative;
    height:260px;
    overflow:hidden;
}
.package-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* top badge */
.package-chip--top{
    position:absolute;
    left:12px;
    top:12px;
    background:#fff;
    color:#ea580c;
    border-radius:9999px;
    padding:4px 8px;
    font-size:10px;
    font-weight:600;
    box-shadow:0 4px 12px rgba(234,88,12,.15);
    display:flex;
    align-items:center;
    gap:6px;
    white-space:nowrap;
}

/* bottom days badge */
.package-chip--bottom{
    position:absolute;
    left:18px;
    bottom:18px;
    background:#fff;
    color:#111827;
    border-radius:9999px;
    padding:6px 16px;
    font-size:13px;
    font-weight:600;
    box-shadow:0 4px 12px rgba(0,0,0,.1);
    display:flex;
    align-items:center;
    gap:6px;
    white-space:nowrap;
}

.package-content{
    padding:18px 20px 22px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.package-head{
    min-height:76px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

/* sale strip */
.card-sale-strip{
    position:relative;
    display:inline-block;
    background:linear-gradient(90deg,#ff6a49,#ec1b67);
    color:#fff;
    border-radius:9999px;
    padding:4px 8px;
    font-size:10px;
    font-weight:600;
    letter-spacing:.3px;
    text-transform:uppercase;
    text-align:center;
    margin-bottom:8px;
    width:auto;
    max-width:fit-content;
    overflow:hidden;
}

.card-sale-strip::after{
    content:"";
    position:absolute;
    top:0;
    left:-35%;
    width:28%;
    height:100%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
    transform:skewX(-20deg);
    animation:saleShine 2.4s linear infinite;
}

@keyframes saleShine{
    0%{
        left:-35%;
    }
    100%{
        left:115%;
    }
}

.package-title{
    margin:0;
    font-size:22px;
    line-height:1.22;
    font-weight:700;
    color:#0f172a;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height:26px;
}

.package-route{
    margin-top:2px;
    display:flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    font-weight:600;
    color:#111827;
    min-height:18px;
    white-space:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
}

.package-route::-webkit-scrollbar{
    display:none;
}

.package-route span{
    white-space:nowrap;
    flex:0 0 auto;
}

.package-route i{
    color:#fb7a4d;
    font-size:16px;
    flex:0 0 auto;
}

/* package includes title */
.package-includes-title{
    margin:2px 5px 8px;
    font-size:12px;
    line-height:1.2;
    font-weight:600;
    color:#111827;
    text-align:left;
}

/* feature icons */
.feature-pill{
    margin-top:0;
    padding:0;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:8px;
    align-items:start;
    overflow:visible;
}

.feature-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;
    gap:6px;
    min-width:0;
}

.feature-label{
    display:block;
    font-size:11px;
    line-height:1.1;
    font-weight:600;
    color:#111827;
    white-space:nowrap;
    text-align:center;
}

.icon-ring{
    position:relative;
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    background:conic-gradient(from 0deg, #cf9426, #5d5d5d, #cf9426);  
    overflow:hidden;
}

.icon-ring::before{
    content:"";
    position:absolute;
    inset:2px;
    background:#fff;
    border-radius:50%;
    z-index:1;
}

.icon-ring::after{
    content:"";
    position:absolute;
    width:18px;
    height:18px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,255,255,.6) 0%, rgba(255,255,255,.35) 45%, rgba(255,255,255,0) 75%);
    top:-4px;
    left:50%;
    transform:translateX(-50%);
    transform-origin:center 25px;
    animation:ringRotate 2.5s linear infinite;
    z-index:2;
    pointer-events:none;
}

.icon-ring img,
.icon-ring i{
    position:relative;
    z-index:3;
}

@keyframes ringRotate{
    0%{
        transform:translateX(-50%) rotate(0deg);
    }
    100%{
        transform:translateX(-50%) rotate(360deg);
    }
}

/* itinerary */
.itinerary-scroll-row{
    margin-top:16px;
    overflow-x:auto;
    padding-bottom:8px;
    border-bottom:1px solid #e5e7eb;
}
.itinerary-scroll-row::-webkit-scrollbar{
    height:4px;
}
.itinerary-scroll-row::-webkit-scrollbar-thumb{
    background:#d8dde6;
    border-radius:99px;
}
.itinerary-chip-track{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:max-content;
}
.night-chip{
    color:#fb7a4d;
    font-size:13px;
    font-weight:700;
}
.place-name{
    font-size:13px;
    font-weight:600;
    color:#111827;
}
.route-arrow{
    color:#6b7280;
    font-size:20px;
    margin:0 4px;
}

.package-divider{
    margin-top:18px;
}
.starting-from{
    font-size:14px;
    font-weight:600;
    color:#4b5563;
}
.package-price-line{
    display:flex;
    align-items:flex-end;
    gap:6px;
}
.package-price-line .amount{
    font-size:32px;
    line-height:1;
    font-weight:700;
    color:#0f172a;
}
.package-price-line .per{
    font-size:13px;
    font-weight:500;
    color:#4b5563;
    margin-bottom:4px;
}

.brief-trigger{
    margin:18px auto 0;
    width:fit-content;
    min-width:200px;
    max-width:100%;
    padding:0 18px;
    min-height:36px;
    border:1px solid var(--brand-gold-deep);
    background:#fff;
    color:var(--brand-gold-deep);
    border-radius:9999px;
    font-size:13px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}
.brief-icon{
    width:24px;
    height:24px;
    border:2px solid var(--brand-gold-deep);
    border-radius:9999px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.brief-icon i{
    color:var(--brand-gold-deep);
    font-size:13px;
}

.package-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:20px;
}
.package-btn{
    min-height:40px;
    border-radius:9999px;
    font-size:13px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}
.quote-btn{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,var(--brand-charcoal-soft) 0%,var(--brand-charcoal-soft) 55%,var( --brand-charcoal-deep) 100%);
    color:#fff;
    isolation:isolate;
}
.quote-btn::after{
    content:"";
    position:absolute;
    top:-30%;
    left:-55%;
    width:42%;
    height:160%;
    background:linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.08) 30%,rgba(255,255,255,.28) 50%,rgba(255,255,255,.08) 70%,rgba(255,255,255,0) 100%);
    transform:skewX(-24deg);
    animation:quoteBtnShine 4.4s linear infinite;
    pointer-events:none;
    z-index:1;
}
.quote-btn > *{
    position:relative;
    z-index:2;
}
@keyframes quoteBtnShine{
    0%{
        left:-55%;
        opacity:.18;
    }
    50%{
        opacity:.34;
    }
    100%{
        left:115%;
        opacity:.18;
    }
}
.quick-connect-btn{
    background:#fff;
    border:2px solid #22c55e;
    color:#166534;
}
.quick-connect-btn i{
    color:#22c55e;
}

.all-inclusive-note{
    margin-top:14px;
    text-align:center;
    font-size:12px;
    color:#4b5563;
    font-weight:500;
}

/* responsive */
@media (max-width:1024px){
    .review-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .hero-stack{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .container-wrap{
        padding-left:14px;
        padding-right:14px;
    }

    .package-image-wrap{
        height:240px;
    }

    .package-content{
        padding:18px 20px 22px;
    }

    .package-head{
        min-height:auto;
    }

    .package-title{
        min-height:auto;
        -webkit-line-clamp:unset;
        overflow:visible;
        font-size:20px;
    }

    .package-includes-title{
        font-size:11px;
        margin:0 0 6px;
    }

    .feature-pill{
        gap:6px;
    }

    .feature-item{
        gap:5px;
    }

    .feature-label{
        font-size:10px;
    }

    .icon-ring{
        width:36px;
        height:36px;
        min-width:36px;
    }

    .icon-ring img{
        width:16px;
        height:16px;
    }

    .icon-ring i{
        font-size:16px;
    }
}

@media (max-width:640px){
    .package-image-wrap{
        height:220px;
    }

    .package-title{
        font-size:18px;
    }

    .package-price-line .amount{
        font-size:28px;
    }

    .feature-pill{
        gap:4px;
    }

    .feature-label{
        font-size:9px;
        line-height:1.05;
        white-space:nowrap;
    }

    .icon-ring{
        width:32px;
        height:32px;
        min-width:32px;
    }

    .icon-ring img{
        width:14px;
        height:14px;
    }

    .icon-ring i{
        font-size:14px;
    }
}
.places-carousel-wrap{
    position:relative;
}

.places-carousel{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:4px 2px;
}

.places-carousel::-webkit-scrollbar{
    display:none;
}

.place-slide{
    flex:0 0 calc(33.333% - 12px);
    min-width:calc(33.333% - 12px);
}

.place-card{
    background:#fff;
    border:1px solid #e8eaf0;
    box-shadow:0 8px 22px rgba(16,24,40,.05);
    border-radius:24px;
    overflow:hidden;
    height:100%;
    display:flex;
    flex-direction:column;
}

.place-card-image{
    height:220px;
    overflow:hidden;
}

.place-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.place-card-body{
    padding:18px 18px 20px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.place-card-title{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.2;
    font-weight:700;
    color:#0f172a;
}

.place-card-text{
    margin:0;
    font-size:14px;
    line-height:1.7;
    font-weight:500;
    color:#64748b;
    flex:1;
}

.place-card-actions{
    margin-top:18px;
}

.place-quote-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:35px;
    padding:0 25px;
    border-radius:9999px;
    background:linear-gradient(135deg,var(--brand-gold-light) 0%,var(--brand-charcoal-deep) 100%);
    color:#fff;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    transition:.2s ease;
}

.place-quote-btn:hover{
    transform:translateY(-1px);
}

.places-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:999px;
    background:#fff;
    color:#111827;
    box-shadow:0 8px 22px rgba(16,24,40,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:2;
}

.places-nav.prev{
    left:-14px;
}

.places-nav.next{
    right:-14px;
}

@media (max-width:1024px){
    .place-slide{
        flex:0 0 calc(50% - 9px);
        min-width:calc(50% - 9px);
    }
}

@media (max-width:640px){
    .place-slide{
        flex:0 0 88%;
        min-width:88%;
    }

    .place-card-image{
        height:200px;
    }

    .place-card-title{
        font-size:20px;
    }

    .place-card-text{
        font-size:13px;
        line-height:1.65;
    }

    .places-nav{
        display:none;
    }
}

/* ==================== FORM ONLY UPDATED FOR ICONS ==================== */
.quote-form-card{
    background:rgba(255,255,255,.96);
    border:1px solid rgba(226,232,240,.9);
    box-shadow:0 16px 40px rgba(15,23,42,.08);
    backdrop-filter:blur(10px);
}

.field{
    width:100%;
    height:46px;
    border:1px solid #dbe1ea;
    border-radius:16px;
    padding:0 15px;
    font-size:13px;
    font-weight:500;
    color:#0f172a;
    background:#fff;
    outline:none;
    transition:.2s ease;
}

.field::placeholder,
.textarea-field::placeholder{
    color:#94a3b8;
    font-weight:500;
}

.field:focus,
.textarea-field:focus{
    border-color:var(--brand-gold);
    box-shadow:0 0 0 3px rgba(238,180,69,.18);
}

.textarea-field{
    width:100%;
    min-height:92px;
    border:1px solid #dbe1ea;
    border-radius:16px;
    padding:13px 15px;
    font-size:13px;
    font-weight:500;
    color:#0f172a;
    background:#fff;
    outline:none;
    resize:none;
    transition:.2s ease;
}

.input-icon-wrap{
    position:relative;
    width:100%;
}

.input-icon{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    width:16px;
    height:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#94a3b8;
    font-size:13px;
    z-index:2;
    pointer-events:none;
}

.icon-field{
    padding-left:40px !important;
}

.textarea-icon-wrap{
    position:relative;
}

.textarea-icon{
    top:18px;
    transform:none;
}

.icon-textarea{
    padding-left:40px !important;
}

.phone-field-wrap{
    position:relative;
    width:100%;
}

.phone-country-code{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    align-items:center;
    gap:6px;
    z-index:2;
    pointer-events:none;
    color:#0f172a;
    font-size:13px;
    font-weight:500;
}

.phone-country-code .flag{
    font-size:15px;
    line-height:1;
}

.phone-country-code .code{
    font-size:13px;
    line-height:1;
    font-weight:500;
}

.phone-inline-icon{
    left:72px;
    color:#94a3b8;
}

.phone-input{
    padding-left:65px !important;
}

.quote-submit-btn{
    min-height:38px;
    max-width:250px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:600;
    letter-spacing:.01em;
    border:none;
    box-shadow:0 8px 18px rgba(236,27,103,.16);
    transition:.2s ease;
    padding:0 18px;
}

.quote-submit-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 22px rgba(236,27,103,.2);
}

@media (max-width:640px){
    .quote-form-card{
        max-width:100%;
        padding:16px;
        border-radius:20px;
    }

    .field{
        height:44px;
        font-size:16px;
        border-radius:14px;
    }

    .textarea-field{
        min-height:88px;
        font-size:16px;
        border-radius:14px;
    }

    .quote-submit-btn{
        min-height:44px;
        font-size:12px;
    }

    .phone-inline-icon{
        left:70px;
    }

    .phone-input{
        padding-left:70px !important;
    }
}

.text-pink-600,
.text-orange-500,
.text-yellow-300{color:var(--brand-gold)!important;}

.bg-pink-50{background:rgba(238,180,69,.12)!important;}
.text-slate-700{color:var(--brand-charcoal)!important;}
.text-slate-500{color:var(--muted)!important;}
.text-slate-900{color:var(--dark)!important;}
.border-pink-600{border-color:var(--brand-gold)!important;}

.hero-bg .bg-white.text-pink-600{color:var(--brand-charcoal)!important;}
.hero-bg .inline-flex.items-center.gap-2.rounded-full{
    border-color:rgba(255,255,255,.24);
    background:rgba(255,255,255,.10);
}

.hero-rating-stars{color:var(--brand-gold);}

.gradient-text{
    background:linear-gradient(90deg,var(--brand-charcoal-deep) 0%,var(--brand-charcoal) 42%,var(--brand-gold) 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

/* ===== UPDATED STATS STRIP ONLY ===== */
.stats-strip{
    position:relative;
    background:linear-gradient(90deg,#373737 0%,#6c6c6c 35%,#5b5b5b 70%,#2B2B2B 100%);
    border-top:1px solid rgba(212,175,55,.22);
    border-bottom:1px solid rgba(212,175,55,.22);
    overflow:hidden;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.04), inset 0 -1px 0 rgba(0,0,0,.18);
}

.stats-strip::before{
    content:"";
    position:absolute;
    top:0;
    left:-20%;
    width:40%;
    height:100%;
    background:linear-gradient(90deg,transparent,rgba(212,175,55,.08),transparent);
    transform:skewX(-20deg);
    pointer-events:none;
}

.stats-strip .container-wrap{
    position:relative;
    z-index:2;
}

.stats-strip .grid > div{
    color:#F5F1E6;
    transition:all .25s ease;
}

.stats-strip .grid > div i{
    color:#D4AF37 !important;
    font-size:14px;
}

.stats-strip .grid > div span{
    color:#F5F1E6 !important;
    font-weight:600;
    letter-spacing:.1px;
}

.stats-strip .grid > div:hover{
    transform:translateY(-1px);
}
/* ===== UPDATED STATS STRIP ONLY ===== */

.gradient-outline-btn{
    border-color:rgba(238,180,69,.62);
    color:#fff;
    background:rgba(255,255,255,.06);
}

.gradient-outline-btn:hover{
    background:rgba(238,180,69,.12);
}

.sale-flash-badge,
.card-sale-strip{
    background:linear-gradient(135deg,var(--brand-gold-deep) 0%,var(--brand-charcoal) 45%,#767676 100%);
    color:#fff;
}

.icon-ring{
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.25), 0 4px 14px rgba(238,180,69,.14);
}

.package-chip--top{
    background:linear-gradient(135deg,var(--brand-charcoal) 0%,var(--brand-charcoal-deep) 100%)!important;
    color:#fff!important;
}

.package-chip--bottom{
    background:rgba(255,255,255,.92)!important;
    color:var(--brand-charcoal)!important;
}

.review-card,
.place-card,
.soft-card,
.glass-card,
.package-card{
    border-color:#e7e3da;
}

.review-nav,
.places-nav{
    box-shadow:0 8px 22px rgba(93,93,93,.12);
}

footer{
    background:linear-gradient(135deg,#272727 0%,#1c1c1c 100%);
}

/* ===== MOBILE HERO + PACKAGE REFINEMENT ONLY ===== */
@media (max-width: 767px){
    .hero-bg{
        background:
            linear-gradient(90deg, rgba(61, 61, 61, 0.88) 0%, rgba(68,68,68,.72) 36%, rgba(93,93,93,.38) 100%),
            url('../img/Banner/kashmir-bg.png') center top no-repeat !important;
        background-size: 650px 450px !important;
        position: relative;
        overflow: hidden;
        min-height: auto !important;
    }
    .hero-bg::after{
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 320px;
        background: linear-gradient(
            to bottom,
            rgba(245,245,245,0) 0%,
            rgba(245,245,245,0.18) 20%,
            rgba(204, 204, 204, 0.45) 45%,
            rgba(245,245,245,0.72) 68%,
            #f5f5f5 100%
        );
        pointer-events: none;
        z-index: 1;
    }

    .hero-bg > *{
        position: relative;
        z-index: 2;
    }

    .hero-bg .container-wrap{
        padding-top: 18px;
        padding-bottom: 22px;
    }

    .hero-bg .inline-flex.items-center.gap-2.rounded-full{
        font-size: 11px !important;
        padding: 9px 14px;
        gap: 10px;
        border-radius: 999px;
    }

    .hero-bg .inline-flex.items-center.gap-2.rounded-full span:first-child{
        padding: 6px 14px;
        font-size: 11px;
    }

    .hero-title{
        font-size: 2.8rem;
        line-height: 0.98;
        letter-spacing: -0.045em;
        max-width: 100%;
    }

    .hero-subtitle{
        font-size: 1.16rem;
        line-height: 1.4;
        max-width: 100%;
        margin-top: 16px;
    }

    .hero-bg .mt-5.flex.flex-wrap.items-center.gap-3{
        display: none !important;
    }

    .hero-rating-row{
        margin-top: 28px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 22px;
        align-items: start;
        justify-items: center;
    }

    .hero-rating-row::after{
        content: "Trusted by 5k+ Happy Travellers";
        grid-column: 1 / -1;
        text-align: center;
        color: #f2d06f;
        font-size: 15px;
        line-height: 1.3;
        font-weight: 700;
        margin-top: 2px;
    }

    .hero-rating-wrap{
        width: auto;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
    }

    .hero-rating-logo{
        width: 86px;
        height: 86px;
        min-width: 86px;
    }

    .hero-rating-text,
    .hero-rating-stars,
    .hero-rating-line{
        display: none !important;
    }

    .stats-strip .container-wrap{
        padding-top: 14px;
        padding-bottom: 14px;
        padding-left: 24px !important;
        padding-right: 18px !important;
    }

    .stats-strip .grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 18px !important;
        text-align: left;
    }

    .stats-strip .grid > div{
        justify-content: flex-start !important;
        align-items: center;
        gap: 8px !important;
        min-height: 28px;
    }

    .stats-strip .grid > div i{
        font-size: 18px !important;
        width: 18px;
        text-align: center;
        flex: 0 0 18px;
    }

    .stats-strip .grid > div span{
        font-size: 11px !important;
        line-height: 1.15;
        font-weight: 700;
        white-space: nowrap;
    }

    .package-route{
        margin-top: 8px;
        margin-bottom: 14px;
        font-size: 12px;
        gap: 5px;
        flex-wrap: nowrap;
    }

    .package-route i{
        font-size: 14px;
    }

    .package-includes-title{
        margin: 12px 0 12px;
        font-size: 11px;
        line-height: 1.25;
    }

    .feature-pill{
        gap: 10px;
    }

    .package-actions{
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .package-btn{
        min-height: 42px;
        font-size: 11px;
        gap: 6px;
        padding: 0 10px;
        white-space: nowrap;
    }

    .package-btn i{
        font-size: 14px;
    }
}
/* ===== MOBILE HERO + PACKAGE REFINEMENT ONLY ===== */


/* ===== MOBILE ONLY FIXES V4 ===== */
@media (max-width:640px){
    .hero-rating-row{
        gap:10px 12px !important;
        grid-template-columns:repeat(2,minmax(0,auto)) !important;
        justify-content:center !important;
    }

    .hero-rating-logo{
        width:78px !important;
        height:78px !important;
        min-width:78px !important;
    }

    .hero-rating-row::after{
        font-size:14px !important;
        margin-top:0 !important;
        white-space:nowrap !important;
    }

    .offer-card{
        position:relative;
        padding-top:76px !important;
    }

    .offer-card .sale-flash-badge{
        position:absolute;
        top:14px;
        left:50%;
        transform:translateX(-50%);
        min-height:28px;
        padding:5px 14px;
        font-size:9px;
        letter-spacing:.06em;
        z-index:2;
    }

    .offer-kicker{
        font-size:14px !important;
        line-height:1.2 !important;
    }

    .offer-title{
        font-size:19px !important;
        line-height:1.14 !important;
        margin-top:10px !important;
    }

    .offer-title .text-orange-500,
    .offer-title .text-slate-700{
        font-size:inherit !important;
    }

    .offer-row{
        margin-top:4px;
    }

    .offer-row > .sale-flash-badge{
        position:absolute;
    }

    .offer-actions{
        flex-direction:row !important;
        flex-wrap:nowrap !important;
        gap:10px !important;
    }

    .offer-actions a{
        min-width:0 !important;
        width:calc(50% - 5px) !important;
        padding-left:12px !important;
        padding-right:12px !important;
        font-size:11px !important;
        height:38px !important;
        white-space:nowrap !important;
    }

    .offer-actions a i{
        font-size:15px !important;
    }
}


/* ===== MOBILE ONLY FIXES V5 ===== */
@media (max-width:640px){
    /* center the sale badge exactly */
    .offer-card .sale-flash-badge,
    .soft-card .sale-flash-badge{
        left:50% !important;
        right:auto !important;
        margin-left:0 !important;
        margin-right:0 !important;
        transform:translateX(-50%) !important;
    }

    /* package includes row: bigger icons/text and tighter spacing */
    .feature-pill{
        grid-template-columns:repeat(4,minmax(0,1fr)) !important;
        gap:4px !important;
        margin-top:2px !important;
    }

    .feature-item{
        gap:4px !important;
    }

    .icon-ring{
        width:40px !important;
        height:40px !important;
        min-width:40px !important;
    }

    .icon-ring img{
        width:17px !important;
        height:17px !important;
    }

    .icon-ring i{
        font-size:17px !important;
    }

    .feature-label{
        font-size:11px !important;
        line-height:1.05 !important;
        font-weight:700 !important;
    }

    .package-includes-title{
        margin:0 5px 6px !important;
        font-size:11px !important;
        line-height:1.2 !important;
        font-weight:700 !important;
    }
}


/* ===== MOBILE ONLY FIXES V6 ===== */
@media (max-width:640px){
    .feature-pill{
        width:100% !important;
        max-width:340px !important;
        margin:2px 0 0 0 !important;
        justify-items:start !important;
        gap:2px !important;
    }

    .feature-item{
        width:100% !important;
        align-items:center !important;
    }

    .package-content .feature-pill{
        transform:translateX(-8px) !important;
    }

    .icon-ring{
        width:38px !important;
        height:38px !important;
        min-width:38px !important;
    }

    .feature-label{
        font-size:10px !important;
    }
}

/* ===== QUOTE MODAL ===== */
.quote-modal{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .25s ease, visibility .25s ease;
    z-index:9999;
}

.quote-modal.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.quote-modal__backdrop{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,.46);
    backdrop-filter:blur(4px);
}

.quote-modal__dialog{
    position:relative;
    z-index:2;
    width:100%;
    max-width:400px !important;
    display:flex;
    justify-content:center;
    transform:translateY(16px) scale(.98);
    transition:transform .25s ease;
}

.quote-modal-card{
    width:100%;
    max-width:400px !important;
    border-radius:24px;
    padding:16px 14px 16px;
    box-shadow:0 28px 70px rgba(15,23,42,.22);
}

.modal-phone-input{
    padding-left:70px !important;
}

.quote-modal.is-open .quote-modal__dialog{
    transform:translateY(0) scale(1);
}

.quote-modal__close{
    position:absolute;
    top:12px;
    right:12px;
    width:38px;
    height:38px;
    border:none;
    border-radius:999px;
    background:#ffffff;
    color:#252525;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 10px 24px rgba(15,23,42,.12);
    z-index:5;
    transition:transform .2s ease, background .2s ease;
}

.quote-modal__close:hover{
    transform:translateY(-1px);
    background:#f8f8f8;
}

.quote-modal__close span{
    font-size:26px;
    line-height:1;
    margin-top:-2px;
}

.field{
    width:100%;
    height:42px;
    border:1px solid #dbe1ea;
    border-radius:14px;
    padding:0 15px;
    font-size:12px;
    font-weight:500;
    color:#0f172a;
    background:#fff;
    outline:none;
    transition:.2s ease;
}

.textarea-field{
    width:100%;
    min-height:78px;
    border:1px solid #dbe1ea;
    border-radius:14px;
    padding:11px 15px;
    font-size:12px;
    font-weight:500;
    color:#0f172a;
    background:#fff;
    outline:none;
    resize:none;
    transition:.2s ease;
}

.quote-submit-btn{
    min-height:34px;
    max-width:230px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:600;
    letter-spacing:.01em;
    border:none;
    box-shadow:0 8px 18px rgba(236,27,103,.16);
    transition:.2s ease;
    padding:0 16px;
}

@media (max-width: 767px){
  .quote-modal{
        padding:14px;
        align-items:center;
        justify-content:center;
        overflow-y:auto;
        -webkit-overflow-scrolling:touch;
    }

    .quote-modal__dialog{
        width:calc(100% - 28px);
        max-width:400px !important;
        margin:auto;
        transform:none !important;
        transition:none;
    }

    .quote-modal-card{
        width:100%;
        max-width:400px !important;
        border-radius:24px;
        padding:18px 16px 18px;
    }

    .quote-modal.is-open .quote-modal__dialog{
        transform:none !important;
    }

    .quote-modal input,
    .quote-modal textarea,
    .quote-modal select,
    .quote-modal .field,
    .quote-modal .textarea-field{
        font-size:16px;
        line-height:1.35;
    }
}
