:root{
    --mh-ink:#132238;
    --mh-ink-soft:#5f7185;
    --mh-navy:#10263e;
    --mh-navy-deep:#091827;
    --mh-blue:#2f6fb3;
    --mh-blue-dark:#245a91;
    --mh-blue-soft:#eaf3fb;
    --mh-sky:#f3f8fc;
    --mh-cream:#fff8ec;
    --mh-gold:#e7ae48;
    --mh-gold-dark:#bf8421;
    --mh-white:#ffffff;
    --mh-green:#25d366;
    --mh-green-dark:#168f45;
    --mh-border:#dfe7ee;
    --mh-border-soft:#edf2f6;
    --mh-bg:#f7f9fc;
    --mh-shadow:0 18px 50px rgba(16,33,54,.10);
    --mh-shadow-lg:0 30px 80px rgba(16,33,54,.15);
    --mh-radius:20px;
    --mh-radius-lg:30px;
    --mh-wrap:1240px;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    overflow-x:hidden;
}

.kings-motihari-page{
    background:#fff;
}

.mh-site{
    width:100%;
    overflow:hidden;
    font-family:"DM Sans",Arial,sans-serif;
    color:var(--mh-ink);
    background:#fff;
}

.mh-site img{
    display:block;
    max-width:100%;
}

.mh-site a{
    color:inherit;
    text-decoration:none;
}

.mh-site button,
.mh-site input,
.mh-site select{
    font:inherit;
}

.mh-site button{
    cursor:pointer;
}

.mh-main{
    width:100%;
}

.mh-wrap{
    width:min(calc(100% - 40px),var(--mh-wrap));
    margin:0 auto;
}

.mh-kicker{
    display:inline-block;
    margin-bottom:12px;
    color:var(--mh-gold-dark);
    font-size:12px;
    font-weight:900;
    letter-spacing:1.7px;
    text-transform:uppercase;
}


/* ==========================================================
   HERO
========================================================== */

.mh-hero{
    position:relative;
    padding:88px 0 94px;
    background:
        radial-gradient(circle at 12% 10%,rgba(47,111,179,.14),transparent 34%),
        radial-gradient(circle at 90% 18%,rgba(231,174,72,.16),transparent 29%),
        linear-gradient(120deg,#fbfdff 0%,#eef6fb 48%,#fff8ed 100%);
    overflow:hidden;
}

.mh-hero::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.33;
    background-image:
        radial-gradient(circle,#cfdae4 1px,transparent 1px);
    background-size:29px 29px;
    mask-image:linear-gradient(to bottom,#000,transparent 88%);
}

.mh-hero-art{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}

.mh-hero-art-one{
    width:440px;
    height:440px;
    right:-190px;
    top:20px;
    border:1px solid rgba(47,111,179,.13);
}

.mh-hero-art-two{
    width:280px;
    height:280px;
    left:-110px;
    bottom:-100px;
    background:rgba(231,174,72,.07);
}

.mh-hero-layout{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(430px,.95fr);
    gap:64px;
    align-items:center;
}

.mh-location-pill{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:20px;
    padding:9px 14px;
    border:1px solid #dce6ee;
    border-radius:999px;
    background:rgba(255,255,255,.9);
    color:#53667c;
    font-size:12px;
    font-weight:800;
    box-shadow:0 8px 24px rgba(16,33,54,.05);
}

.mh-location-pill i{
    color:var(--mh-blue);
}

.mh-hero-copy h1{
    max-width:780px;
    margin:0;
    color:var(--mh-navy);
    font-family:"Playfair Display",Georgia,serif;
    font-size:clamp(48px,5.3vw,76px);
    line-height:1.04;
    letter-spacing:-2.2px;
}

.mh-hero-copy h1 span{
    display:block;
    color:var(--mh-blue);
}

.mh-hero-lead{
    max-width:700px;
    margin:24px 0 0;
    color:#5d6f83;
    font-size:17px;
    line-height:1.82;
}

.mh-hero-lead strong{
    color:var(--mh-navy);
}

.mh-hero-cta-row{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:31px;
}

.mh-main-cta,
.mh-outline-cta{
    min-height:52px;
    padding:0 22px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    font-size:14px;
    font-weight:900;
    transition:.22s ease;
}

.mh-main-cta{
    background:var(--mh-blue);
    color:#fff!important;
    box-shadow:0 14px 28px rgba(47,111,179,.19);
}

.mh-main-cta:hover{
    background:var(--mh-blue-dark);
    transform:translateY(-2px);
}

.mh-outline-cta{
    background:#fff;
    color:var(--mh-navy)!important;
    border:1px solid #cfdbe5;
}

.mh-outline-cta:hover{
    color:var(--mh-blue)!important;
    border-color:var(--mh-blue);
}

.mh-hero-proof{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:13px;
    margin-top:32px;
}

.mh-hero-proof>div{
    min-height:88px;
    padding:13px;
    display:flex;
    align-items:center;
    gap:11px;
    border-radius:14px;
    border:1px solid rgba(220,230,238,.95);
    background:rgba(255,255,255,.74);
}

.mh-proof-icon{
    width:40px;
    height:40px;
    flex:0 0 40px;
    display:grid;
    place-items:center;
    border-radius:11px;
    background:var(--mh-blue-soft);
    color:var(--mh-blue);
}

.mh-hero-proof p{
    margin:0;
}

.mh-hero-proof strong,
.mh-hero-proof small{
    display:block;
}

.mh-hero-proof strong{
    color:var(--mh-navy);
    font-size:11px;
    line-height:1.35;
}

.mh-hero-proof small{
    margin-top:3px;
    color:#7f8d9d;
    font-size:9px;
    line-height:1.35;
}


/* ==========================================================
   BOOKING FORM
========================================================== */

.mh-journey-finder{
    padding:28px;
    border:1px solid #e2e9ef;
    border-radius:28px;
    background:#fff;
    box-shadow:var(--mh-shadow-lg);
}

.mh-finder-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
}

.mh-finder-top>div:first-child>span{
    color:var(--mh-blue);
    font-size:11px;
    font-weight:900;
    letter-spacing:1.2px;
}

.mh-finder-top h2{
    margin:5px 0 0;
    font-family:"Playfair Display",Georgia,serif;
    font-size:29px;
    line-height:1.12;
    color:var(--mh-navy);
}

.mh-live-badge{
    display:flex;
    align-items:center;
    gap:7px;
    padding:7px 10px;
    border-radius:999px;
    background:#eefaf2;
    color:#25884c;
    font-size:10px;
    font-weight:900;
}

.mh-live-badge span{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#29b960;
    box-shadow:0 0 0 5px rgba(41,185,96,.1);
}

.mh-booking-form{
    margin-top:22px;
}

.mh-booking-types{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
    margin-bottom:20px;
}

.mh-type-choice{
    position:relative;
    min-height:62px;
    padding:8px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    border:1px solid transparent;
    border-radius:12px;
    background:#f6f8fa;
    color:#748293;
    transition:.2s ease;
}

.mh-type-choice input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.mh-type-choice i{
    font-size:15px;
}

.mh-type-choice span{
    font-size:10px;
    font-weight:900;
}

.mh-type-choice.is-selected,
.mh-type-choice:has(input:checked){
    background:#eef5fb;
    border-color:#b9d1e4;
    color:var(--mh-blue);
}

.mh-form-row{
    display:grid;
    gap:12px;
}

.mh-form-row-two{
    grid-template-columns:1fr 1fr;
}

.mh-form-row-three{
    grid-template-columns:repeat(3,1fr);
    margin-top:14px;
}

.mh-form-field{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.mh-form-field label{
    color:#4b5d72;
    font-size:11px;
    font-weight:900;
}

.mh-control{
    min-height:48px;
    padding:0 12px;
    display:flex;
    align-items:center;
    gap:9px;
    border:1px solid #dce5ed;
    border-radius:12px;
    background:#fff;
    transition:.2s ease;
}

.mh-control:focus-within{
    border-color:#8db5d9;
    box-shadow:0 0 0 4px rgba(47,111,179,.08);
}

.mh-control i{
    width:16px;
    color:#91a0b0;
}

.mh-control input,
.mh-control select{
    min-width:0;
    width:100%;
    height:46px;
    border:0;
    outline:0;
    background:transparent;
    color:#22344a;
    font-size:12px;
}

.mh-route-inputs{
    position:relative;
    margin-top:14px;
    padding:8px 0;
}

.mh-route-control{
    min-height:60px;
    padding:0 12px;
    display:grid;
    grid-template-columns:28px 1fr;
    gap:10px;
    align-items:center;
    border:1px solid #dce5ed;
    border-radius:13px;
    background:#fbfcfd;
}

.mh-route-control label{
    display:block;
    color:#8a97a6;
    font-size:9px;
    font-weight:900;
    letter-spacing:.6px;
    text-transform:uppercase;
}

.mh-route-control input{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#22344a;
    font-size:13px;
    font-weight:700;
}

.mh-route-marker{
    width:26px;
    height:26px;
    display:grid;
    place-items:center;
}

.mh-pickup-marker span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--mh-blue);
    box-shadow:0 0 0 5px rgba(47,111,179,.1);
}

.mh-drop-marker{
    color:var(--mh-gold-dark);
}

.mh-route-line{
    width:1px;
    height:16px;
    margin-left:25px;
    border-left:1px dashed #aec0d0;
}

.mh-submit-booking{
    width:100%;
    min-height:52px;
    margin-top:17px;
    padding:0 17px;
    border:0;
    border-radius:13px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:var(--mh-navy);
    color:#fff;
    font-size:13px;
    font-weight:900;
    transition:.2s ease;
}

.mh-submit-booking span{
    display:flex;
    align-items:center;
    gap:9px;
}

.mh-submit-booking span i{
    color:#4be37c;
    font-size:17px;
}

.mh-submit-booking:hover{
    background:#183652;
    transform:translateY(-1px);
}

.mh-form-note{
    margin:11px 0 0;
    text-align:center;
    color:#8996a5;
    font-size:10px;
}

.mh-form-note i{
    margin-right:5px;
}


/* ==========================================================
   FACT RIBBON
========================================================== */

.mh-fact-ribbon{
    border-top:1px solid #e4eaf0;
    border-bottom:1px solid #e4eaf0;
    background:#fff;
}

.mh-fact-ribbon-inner{
    min-height:112px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.mh-fact-ribbon-inner>div{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.mh-fact-ribbon-inner>div:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    width:1px;
    height:44%;
    background:#e3e9ee;
}

.mh-fact-ribbon i{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:#f1f7fb;
    color:var(--mh-blue);
}

.mh-fact-ribbon p{
    margin:0;
}

.mh-fact-ribbon strong,
.mh-fact-ribbon span{
    display:block;
}

.mh-fact-ribbon strong{
    font-size:19px;
}

.mh-fact-ribbon span{
    color:#8190a0;
    font-size:10px;
    font-weight:700;
}


/* ==========================================================
   INTRO
========================================================== */

.mh-introduction{
    padding:96px 0;
    background:#fff;
}

.mh-introduction-layout{
    display:grid;
    grid-template-columns:190px 1fr;
    gap:50px;
}

.mh-intro-side-label{
    padding-top:7px;
    border-right:1px solid var(--mh-border);
}

.mh-intro-side-label span,
.mh-intro-side-label strong{
    display:block;
}

.mh-intro-side-label span{
    color:var(--mh-gold-dark);
    font-size:14px;
    font-weight:900;
    letter-spacing:3px;
}

.mh-intro-side-label strong{
    margin-top:6px;
    color:#9aa6b3;
    font-size:11px;
}

.mh-intro-main h2{
    max-width:950px;
    margin:0;
    font-family:"Playfair Display",Georgia,serif;
    font-size:clamp(36px,4.3vw,58px);
    line-height:1.08;
    letter-spacing:-1.5px;
}

.mh-intro-main h2 em{
    display:block;
    color:var(--mh-blue);
    font-style:normal;
}

.mh-intro-columns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:34px;
    margin-top:26px;
}

.mh-intro-columns p{
    margin:0;
    color:#65758a;
    font-size:15px;
    line-height:1.85;
}

.mh-intro-columns strong{
    color:var(--mh-navy);
}


/* ==========================================================
   HEADINGS
========================================================== */

.mh-heading-row{
    margin-bottom:40px;
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:40px;
}

.mh-heading-row>div{
    max-width:780px;
}

.mh-heading-row h2,
.mh-routes-title h2,
.mh-champaran-copy h2,
.mh-center-heading h2,
.mh-confidence-copy h2,
.mh-information-heading h2,
.mh-faq-intro h2{
    margin:0;
    font-family:"Playfair Display",Georgia,serif;
    font-size:clamp(34px,4vw,54px);
    line-height:1.08;
    letter-spacing:-1.3px;
}

.mh-heading-row>p{
    max-width:360px;
    margin:0;
    color:#748396;
    font-size:14px;
    line-height:1.7;
}


/* ==========================================================
   SERVICES
========================================================== */

.mh-travel-solutions{
    padding:96px 0;
    background:var(--mh-bg);
}

.mh-solutions-layout{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.mh-solution-card{
    position:relative;
    min-height:285px;
    padding:27px;
    display:grid;
    grid-template-columns:72px 1fr;
    gap:20px;
    border:1px solid #e2e9ef;
    border-radius:20px;
    background:#fff;
    overflow:hidden;
    transition:.23s ease;
}

.mh-solution-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--mh-shadow);
    border-color:#c8d9e6;
}

.mh-solution-large{
    grid-column:1/-1;
    min-height:255px;
    grid-template-columns:90px 1fr;
    background:linear-gradient(110deg,#10263e,#1a466c);
    border-color:transparent;
    color:#fff;
}

.mh-solution-index{
    position:absolute;
    top:13px;
    right:18px;
    color:#edf2f6;
    font-size:42px;
    font-weight:900;
}

.mh-solution-large .mh-solution-index{
    color:rgba(255,255,255,.07);
}

.mh-solution-icon{
    width:62px;
    height:62px;
    display:grid;
    place-items:center;
    border-radius:17px;
    background:var(--mh-blue-soft);
    color:var(--mh-blue);
    font-size:23px;
}

.mh-solution-large .mh-solution-icon{
    width:72px;
    height:72px;
    background:rgba(255,255,255,.09);
    color:#f4c467;
}

.mh-solution-content>span{
    color:var(--mh-blue);
    font-size:10px;
    font-weight:900;
    letter-spacing:1px;
}

.mh-solution-large .mh-solution-content h3{
    color:#ffffff;
}

.mh-solution-content h3{
    margin:5px 0 9px;
    font-size:22px;
}

.mh-solution-content p{
    margin:0;
    color:#6a7a8c;
    font-size:13px;
    line-height:1.75;
}

.mh-solution-large .mh-solution-content p{
    max-width:780px;
    color:rgba(255,255,255,.68);
}

.mh-service-action{
    margin-top:21px;
    padding:0;
    border:0;
    background:transparent;
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--mh-blue);
    font-size:12px;
    font-weight:900;
}

.mh-solution-large .mh-service-action{
    color:#f5c362;
}


/* ==========================================================
   POPULAR ROUTES
========================================================== */

.mh-popular-routes{
    padding:96px 0;
    background:#fff;
}

.mh-routes-title{
    max-width:760px;
    margin-bottom:38px;
}

.mh-routes-title p{
    margin:14px 0 0;
    color:#758497;
    font-size:14px;
}

.mh-route-board{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}

.mh-route-ticket{
    min-height:150px;
    padding:18px;
    border:1px solid #dde6ed;
    border-radius:18px;
    background:#fbfcfd;
    text-align:left;
    transition:.2s ease;
}

.mh-route-ticket:hover{
    background:#f1f6fa;
    border-color:#a9c8df;
    transform:translateY(-4px);
}

.mh-route-city{
    display:block;
    color:#8190a0;
    font-size:10px;
    font-weight:800;
    letter-spacing:.8px;
    text-transform:uppercase;
}

.mh-route-direction{
    display:block;
    margin:9px 0 5px;
    color:var(--mh-gold-dark);
}

.mh-route-ticket strong{
    display:block;
    font-size:18px;
    color:var(--mh-navy);
}

.mh-route-ticket small{
    display:block;
    margin-top:6px;
    color:#8d9ba9;
    font-size:10px;
    line-height:1.5;
}

.mh-custom-route{
    margin-top:18px;
    padding:18px 20px;
    border:1px solid #e4ebf1;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    background:#f7fafc;
}

.mh-custom-route>div{
    display:flex;
    align-items:center;
    gap:12px;
}

.mh-custom-route>div>i{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:var(--mh-blue-soft);
    color:var(--mh-blue);
}

.mh-custom-route p{
    margin:0;
}

.mh-custom-route strong,
.mh-custom-route span{
    display:block;
}

.mh-custom-route strong{
    font-size:13px;
}

.mh-custom-route span{
    color:#8391a0;
    font-size:10px;
}

.mh-custom-route>a{
    display:flex;
    align-items:center;
    gap:7px;
    color:var(--mh-blue)!important;
    font-size:12px;
    font-weight:900;
}


/* ==========================================================
   EAST CHAMPARAN
========================================================== */

.mh-champaran-section{
    padding:100px 0;
    background:#f9f1e4;
}

.mh-champaran-layout{
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    gap:70px;
    align-items:center;
}

.mh-champaran-visual{
    position:relative;
    min-height:500px;
    display:grid;
    place-items:center;
}

.mh-champaran-circle{
    width:340px;
    height:340px;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(circle at 35% 25%,#fff 0%,#f7ead5 48%,#eed8b0 100%);
    border:1px solid rgba(191,132,33,.23);
    box-shadow:0 25px 60px rgba(107,78,32,.12);
}

.mh-champaran-circle span,
.mh-champaran-circle strong,
.mh-champaran-circle small{
    display:block;
}

.mh-champaran-circle span{
    color:#b38331;
    font-size:13px;
    font-weight:900;
    letter-spacing:4px;
}

.mh-champaran-circle strong{
    margin-top:4px;
    color:#5d4523;
    font-family:"Playfair Display",Georgia,serif;
    font-size:39px;
}

.mh-champaran-circle small{
    margin-top:5px;
    color:#9c8256;
    font-size:11px;
}

.mh-champaran-badge{
    position:absolute;
    min-width:210px;
    padding:14px 16px;
    display:flex;
    align-items:center;
    gap:12px;
    border-radius:15px;
    background:#fff;
    box-shadow:0 16px 34px rgba(107,78,32,.10);
}

.mh-champaran-badge i{
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    border-radius:11px;
    background:#f7eddd;
    color:#b47a20;
}

.mh-champaran-badge strong,
.mh-champaran-badge span{
    display:block;
}

.mh-champaran-badge strong{
    font-size:12px;
}

.mh-champaran-badge span{
    margin-top:2px;
    color:#98805d;
    font-size:9px;
}

.mh-champaran-badge-one{
    right:0;
    top:45px;
}

.mh-champaran-badge-two{
    left:0;
    bottom:45px;
}

.mh-champaran-copy p{
    margin:20px 0 0;
    color:#6c6255;
    line-height:1.85;
}

.mh-champaran-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:28px;
}

.mh-champaran-points>div{
    padding:15px;
    display:flex;
    align-items:flex-start;
    gap:11px;
    border:1px solid rgba(186,153,101,.18);
    border-radius:14px;
    background:rgba(255,255,255,.62);
}

.mh-champaran-points>div>span{
    width:30px;
    height:30px;
    flex:0 0 30px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#fff;
    color:#b07822;
    font-size:10px;
    font-weight:900;
}

.mh-champaran-points p{
    margin:0;
}

.mh-champaran-points strong,
.mh-champaran-points small{
    display:block;
}

.mh-champaran-points strong{
    color:#57472f;
    font-size:12px;
}

.mh-champaran-points small{
    margin-top:2px;
    color:#917d61;
    font-size:9px;
    line-height:1.5;
}


/* ==========================================================
   VEHICLES
========================================================== */

.mh-vehicle-section{
    padding:96px 0;
    background:linear-gradient(135deg,#0e2034,#174568);
}

.mh-heading-row-light h2,
.mh-heading-row-light>p{
    color:#fff;
}

.mh-heading-row-light>p{
    opacity:.67;
}

.mh-heading-row-light .mh-kicker{
    color:#f3c566;
}

.mh-vehicle-slider-shell{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}

.mh-vehicle-panel{
    position:relative;
    min-height:395px;
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    border:1px solid rgba(255,255,255,.08);
    transition:.23s ease;
}

.mh-vehicle-panel:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 45px rgba(0,0,0,.16);
}

.mh-vehicle-number{
    position:absolute;
    top:14px;
    right:17px;
    z-index:2;
    color:#edf1f5;
    font-size:38px;
    font-weight:900;
}

.mh-vehicle-image{
    height:195px;
    padding:20px 22px 0;
    display:grid;
    place-items:center;
    background:linear-gradient(180deg,#f5f8fb,#fff);
}

.mh-vehicle-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.mh-vehicle-info{
    padding:20px 22px 24px;
}

.mh-vehicle-info>span{
    color:var(--mh-blue);
    font-size:10px;
    font-weight:900;
    letter-spacing:1px;
}

.mh-vehicle-info h3{
    margin:4px 0 8px;
    font-family:"Playfair Display",Georgia,serif;
    font-size:27px;
}

.mh-vehicle-info p{
    margin:0;
    color:#6b7a8b;
    font-size:12px;
    line-height:1.7;
}

.mh-vehicle-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:13px;
}

.mh-vehicle-tags small{
    display:inline-flex;
    align-items:center;
    gap:5px;
    color:#7b8998;
    font-size:9px;
    font-weight:800;
}

.mh-vehicle-tags i{
    color:var(--mh-gold-dark);
}

.mh-select-vehicle{
    min-height:40px;
    margin-top:16px;
    padding:0 14px;
    border:1px solid #d7e1e8;
    border-radius:10px;
    background:#fff;
    color:var(--mh-navy);
    font-size:11px;
    font-weight:900;
    transition:.2s ease;
}

.mh-select-vehicle:hover{
    background:var(--mh-blue);
    color:#fff;
    border-color:var(--mh-blue);
}

.mh-vehicle-panel-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:#f6f9fb;
}

.mh-text-vehicle-icon{
    width:92px;
    height:92px;
    margin:20px auto 0;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#e8f1f8;
    color:var(--mh-blue);
    font-size:34px;
}


/* ==========================================================
   PURPOSES
========================================================== */

.mh-occasion-section{
    padding:96px 0;
    background:#fff;
}

.mh-center-heading{
    max-width:780px;
    margin:0 auto 40px;
    text-align:center;
}

.mh-center-heading p{
    color:#758497;
}

.mh-occasion-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:14px;
}

.mh-occasion-grid article{
    min-height:260px;
    padding:22px;
    border:1px solid #e4ebf0;
    border-radius:18px;
    background:#fbfcfd;
    transition:.23s ease;
}

.mh-occasion-grid article:hover{
    transform:translateY(-5px);
    box-shadow:var(--mh-shadow);
}

.mh-occasion-grid article>div{
    width:52px;
    height:52px;
    margin-bottom:18px;
    display:grid;
    place-items:center;
    border-radius:15px;
    background:#eef5fa;
    color:var(--mh-blue);
}

.mh-occasion-grid article>span{
    color:#9aa7b4;
    font-size:9px;
    font-weight:900;
    letter-spacing:1px;
}

.mh-occasion-grid h3{
    margin:5px 0 8px;
    font-size:17px;
}

.mh-occasion-grid p{
    margin:0;
    color:#728193;
    font-size:11px;
    line-height:1.7;
}


/* ==========================================================
   BOOKING PROCESS
========================================================== */

.mh-confidence-section{
    padding:96px 0;
    background:#f2f7fb;
}

.mh-confidence-layout{
    display:grid;
    grid-template-columns:minmax(0,.85fr) minmax(520px,1.15fr);
    gap:70px;
    align-items:center;
}

.mh-confidence-copy p{
    margin:20px 0 24px;
    color:#6e7d8e;
    line-height:1.82;
}

.mh-confidence-call{
    display:inline-flex;
    align-items:center;
    gap:11px;
    padding:12px 15px;
    border:1px solid #dce5ed;
    border-radius:13px;
    background:#fff;
}

.mh-confidence-call>i{
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    border-radius:11px;
    background:var(--mh-blue-soft);
    color:var(--mh-blue);
}

.mh-confidence-call small,
.mh-confidence-call strong{
    display:block;
}

.mh-confidence-call small{
    color:#8c99a8;
    font-size:9px;
}

.mh-confidence-call strong{
    font-size:13px;
}

.mh-confidence-steps{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.mh-confidence-steps::before{
    content:"";
    position:absolute;
    left:21px;
    top:22px;
    bottom:22px;
    width:1px;
    background:#bad0e0;
}

.mh-confidence-step{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:44px 1fr;
    gap:14px;
    align-items:start;
}

.mh-confidence-step>span{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--mh-blue);
    color:#fff;
    font-size:12px;
    font-weight:900;
    box-shadow:0 0 0 6px #f2f7fb;
}

.mh-confidence-step>div{
    padding:16px 18px;
    border:1px solid #dce5ed;
    border-radius:15px;
    background:#fff;
}

.mh-confidence-step strong{
    display:block;
    font-size:14px;
}

.mh-confidence-step p{
    margin:4px 0 0;
    color:#748395;
    font-size:11px;
    line-height:1.6;
}


/* ==========================================================
   AIRPORT
========================================================== */

.mh-airport-section{
    padding:76px 0;
    background:#fff;
}

.mh-airport-shell{
    padding:34px;
    border:1px solid #dfe8ef;
    border-radius:24px;
    background:linear-gradient(110deg,#f7fafc,#eef5fa);
}

.mh-airport-heading{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:24px;
}

.mh-airport-symbol{
    width:58px;
    height:58px;
    flex:0 0 58px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:var(--mh-blue);
    color:#fff;
    font-size:22px;
}

.mh-airport-heading span{
    color:var(--mh-blue);
    font-size:10px;
    font-weight:900;
    letter-spacing:1.1px;
}

.mh-airport-heading h2{
    margin:4px 0 0;
    font-family:"Playfair Display",Georgia,serif;
    font-size:32px;
    line-height:1.12;
}

.mh-airport-options{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
}

.mh-airport-options button{
    min-height:92px;
    padding:16px;
    border:1px solid #d9e5ee;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    background:#fff;
    text-align:left;
    transition:.2s ease;
}

.mh-airport-options button:hover{
    border-color:#98bbd6;
    transform:translateY(-3px);
}

.mh-airport-options span,
.mh-airport-options strong{
    display:block;
}

.mh-airport-options span{
    color:#94a0ad;
    font-size:9px;
    font-weight:900;
    text-transform:uppercase;
}

.mh-airport-options strong{
    margin-top:3px;
    font-size:14px;
}

.mh-airport-options i{
    color:var(--mh-blue);
}


/* ==========================================================
   SEO CONTENT
========================================================== */

.mh-information-section{
    padding:96px 0;
    background:var(--mh-bg);
}

.mh-information-heading{
    max-width:780px;
    margin-bottom:36px;
}

.mh-information-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}

.mh-information-grid article{
    padding:27px;
    border:1px solid #e4eaf0;
    border-radius:18px;
    background:#fff;
    transition:.22s ease;
}

.mh-information-grid article:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 34px rgba(16,33,54,.07);
}

.mh-information-grid h3{
    margin:0;
    color:var(--mh-navy);
    font-size:19px;
}

.mh-information-grid p{
    margin:14px 0 0;
    color:#6d7d8e;
    font-size:12px;
    line-height:1.82;
}

.mh-information-grid strong{
    color:var(--mh-navy);
}


/* ==========================================================
   DESTINATION NETWORK
========================================================== */

.mh-destination-network{
    padding:96px 0;
    background:#fff;
}

.mh-network-columns{
    display:grid;
    grid-template-columns:1.2fr .9fr .9fr;
    gap:18px;
}

.mh-network-column{
    padding:24px;
    border:1px solid #e2e8ee;
    border-radius:18px;
    background:#fbfcfd;
}

.mh-network-title{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
}

.mh-network-title span{
    width:32px;
    height:32px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--mh-blue-soft);
    color:var(--mh-blue);
    font-size:10px;
    font-weight:900;
}

.mh-network-title h3{
    margin:0;
    font-size:17px;
}

.mh-network-column>div:last-child{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
}

.mh-network-column>div:last-child span{
    padding:7px 10px;
    border:1px solid #e4eaf0;
    border-radius:999px;
    background:#fff;
    color:#607185;
    font-size:10px;
    font-weight:700;
}


/* ==========================================================
   FAQ
========================================================== */

.mh-faq-section{
    padding:96px 0;
    background:#f4f7fa;
}

.mh-faq-layout{
    display:grid;
    grid-template-columns:minmax(0,.78fr) minmax(520px,1.22fr);
    gap:60px;
    align-items:start;
}

.mh-faq-intro{
    position:sticky;
    top:110px;
}

.mh-faq-intro p{
    margin:18px 0 24px;
    color:#6f7e8f;
    line-height:1.8;
}

.mh-faq-help{
    padding:15px;
    display:flex;
    align-items:center;
    gap:12px;
    border:1px solid #dde6ed;
    border-radius:14px;
    background:#fff;
}

.mh-faq-help>i{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:#eaf9ef;
    color:var(--mh-green-dark);
    font-size:20px;
}

.mh-faq-help small,
.mh-faq-help a{
    display:block;
}

.mh-faq-help small{
    color:#93a0ad;
    font-size:9px;
}

.mh-faq-help a{
    margin-top:2px;
    color:var(--mh-navy)!important;
    font-size:12px;
    font-weight:900;
}

.mh-faq-accordion{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.mh-faq-card{
    overflow:hidden;
    border:1px solid #dfe7ee;
    border-radius:15px;
    background:#fff;
}

.mh-faq-card>button{
    width:100%;
    min-height:70px;
    padding:16px 18px;
    border:0;
    display:grid;
    grid-template-columns:38px 1fr auto;
    gap:12px;
    align-items:center;
    background:transparent;
    text-align:left;
}

.mh-question-number{
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:#eef4f8;
    color:var(--mh-blue);
    font-size:9px;
    font-weight:900;
}

.mh-faq-card>button strong{
    color:var(--mh-navy);
    font-size:13px;
}

.mh-faq-card>button>i{
    color:#82909f;
    transition:.2s ease;
}

.mh-faq-card.is-open>button>i{
    transform:rotate(180deg);
    color:var(--mh-blue);
}

.mh-faq-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .28s ease;
}

.mh-faq-card.is-open .mh-faq-content{
    max-height:240px;
}

.mh-faq-content p{
    margin:0;
    padding:0 18px 18px 68px;
    color:#718093;
    font-size:12px;
    line-height:1.75;
}


/* ==========================================================
   FINAL CTA
========================================================== */

.mh-final-booking{
    padding:70px 0;
    background:
        radial-gradient(circle at 88% 35%,rgba(231,174,72,.18),transparent 30%),
        linear-gradient(110deg,#b9d7ee,#eaf3fb 55%,#f8edd9);
}

.mh-final-booking-inner{
    display:grid;
    grid-template-columns:70px 1fr auto;
    gap:24px;
    align-items:center;
}

.mh-final-icon{
    width:70px;
    height:70px;
    display:grid;
    place-items:center;
    border-radius:20px;
    background:#fff;
    color:var(--mh-blue);
    font-size:25px;
    box-shadow:0 14px 30px rgba(47,111,179,.12);
}

.mh-final-copy>span{
    color:var(--mh-blue);
    font-size:10px;
    font-weight:900;
    letter-spacing:1.2px;
}

.mh-final-copy h2{
    margin:5px 0 7px;
    font-family:"Playfair Display",Georgia,serif;
    font-size:clamp(32px,3.8vw,50px);
    line-height:1.05;
}

.mh-final-copy p{
    margin:0;
    color:#64768b;
    font-size:13px;
}

.mh-final-buttons{
    display:flex;
    gap:10px;
}

.mh-final-buttons a{
    min-height:48px;
    padding:0 18px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#fff!important;
    font-size:12px;
    font-weight:900;
    transition:.2s ease;
}

.mh-final-buttons a:first-child{
    background:var(--mh-green);
}

.mh-final-buttons a:first-child:hover{
    background:var(--mh-green-dark);
}

.mh-final-buttons a:last-child{
    background:var(--mh-navy);
}

.mh-final-buttons a:hover{
    transform:translateY(-2px);
}


/* ==========================================================
   FLOATING CONTACT
========================================================== */

.mh-floating-contact{
    position:fixed;
    right:18px;
    bottom:22px;
    z-index:80;
    display:flex;
    flex-direction:column;
    gap:9px;
}

.mh-floating-contact a{
    width:50px;
    height:50px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#fff!important;
    box-shadow:0 12px 28px rgba(13,31,52,.20);
    transition:.2s ease;
}

.mh-floating-contact a:hover{
    transform:translateY(-2px);
}

.mh-floating-contact a:first-child{
    background:var(--mh-blue);
}

.mh-floating-contact a:last-child{
    background:var(--mh-green);
    font-size:20px;
}


/* ==========================================================
   MOBILE BAR
========================================================== */

.mh-mobile-actionbar{
    display:none;
}


/* ==========================================================
   ASTRA / WORDPRESS PAGE CLEANUP
========================================================== */

.kings-motihari-page .site-content,
.kings-motihari-page .content-area,
.kings-motihari-page .site-main,
.kings-motihari-page .entry-content,
.kings-motihari-page .ast-container{
    width:100%!important;
    max-width:none!important;
    margin:0!important;
    padding:0!important;
}

.kings-motihari-page .entry-header,
.kings-motihari-page .entry-title,
.kings-motihari-page .ast-page-title-wrap,
.kings-motihari-page .page-header{
    display:none!important;
}

.kings-motihari-page .entry-content{
    margin:0!important;
}


/* ==========================================================
   RESPONSIVE — LARGE TABLET
========================================================== */

@media(max-width:1180px){

    .mh-hero-layout{
        gap:40px;
    }

    .mh-route-board{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .mh-occasion-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

}


/* ==========================================================
   RESPONSIVE — TABLET
========================================================== */

@media(max-width:980px){

    .mh-hero{
        padding-top:70px;
    }

    .mh-hero-layout,
    .mh-champaran-layout,
    .mh-confidence-layout,
    .mh-faq-layout{
        grid-template-columns:1fr;
    }

    .mh-hero-copy{
        text-align:center;
    }

    .mh-hero-lead{
        margin-left:auto;
        margin-right:auto;
    }

    .mh-hero-cta-row{
        justify-content:center;
    }

    .mh-journey-finder{
        width:min(100%,680px);
        margin:0 auto;
    }

    .mh-introduction-layout{
        grid-template-columns:1fr;
        gap:20px;
    }

    .mh-intro-side-label{
        padding-bottom:15px;
        border-right:0;
        border-bottom:1px solid var(--mh-border);
    }

    .mh-solutions-layout{
        grid-template-columns:1fr;
    }

    .mh-solution-large{
        grid-column:auto;
    }

    .mh-vehicle-slider-shell{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .mh-airport-options{
        grid-template-columns:1fr;
    }

    .mh-information-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .mh-network-columns{
        grid-template-columns:1fr 1fr;
    }

    .mh-network-column:first-child{
        grid-column:1/-1;
    }

    .mh-faq-intro{
        position:static;
        text-align:center;
    }

    .mh-faq-help{
        max-width:370px;
        margin:0 auto;
        text-align:left;
    }

    .mh-final-booking-inner{
        grid-template-columns:1fr;
        text-align:center;
    }

    .mh-final-icon{
        margin:0 auto;
    }

    .mh-final-buttons{
        justify-content:center;
    }

}


/* ==========================================================
   RESPONSIVE — MOBILE
========================================================== */

@media(max-width:720px){

    .mh-wrap{
        width:min(calc(100% - 24px),var(--mh-wrap));
    }

    .mh-hero{
        padding:58px 0 68px;
    }

    .mh-hero-copy h1{
        font-size:clamp(40px,11.4vw,58px);
        letter-spacing:-1.6px;
    }

    .mh-hero-lead{
        font-size:14px;
        line-height:1.75;
    }

    .mh-hero-cta-row{
        display:grid;
        grid-template-columns:1fr;
    }

    .mh-hero-cta-row a{
        width:100%;
    }

    .mh-hero-proof{
        grid-template-columns:1fr;
    }

    .mh-journey-finder{
        padding:22px 17px;
        border-radius:22px;
    }

    .mh-finder-top h2{
        font-size:25px;
    }

    .mh-booking-types{
        grid-template-columns:repeat(2,1fr);
    }

    .mh-form-row-two,
    .mh-form-row-three{
        grid-template-columns:1fr;
    }

    .mh-fact-ribbon-inner{
        grid-template-columns:repeat(2,1fr);
    }

    .mh-fact-ribbon-inner>div{
        min-height:85px;
    }

    .mh-fact-ribbon-inner>div:nth-child(2)::after{
        display:none;
    }

    .mh-fact-ribbon-inner>div:nth-child(-n+2){
        border-bottom:1px solid #e4eaf0;
    }

    .mh-introduction,
    .mh-travel-solutions,
    .mh-popular-routes,
    .mh-champaran-section,
    .mh-vehicle-section,
    .mh-occasion-section,
    .mh-confidence-section,
    .mh-information-section,
    .mh-destination-network,
    .mh-faq-section{
        padding:68px 0;
    }

    .mh-intro-columns{
        grid-template-columns:1fr;
        gap:16px;
    }

    .mh-heading-row{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .mh-solution-card,
    .mh-solution-large{
        grid-template-columns:1fr;
        min-height:auto;
    }

    .mh-route-board{
        grid-template-columns:1fr;
    }

    .mh-custom-route{
        flex-direction:column;
        align-items:flex-start;
    }

    .mh-champaran-visual{
        min-height:410px;
    }

    .mh-champaran-circle{
        width:285px;
        height:285px;
    }

    .mh-champaran-circle strong{
        font-size:32px;
    }

    .mh-champaran-badge{
        min-width:175px;
        padding:11px 12px;
    }

    .mh-champaran-badge-one{
        right:-5px;
    }

    .mh-champaran-badge-two{
        left:-5px;
    }

    .mh-champaran-points{
        grid-template-columns:1fr;
    }

    .mh-vehicle-slider-shell{
        grid-template-columns:1fr;
    }

    .mh-occasion-grid{
        grid-template-columns:1fr;
    }

    .mh-confidence-steps::before{
        left:19px;
    }

    .mh-airport-shell{
        padding:24px 17px;
    }

    .mh-airport-heading{
        align-items:flex-start;
    }

    .mh-information-grid{
        grid-template-columns:1fr;
    }

    .mh-network-columns{
        grid-template-columns:1fr;
    }

    .mh-network-column:first-child{
        grid-column:auto;
    }

    .mh-faq-card>button{
        grid-template-columns:34px 1fr auto;
        gap:9px;
        padding:14px;
    }

    .mh-faq-content p{
        padding:0 14px 16px 57px;
    }

    .mh-final-booking{
        padding:54px 0 80px;
    }

    .mh-final-buttons{
        width:100%;
        display:grid;
        grid-template-columns:1fr;
    }

    .mh-final-buttons a{
        width:100%;
    }

    .mh-floating-contact{
        display:none;
    }

    .mh-mobile-actionbar{
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        z-index:999;
        min-height:60px;
        display:grid;
        grid-template-columns:.8fr 1.2fr;
        box-shadow:0 -10px 30px rgba(13,31,52,.13);
    }

    .mh-mobile-actionbar a{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:8px;
        background:var(--mh-navy);
        color:#fff!important;
        font-size:12px;
        font-weight:900;
    }

    .mh-mobile-actionbar a:last-child{
        background:var(--mh-green);
    }

}


/* ==========================================================
   RESPONSIVE — SMALL MOBILE
========================================================== */

@media(max-width:430px){

    .mh-hero-copy h1{
        font-size:39px;
    }

    .mh-location-pill{
        font-size:10px;
    }

    .mh-finder-top h2{
        font-size:23px;
    }

    .mh-intro-main h2,
    .mh-heading-row h2,
    .mh-routes-title h2,
    .mh-champaran-copy h2,
    .mh-center-heading h2,
    .mh-confidence-copy h2,
    .mh-information-heading h2,
    .mh-faq-intro h2{
        font-size:34px;
    }

    .mh-champaran-circle{
        width:250px;
        height:250px;
    }

    .mh-champaran-circle strong{
        font-size:29px;
    }

    .mh-champaran-badge{
        min-width:150px;
    }

    .mh-airport-heading h2{
        font-size:27px;
    }

    .mh-final-copy h2{
        font-size:34px;
    }

}