/* RAJASTHAN AURA TOURS — MERGED BLOG CSS */
/* blog-page.css + blog-detail.css */

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:#ffffff;color:#222222;font-family:Arial,Helvetica,sans-serif;line-height:1.7}
a{color:inherit;text-decoration:none}
img{display:block;width:100%}

/* =========================================
   BLOG PAGE SPECIFIC STYLES
========================================= */

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

.blog-hero{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:380px;
    padding:90px 20px 45px;
    text-align:center;
    overflow:hidden;

    background:
    linear-gradient(rgba(20,20,20,.50),rgba(20,20,20,.50)),
    url("../../images/blog/rajasthan-guide.webp") center center/cover no-repeat;
}

.blog-hero-content{
    width:100%;
    max-width:900px;
    margin:0 auto;
    padding:0 20px;
}

.blog-hero-content span{
    display:block;
    margin-bottom:14px;
    color:#f3d28b;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    text-shadow:0 2px 6px rgba(0,0,0,.85);
}

.blog-hero-content h1{
    max-width:700px;
    margin:0 auto 18px;
    color:#ffffff;
        font-size:clamp(34px,4vw,48px);
    font-weight:400;
    line-height:1.18;
    text-shadow:0 3px 8px rgba(0,0,0,.55);
}

.blog-hero-content p{
    max-width:620px;
    margin:0 auto;
    color:rgba(255,255,255,.95);
    font-size:17px;
    line-height:1.7;
    text-shadow:0 2px 6px rgba(0,0,0,.6);
}


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

@media (max-width:650px){

.blog-hero{
    min-height:340px;
    padding:82px 18px 40px;
}

.blog-hero-content{
    max-width:100%;
    padding:0 10px;
}

.blog-hero-content span{
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:10px;
    color:#ffd98a;
}

.blog-hero-content h1{
    max-width:330px;
    margin:0 auto 14px;
    font-size:26px;
    line-height:1.22;
}

.blog-hero-content p{
    max-width:320px;
    font-size:15px;
    line-height:1.65;
}

}

@media (max-width:380px){

.blog-hero{
    min-height:310px;
    padding:78px 16px 35px;
}

.blog-hero-content h1{
    font-size:23px;
    line-height:1.2;
}

.blog-hero-content p{
    font-size:14px;
}

}

/* =========================================
   BLOG INTRO
========================================= */

.blog-intro{
    padding:85px 20px 80px;
    background:#ffffff;
    text-align:center;
}

.blog-intro .blog-container{
    width:100%;
    max-width:820px;
    margin:0 auto;
}

.blog-section-label{
    display:block;
    margin-bottom:16px;
    color:#b68b42;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.blog-intro h2{
    margin:0 0 22px;
    color:#222222;
        font-size:clamp(36px,5vw,52px);
    font-weight:400;
    line-height:1.22;
}

.blog-intro p{
    max-width:700px;
    margin:0 auto;
    color:#666666;
    font-size:17px;
    line-height:1.85;
}

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

@media (max-width:650px){

.blog-intro{
    padding:70px 20px;
}

.blog-section-label{
    font-size:10px;
    letter-spacing:2px;
    margin-bottom:14px;
}

.blog-intro h2{
    font-size:36px;
    margin-bottom:18px;
    line-height:1.2;
}

.blog-intro p{
    max-width:320px;
    font-size:15px;
    line-height:1.75;
}

}

@media (max-width:380px){

.blog-intro{
    padding:60px 16px;
}

.blog-intro h2{
    font-size:32px;
}

.blog-intro p{
    font-size:14px;
}

}
/* =========================================
   BLOG ARTICLES
========================================= */

.blog-articles{
    padding:85px 20px;
    background:#f7f5f1;
}

.blog-grid{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.blog-card{
    display:flex;
    flex-direction:column;
    background:#ffffff;
    border:1px solid #e8e3db;
    overflow:hidden;
    transition:.35s ease;
}

.blog-card:hover{
    transform:translateY(-8px);
    border-color:#b68b42;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.blog-card-image{
    height:250px;
    overflow:hidden;
}

.blog-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s ease;
}

.blog-card:hover .blog-card-image img{
    transform:scale(1.05);
}

.blog-card-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.blog-category{
    display:block;
    margin-bottom:14px;
    color:#b68b42;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.blog-card-content h2{
    margin:0 0 16px;
    color:#222222;
        font-size:28px;
    font-weight:400;
    line-height:1.3;
}

.blog-card-content p{
    margin:0 0 24px;
    color:#666666;
    font-size:15px;
    line-height:1.8;
}

.blog-read-link{
    margin-top:auto;
    display:inline-block;
    padding:13px 22px;
    color:#ffffff;
    background:linear-gradient(135deg,#a77838,#d6ad63);
    border:1px solid #b68b42;
    border-radius:6px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    text-decoration:none;
    box-shadow:0 7px 18px rgba(182,139,66,.16);
    transition:.3s ease;
}

.blog-read-link:hover,
.blog-read-link:focus-visible{
    color:#ffffff;
    background:linear-gradient(135deg,#8f652f,#b68b42);
    border-color:#8f652f;
    box-shadow:0 9px 22px rgba(182,139,66,.22);
}

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

@media (max-width:650px){

.blog-articles{
    padding:70px 20px;
}

.blog-grid{
    grid-template-columns:1fr;
    gap:22px;
}

.blog-card-image{
    height:220px;
}

.blog-card-content{
    padding:24px;
}

.blog-card-content h2{
    font-size:24px;
}

.blog-card-content p{
    font-size:14px;
}

}

/* ===== SMALL MOBILE ===== */

@media (max-width:380px){

.blog-articles{
    padding:60px 16px;
}

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

.blog-card-content{
    padding:20px;
}

.blog-card-content h2{
    font-size:22px;
}

.blog-card-content p{
    font-size:13px;
}

}

/* =========================================
   BLOG MASTER CTA
========================================= */

.contact-cta{
    padding:100px 20px;
    background:#f5efe8;
    text-align:center;
}

.contact-cta-content{
    width:100%;
    max-width:820px;
    margin:0 auto;
}

.contact-cta-content span{
    display:block;
    margin-bottom:18px;
    color:#a56a3a;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.contact-cta-content h2{
    margin:0 0 28px;
    color:#2d2723;
        font-size:clamp(40px,5vw,56px);
    font-weight:400;
    line-height:1.2;
}

.contact-cta-content p{
    max-width:700px;
    margin:0 auto 38px;
    color:#625951;
    font-size:17px;
    line-height:1.9;
}

.contact-cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
    margin-top:42px;
}

.contact-cta-whatsapp,
.contact-cta-enquiry{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:250px;
    min-height:56px;
    padding:16px 30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s ease;
}

.contact-cta-whatsapp{
    background:#25d366;
    border:2px solid #25d366;
    color:#ffffff;
}

.contact-cta-enquiry{
    background:#b68b42;
    border:2px solid #b68b42;
    color:#ffffff;
}

.contact-cta-whatsapp:hover{
    background:#1ea952;
    border-color:#1ea952;
    transform:translateY(-3px);
}

.contact-cta-enquiry:hover{
    background:#9a6d2e;
    border-color:#9a6d2e;
    transform:translateY(-3px);
}

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

@media (max-width:650px){

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

.contact-cta-content h2{
    font-size:38px;
}

.contact-cta-content p{
    font-size:15px;
}

.contact-cta-buttons{
    flex-direction:column;
    gap:14px;
}

.contact-cta-whatsapp,
.contact-cta-enquiry{
    width:100%;
    max-width:340px;
    min-width:0;
}

}

/* ===== SMALL MOBILE ===== */

@media (max-width:380px){

.contact-cta{
    padding:70px 16px;
}

.contact-cta-content h2{
    font-size:34px;
}

.contact-cta-content p{
    font-size:14px;
}

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

.contact-footer{
    padding:80px 20px 30px;
    background:#1f1b18;
    color:#ffffff;
}

.contact-footer-container{
    max-width:1180px;
    margin:0 auto;
}

.contact-footer-brand{
    text-align:center;
    margin-bottom:55px;
}

.contact-footer-brand a{
        font-size:54px;
    color:#ffffff;
}

.contact-footer-brand p{
    margin-top:12px;
    font-size:17px;
    color:rgba(255,255,255,.65);
}

.contact-footer-grid{
    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:80px;
    max-width:900px;
    margin:0 auto;
}

.contact-footer-contact h4,
.contact-footer-links h4{
    margin-bottom:20px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#d4a476;
}

.contact-footer-contact{
    padding-left:18px;
}

.contact-footer-contact a{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    color:rgba(255,255,255,.78);
    line-height:1.8;
    transition:.3s;
}

.contact-footer-contact a:hover{
    color:#d4a476;
    transform:translateX(4px);
}

.contact-footer-contact i{
    width:18px;
    margin-top:3px;
    color:#d4a476;
    flex-shrink:0;
}

.contact-footer-links{
    padding-left:10px;
}

.contact-footer-links a{
    display:block;
    margin-bottom:14px;
    color:rgba(255,255,255,.78);
    transition:.3s;
}

.contact-footer-links a:hover{
    color:#d4a476;
    transform:translateX(4px);
}

.contact-footer-social{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-top:25px;
}

.contact-footer-social a{
    color:#ffffff;
    font-size:34px;
    transition:.3s;
}

.contact-footer-social a:hover{
    color:#d4a476;
    transform:translateY(-2px);
}

.contact-footer-bottom{
    margin-top:55px;
    padding-top:26px;
    border-top:1px solid rgba(255,255,255,.12);
    text-align:center;
}

.contact-footer-bottom p{
    margin-bottom:8px;
    font-size:13px;
    color:rgba(255,255,255,.55);
}

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

@media (max-width:650px){

.contact-footer{
    padding:60px 20px 25px;
}

.contact-footer-brand{
    margin-bottom:40px;
    text-align:center;
}

.contact-footer-brand a{
    font-size:34px;
    line-height:1.2;
}

.contact-footer-brand p{
    margin-top:12px;
    font-size:14px;
    line-height:1.8;
}

.contact-footer-grid{
    grid-template-columns:1fr;
    gap:40px;
    max-width:100%;
}

.contact-footer-contact,
.contact-footer-links{
    padding-left:18px;
}

.contact-footer-contact h4,
.contact-footer-links h4{
    margin-bottom:18px;
}

.contact-footer-contact a{
    justify-content:flex-start;
    text-align:left;
}

.contact-footer-links a{
    text-align:left;
}

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

.contact-footer-bottom p{
    font-size:12px;
    line-height:1.8;
}

}

/* ===== SMALL MOBILE ===== */

@media (max-width:380px){

.contact-footer{
    padding:50px 16px 22px;
}

.contact-footer-brand a{
    font-size:28px;
}

.contact-footer-brand p{
    font-size:13px;
}

.contact-footer-grid{
    gap:32px;
}

.contact-footer-contact,
.contact-footer-links{
    padding-left:12px;
}

.contact-footer-contact a,
.contact-footer-links a{
    font-size:13px;
}

.contact-footer-bottom{
    margin-top:32px;
    padding-top:20px;
}

.contact-footer-bottom p{
    font-size:11px;
}

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

html{
    scroll-behavior:auto;
}

*,
*::before,
*::after{
    transition-duration:.01ms !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
}

}


/* ===== BLOG DETAIL STYLES ===== */

/* =========================================================
   RAJASTHAN AURA TOURS
   BLOG DETAIL PAGE STYLES
   Clean + Responsive Version
========================================================= */

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

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.8;
}

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

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


/* =========================================================
   ARTICLE HEADER (MASTER HEADER STYLE)
========================================================= */

.vehicle-header {
    width: 100%;
    max-width: 100%;
    background: #0a192f !important;
    position: relative;
    z-index: 1000;
}

.vehicle-header-container {
    width: 94%;
    max-width: 1380px;
    min-width: 0;
    margin: 0 auto;
    min-height: 48px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vehicle-logo-area {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.vehicle-logo-area img {
    width: 105px;
    max-width: 100%;
    height: auto;
    display: block;
}

.vehicle-desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vehicle-desktop-nav a {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vehicle-desktop-nav a:hover,
.vehicle-desktop-nav a.active {
    color: #a77838 !important;
}

.vehicle-header-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #a77838;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease;
}

.vehicle-header-btn:hover {
    background: #b68b42;
}

.vehicle-menu-toggle {
    display: none;
    flex: 0 0 auto;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}


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

.article-hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 600px;
    overflow: hidden;
}

.article-hero > img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 5%;
    background: linear-gradient(
        rgba(15, 15, 15, 0.35),
        rgba(15, 15, 15, 0.65)
    );
    color: #fff;
    text-align: center;
}

.article-hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    min-width: 0;
}

.article-hero-content span {
    display: block;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b68b42;
}

.article-hero-content h1 {
    max-width: 100%;
    margin-bottom: 25px;
    
    font-size: 58px;
    line-height: 1.15;
    font-weight: 400;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.article-hero-content p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   MAIN ARTICLE
========================================================= */

.article-main {
    width: 100%;
    max-width: 100%;
    padding: 100px 30px;
    overflow: hidden;
}

.article-container {
    width: 100%;
    max-width: 850px;
    min-width: 0;
    margin: 0 auto;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.article-intro {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-bottom: 70px;
    border-bottom: 1px solid #e5e5e5;
}

.article-label {
    display: block;
    margin-bottom: 15px;
    color: #b68b42;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.article-intro h2 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 28px;
    
    font-size: 42px;
    line-height: 1.3;
    font-weight: 400;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.article-intro p {
    max-width: 100%;
    margin-bottom: 20px;
    color: #555;
    font-size: 17px;
    line-height: 1.9;
    overflow-wrap: break-word;
}

.article-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ARTICLE SECTIONS
========================================================= */

.article-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 70px 0;
    border-bottom: 1px solid #e5e5e5;
}

.article-number {
    display: block;
    margin-bottom: 15px;
    color: #b68b42;
    
    font-size: 16px;
}

.article-section h2 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 25px;
    
    font-size: 36px;
    line-height: 1.3;
    font-weight: 400;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.article-section p {
    max-width: 100%;
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    overflow-wrap: break-word;
}

.article-section p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.article-highlight {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 70px 0;
    padding: 55px;
    background: #f7f5f1;
}

.article-highlight h2 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 25px;
    
    font-size: 36px;
    line-height: 1.3;
    font-weight: 400;
    overflow-wrap: break-word;
}

.article-highlight p {
    max-width: 100%;
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    overflow-wrap: break-word;
}

.article-highlight p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   JOURNEYS
========================================================= */

.article-journeys {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 80px 0 20px;
    text-align: center;
}

.article-journeys h2 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 25px;
    
    font-size: 42px;
    line-height: 1.3;
    font-weight: 400;
    overflow-wrap: break-word;
}

.article-journeys p {
    max-width: 700px;
    margin: 0 auto 35px;
    color: #555;
    font-size: 17px;
    line-height: 1.9;
}

.article-button {
    display: inline-block;
    max-width: 100%;
    padding: 15px 28px;
    border: 1px solid #222;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
}

.article-button:hover {
    background: #222;
    color: #fff;
}


/* =========================================================
   CTA
========================================================= */

.article-cta {
    width: 100%;
    max-width: 100%;
    padding: 110px 30px;
    background: #1d1d1b;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.article-cta-content {
    width: 100%;
    max-width: 800px;
    min-width: 0;
    margin: 0 auto;
}

.article-cta-content > span {
    display: block;
    margin-bottom: 18px;
    color: #b68b42;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.article-cta-content h2 {
    max-width: 100%;
    margin-bottom: 25px;
    
    font-size: 46px;
    line-height: 1.25;
    font-weight: 400;
    overflow-wrap: break-word;
}

.article-cta-content p {
    max-width: 680px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.9;
}

.article-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.article-whatsapp-button,
.article-email-button {
    display: inline-block;
    min-width: 200px;
    max-width: 100%;
    padding: 15px 28px;
    border: 1px solid #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.article-whatsapp-button {
    background: #fff;
    color: #1d1d1b;
}

.article-email-button {
    background: transparent;
    color: #fff;
}

.article-whatsapp-button:hover {
    background: #b68b42;
    border-color: #b68b42;
    color: #fff;
}

.article-email-button:hover {
    background: #fff;
    color: #1d1d1b;
}


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

.article-footer {
    width: 100%;
    max-width: 100%;
    padding: 65px 30px 30px;
    background: #111;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.article-footer-container {
    width: 100%;
    max-width: 1200px;
    min-width: 0;
    margin: 0 auto;
}

.article-footer-brand a {
    
    font-size: 26px;
    font-weight: 400;
}

.article-footer-brand p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 0.5px;
}

.article-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 25px;
    margin-top: 30px;
}

.article-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    transition: color 0.3s ease;
}

.article-footer-links a:hover {
    color: #b68b42;
}

.article-footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 25px;
    margin-top: 25px;
}

.article-footer-contact a {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    overflow-wrap: anywhere;
    transition: color 0.3s ease;
}

.article-footer-contact a:hover {
    color: #b68b42;
}

.article-footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.article-footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
}


/* =========================================================
   MOBILE HEADER & RESPONSIVE FIXES
========================================================= */

@media (max-width: 900px) {

    .vehicle-header-container {
        min-height: 44px;
        padding: 3px 0;
    }

    .vehicle-logo-area img {
        width: 100px;
        height: auto;
        display: block;
        transform: scale(2.2);
        transform-origin: left center;
    }

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

    .vehicle-menu-toggle {
        display: block !important;
    }

    .vehicle-desktop-nav.active {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 18px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        z-index: 1001;
    }

    .vehicle-desktop-nav.active a {
        color: #222222 !important;
        padding: 8px 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
}


/* =========================================================
   MOBILE HERO & COMPACT LAYOUT
========================================================= */

@media (max-width: 650px) {

    .article-hero {
        height: auto;
        min-height: 0;
        aspect-ratio: 1536 / 1024;
        background: #111;
        overflow: hidden;
    }

    .article-hero > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }

    .article-hero-overlay {
        position: relative;
        width: 100%;
        min-height: 100%;
        padding: 45px 20px;
    }

    .article-hero-content h1 {
        font-size: 32px;
        line-height: 1.18;
    }

    .article-hero-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .article-main {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .article-intro {
        padding-bottom: 40px;
    }

    .article-intro h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 1.22;
    }

    .article-section {
        padding: 42px 0;
    }

    .article-section h2 {
        margin-bottom: 20px;
        font-size: 29px;
        line-height: 1.22;
    }

    .article-highlight {
        margin: 45px 0;
        padding: 32px 24px;
    }

    .article-highlight h2 {
        margin-bottom: 18px;
        font-size: 29px;
        line-height: 1.22;
    }

    .article-journeys {
        padding: 48px 0 5px;
    }

    .article-journeys h2 {
        margin-bottom: 20px;
        font-size: 31px;
        line-height: 1.22;
    }

    .article-cta {
        padding: 65px 20px;
    }

    .article-cta-content h2 {
        margin-bottom: 20px;
        font-size: 33px;
        line-height: 1.2;
    }

    .article-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .article-whatsapp-button,
    .article-email-button {
        width: 100%;
        min-width: 0;
    }
}
/* ===== CTA BUTTONS ===== */

.tour-whatsapp-button{
    background:#25d366;
    border-color:#25d366;
    color:#ffffff;
}

.tour-whatsapp-button:hover{
    background:#1ea952;
    border-color:#1ea952;
}

.tour-email-button{
    background:#b68b42;
    border:1px solid #b68b42;
    color:#ffffff;
}

.tour-email-button:hover{
    background:#9a6d2e;
    border-color:#9a6d2e;
    color:#ffffff;
}


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

.tour-footer-contact,
.tour-footer-links{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    width:240px;
    margin:30px auto 0;
    gap:14px;
}

.tour-footer-contact h4,
.tour-footer-links h4{
    margin:0 0 8px;
    color:#b68b42;
    font-size:11px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.tour-footer-contact a,
.tour-footer-links a{
    color:rgba(255,255,255,.70);
    font-size:13px;
    transition:all .3s ease;
}

.tour-footer-contact a:hover,
.tour-footer-links a:hover{
    color:#b68b42;
    transform:translateX(5px);
}

/* =====================================================
   9.8 PREMIUM POLISH — BLOG / EDITORIAL
===================================================== */

.article-hero-content h1,
.article-intro h2,
.article-section h2,
.article-highlight h2,
.article-cta-content h2{
    text-wrap:balance;
}

.article-hero-content p,
.article-intro p,
.article-section p,
.article-highlight p,
.article-journeys p,
.article-cta-content p{
    text-wrap:pretty;
}

.article-section,
.article-highlight{
    scroll-margin-top:105px;
}

@media (max-width:650px){
    .article-section,
    .article-highlight{
        scroll-margin-top:84px;
    }
}

/* FINAL SITE-WIDE CTA CONSISTENCY — BLOG JOURNEY BUTTONS */
.article-button{
    color:#fff !important;
    background:linear-gradient(135deg,#a77838,#d6ad63) !important;
    border:1px solid #b68b42 !important;
    border-radius:6px !important;
    box-shadow:0 7px 18px rgba(182,139,66,.16) !important;
}
.article-button:hover,
.article-button:focus-visible{
    color:#fff !important;
    background:linear-gradient(135deg,#8f652f,#b68b42) !important;
    border-color:#8f652f !important;
    box-shadow:0 9px 22px rgba(182,139,66,.22) !important;
}
