/* =====================================================
   PART 1A : GLOBAL RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    overflow-x:hidden;
    font-family:Arial,Helvetica,sans-serif;
    background:#ffffff;
    color:#222222;
    font-size:16px;
    line-height:1.7;
    letter-spacing:.01em;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
}

/* =====================================================
   GLOBAL PREMIUM TYPOGRAPHY
   Shared typography foundation for the complete website.
===================================================== */

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6{
    letter-spacing:.005em;
}

p,
li{
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
}

button,
input,
select,
textarea{
    font:inherit;
}

button{
    cursor:pointer;
}

a:focus-visible,
button:focus-visible{
    outline:3px solid #d6ad63;
    outline-offset:3px;
}

/* Performance */

.featured-tours,
.home-vehicle-section,
.home-services,
.rajasthan-experiences,
.why-travel-with-us,
.trust-section,
.luxury-stays,
.travel-inspiration,
.quick-enquiry,
.journey-cta,
.site-footer{
    content-visibility:auto;
    contain-intrinsic-size:auto 900px;
}
/* =====================================================
   PART 1B : HEADER
===================================================== */

.main-header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:90px;
    padding:0 3%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    z-index:1000;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.25) 100%
    );

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

.logo-area{
    display:flex;
    align-items:center;
    flex-shrink:0;
    z-index:1001;
}

.logo-area a{
    display:block;
}

.logo-area img{
    width:240px;
    height:auto;
    display:block;
    object-fit:contain;
}

.desktop-nav{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:26px;
    min-width:0;
}

.desktop-nav a{
    position:relative;
    padding:32px 0;
    color:#ffffff;
    font-family:Arial,Helvetica,sans-serif;
    font-size:15px;
    letter-spacing:.4px;
    transition:.3s;
}

.desktop-nav a:hover{
    color:#d6ad63;
}

.desktop-nav a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:22px;
    width:0;
    height:2px;
    background:#d6ad63;
    transform:translateX(-50%);
    transition:.3s;
}

.desktop-nav a:hover::after{
    width:100%;
}

.header-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 20px;
    background:#b68b42;
    border:1px solid #b68b42;
    color:#ffffff;
    font-family:Arial,Helvetica,sans-serif;
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
    transition:.3s;
}

.header-btn:hover{
    background:transparent;
    border-color:#ffffff;
}

.mobile-header-actions{
    display:none;
    align-items:center;
    gap:4px;
    margin-left:auto;
}

.mobile-header-action{
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#ffffff;
}

.mobile-header-action:first-child{
    background:#0b6fd3;
}

.mobile-header-action:last-child{
    background:#25d366;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#ffffff;
    font-size:32px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
    position:absolute;
    top:75px;
    left:0;
    width:100%;
    padding:15px 20px;
    background:#161616;
    z-index:999;
}

.mobile-menu.active{
    display:block;
}
/* =====================================================
   PART 1C : MOBILE MENU + HEADER RESPONSIVE
===================================================== */

.mobile-menu>a{
    display:block;
    padding:14px 6px;
    border-bottom:1px solid rgba(255,255,255,.15);
    color:#ffffff;
    font-family:Arial,Helvetica,sans-serif;
    font-size:16px;
    transition:.3s;
}

.mobile-menu>a:hover{
    color:#d6ad63;
}

.mobile-menu-actions{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    margin-top:16px;
}

.mobile-menu-actions a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:12px;
    color:#ffffff;
    font-family:Arial,Helvetica,sans-serif;
    font-size:13px;
    font-weight:700;
    text-align:center;
}

.mobile-menu-call{
    background:#b68b42;
}

.mobile-menu-whatsapp{
    background:#237d49;
}

@media (max-width:1200px){

    .header-btn{
        display:none;
    }

}

@media (max-width:900px){

    .main-header{
        height:75px;
        padding:0 12px;
        gap:6px;
    }

    .logo-area img{
        width:260px;
        max-width:62vw;
        height:auto;
    }

    .desktop-nav,
    .header-btn{
        display:none;
    }

    .mobile-header-actions{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .mobile-menu{
        top:75px;
    }

}

@media (max-width:480px){

    .main-header{
        height:72px;
        padding:0 10px;
    }

    .logo-area img{
        width:200px;
        max-width:55vw;
    }

    .mobile-header-action{
        width:30px;
        height:30px;
        font-size:12px;
    }

    .menu-toggle{
        font-size:30px;
    }

    .mobile-menu{
        top:72px;
    }

}
/* =========================================
   MASTER CTA
========================================= */

.master-cta{

    padding:90px 5%;

    background:#111111;

    text-align:center;

    color:#ffffff;

}

.master-cta-container{

    width:100%;

    max-width:900px;

    margin:0 auto;

}

.master-cta-container>span{

    display:block;

    margin-bottom:16px;

    color:#b68b42;

    font-size:11px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.master-cta-container h2{

    margin-bottom:22px;

    color:#ffffff;

    font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;

    font-size:46px;

    font-weight:400;

    line-height:1.25;

}

.master-cta-container p{

    max-width:700px;

    margin:0 auto 35px;

    color:rgba(255,255,255,.82);

    font-size:15px;

    line-height:1.9;

}

.master-cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:16px;

    margin-bottom:28px;

}

.master-whatsapp-button,
.master-contact-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:220px;

    min-height:54px;

    padding:15px 28px;

    border-radius:8px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:.3s ease;

}

.master-whatsapp-button{
    background:#237D49;
    border:2px solid #237D49;
    color:#ffffff;
}

.master-whatsapp-button:hover{

    background:#1faa55;

    border-color:#1faa55;

}

.master-contact-button{

    background:#b68b42;

    border:2px solid #b68b42;

    color:#ffffff;

}

.master-contact-button:hover{

    background:#9d7537;

    border-color:#9d7537;

}

.master-cta-trust{

    margin:0;

    color:rgba(255,255,255,.72);

    font-size:13px;

    line-height:1.9;

}


/* =========================================
   MASTER CTA RESPONSIVE
========================================= */

@media (max-width:900px){

    .master-cta{
        padding:80px 20px;
    }

    .master-cta-container h2{
        font-size:40px;
    }

}

@media (max-width:650px){

    .master-cta{

        padding:70px 20px;

    }

    .master-cta-container h2{

        font-size:32px;

    }

    .master-cta-container p{

        font-size:14px;

    }

    .master-cta-buttons{

        flex-direction:column;

    }

    .master-whatsapp-button,
    .master-contact-button{

        width:100%;

        max-width:340px;

    }

    .master-cta-trust{

        font-size:12px;

        line-height:1.8;

    }

}
@media (max-width:480px){

    .master-cta-container h2{
        font-size:28px;
    }

}
/* =========================================
   MASTER FOOTER
========================================= */

.main-footer{

    padding:70px 5% 30px;

    background:#111111;

    color:#ffffff;

}

.footer-container{

    width:100%;

    max-width:1200px;

    margin:0 auto;

    display:grid;

    grid-template-columns:1.4fr 1fr 1fr 1fr;

    gap:50px;

    align-items:flex-start;

}

.footer-brand{

    text-align:left;

}

.footer-logo{

    display:inline-block;

    margin-bottom:16px;

    color:#ffffff;

    font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;

    font-size:32px;

    font-weight:400;

    transition:.3s ease;

}

.footer-logo:hover{

    color:#d6ad63;

}

.footer-brand p{

    max-width:320px;

    color:rgba(255,255,255,.70);

    font-size:14px;

    line-height:1.9;

}

.footer-column{

    text-align:left;

    padding-left:12px;

}

.footer-column h3{

    margin-bottom:18px;

    color:#d6ad63;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.footer-column ul{

    list-style:none;

}

.footer-column li{

    display:flex;

    align-items:flex-start;

    gap:10px;

    margin-bottom:14px;

    color:rgba(255,255,255,.75);

    font-size:14px;

    line-height:1.8;

}

.footer-column li i{

    width:18px;

    color:#d6ad63;

    margin-top:4px;

    flex-shrink:0;

}

.footer-column a{

    color:rgba(255,255,255,.75);

    transition:.3s ease;

}

.footer-column a:hover{

    color:#d6ad63;

}


/* =========================================
   FOOTER BOTTOM / SOCIAL
========================================= */

.footer-bottom{

    margin-top:55px;

    padding-top:25px;

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

    text-align:center;

}

.footer-social{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-bottom:18px;

}

.footer-social a{

    display:flex;

    align-items:center;

    justify-content:center;

    width:46px;

    height:46px;

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

    border-radius:50%;

    color:#ffffff;

    font-size:18px;

    transition:.3s ease;

}

.footer-social a:hover{

    background:#b68b42;

    border-color:#b68b42;

    color:#ffffff;

    transform:translateY(-2px);

}

.footer-bottom p{

    color:rgba(255,255,255,.55);

    font-size:13px;

    line-height:1.8;

}


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

@media (max-width:900px){

    .footer-container{

        grid-template-columns:1fr 1fr;

        gap:40px;

    }

}

@media (max-width:768px){

    .main-footer{

        padding:60px 20px 25px;

    }

    .footer-container{

        grid-template-columns:1fr;

        gap:35px;

    }

    .footer-brand,
    .footer-column{

        text-align:left;

        padding-left:0;

    }

    .footer-logo{

        font-size:30px;

    }

}

@media (max-width:480px){

    .footer-logo{

        font-size:28px;

    }

    .footer-brand p,
    .footer-column li{

        font-size:13px;

    }

    .footer-social{

        gap:14px;

    }

    .footer-social a{

        width:40px;

        height:40px;

        font-size:16px;

    }

}


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

.main-footer a:focus-visible{

    outline:2px solid #b68b42;

    outline-offset:3px;

}
/* =====================================================
   PART 5B : FINAL RESPONSIVE + PERFORMANCE + CLEANUP
===================================================== */

/* ---------- Utility ---------- */

.inline-icon{
    display:inline-block;
    width:1.1em;
    text-align:center;
}

/* ---------- Performance ---------- */

.featured-tours,
.home-vehicle-section,
.home-services,
.rajasthan-experiences,
.why-travel-with-us,
.trust-section,
.luxury-stays,
.travel-inspiration,
.quick-enquiry,
.journey-cta,
.site-footer{
    content-visibility:auto;
    contain-intrinsic-size:auto 900px;
}

/* ---------- Desktop ---------- */

@media (max-width:1200px){

    .section-heading h2,
    .experiences-heading h2,
    .why-us-heading h2,
    .luxury-stays-heading h2,
    .inspiration-heading h2{
        font-size:40px;
    }

}

/* ---------- Tablet ---------- */

@media (max-width:900px){

    .section-heading,
    .home-vehicle-heading,
    .home-services-heading,
    .experiences-heading,
    .why-us-heading,
    .luxury-stays-heading,
    .inspiration-heading{
        margin-bottom:40px;
    }

}

/* ---------- Mobile ---------- */

@media (max-width:600px){

    body{
        overflow-x:hidden;
    }

    .section-heading h2,
    .home-vehicle-heading h2,
    .home-services-heading h2,
    .experiences-heading h2,
    .why-us-heading h2,
    .trust-heading h2,
    .luxury-stays-heading h2,
    .inspiration-heading h2,
    .quick-enquiry h2,
    .journey-cta-content h2{
        font-size:30px;
        line-height:1.25;
    }

    .section-heading p,
    .home-vehicle-heading p,
    .home-services-heading p,
    .experiences-heading p,
    .why-us-heading p,
    .inspiration-heading p,
    .quick-enquiry p{
        font-size:14px;
        line-height:1.8;
    }

}

/* ---------- Small Mobile ---------- */

@media (max-width:380px){

    .logo-area img{
        width:175px;
    }

    .journey-cta-content h2{
        font-size:28px;
    }

}

/* ---------- Accessibility ---------- */

@media (prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation:none !important;
        transition:none !important;
    }

}

/* =====================================================
   PREMIUM TYPOGRAPHY — FINAL SYSTEM
   Step 1 complete: headings + supporting content
   This section changes typography only. Layout, colors,
   links, spacing architecture and component structure are untouched.
===================================================== */

:root{
    --font-heading:"Cormorant Garamond",Georgia,"Times New Roman",serif;
    --font-body:Georgia,"Times New Roman",serif;
}

body{
    font-family:var(--font-body) !important;
    font-size:16px !important;
    line-height:1.75 !important;
    letter-spacing:.008em !important;
    font-weight:400;
}

/* Main heading hierarchy */
body h1,
body h2,
body h3,
body h4{
    font-family:var(--font-heading) !important;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    margin-top:0;
}

body h1{
    font-size:clamp(34px,5vw,60px) !important;
    line-height:1.08 !important;
    font-weight:600 !important;
    letter-spacing:-.01em !important;
}

body h2{
    font-size:clamp(29px,4vw,46px) !important;
    line-height:1.14 !important;
    font-weight:600 !important;
    letter-spacing:-.005em !important;
}

body h3{
    font-size:clamp(22px,2.6vw,32px) !important;
    line-height:1.2 !important;
    font-weight:600 !important;
    letter-spacing:0 !important;
}

body h4{
    font-size:clamp(19px,2vw,25px) !important;
    line-height:1.28 !important;
    font-weight:600 !important;
    letter-spacing:.005em !important;
}

/* Supporting content typography — page content only.
   Master Header/CTA/Footer micro-typography keeps its
   component-specific sizing so the shared UI is preserved. */
section p,
article p,
main p,
section li,
article li,
main li{
    font-family:var(--font-body) !important;
    font-weight:400 !important;
    letter-spacing:.008em !important;
}

section p,
article p,
main p{
    font-size:16px !important;
    line-height:1.8 !important;
}

section li,
article li,
main li{
    font-size:16px !important;
    line-height:1.75 !important;
}

/* Hero / intro supporting copy remains slightly larger for hierarchy. */
.hero p,
.hero-content p,
.page-hero p,
.page-hero-content p,
.section-intro p,
.section-heading p,
.intro p{
    font-family:var(--font-body) !important;
    font-size:17px !important;
    line-height:1.8 !important;
    letter-spacing:.008em !important;
}

/* Small editorial labels retain their compact role while using the
   premium body family where they belong to page content. */
section small,
article small,
main small{
    font-family:var(--font-body) !important;
    line-height:1.6 !important;
    letter-spacing:.02em !important;
}

/* Preserve the established Master CTA/Footer hierarchy while giving
   their text the same premium heading/body families. */
.master-cta-container h2{
    font-family:var(--font-heading) !important;
    font-size:46px !important;
    line-height:1.25 !important;
    font-weight:400 !important;
    letter-spacing:.005em !important;
}

.master-cta-container p{
    font-family:var(--font-body) !important;
    font-size:15px !important;
    line-height:1.9 !important;
    letter-spacing:.008em !important;
}

.footer-logo{
    font-family:var(--font-heading) !important;
}

.footer-column h3{
    font-family:var(--font-body) !important;
    font-size:13px !important;
    line-height:1.4 !important;
    letter-spacing:2px !important;
}

.footer-brand p,
.footer-bottom p{
    font-family:var(--font-body) !important;
}

/* Navigation, CTA buttons, forms and icon controls remain controlled by
   their existing master/component typography. */

@media (max-width:600px){
    body{
        font-size:15.5px !important;
        line-height:1.72 !important;
    }

    section p,
    article p,
    main p{
        font-size:15.5px !important;
        line-height:1.78 !important;
    }

    section li,
    article li,
    main li{
        font-size:15.5px !important;
        line-height:1.72 !important;
    }

    .hero p,
    .hero-content p,
    .page-hero p,
    .page-hero-content p,
    .section-intro p,
    .section-heading p,
    .intro p{
        font-size:16px !important;
        line-height:1.78 !important;
    }

    .master-cta-container h2{
        font-size:32px !important;
        line-height:1.2 !important;
    }
}

/* =====================================================
   STEPS 6 + 7 — MASTER FOOTER + GLOBAL CONSISTENCY
   Final visual refinement only. Shared components remain
   centrally controlled from common.css.
===================================================== */

/* Master Footer — premium refinement without changing its grid structure */
.main-footer{
    padding-top:78px;
    padding-bottom:32px;
    border-top:1px solid rgba(214,173,99,.10);
}

.footer-container{
    gap:54px;
}

.footer-brand p,
.footer-column li{
    line-height:1.85;
}

.footer-column h3{
    margin-bottom:20px;
    letter-spacing:2.2px;
}

.footer-column li{
    margin-bottom:13px;
}

.footer-column a{
    text-underline-offset:3px;
}

.footer-bottom{
    margin-top:58px;
    padding-top:28px;
}

.footer-social{
    gap:16px;
    margin-bottom:20px;
}

.footer-social a{
    width:44px;
    height:44px;
}

.footer-bottom p{
    line-height:1.75;
}

/* Global visual consistency — does not alter HTML structure or link targets */
button,
a,
input,
textarea,
select{
    -webkit-tap-highlight-color:transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
    outline:2px solid #b68b42;
    outline-offset:3px;
}

/* Shared content rhythm for existing sections; page-specific rules remain authoritative. */
section > .section-heading,
section > .experiences-heading,
section > .why-us-heading,
section > .luxury-stays-heading,
section > .inspiration-heading,
section > .home-vehicle-heading,
section > .home-services-heading{
    text-wrap:balance;
}

/* Consistent card interaction, limited to existing card systems. */
.featured-tour-card,
.experience-card,
.why-us-card,
.luxury-stay-card,
.vehicle-card,
.service-card{
    backface-visibility:hidden;
}

@media (max-width:768px){
    .main-footer{
        padding-top:64px;
    }

    .footer-bottom{
        margin-top:46px;
        padding-top:24px;
    }
}

/* =====================================================
   9.8 PREMIUM POLISH — FINAL PRODUCTION REFINEMENT
   Visual/interaction refinement only. No HTML structure,
   link targets, content architecture or shared-component
   duplication is introduced here.
===================================================== */

:root{
    --luxury-gold:#b68b42;
    --luxury-gold-light:#d6ad63;
    --luxury-ink:#222222;
    --luxury-muted:#666666;
    --luxury-border:#e7dfd4;
    --luxury-surface:#f7f5f0;
}

/* Cleaner reading measure without changing the page grid. */
main p{
    text-wrap:pretty;
}

/* Make anchor jumps land below the transparent/overlaid header. */
[id]{
    scroll-margin-top:105px;
}

/* Consistent premium interaction language for existing controls. */
.header-btn,
.master-whatsapp-button,
.master-contact-button,
.tours-main-cta a,
.luxury-stays-explore,
.contact-form-submit{
    border-radius:6px;
}

.header-btn,
.master-whatsapp-button,
.master-contact-button,
.tours-main-cta a,
.luxury-stays-explore,
.contact-form-submit{
    box-shadow:0 5px 16px rgba(0,0,0,.08);
}

.header-btn:hover,
.master-whatsapp-button:hover,
.master-contact-button:hover,
.tours-main-cta a:hover,
.luxury-stays-explore:hover,
.contact-form-submit:hover{
    box-shadow:0 8px 22px rgba(0,0,0,.12);
}

/* Form controls feel deliberate on touch devices as well as desktop. */
input,
select,
textarea{
    border-radius:5px;
    transition:border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

input:focus,
select:focus,
textarea:focus{
    box-shadow:0 0 0 3px rgba(182,139,66,.13);
}

/* Existing image cards get a restrained premium edge without changing size. */
.featured-tour-card,
.experience-card,
.why-us-card,
.luxury-stay-card,
.vehicle-card,
.service-card,
.tour-item,
.contact-card,
.contact-detail-item{
    border-color:var(--luxury-border);
}

/* Keep interactive media from feeling abrupt. */
.featured-tour-card img,
.experience-card img,
.vehicle-card img,
.tour-item img{
    backface-visibility:hidden;
}

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

@media (max-width:600px){
    [id]{
        scroll-margin-top:84px;
    }
}


/* =====================================================
   GLOBAL IMAGE LIGHTBOX
===================================================== */
.experience-lightbox{
    position:fixed;
    inset:0;
    z-index:10000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:28px;
    background:rgba(12,10,8,.94);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .22s ease,visibility .22s ease;
}

.experience-lightbox.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.experience-lightbox img{
    display:block;
    width:auto;
    max-width:min(94vw,1400px);
    max-height:90vh;
    object-fit:contain;
    border:1px solid rgba(214,173,99,.55);
    box-shadow:0 24px 70px rgba(0,0,0,.55);
    background:#111;
}

.experience-lightbox img.zoomed{
    max-width:none;
    max-height:none;
    width:auto;
    height:auto;
    transform:scale(1.75);
    cursor:zoom-out;
    transition:transform .25s ease;
}

.experience-lightbox img:not(.zoomed){
    cursor:zoom-in;
    transition:transform .25s ease;
}

.experience-lightbox-hint{
    position:absolute;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    padding:7px 12px;
    border-radius:999px;
    background:rgba(0,0,0,.55);
    color:#fff;
    font:500 12px/1.2 Arial,Helvetica,sans-serif;
    letter-spacing:.3px;
    pointer-events:none;
}

@media (max-width:600px){
    .experience-lightbox img.zoomed{
        transform:scale(1.55);
    }
    .experience-lightbox-hint{
        bottom:12px;
        font-size:11px;
    }
}

.experience-lightbox-close{
    position:absolute;
    top:18px;
    right:20px;
    width:46px;
    height:46px;
    border:1px solid rgba(214,173,99,.65);
    border-radius:50%;
    background:rgba(0,0,0,.55);
    color:#ffffff;
    font:400 30px/1 Arial,Helvetica,sans-serif;
    cursor:pointer;
}

.experience-lightbox-close:hover,
.experience-lightbox-close:focus-visible{
    background:#b68b42;
    border-color:#b68b42;
}

body.lightbox-open{
    overflow:hidden;
}

@media (max-width:600px){
    .experience-lightbox{
        padding:18px;
    }
    .experience-lightbox img{
        max-width:96vw;
        max-height:84vh;
    }
    .experience-lightbox-close{
        top:10px;
        right:10px;
        width:42px;
        height:42px;
        font-size:27px;
    }
}

.footer-social-disabled{
    display:flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:50%;
    color:rgba(255,255,255,.72);
    opacity:.72;
}

/* =====================================================
   FINAL CORRECTIONS — HOMEPAGE CTA / MASTER CTA / FOOTER
   Production consistency pass for the V17 base.
===================================================== */

/* Homepage card CTAs — match the established VIEW TOUR treatment. */
.vehicle-card-cta,
.experience-cta{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    width:100% !important;
    min-height:42px !important;
    margin-top:6px !important;
    padding:10px 16px !important;
    box-sizing:border-box !important;
    color:#b68b42 !important;
    font-family:Arial,Helvetica,sans-serif !important;
    font-size:12px !important;
    font-weight:700 !important;
    letter-spacing:1.5px !important;
    line-height:1.3 !important;
    text-transform:uppercase !important;
    border:1px solid rgba(182,139,66,.55) !important;
    border-radius:5px !important;
    text-decoration:none !important;
    transition:.3s ease !important;
}

.vehicle-card-cta:hover,
.experience-item:hover .experience-cta{
    color:#8c682d !important;
    border-color:#b68b42 !important;
    background:rgba(182,139,66,.04) !important;
}

.vehicle-card-cta > span,
.experience-cta > span{
    margin-left:auto !important;
    transition:transform .25s ease !important;
}

.vehicle-card-cta:hover > span,
.experience-item:hover .experience-cta > span{
    transform:translateX(3px) !important;
}

/* Master CTA — always a full-width section, never a card/container. */
.master-cta{
    display:block !important;
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    border:0 !important;
    border-radius:0 !important;
    box-shadow:none !important;
}

.master-cta-container{
    width:100% !important;
    max-width:900px !important;
    margin:0 auto !important;
    border:0 !important;
    border-radius:0 !important;
    box-shadow:none !important;
    background:transparent !important;
}

/* Footer legal links — master homepage-style treatment on every page. */
.footer-legal{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex-wrap:wrap !important;
    gap:5px 7px !important;
    margin-top:14px !important;
    padding:0 8px !important;
    text-align:center !important;
}

.footer-legal a{
    color:rgba(255,255,255,.78) !important;
    font-family:Georgia,"Times New Roman",serif !important;
    font-size:13px !important;
    font-weight:400 !important;
    line-height:1.8 !important;
    letter-spacing:0 !important;
    text-decoration:none !important;
}

.footer-legal a:hover{
    color:#d6ad63 !important;
}

.footer-legal-separator{
    color:rgba(255,255,255,.48) !important;
    font-family:Georgia,"Times New Roman",serif !important;
    font-size:13px !important;
    font-weight:400 !important;
    line-height:1.8 !important;
}

@media (max-width:600px){
    .footer-legal{
        gap:4px 6px !important;
        padding:0 8px !important;
    }

    .footer-legal a,
    .footer-legal-separator{
        font-size:13px !important;
    }
}

/* =====================================================
   V26 — TOUR MENU DROPDOWN
===================================================== */
.desktop-nav .nav-dropdown{
    position:relative;
    display:block;
}
.desktop-nav .nav-dropdown > summary{
    list-style:none;
    cursor:pointer;
    color:inherit;
    font:inherit;
    padding:0;
    white-space:nowrap;
}
.desktop-nav .nav-dropdown > summary::-webkit-details-marker{display:none;}
.desktop-nav .nav-dropdown > summary::after{
    content:'⌄';
    display:inline-block;
    margin-left:5px;
    font-size:12px;
    transition:transform .25s ease;
}
.desktop-nav .nav-dropdown[open] > summary::after{transform:rotate(180deg);}
.nav-dropdown-menu{
    position:absolute;
    top:calc(100% + 16px);
    left:50%;
    min-width:210px;
    padding:8px;
    transform:translateX(-50%);
    background:#151515;
    border:1px solid rgba(214,173,99,.28);
    box-shadow:0 16px 34px rgba(0,0,0,.22);
    border-radius:7px;
    z-index:1200;
}
.nav-dropdown-menu a{
    display:block;
    padding:11px 13px;
    color:#fff;
    font-family:Arial,Helvetica,sans-serif;
    font-size:13px;
    text-decoration:none;
    border-radius:4px;
}
.nav-dropdown-menu a:hover{background:rgba(214,173,99,.12);color:#d6ad63;}
.mobile-nav-dropdown{display:block;border-bottom:1px solid rgba(255,255,255,.15);}
.mobile-nav-dropdown > summary{
    list-style:none;
    padding:14px 6px;
    color:#fff;
    font-family:Arial,Helvetica,sans-serif;
    font-size:16px;
    cursor:pointer;
}
.mobile-nav-dropdown > summary::-webkit-details-marker{display:none;}
.mobile-nav-dropdown > summary::after{content:'⌄';float:right;color:#d6ad63;}
.mobile-nav-submenu{padding:0 0 7px 14px;}
.mobile-nav-submenu a{
    display:block;
    padding:10px 6px;
    color:rgba(255,255,255,.82);
    font-family:Arial,Helvetica,sans-serif;
    font-size:14px;
    text-decoration:none;
}
.mobile-nav-submenu a:hover{color:#d6ad63;}
@media(max-width:900px){
    .desktop-nav .nav-dropdown{display:none;}
}

/* =====================================================
   FINAL MOBILE CARD WIDTH CONSISTENCY — V3
   Keeps card heights/designs unchanged while giving the
   site's primary card systems a consistent near-edge width.
   Applied only on mobile; desktop layouts remain untouched.
===================================================== */
@media (max-width:760px){
    /* Primary tour / short-tour / one-day carousels */
    .tour-category-section,
    .featured-tours,
    .tour-carousel,
    .experience-carousel,
    .inspiration-carousel{
        padding-left:8px !important;
        padding-right:8px !important;
    }

    .tour-carousel .tour-item,
    .experience-carousel-track .experience-item,
    .inspiration-carousel-track .inspiration-item{
        flex-basis:100% !important;
        width:100% !important;
        max-width:none !important;
    }

    /* Main tour listing cards */
    .tour-grid{
        width:100% !important;
        max-width:none !important;
    }

    /* Experiences */
    .experiences-list{
        padding-left:8px !important;
        padding-right:8px !important;
    }

    .experiences-grid,
    .experience-card{
        width:100% !important;
        max-width:none !important;
    }

    /* Gallery cards */
    .travel-gallery{
        padding-left:8px !important;
        padding-right:8px !important;
    }

    .travel-gallery-container,
    .travel-gallery-grid,
    .gallery-item{
        width:100% !important;
        max-width:none !important;
    }

    /* Blog / vlog cards */
    .blog-articles{
        padding-left:8px !important;
        padding-right:8px !important;
    }

    .blog-grid,
    .blog-card{
        width:100% !important;
        max-width:none !important;
    }

    /* Hotel feature cards */
    .hotels-stays{
        padding-left:8px !important;
        padding-right:8px !important;
    }

    .hotel-feature{
        width:100% !important;
        max-width:none !important;
    }

    /* Homepage vehicle / service / experience / stay / inspiration cards */
    .home-vehicle-section,
    .home-services,
    .rajasthan-experiences,
    .luxury-stays,
    .travel-inspiration,
    .why-travel-with-us{
        padding-left:8px !important;
        padding-right:8px !important;
    }

    .home-vehicle-grid,
    .home-services-grid,
    .experiences-grid,
    .inspiration-grid{
        width:100% !important;
        max-width:none !important;
    }

    .home-vehicle-card,
    .home-service-card,
    .experience-item,
    .inspiration-item,
    .luxury-stays-feature{
        max-width:none !important;
        width:100% !important;
    }

    /* Keep the existing compact About-page two-column card design,
       while making its grid use the same near-edge page width. */
    .about-approach,
    .about-journeys{
        padding-left:8px !important;
        padding-right:8px !important;
    }

    .about-approach-grid,
    .about-journeys-grid{
        width:100% !important;
        max-width:none !important;
    }

    /* Tour-detail discovery/stay cards */
    .desert-discovery-grid,
    .tour-highlights-grid,
    .tour-stays-grid,
    .tour-inclusions-grid{
        width:100% !important;
        max-width:none !important;
    }
}

@media (max-width:380px){
    /* Preserve a tiny safety margin on very narrow phones. */
    .tour-category-section,
    .featured-tours,
    .experiences-list,
    .travel-gallery,
    .blog-articles,
    .hotels-stays,
    .home-vehicle-section,
    .home-services,
    .rajasthan-experiences,
    .luxury-stays,
    .travel-inspiration,
    .why-travel-with-us,
    .about-approach,
    .about-journeys{
        padding-left:6px !important;
        padding-right:6px !important;
    }
}
