:root{
  --sunset:#E8791E;
  --ember:#F5A623;
  --forest-deep:#173229;
  --forest-mid:#2C4E3D;
  --forest-light:#3E6B54;
  --cream:#FBF3E3;
  --cream-dim:#F1E6CE;
  --charcoal:#1B1712;
  --ink:#2A241B;
  --line:rgba(27,23,18,0.12);
  --shadow:0 20px 50px rgba(23,50,41,0.18);
  --radius:18px;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Work Sans',sans-serif;
  color:var(--ink);
  background:var(--cream);
  overflow-x:hidden;
  line-height:1.6;
}
h1,h2,h3,h4,.display{font-family:'Fredoka',sans-serif;font-weight:600;letter-spacing:-0.01em;}
.script{font-family:'Caveat',cursive;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
button{font-family:inherit;cursor:pointer;border:none;}
ul{list-style:none;}
.container{max-width:1280px;margin:0 auto;padding:0 28px;}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;letter-spacing:0.14em;text-transform:uppercase;
  font-weight:600;color:var(--sunset);
  margin-bottom:14px;
}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--sunset);display:inline-block;border-radius:2px;}
.section-head{max-width:640px;margin-bottom:52px;}
.section-head h2{font-size:clamp(32px,4vw,46px);color:var(--forest-deep);margin-bottom:14px;}
.section-head p{font-size:17px;color:#54493a;}
section{padding:100px 0;position:relative;}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:16px 32px;
    border-radius:100px;

    font-weight:600;
    font-size:15px;

    white-space:nowrap;
    cursor:pointer;

    transition:all .35s ease;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.btn:hover{
    transform:translateY(-5px) scale(1.03);
}

.btn:active{
    transform:translateY(1px) scale(.98);
}

.btn-primary{
    position:relative;
    overflow:hidden;

    background:linear-gradient(135deg,var(--sunset),var(--ember));
    color:#fff;

    box-shadow:0 14px 35px rgba(232,121,30,.35);
}

.btn-primary:hover{
    transform:translateY(-6px) scale(1.04);
    box-shadow:0 22px 50px rgba(232,121,30,.55);
}

.btn-primary::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    animation:shine 3s infinite;
}

.btn-outline{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);

    color:var(--cream);
    border:1.5px solid rgba(251,243,227,.45);
}

.btn-outline:hover{
    background:rgba(255,255,255,.16);
    border-color:rgba(251,243,227,.8);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.btn-dark{
    background:var(--forest-deep);
    color:var(--cream);
}

.btn-dark:hover{
    background:var(--forest-mid);
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.btn-block{
    width:100%;
}

.btn:disabled{
    opacity:.45;
    cursor:not-allowed;
    transform:none !important;
}

@keyframes shine{
    0%{
        left:-120%;
    }

    100%{
        left:150%;
    }
}

/* ---------- NAV ---------- */
header{
  position:fixed;top:0;left:0;right:0;z-index:900;
  background:rgba(23,50,41,0.0);
  transition:background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding:20px 0;
}
header.scrolled{background:rgba(23,50,41,0.94);backdrop-filter:blur(10px);box-shadow:0 10px 30px rgba(0,0,0,0.15);padding:12px 0;}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;gap:20px;}
.brand{display:flex;align-items:center;gap:12px;}
.brand img{height:54px;width:54px;border-radius:50%;object-fit:cover;transition:height .3s ease,width .3s ease;}
header.scrolled .brand img{height:44px;width:44px;}
.brand-name{color:var(--cream);}
.brand-name .l1{font-family:'Caveat',cursive;font-size:22px;line-height:1;color:var(--ember);display:block;}
.brand-name .l2{font-family:'Fredoka',sans-serif;font-size:19px;font-weight:600;letter-spacing:0.02em;}
nav.links{display:flex;align-items:center;gap:32px;}
nav.links a{color:var(--cream);font-size:15px;font-weight:500;opacity:0.88;transition:opacity .2s;position:relative;}
nav.links a:hover{opacity:1;}
.nav-actions{display:flex;align-items:center;gap:14px;}
.icon-btn{
  display:inline-flex;align-items:center;gap:8px;color:var(--cream);font-size:14.5px;font-weight:600;
  padding:11px 20px;border-radius:100px;border:1.5px solid rgba(251,243,227,0.35);
  background:rgba(251,243,227,0.06);transition:all .25s;
}
.icon-btn:hover{background:rgba(251,243,227,0.16);}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;}
.hamburger span{width:26px;height:2.5px;background:var(--cream);border-radius:2px;}

/* ---------- HERO ---------- */
/* ================= HERO ================= */
.hero{
    position:relative;
    height:100vh;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:0 !important;
    margin:0 !important;

    background-image:
    linear-gradient(
        90deg,
        rgba(18,45,34,.75) 0%,
        rgba(18,45,34,.45) 35%,
        rgba(18,45,34,.15) 60%,
        rgba(18,45,34,.08) 100%
    ),
    url("assets/bg.png");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    background-color:var(--forest-deep);
}
.hero .container{
    max-width:none;
    width:100%;
    margin:0;
    padding: 0;
}

.hero-wrap{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    min-height:100vh;
    width:100%;
    max-width:none;
    margin:0;
    padding:0;
}

.hero-left{
    max-width:700px;
    margin-left:40px;
    margin-top: 50px;
}


.hero-left h1{
    font-family:'Sora',sans-serif;
    font-size:82px;
    font-weight:900;
    line-height:1;
    color:white;
    margin:18px 0;

    text-shadow:
    0 12px 35px rgba(0,0,0,.45);
}

.hero-left h1 span{
    color:#E8791E;
}

.hero-left p{
    max-width:560px;
    font-size:22px;
    color:rgba(255,255,255,.92);
    line-height:1.8;
}

.hero-pill{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    color:#fff;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    margin-top:20px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:45px;
    flex-wrap:wrap;
}

.hero-features{
    display:flex;
    gap:55px;
    margin-top:60px;
}

.hero-features div{
    display:flex;
    flex-direction:column;
    color:#fff;
}

.hero-features strong{
    font-size:28px;
}

.hero-features span{
    color:rgba(255,255,255,.7);
}




.scroll-cue{position:absolute;bottom:26px;left:50%;transform:translateX(-50%);z-index:3;color:rgba(251,243,227,0.7);font-size:12px;letter-spacing:0.12em;text-transform:uppercase;text-align:center;}
.scroll-cue .line{width:1px;height:36px;background:rgba(251,243,227,0.5);margin:8px auto 0;position:relative;overflow:hidden;}
.scroll-cue .line::after{content:"";position:absolute;top:-100%;left:0;width:100%;height:100%;background:var(--ember);animation:scrollcue 1.8s infinite ease-in-out;}
@keyframes scrollcue{0%{top:-100%;}50%{top:0%;}100%{top:100%;}}

/* ---------- PACKAGES ---------- */
.packages{background:var(--cream);}
.pkg-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:28px;}
.pkg-card{
  background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:0 10px 26px rgba(23,50,41,0.08);
  border:1px solid var(--line);transition:transform .3s ease, box-shadow .3s ease;display:flex;flex-direction:column;
}
.pkg-card:hover{transform:translateY(-8px);box-shadow:var(--shadow);}
.pkg-media{height:190px;position:relative;display:flex;align-items:flex-end;padding:16px;color:#fff;}
.pkg-media::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55));}
.pkg-media .pkg-tag{position:relative;z-index:2;background:var(--sunset);padding:6px 14px;border-radius:100px;font-size:12.5px;font-weight:600;}
.pkg-media .badge-seal{
  position:absolute;top:14px;right:14px;z-index:2;width:52px;height:52px;border-radius:50%;
  background:rgba(251,243,227,0.92);color:var(--forest-deep);display:flex;flex-direction:column;
  align-items:center;justify-content:center;font-family:'Fredoka',sans-serif;font-weight:600;
  border:2px dashed var(--sunset);text-align:center;line-height:1.05;
}
.badge-seal .n{font-size:15px;}
.badge-seal .u{font-size:8.5px;letter-spacing:0.06em;text-transform:uppercase;color:var(--forest-mid);}
.pkg-body{padding:20px 28px;display:flex;flex-direction:column;gap:12px;flex:1;}
.pkg-body h3{font-size:21px;color:var(--forest-deep);}
.pkg-meta{display:flex;gap:14px;font-size:13.5px;color:#6b5e4c;flex-wrap:wrap;}
.pkg-meta span{display:flex;align-items:center;gap:5px;}
.pkg-body p.desc{font-size:14.5px;color:#5c5041;flex:1;}
.pkg-foot{display:flex;align-items:center;justify-content:space-between;margin-top:6px;padding-top:16px;border-top:1px dashed var(--line);}
.pkg-price .amt{font-family:'Fredoka',sans-serif;font-size:22px;color:var(--forest-deep);font-weight:600;}
.pkg-price .per{font-size:12.5px;color:#8a7c66;}
.pkg-book{padding:11px 22px;border-radius:100px;background:var(--forest-deep);color:var(--cream);font-weight:600;font-size:14px;transition:background .2s, transform .2s;}
.pkg-book:hover{background:var(--sunset);transform:translateY(-2px);}
.pkg-foot{
    margin-top:15px;
}
.new-drop{
  margin-top:44px;display:flex;align-items:center;gap:14px;justify-content:center;
  color:var(--forest-mid);font-size:14.5px;font-weight:500;
}
.new-drop .pulse{width:9px;height:9px;border-radius:50%;background:var(--sunset);position:relative;}
.new-drop .pulse::after{content:"";position:absolute;inset:-6px;border-radius:50%;border:2px solid var(--sunset);animation:pulse 1.8s infinite;}
@keyframes pulse{0%{transform:scale(0.6);opacity:1;}100%{transform:scale(1.9);opacity:0;}}

/* ---------- HOW IT WORKS (route) ---------- */
.route-wrap{background:var(--forest-deep);color:var(--cream);position:relative;overflow:hidden;}
.route-wrap::before{
  content:"";position:absolute;inset:0;opacity:0.05;
  background-image:radial-gradient(circle, #fff 1px, transparent 1px);background-size:26px 26px;
}
.route-wrap .section-head h2{color:var(--cream);}
.route-wrap .section-head p{color:rgba(251,243,227,0.75);}
.route-track{
    position:relative;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;

    margin-top:60px;
}
.route-track::before{
    content:'';

    position:absolute;

    left:12%;
    right:12%;
    top:34px;

    height:4px;

    background:rgba(232,121,30,.25);

    border-radius:999px;

    z-index:0;
}
.route-track::after{
    content:'';

    position:absolute;

    width:16px;
    height:16px;

    border-radius:50%;

    background:#E8791E;

    top:28px;
    left:12%;

    z-index:0;

    box-shadow:
        0 0 10px #E8791E,
        0 0 20px #E8791E,
        0 0 30px #E8791E;

    animation:travelRoute 8s linear infinite;
}
@keyframes travelRoute{

    0%{
        left:12%;
    }

    100%{
        left:88%;
    }
}
.route-step{position:relative;z-index:1;text-align:center;}
.route-step .seal{
    width:68px;
    height:68px;
    border-radius:50%;
    background:var(--cream);
    color:var(--forest-deep);

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

    margin:0 auto 20px;
    font-size:26px;

    border:3px solid var(--ember);
    box-shadow:0 8px 20px rgba(0,0,0,0.25);

    transition:all .3s ease;
    cursor:pointer;
    position:relative;
z-index:2;
}
.route-step h4{font-size:17px;margin-bottom:8px;color:var(--cream);}
.route-step p{font-size:13.8px;color:rgba(251,243,227,0.7);}

/* ---------- PLAN YOUR TRIP FORM ---------- */
.plan-section{background:linear-gradient(180deg,#fff, var(--cream-dim));}
.plan-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:56px;align-items:start;}
.plan-side h3{font-size:27px;color:var(--forest-deep);margin-bottom:14px;}
.plan-side p{color:#5c5041;margin-bottom:26px;}
.plan-points{display:flex;flex-direction:column;gap:16px;}
.plan-points li{display:flex;gap:14px;align-items:flex-start;font-size:14.5px;color:#4a4032;}
.plan-points .ic{width:34px;height:34px;flex:none;border-radius:10px;background:rgba(232,121,30,0.12);color:var(--sunset);display:flex;align-items:center;justify-content:center;font-size:16px;}
.form-card{background:#fff;border-radius:24px;padding:36px;box-shadow:var(--shadow);border:1px solid var(--line);}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.field{margin-bottom:18px;}
.field label{display:block;font-size:13px;font-weight:600;color:var(--forest-deep);margin-bottom:7px;}
.field input,.field select,.field textarea{
  width:100%;padding:13px 16px;border-radius:12px;border:1.5px solid var(--line);font-family:inherit;
  font-size:14.5px;background:#fbfaf7;transition:border-color .2s, box-shadow .2s;
}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--sunset);box-shadow:0 0 0 4px rgba(232,121,30,0.12);}
.field textarea{resize:vertical;min-height:90px;}
.form-note{font-size:12.5px;color:#8a7c66;margin-top:14px;text-align:center;}

/* ---------- REVIEWS ---------- */
.reviews{
    background:var(--cream);
}

.reviews-head-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    flex-wrap:wrap;
}

.rev-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:28px;
    margin-top:44px;
}

.rev-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(23,50,41,0.10);
    transition:all .35s ease;
    border:none;
}

.rev-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(23,50,41,0.18);
}

.rev-header{
    background:linear-gradient(
        135deg,
        var(--forest-mid),
        var(--forest-deep)
    );
    padding:18px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.rev-user{
    display:flex;
    align-items:center;
    gap:14px;
}

.rev-avatar{
    width:52px;
    height:52px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(10px);

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

    color:#fff;
    font-size:20px;
    font-weight:700;

    border:2px solid rgba(255,255,255,.25);
}

.rev-header .name{
    font-family:'Fredoka',sans-serif;
    font-size:16px;
    font-weight:600;
    color:#fff;
}

.rev-header .trip{
    font-family:'Work Sans',sans-serif;
    font-size:13px;
    color:rgba(255,255,255,.85);
    margin-top:2px;
}

.rev-header .stars{
    color:#FFD54F;
    font-size:18px;
    letter-spacing:1px;
}

.rev-body{
    padding:24px;
}

.rev-body .quote{
    font-family:'Work Sans',sans-serif;
    font-size:15px;
    line-height:1.8;
    color:#444;
    margin:0;
    font-style:italic;
}

@media(max-width:768px){

    .rev-grid{
        grid-template-columns:1fr;
    }

    .rev-header{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }
}



/* ---------- CONTACT ---------- */
.contact{background:var(--forest-deep);color:var(--cream);position:relative;overflow:hidden;}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
.contact h2{color:var(--cream);}
.contact .section-head p{color:rgba(251,243,227,0.75);}
.contact-cards{display:flex;flex-direction:column;gap:16px;}
.c-card{display:flex;align-items:center;gap:18px;background:rgba(251,243,227,0.06);border:1px solid rgba(251,243,227,0.15);padding:20px 22px;border-radius:16px;transition:background .2s, transform .2s;}
.c-card:hover{background:rgba(251,243,227,0.13);transform:translateX(4px);}
.c-card .ic{width:48px;height:48px;border-radius:50%;flex:none;display:flex;align-items:center;justify-content:center;font-size:20px;}
.c-card.wa .ic{background:#25D366;color:#fff;}
.c-card.ig .ic{background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);color:#fff;}
.c-card.ph .ic{background:var(--ember);color:var(--forest-deep);}
.c-card.em .ic{background:var(--cream);color:var(--forest-deep);}
.c-card .label{font-size:12.5px;color:rgba(251,243,227,0.6);}
.c-card .value{font-size:16px;font-weight:600;}
.contact-map{border-radius:20px;overflow:hidden;height:380px;position:relative;border:1px solid rgba(251,243,227,0.2);}
.contact-map iframe{width:100%;height:100%;border:0;filter:grayscale(1) invert(0.92) contrast(0.9);}
.map-pin{position:absolute;top:50%;left:50%;transform:translate(-50%,-100%);color:var(--sunset);font-size:34px;filter:drop-shadow(0 6px 8px rgba(0,0,0,0.4));}

/* ---------- FOOTER ---------- */
footer{background:var(--charcoal);color:rgba(251,243,227,0.7);padding:70px 0 26px;}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;margin-bottom:50px;}
.foot-brand{display:flex;gap:12px;align-items:center;margin-bottom:16px;}
.foot-brand img{height:46px;width:46px;border-radius:50%;}
.foot-brand-name{font-family:'Fredoka',sans-serif;color:var(--cream);font-size:18px;font-weight:600;}
footer h5{color:var(--cream);font-size:14.5px;margin-bottom:18px;letter-spacing:0.03em;}
footer ul li{margin-bottom:11px;font-size:14px;}
footer ul li a:hover{color:var(--ember);}
.foot-social{display:flex;gap:10px;margin-top:18px;}
.foot-social a{width:38px;height:38px;border-radius:50%;background:rgba(251,243,227,0.08);display:flex;align-items:center;justify-content:center;transition:background .2s;}
.foot-social a:hover{background:var(--sunset);}
.foot-bottom{border-top:1px solid rgba(251,243,227,0.1);padding-top:24px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:13px;}

/* ---------- MODALS ---------- */
.modal-overlay{
  position:fixed;inset:0;background:rgba(23,20,15,0.6);backdrop-filter:blur(4px);
  display:none;align-items:center;justify-content:center;z-index:2000;padding:20px;
}
.modal-overlay.active{display:flex;}
.modal{
  background:#fff;border-radius:22px;width:100%;max-width:460px;max-height:90vh;overflow-y:auto;
  padding:36px 34px;position:relative;box-shadow:0 30px 70px rgba(0,0,0,0.35);
}
.modal.wide{max-width:640px;}
.modal-close{position:absolute;top:18px;right:18px;width:34px;height:34px;border-radius:50%;background:var(--cream-dim);display:flex;align-items:center;justify-content:center;font-size:18px;color:var(--forest-deep);}
.modal h3{font-size:23px;color:var(--forest-deep);margin-bottom:6px;}
.modal .sub{font-size:13.5px;color:#8a7c66;margin-bottom:26px;}
.tabs{display:flex;background:var(--cream-dim);border-radius:100px;padding:4px;margin-bottom:26px;}
.tab{flex:1;text-align:center;padding:10px;border-radius:100px;font-size:14px;font-weight:600;color:#8a7c66;transition:all .2s;}
.tab.active{background:var(--forest-deep);color:var(--cream);}
.method-toggle{display:flex;gap:10px;margin-bottom:20px;}
.method-toggle .m{flex:1;text-align:center;padding:11px;border-radius:12px;border:1.5px solid var(--line);font-size:13.5px;font-weight:600;color:#8a7c66;transition:all .2s;}
.method-toggle .m.active{border-color:var(--sunset);color:var(--sunset);background:rgba(232,121,30,0.06);}
.otp-row{display:flex;gap:9px;justify-content:center;margin:18px 0;}
.otp-row input{width:44px;height:52px;text-align:center;font-size:20px;border-radius:10px;border:1.5px solid var(--line);font-family:'Fredoka',sans-serif;}
.otp-row input:focus{outline:none;border-color:var(--sunset);box-shadow:0 0 0 4px rgba(232,121,30,0.12);}
.otp-timer{text-align:center;font-size:13px;color:#8a7c66;margin-bottom:6px;}
.otp-timer button{color:var(--sunset);font-weight:600;}
.otp-timer button:disabled{color:#c7bda7;cursor:not-allowed;}
.step-dots{display:flex;gap:8px;justify-content:center;margin-bottom:26px;}
.step-dots span{width:8px;height:8px;border-radius:50%;background:var(--line);}
.step-dots span.active{background:var(--sunset);width:22px;border-radius:5px;transition:all .3s;}
.checkline{display:flex;align-items:flex-start;gap:12px;margin:20px 0;}
.checkline input{margin-top:3px;width:18px;height:18px;accent-color:var(--sunset);flex:none;}
.checkline label{font-size:13.5px;color:#544a3b;line-height:1.5;}
.checkline a{color:var(--sunset);font-weight:600;}
.mini-terms{max-height:180px;overflow-y:auto;background:var(--cream-dim);border-radius:12px;padding:16px 18px;font-size:13px;color:#544a3b;margin-bottom:6px;border:1px solid var(--line);}
.mini-terms h6{font-size:13px;color:var(--forest-deep);margin:10px 0 4px;}
.mini-terms h6:first-child{margin-top:0;}
.upi-box{background:var(--cream-dim);border:1.5px dashed var(--sunset);border-radius:14px;padding:20px;text-align:center;margin:18px 0;}
.upi-box .qr{width:150px;height:150px;margin:0 auto 14px;border-radius:12px;background:#fff;display:flex;align-items:center;justify-content:center;border:1px solid var(--line);}
.upi-id-row{display:flex;align-items:center;justify-content:center;gap:10px;font-family:'Fredoka',sans-serif;font-weight:600;font-size:16px;color:var(--forest-deep);flex-wrap:wrap;}
.copy-btn{background:var(--forest-deep);color:#fff;font-size:12px;padding:6px 12px;border-radius:100px;font-weight:600;}
.copy-btn:hover{background:var(--sunset);}
.summary-row{display:flex;justify-content:space-between;font-size:14px;padding:9px 0;border-bottom:1px dashed var(--line);}
.summary-row.total{font-weight:700;color:var(--forest-deep);font-size:16px;border-bottom:none;padding-top:14px;}
.toast{
  position:fixed;bottom:30px;left:50%;transform:translateX(-50%) translateY(20px);
  background:var(--forest-deep);color:var(--cream);padding:16px 26px;border-radius:100px;
  font-size:14px;font-weight:500;box-shadow:0 14px 34px rgba(0,0,0,0.3);z-index:3000;
  display:flex;align-items:center;gap:10px;opacity:0;pointer-events:none;transition:all .35s ease;
}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0);}
.pw-strength{display:flex;gap:5px;margin:8px 0 4px;}
.pw-strength span{height:4px;flex:1;background:var(--line);border-radius:3px;transition:background .3s;}
.error-text{color:#c0392b;font-size:12.5px;margin-top:5px;display:none;}

@media (max-width: 900px){
  .plan-grid, .contact-grid{grid-template-columns:1fr;}
  .foot-grid{grid-template-columns:1fr 1fr;}
  .route-track{grid-template-columns:1fr 1fr;}
  .route-track::before{display:none;}
}
@media (max-width: 720px){
  nav.links{display:none;}
  .hamburger{display:flex;}
  .hero-stats .stat{padding:0 18px;}
  .field-row{grid-template-columns:1fr;}
  .foot-grid{grid-template-columns:1fr;}
  .route-track{grid-template-columns:1fr;}
}
@media (prefers-reduced-motion: reduce){
  *{animation:none !important;transition:none !important;}
}
#starPicker {
    display: flex;
    gap: 5px;
    font-size: 32px;
}

#starPicker span {
    cursor: pointer;
    user-select: none;
    color: #f5a623;
}
.upi-box .qr img{
    width:100%;
    height:100%;
    object-fit:contain;
    border-radius:12px;
    cursor:pointer;
    transition:transform .25s;
}

.upi-box .qr img:hover{
    transform:scale(1.05);
}

.qr-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.qr-modal.active{
    display:flex;
}

.qr-full{
    width:min(90vw,500px);
    max-height:90vh;
    background:#fff;
    padding:10px;
    border-radius:16px;
}

.qr-close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}

.hero{
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom{
    from{
        background-size:100%;
    }

    to{
        background-size:108%;
    }
}
.login-notice{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;

    padding:18px;
    margin-bottom:20px;

    border-radius:16px;

    background:rgba(232,121,30,.12);
    border:1px solid rgba(232,121,30,.25);

    color:#E8791E;
    font-weight:600;
}
/* Sequential animation for route icons */

.route-step:nth-child(1) .seal{
    animation:pulseJourney 8s infinite;
    animation-delay:0s;
}

.route-step:nth-child(2) .seal{
    animation:pulseJourney 8s infinite;
    animation-delay:2s;
}

.route-step:nth-child(3) .seal{
    animation:pulseJourney 8s infinite;
    animation-delay:4s;
}

.route-step:nth-child(4) .seal{
    animation:pulseJourney 8s infinite;
    animation-delay:6s;
}

@keyframes pulseJourney{

    0%,15%,100%{
        transform:scale(1);
    }

    7%{
        transform:scale(1.3);
        box-shadow:0 0 30px rgba(232,121,30,.8);
    }

    10%{
        transform:scale(1.15);
    }

    13%{
        transform:scale(1.25);
    }
}
.route-step .seal:hover{
    transform:scale(1.15);
    box-shadow:
        0 0 25px rgba(232,121,30,.7),
        0 8px 20px rgba(0,0,0,.25);
}
/* INTRO VIDEO */


.package-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(8px);

    opacity:0;
    visibility:hidden;

    transition:.35s ease;
    z-index:9999;

    display:flex;
    justify-content:center;
    align-items:flex-end;
}

.package-modal.active{
    opacity:1;
    visibility:visible;
}

.package-modal-content{
    width:100%;
    max-width:1100px;

    height:90vh;

    background:var(--cream);

    border-radius:30px 30px 0 0;

    overflow-y:auto;

    transform:translateY(100%);
    transition:.4s ease;

    position:relative;

    padding:40px;
}

.package-modal.active .package-modal-content{
    transform:translateY(0);
}
.close-package{
    position:absolute;
    top:20px;
    right:20px;

    width:45px;
    height:45px;

    border-radius:50%;
    background:#fff;

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

    cursor:pointer;

    font-size:22px;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    z-index:10;
}
/* ================================
   PACKAGE IMAGE SLIDER
================================ */

.pkg-slider {
    height: 420px;
    position: relative;
    overflow: hidden;
    background: #111;
}


/* Each complete slide */

.slide-wrap {
    position: absolute;
    inset: 0;

    opacity: 0;

    transition: opacity 0.8s ease;

    pointer-events: none;
}

.slide-wrap.active {
    opacity: 1;
    pointer-events: auto;
}


/* Blurred background */

.slide-bg {
    position: absolute;
    inset: -30px;

    background-size: cover;
    background-position: center;

    filter: blur(30px);

    transform: scale(1.15);

    z-index: 1;
}


/* Actual sharp image */

.slide-wrap img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    z-index: 2;

    opacity: 1 !important;
}


/* ================================
   TOP STORY BARS
================================ */

.slider-bars {
    position: absolute;

    top: 15px;
    left: 20px;
    right: 20px;

    display: flex;
    gap: 8px;

    z-index: 20;
}

.bar {
    flex: 1;

    height: 4px;

    background: rgba(255,255,255,.35);

    border-radius: 999px;

    overflow: hidden;

    cursor: pointer;

    position: relative;
}

.bar::after {
    content: "";

    position: absolute;
    inset: 0;

    background: #fff;

    transform: scaleX(0);

    transform-origin: left center;
}

.bar.active::after {
    animation: fillBar 5s linear forwards;
}

@keyframes fillBar {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


/* ================================
   PACKAGE TAG / BADGE
================================ */

.pkg-tag {
    z-index: 10;
}

.badge-seal {
    z-index: 10;
}


/* ================================
   MORE INFO BUTTON
================================ */

/* =========================
   MORE INFO BUTTON
========================= */

.pkg-info {
    background: #fff;
    color: #0f3b2e;

    border: 2px solid #0f3b2e;

    padding: 12px 22px;

    border-radius: 999px;

    cursor: pointer;

    font-weight: 600;
    font-size: 15px;

    transition: .3s ease;
}

.pkg-info:hover {
    background: #0f3b2e;
    color: #fff;
}


/* =========================
   POPUP HEADER
========================= */

.popup-header {
    padding-right: 70px;
    margin-bottom: 35px;
}

.popup-header h1 {
    margin: 0 0 28px;

    font-size: 38px;
    line-height: 1.15;

    color: #103b31;
}


/* =========================
   DAYS / MEMBERS / PRICE
========================= */

.popup-details {
    display: flex;

    gap: 45px;

    flex-wrap: wrap;
}

.popup-detail {
    display: flex;

    align-items: center;

    gap: 10px;
}

.detail-icon {
    font-size: 22px;
}

.popup-detail div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.popup-detail small {
    font-size: 13px;

    color: #777;

    font-weight: 600;
}

.popup-detail strong {
    font-size: 17px;

    color: #103b31;
}


/* =========================
   ALL POPUP SECTIONS
========================= */

.popup-section {
    margin-top: 30px;
    margin-bottom: 30px;
}


/* Section heading */

.popup-section h3 {
    margin: 0 0 14px;

    font-size: 20px;

    color: #103b31;
}


/* =========================
   ABOUT
========================= */

.full-description {
    margin: 0;

    line-height: 1.7;

    font-size: 16px;
}


/* =========================
   PICKUP POINTS
========================= */

.pickup-list {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 6px;

    line-height: 1.7;

    font-size: 16px;
}

.pickup-point {
    white-space: nowrap;
}

.pickup-separator {
    opacity: .5;

    margin: 0 2px;
}


/* =========================
   INCLUSIONS
========================= */

.inclusion-list {
    margin: 0;

    padding-left: 22px;
}

.inclusion-list li {
    margin-bottom: 9px;

    line-height: 1.5;
}


/* =========================
   ITINERARY
========================= */

.itinerary-list {
    margin-top: 10px;
}

.itinerary-item {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 12px;

    line-height: 1.55;

    font-size: 16px;
}

.itinerary-arrow {
    flex-shrink: 0;

    font-weight: 600;

    color: #103b31;
}

.itinerary-text {
    flex: 1;
}


/* DAY 1 / DAY 2 */

.itinerary-day {
    font-size: 19px;

    font-weight: 700;

    color: #103b31;

    margin-top: 25px;

    margin-bottom: 15px;

    padding-bottom: 7px;

    border-bottom: 1px solid rgba(16, 59, 49, .15);
}

.itinerary-day:first-child {
    margin-top: 5px;
}


/* =========================
   BOOK THIS ADVENTURE
========================= */

.popup-book {
    margin-top: 45px;

    padding-top: 25px;

    padding-bottom: 35px;

    border-top: 1px solid rgba(16, 59, 49, .12);

    display: flex;

    justify-content: flex-end;
}

.popup-book-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 220px;

    padding: 15px 28px;

    border: none;

    border-radius: 999px;

    background: #103b31;

    color: #fff;

    font-family: inherit;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;

    appearance: none;

    -webkit-appearance: none;
}

.popup-book-btn:hover {
    background: #174d3f;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(16, 59, 49, .25);
}

.popup-book-btn:active {
    transform: translateY(0);
}


/* =========================
   POPUP CONTENT SPACING
========================= */

#packageContent {
    padding-bottom: 50px;
}
#authNavBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 150px;
    padding: 12px 20px;

    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 999px;

    background: rgba(255,255,255,0.10);
    color: #fff;

    backdrop-filter: blur(10px);

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.25s ease;
}

#authNavBtn:hover {
    background: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-1px);
}
.save-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 175px;

    transition:
        background .25s ease,
        transform .2s ease,
        opacity .2s ease;
}

.save-profile-btn:disabled {
    cursor: default;
    opacity: .9;
}

.save-profile-btn.profile-saved {
    background: #2f7d58;
}

.saved-check {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: rgba(255,255,255,.2);

    font-size: 14px;
    font-weight: 800;
}.save-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 175px;

    transition:
        background .25s ease,
        transform .2s ease,
        opacity .2s ease;
}

.save-profile-btn:disabled {
    cursor: default;
    opacity: .9;
}

.save-profile-btn.profile-saved {
    background: #2f7d58;
}

.saved-check {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: rgba(255,255,255,.2);

    font-size: 14px;
    font-weight: 800;
}
.back-adventure-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 20px;

    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;

    text-decoration: none;
    cursor: pointer;

    transition: all 0.25s ease;

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

.back-adventure-btn:hover {
    background: #ffffff;
    color: #103b31;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.back-adventure-btn:active {
    transform: translateY(0);
}
.profile-header {
    background: #103b31;
    padding: 18px 40px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.logout-modal {
    position: fixed;
    inset: 0;

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

    background: rgba(10, 25, 20, 0.55);

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

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.25s ease,
                visibility 0.25s ease;

    z-index: 99999;
}

.logout-modal.active {
    opacity: 1;
    visibility: visible;
}

.logout-card {
    width: min(420px, calc(100% - 40px));

    background: #fffaf0;

    border-radius: 24px;

    padding: 32px;

    text-align: center;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);

    transform: translateY(15px) scale(0.97);

    transition: transform 0.25s ease;
}

.logout-modal.active .logout-card {
    transform: translateY(0) scale(1);
}

.logout-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

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

    border-radius: 50%;

    background: #eaf2ee;

    font-size: 27px;
}

.logout-card h2 {
    margin: 0 0 10px;

    color: #103b31;

    font-size: 24px;
}

.logout-card p {
    margin: 0 auto 26px;

    max-width: 330px;

    color: #6f6a61;

    font-size: 15px;
    line-height: 1.6;
}

.logout-actions {
    display: flex;
    gap: 12px;
}

.logout-actions button {
    flex: 1;

    padding: 13px 18px;

    border-radius: 999px;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}

.logout-cancel {
    background: transparent;

    color: #103b31;

    border: 1.5px solid #103b31;
}

.logout-cancel:hover {
    background: #eaf2ee;
}

.logout-confirm {
    background: #103b31;

    color: white;

    border: 1.5px solid #103b31;
}

.logout-confirm:hover {
    background: #174d3f;

    transform: translateY(-1px);

    box-shadow: 0 6px 16px rgba(16, 59, 49, 0.2);
}

@media (max-width: 500px) {

    .logout-card {
        padding: 26px 22px;
    }

    .logout-actions {
        flex-direction: column;
    }

}


/* =========================================================
   BUNK & BEYOND — CINEMATIC MOTION UPGRADE
   KEEP THIS BLOCK AT THE VERY END OF YOUR CSS
   ========================================================= */

/* Hero cinematic motion */
.hero {
    animation: none !important;
    isolation: isolate;
    background-size: cover !important;
    background-position: center center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -5%;
    z-index: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    animation: heroCinematic 24s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 75% 35%, rgba(245,166,35,.10), transparent 28%),
        linear-gradient(90deg, rgba(9,31,23,.18), transparent 55%);
    animation: heroAtmosphere 8s ease-in-out infinite alternate;
}

.hero-wrap,
.hero .container {
    position: relative;
    z-index: 3;
}

@keyframes heroCinematic {
    from { transform: scale(1); }
    to   { transform: scale(1.075); }
}

@keyframes heroAtmosphere {
    from { opacity: .65; }
    to   { opacity: 1; }
}

/* Navbar entrance */
header {
    animation: navEnter .9s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes navEnter {
    from { opacity: 0; transform: translateY(-22px); }
    to   { opacity: 1; transform: translateY(0); }
}

.brand img {
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%,100% { transform: translateY(0) rotate(0); }
    50%     { transform: translateY(-3px) rotate(1deg); }
}

/* Nav link animation */
nav.links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: var(--ember);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}

nav.links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero staggered entrance */
.hero-left {
    animation: heroContentIn 1s cubic-bezier(.2,.8,.2,1) .15s both;
}

.hero-pill {
    animation:
        bbFadeUp .8s ease .35s both,
        pillGlow 4s ease-in-out 1.4s infinite;
}

.hero-left h1 {
    animation: bbFadeUp 1s cubic-bezier(.2,.8,.2,1) .5s both;
}

.hero-left p {
    animation: bbFadeUp .9s ease .72s both;
}

.hero-buttons {
    animation: bbFadeUp .9s ease .9s both;
}

.hero-features {
    animation: bbFadeUp .9s ease 1.08s both;
}

@keyframes heroContentIn {
    from { opacity: 0; transform: translateX(-45px); }
    to   { opacity: 1; transform: translateX(0); }
}

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

/* Animated orange headline */
.hero-left h1 span {
    background: linear-gradient(
        110deg,
        #E8791E 0%,
        #F5A623 35%,
        #FFD27A 50%,
        #F5A623 65%,
        #E8791E 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: orangeTextShimmer 5s linear infinite;
}

@keyframes orangeTextShimmer {
    to { background-position: 220% center; }
}

@keyframes pillGlow {
    0%,100% { box-shadow: 0 8px 30px rgba(0,0,0,.10); }
    50%     { box-shadow: 0 8px 35px rgba(245,166,35,.20); }
}

/* Buttons */
.btn {
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: width .5s ease, height .5s ease;
    pointer-events: none;
}

.btn:hover::after {
    width: 280px;
    height: 280px;
}

/* Hero stats */
.hero-features div {
    transition: transform .3s ease;
}

.hero-features div:hover {
    transform: translateY(-5px);
}

.hero-features strong {
    animation: statPulse 3.5s ease-in-out infinite;
}

@keyframes statPulse {
    0%,100% { text-shadow: 0 0 0 rgba(245,166,35,0); }
    50%     { text-shadow: 0 0 18px rgba(245,166,35,.22); }
}

/* Package cards */
.pkg-card {
    will-change: transform;
}

.pkg-media {
    overflow: hidden;
}

.pkg-media img {
    transition: transform .8s cubic-bezier(.2,.8,.2,1);
}

.pkg-card:hover .pkg-media img {
    transform: scale(1.08);
}

.pkg-tag,
.badge-seal {
    transition: transform .35s ease;
}

.pkg-card:hover .pkg-tag {
    transform: translateY(-3px);
}

.badge-seal {
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%,100% { transform: translateY(0) rotate(0); }
    50%     { transform: translateY(-5px) rotate(3deg); }
}

/* How-it-works section */
.route-wrap::before {
    animation: starDrift 18s linear infinite;
}

@keyframes starDrift {
    from { background-position: 0 0; }
    to   { background-position: 52px 52px; }
}

.route-step {
    transition: transform .35s ease;
}

.route-step:hover {
    transform: translateY(-7px);
}

.route-track::after {
    animation: travelRoute 7s cubic-bezier(.65,0,.35,1) infinite alternate;
}

/* Plan form */
.form-card {
    transition: transform .45s ease, box-shadow .45s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 75px rgba(23,50,41,.20);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: rgba(232,121,30,.35);
}

.plan-points li {
    transition: transform .3s ease;
    border-radius: 14px;
    padding: 5px 8px 5px 0;
}

.plan-points li:hover {
    transform: translateX(8px);
}

/* Reviews */
.rev-card {
    will-change: transform;
}

.rev-avatar {
    transition: transform .4s ease;
}

.rev-card:hover .rev-avatar {
    transform: rotate(-6deg) scale(1.08);
}

.rev-header .stars {
    animation: starTwinkle 2.8s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%,100% { opacity:.85; transform:scale(1); }
    50%     { opacity:1; transform:scale(1.05); }
}

/* Contact cards */
.c-card {
    position: relative;
    overflow: hidden;
}

.c-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );
    transform: skewX(-18deg);
    transition: left .7s ease;
}

.c-card:hover::before {
    left: 135%;
}

.c-card .ic {
    transition: transform .35s ease;
}

.c-card:hover .ic {
    transform: scale(1.08) rotate(-5deg);
}

/* Footer */
.foot-social a {
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.foot-social a:hover {
    transform: translateY(-5px) rotate(-4deg);
    box-shadow: 0 10px 25px rgba(232,121,30,.22);
}

/* Modals */
.modal-overlay.active .modal {
    animation: modalPop .45s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes modalPop {
    from { opacity:0; transform:translateY(25px) scale(.96); }
    to   { opacity:1; transform:translateY(0) scale(1); }
}

.package-modal.active .package-modal-content {
    animation: packageRise .55s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes packageRise {
    from { transform:translateY(100%); }
    to   { transform:translateY(0); }
}

/* Story slider image movement */
.slide-wrap.active img {
    animation: storyImageZoom 5s ease-out both;
}

@keyframes storyImageZoom {
    from { transform:scale(1.04); }
    to   { transform:scale(1); }
}

/* Back button shine */
.back-adventure-btn {
    position: relative;
    overflow: hidden;
}

.back-adventure-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 25%,
        rgba(255,255,255,.20) 50%,
        transparent 75%
    );
    transform: translateX(-120%);
    transition: transform .7s ease;
}

.back-adventure-btn:hover::before {
    transform: translateX(120%);
}

/* Login notice */
.login-notice {
    animation: noticeGlow 4s ease-in-out infinite;
}

@keyframes noticeGlow {
    0%,100% { box-shadow:0 0 0 rgba(232,121,30,0); }
    50%     { box-shadow:0 10px 35px rgba(232,121,30,.10); }
}

/* Optional scroll reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(.94);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Mobile tuning */
@media (max-width: 900px) {
    .hero-left {
        margin-left: 28px;
        margin-right: 28px;
    }

    .hero-left h1 {
        font-size: clamp(48px, 9vw, 72px);
    }

    .hero-left p {
        font-size: 18px;
    }
}

@media (max-width: 720px) {
    .hero-left {
        margin: 0 22px;
    }

    .hero-left h1 {
        font-size: clamp(43px, 12vw, 62px);
    }

    .hero-left p {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-buttons {
        gap: 12px;
        margin-top: 30px;
    }

    .hero-features {
        gap: 18px;
        margin-top: 35px;
        flex-wrap: wrap;
    }

    .hero-features strong {
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
    }
}
/* =========================================
   BUNK & BEYOND PAGE LOADER
   ========================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;

    width: 100%;
    height: 100vh;

    background: #0f3b2e;

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

    opacity: 1;
    visibility: visible;

    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* CONTENT */

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    animation: loaderAppear 0.8s ease forwards;
}


/* LOGO */
.loader-logo {

    position: relative;

    width: 120px;
    height: 120px;

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

    border-radius: 50%;

    animation:
        logoEnter 0.8s ease forwards,
        logoFloat 3s ease-in-out infinite 0.8s;

}

.loader-logo img {

    width: 90px;
    height: 90px;

    border-radius: 50%;

    object-fit: cover;

    position: relative;

    z-index: 2;

    box-shadow:
        0 0 25px rgba(255,255,255,.15);

}

.logo-spinner {

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    border: 3px solid rgba(255,255,255,.12);

    border-top: 3px solid #f59a23;
    border-right: 3px solid #f59a23;

    animation: spinLogo 1.1s linear infinite;

}

@keyframes spinLogo {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes logoFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}


/* BRAND */

.loader-brand {
    margin-top: 24px;

    display: flex;
    flex-direction: column;

    align-items: center;

    color: white;

    animation: brandEnter 0.8s ease 0.25s both;
}

.loader-brand strong {
    font-size: 28px;

    font-weight: 800;

    letter-spacing: 3px;
}

.loader-brand span {
    margin-top: 6px;

    font-size: 12px;

    letter-spacing: 5px;

    opacity: 0.75;
}



/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes loaderAppear {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes logoEnter {

    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    70% {
        opacity: 1;
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


@keyframes brandEnter {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes lineAppear {

    from {
        opacity: 0;
        transform: scaleX(0.5);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }

}


@keyframes loadingProgress {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .loader-logo {
        width: 90px;
        height: 90px;
    }

    .loader-brand strong {
        font-size: 21px;
    }

    .loader-brand span {
        font-size: 9px;
    }

    .loader-line {
        width: 160px;
    }

}
.booking-input-error {
    border: 2px solid #d64545 !important;
    box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.08);
}

.booking-field-error {
    margin-top: 7px;
    color: #c0392b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}
/* =========================================================
   FINAL MOBILE OPTIMIZATION
   Add this at the VERY END of styles.css
========================================================= */


/* =========================================================
   TABLETS / PHONES
========================================================= */

@media (max-width: 720px) {

    /* -------------------------
       GLOBAL
    ------------------------- */

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: calc(100% - 32px);
        max-width: none;
    }


    /* -------------------------
       NAVBAR
    ------------------------- */

    .nav-wrap {
        padding: 10px 16px;
        gap: 10px;
    }

    .brand {
        gap: 8px;
    }

    .brand img,
    .brand-logo img {
        width: 42px;
        height: 42px;
    }

    .brand-name {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .brand-sub {
        font-size: 8px;
        letter-spacing: 3px;
    }

    nav.links,
    .links {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }


    /* -------------------------
       HERO
    ------------------------- */

    .hero {
        min-height: 100svh;
        height: 100svh;

        background-size: cover;
        background-position: 63% center;
        background-repeat: no-repeat;
    }

    .hero-wrap {
        min-height: 100svh;
        width: 100%;
    }

    .hero-left {
        width: 100%;
        max-width: 100%;

        margin: 0;
        padding: 90px 16px 40px;
    }

    .hero-left h1 {
        font-size: clamp(42px, 13vw, 62px);
        line-height: .96;
        margin: 14px 0;
    }

    .hero-left p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-pill {
        font-size: 12px;
        padding: 8px 14px;
        margin-top: 12px;
    }

    .hero-buttons {
        width: 100%;
        gap: 10px;
        margin-top: 28px;
    }

    .hero-buttons .btn {
        min-height: 48px;
        flex: 1;
        min-width: 0;
        padding: 12px 14px;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 34px;
    }

    .hero-features strong {
        font-size: 21px;
    }

    .hero-features span {
        font-size: 11px;
        line-height: 1.35;
    }


    /* -------------------------
       HERO BACKGROUND
    ------------------------- */

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;

        background:
            linear-gradient(
                180deg,
                rgba(18,45,34,.42) 0%,
                rgba(18,45,34,.35) 35%,
                rgba(18,45,34,.75) 100%
            );
    }

    .hero-wrap,
    .hero-left {
        position: relative;
        z-index: 2;
    }


    /* -------------------------
       SECTION HEADINGS
    ------------------------- */

    .section-head {
        margin-bottom: 30px;
    }

    .section-head h2 {
        font-size: clamp(30px, 9vw, 44px);
        line-height: 1.05;
    }

    .section-head p {
        font-size: 15px;
        line-height: 1.65;
    }


    /* -------------------------
       PACKAGE GRID
    ------------------------- */

    .pkg-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pkg-card {
        width: 100%;
        min-width: 0;
    }


    /* -------------------------
       PACKAGE IMAGE / SLIDER
    ------------------------- */

    .pkg-slider {
        width: 100%;
        height: 225px;
    }

    .slide-wrap {
        width: 100%;
        height: 100%;
    }

    .slide-bg {
        width: 100%;
        height: 100%;

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .slide-wrap img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;
    }


    /* Keep package metadata readable */

    .pkg-body {
        padding: 18px;
    }

    .pkg-body h3 {
        font-size: 23px;
        line-height: 1.15;
    }

    .pkg-meta {
        gap: 8px;
        flex-wrap: wrap;
    }

    .pkg-meta span {
        font-size: 12px;
    }

    .pkg-dates {
        line-height: 1.5;
    }

    .pkg-short-desc,
    .pkg-body .desc {
        font-size: 14px;
        line-height: 1.65;
    }


    /* -------------------------
       PACKAGE FOOTER
    ------------------------- */

    .pkg-foot {
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }

    .pkg-price {
        width: 100%;
    }

    .pkg-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .pkg-actions button {
        width: 100%;
        min-height: 46px;
    }


    /* -------------------------
       GENERAL BUTTONS
    ------------------------- */

    .btn {
        min-height: 46px;
        padding: 12px 16px;
        font-size: 14px;
    }


    /* -------------------------
       BOOKING MODAL
    ------------------------- */

    .modal-overlay {
        padding: 10px;
        align-items: center;
    }

    .modal {
        width: calc(100vw - 20px);
        max-width: none;

        max-height: 92svh;
        overflow-y: auto;

        border-radius: 22px;

        padding: 22px 18px;
    }

    .modal h3 {
        font-size: 25px;
        line-height: 1.15;
    }

    .modal .sub {
        font-size: 14px;
        line-height: 1.55;
    }

    .field-row {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .field {
        width: 100%;
    }

    .field label {
        font-size: 13px;
    }

    .field input,
    .field textarea,
    .field select {
        width: 100%;
        min-height: 48px;
        font-size: 15px;
    }

    .field textarea {
        min-height: 100px;
    }

    .modal .btn-block {
        width: 100%;
        min-height: 50px;
        margin-top: 8px;
    }


    /* -------------------------
       FLATPICKR
    ------------------------- */

    .flatpickr-calendar {
        width: calc(100vw - 30px) !important;
        max-width: 350px;
        left: 50% !important;
        transform: translateX(-50%);
    }


    /* -------------------------
       BOOKING ERROR
    ------------------------- */

    .booking-field-error {
        font-size: 12px;
        margin-top: 6px;
    }

    .booking-input-error {
        border-width: 2px !important;
    }


    /* -------------------------
       TERMS INSIDE BOOKING
    ------------------------- */

    .mini-terms {
        max-height: 300px;
        overflow-y: auto;
        font-size: 13px;
    }

    .checkline {
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        line-height: 1.5;
    }


    /* -------------------------
       PAYMENT STEP
    ------------------------- */

    .upi-box {
        width: 100%;
    }

    .qr-img {
        max-width: 220px;
        width: 100%;
        height: auto;
    }

    .upi-id-row {
        font-size: 14px;
        word-break: break-word;
    }


    /* -------------------------
       REVIEWS
    ------------------------- */

    .reviews-head-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .reviews-head-row > div:last-child {
        width: 100%;
    }

    .reviews-head-row .btn {
        width: 100%;
    }

    .rev-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rev-card {
        width: 100%;
    }


    /* -------------------------
       FOOTER / MISC
    ------------------------- */

    footer {
        padding-bottom: 35px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 500px) {

    .container {
        width: calc(100% - 24px);
    }

    .hero-left {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        gap: 8px;
    }

    .hero-features strong {
        font-size: 18px;
    }

    .hero-features span {
        font-size: 10px;
    }

    .pkg-slider {
        height: 210px;
    }

    .pkg-actions {
        grid-template-columns: 1fr;
    }

    .modal {
        width: calc(100vw - 12px);
        padding: 18px 14px;
        border-radius: 18px;
    }

    .modal h3 {
        font-size: 23px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pkg-slider {
        height: 195px;
    }

}
/* =========================================================
   FINAL MOBILE HEADER + NAV + LAYOUT FIX
========================================================= */

@media (max-width: 720px) {

    /* =====================================
       HEADER
    ===================================== */

    #siteHeader {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        z-index: 2000;

        width: 100%;
    }

    #siteHeader .nav-wrap {
        width: 100%;
        padding: 10px 14px;

        display: flex;
        align-items: center;

        gap: 8px;
    }


    /* =====================================
       BRAND
    ===================================== */

    #siteHeader .brand {
        flex: 1 1 auto;

        min-width: 0;

        display: flex;
        align-items: center;

        gap: 7px;
    }

    #siteHeader .brand img {
        width: 42px;
        height: 42px;

        flex-shrink: 0;
    }

    #siteHeader .brand-name {
        min-width: 0;
        overflow: hidden;
    }

    #siteHeader .brand-name .l1 {
        font-size: 17px;

        white-space: nowrap;
    }

    #siteHeader .brand-name .l2 {
        font-size: 15px;

        white-space: nowrap;
    }


    /* =====================================
       DESKTOP LINKS
    ===================================== */

    #siteHeader > .nav-wrap > nav.links {
        display: none !important;
    }


    /* =====================================
       NAV ACTIONS
    ===================================== */

    #siteHeader .nav-actions {
        flex: 0 0 auto;

        display: flex;
        align-items: center;

        gap: 6px;
    }


    /* LOGIN BUTTON */

    #siteHeader #authNavBtn {
        width: 92px;
        min-width: 92px;

        min-height: 48px;

        padding: 7px 8px;

        font-size: 11px;

        line-height: 1.15;

        white-space: normal;

        justify-content: center;

        text-align: center;

        gap: 3px;
    }


    /* BOOK NOW */

    #siteHeader .nav-actions > .btn {
        width: 92px;
        min-width: 92px;

        min-height: 48px;

        padding: 9px 8px;

        font-size: 12px;

        white-space: nowrap;
    }


    /* HAMBURGER */

    #siteHeader .hamburger {
        display: flex !important;

        width: 30px;
        height: 42px;

        align-items: center;
        justify-content: center;

        flex-direction: column;

        gap: 5px;

        flex-shrink: 0;

        cursor: pointer;
    }

    #siteHeader .hamburger span {
        width: 24px;
        height: 2.5px;
    }


    /* =====================================
       MOBILE DROPDOWN
    ===================================== */

    #mobileNav {

        display: none !important;

        position: absolute;

        top: 100%;
        left: 12px;
        right: 12px;

        width: auto;

        flex-direction: column;

        padding: 10px 18px !important;

        gap: 0;

        background:
            rgba(20,61,47,.98) !important;

        backdrop-filter:
            blur(18px);

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

        border:
            1px solid
            rgba(255,255,255,.12);

        border-radius: 0 0 18px 18px;

        box-shadow:
            0 18px 40px
            rgba(0,0,0,.28);

        z-index: 3000;
    }


    #mobileNav.mobile-open {
        display: flex !important;
    }


    #mobileNav a {

        display: block;

        width: 100%;

        padding: 14px 4px !important;

        color: var(--cream);

        font-size: 15px;

        line-height: 1.3;

        text-decoration: none;

        border-bottom:
            1px solid
            rgba(255,255,255,.08);
    }

    #mobileNav a:last-child {
        border-bottom: none;
    }


    /* =====================================
       HERO
    ===================================== */

    .hero {
        min-height: 100svh;
        height: 100svh;

        background-size: cover;

        background-position: 63% center;

        background-repeat: no-repeat;
    }

    .hero-wrap {
        min-height: 100svh;
    }


    .hero-left {

        width: 100%;
        max-width: 100%;

        margin: 0;

        padding:
            95px 18px 40px;
    }


    .hero-left h1 {

        font-size:
            clamp(40px, 12vw, 58px);

        line-height: .97;

        margin: 14px 0;
    }


    .hero-left p {

        max-width: 100%;

        font-size: 16px;

        line-height: 1.65;
    }


    .hero-buttons {

        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 10px;

        margin-top: 28px;
    }


    .hero-buttons .btn {

        width: 100%;

        min-height: 50px;
    }


    .hero-features {

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 8px;

        margin-top: 32px;
    }


    .hero-features strong {
        font-size: 20px;
    }

    .hero-features span {
        font-size: 10px;
        line-height: 1.3;
    }


    /* =====================================
       ROUTE / HOW IT WORKS
    ===================================== */

    .route-track {

        display: grid !important;

        grid-template-columns:
            1fr !important;

        gap: 48px !important;

        margin-top: 45px;

        padding-bottom: 10px;
    }


    .route-track::before {

        display: block !important;

        left: 50%;

        right: auto;

        top: 34px;

        bottom: 34px;

        width: 3px;

        height: auto;

        transform:
            translateX(-50%);

        background:
            rgba(232,121,30,.25);

        border-radius: 999px;
    }


    .route-track::after {

        display: block !important;

        left: 50%;

        top: 28px;

        width: 14px;
        height: 14px;

        transform:
            translateX(-50%);

        animation:
            travelRouteMobile
            8s linear infinite;
    }


    @keyframes travelRouteMobile {

        0% {
            top: 28px;
        }

        100% {
            top: calc(100% - 42px);
        }

    }


    .route-step {

        width: 100%;

        max-width: 340px;

        margin: 0 auto;
    }


    .route-step .seal {

        margin-left: auto;
        margin-right: auto;
    }


    .route-step h4 {

        font-size: 20px;

        margin-top: 4px;
    }


    .route-step p {

        font-size: 14px;

        line-height: 1.65;

        margin: 0 auto;

        max-width: 320px;
    }


    /* =====================================
       CONTACT
    ===================================== */

    .contact {

        overflow: hidden;
    }


    .contact .container {

        width:
            calc(100% - 40px);

        max-width: none;

        margin:
            0 auto;
    }


    .contact-grid {

        grid-template-columns:
            1fr !important;

        gap: 28px;

        align-items: stretch;
    }


    .contact-cards {

        width: 100%;

        gap: 14px;
    }


    .c-card {

        width: 100%;

        min-width: 0;

        padding:
            18px 16px;

        gap: 14px;

        border-radius: 18px;
    }


    .c-card .ic {

        width: 48px;
        height: 48px;

        flex: 0 0 48px;
    }


    .c-card > div:last-child {

        min-width: 0;
    }


    .c-card .value {

        font-size: 15px;

        line-height: 1.35;

        overflow-wrap:
            anywhere;
    }


    .contact-map {

        width: 100%;

        height: 300px;

        border-radius: 18px;
    }


    /* =====================================
       PACKAGE IMAGES
    ===================================== */

    .pkg-slider {

        width: 100%;

        height: 225px;
    }


    .slide-wrap,
    .slide-bg {

        width: 100%;
        height: 100%;
    }


    .slide-bg {

        background-size:
            cover;

        background-position:
            center center;
    }


    .slide-wrap img {

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position:
            center center;
    }


    /* =====================================
       PACKAGE ACTIONS
    ===================================== */

    .pkg-actions {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 10px;

        width: 100%;
    }


    .pkg-actions button {

        width: 100%;

        min-height: 46px;
    }


    /* =====================================
       BOOKING MODAL
    ===================================== */

    .modal-overlay {

        padding: 10px;
    }


    .modal {

        width:
            calc(100vw - 20px);

        max-width: none;

        max-height:
            92svh;

        overflow-y:
            auto;

        border-radius:
            22px;
    }


    .field-row {

        grid-template-columns:
            1fr !important;
    }


    .field input,
    .field textarea,
    .field select {

        width: 100%;

        min-height: 48px;
    }


    /* =====================================
       FOOTER
    ===================================== */

    .foot-grid {

        grid-template-columns:
            1fr !important;

        gap: 32px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    #siteHeader .nav-wrap {
        padding:
            9px 10px;
    }


    #siteHeader .brand img {

        width: 38px;
        height: 38px;
    }


    #siteHeader .brand-name .l1 {
        font-size: 15px;
    }


    #siteHeader .brand-name .l2 {
        font-size: 13px;
    }


    #siteHeader #authNavBtn {

        width: 82px;
        min-width: 82px;

        font-size: 10px;
    }


    #siteHeader .nav-actions > .btn {

        width: 82px;
        min-width: 82px;

        font-size: 11px;
    }


    .hero-left {
        padding-left: 14px;
        padding-right: 14px;
    }


    .contact .container {
        width:
            calc(100% - 28px);
    }


    .route-track {
        gap: 42px !important;
    }

}
/* ================= TRIP REQUEST SUCCESS ================= */

.trip-success {
  display: none;
  text-align: center;
  padding: 70px 30px;
}

.trip-success-icon {
  width: 72px;
  height: 72px;

  margin: 0 auto 22px;

  border-radius: 50%;

  background: #2C4E3D;

  color: #ffffff;

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

  font-size: 38px;
  font-weight: 700;
}

.trip-success h3 {
  margin: 0 0 14px;

  font-size: 28px;
}

.trip-success p {
  max-width: 520px;

  margin: 0 auto;

  line-height: 1.7;

  color: #666;
}

#tripSubmitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
/* =========================================
   CUSTOM TRIP REQUEST SUCCESS MESSAGE
   ========================================= */

.plan-form-wrapper {
  width: 100%;
}

.trip-success {
  display: none;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 70px 30px;
}

.trip-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;

  border-radius: 50%;

  background: #2C4E3D;
  color: #ffffff;

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

  font-size: 38px;
  font-weight: 700;
}

.trip-success h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.trip-success p {
  max-width: 520px;
  margin: 0 auto;

  line-height: 1.7;
  color: #666;
}

#tripSubmitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.c-card .ic img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}
