/* =========================================================
   DevBhoomi Roadways - Main Stylesheet
   Palette: Deep green #16332b / #1c3f34, Orange accent #e5792e,
   Cream background #faf7f2, White cards, Charcoal text #22302b
========================================================= */

:root{
  --green-dark:#16332b;
  --green:#1c3f34;
  --green-soft:#e6efe9;
  --orange:#e5792e;
  --orange-dark:#c9631f;
  --cream:#faf7f2;
  --peach:#fbe9dd;
  --white:#ffffff;
  --text:#26332d;
  --text-light:#5c6b64;
  --border:#e6e2da;
  --radius:14px;
  --shadow:0 10px 30px rgba(22,51,43,.10);
  --font-head:'Poppins',sans-serif;
  --font-body:'Inter',sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
h1,h2,h3,h4{font-family:var(--font-head);color:var(--green-dark);line-height:1.2;}
.container{width:100%;max-width:1240px;margin:0 auto;padding:0 24px;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 26px;border-radius:50px;font-weight:600;font-size:15px;
  transition:.25s ease;white-space:nowrap;
}
.btn-primary{background:var(--green-dark);color:#fff;}
.btn-primary:hover{background:var(--green);transform:translateY(-2px);}
.btn-orange{background:var(--orange);color:#fff;}
.btn-orange:hover{background:var(--orange-dark);transform:translateY(-2px);}
.btn-outline{background:transparent;border:1.5px solid var(--green-dark);color:var(--green-dark);}
.btn-outline:hover{background:var(--green-dark);color:#fff;}

.section-eyebrow{
  display:inline-block;color:var(--orange);font-weight:700;font-size:13px;
  letter-spacing:1.5px;text-transform:uppercase;margin-bottom:8px;
}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:36px;flex-wrap:wrap;}
.section-head h2{font-size:32px;}
.section-head h2 span{color:var(--orange);font-style:italic;font-weight:600;}
.view-all{color:var(--green-dark);font-weight:600;font-size:14px;display:inline-flex;align-items:center;gap:6px;}

/* =========================================================
   HEADER
========================================================= */
.site-header{
  position:sticky;top:0;z-index:200;background:#fff;
  box-shadow:0 2px 14px rgba(0,0,0,.05);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 24px;gap:20px;}
.logo{display:flex;align-items:center;gap:10px;}
.logo img{height:42px;width:auto;}
.logo-text{display:flex;flex-direction:column;line-height:1.05;}
.logo-text strong{font-family:var(--font-head);font-weight:800;color:var(--green-dark);font-size:18px;}
.logo-text em{font-style:normal;font-weight:700;color:var(--orange);font-size:11px;letter-spacing:2px;}
.logo-text small{color:var(--text-light);font-size:11px;margin-top:2px;}

.main-nav ul{display:flex;gap:28px;}
.main-nav a{font-weight:500;font-size:15px;color:var(--text);position:relative;padding:6px 0;}
.main-nav a.active,.main-nav a:hover{color:var(--orange);}
.header-btn{padding:12px 22px;font-size:14px;}
.nav-toggle{display:none;flex-direction:column;gap:5px;width:28px;}
.nav-toggle span{height:2px;background:var(--green-dark);border-radius:2px;}

/* =========================================================
   HERO
========================================================= */
.hero{
  position:relative;min-height:640px;display:flex;align-items:center;
  background:linear-gradient(180deg,rgba(10,20,15,.55),rgba(10,20,15,.35) 40%,rgba(10,20,15,.65)),
             url('../images/hero-bus.svg') center/cover no-repeat;
  color:#fff;
}
.hero-inner{position:relative;z-index:2;padding:80px 0 220px;}
.hero-badge{
  display:inline-block;background:rgba(255,255,255,.15);backdrop-filter:blur(4px);
  padding:8px 16px;border-radius:30px;font-size:12px;font-weight:700;letter-spacing:1.5px;
  text-transform:uppercase;margin-bottom:18px;border:1px solid rgba(255,255,255,.3);
}
.hero h1{font-size:56px;font-weight:800;color:#fff;margin-bottom:14px;}
.hero h1 em{display:block;font-style:italic;color:var(--orange);font-weight:600;}
.hero p{font-size:17px;max-width:440px;color:#eef3ef;margin-bottom:26px;}

.hero-features{display:flex;gap:30px;flex-wrap:wrap;}
.hero-features li{display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px;font-size:12.5px;font-weight:600;max-width:90px;}
.hero-features li .icon{
  width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,.15);
  display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.35);
}

.hero-call{
  position:absolute;top:34px;right:24px;z-index:3;display:flex;align-items:center;gap:10px;color:#fff;
}
.hero-call .icon{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.4);}
.hero-call strong{display:block;font-size:14px;}
.hero-call small{opacity:.85;font-size:11px;}

/* ---------- Search widget ---------- */
.search-widget{
  position:relative;z-index:5;background:#fff;border-radius:var(--radius);
  box-shadow:var(--shadow);max-width:1100px;margin:-160px auto 0;padding:22px;
}
.search-tabs{display:flex;gap:8px;margin-bottom:18px;}
.search-tabs button{padding:9px 22px;border-radius:24px;font-weight:600;font-size:13.5px;background:var(--green-soft);color:var(--green-dark);}
.search-tabs button.active{background:var(--green-dark);color:#fff;}
.search-form{display:grid;grid-template-columns:1.3fr 40px 1.3fr 1fr 1fr auto;gap:14px;align-items:center;}
.search-field{border:1px solid var(--border);border-radius:10px;padding:10px 14px;}
.search-field label{display:block;font-size:11px;color:var(--text-light);font-weight:600;text-transform:uppercase;letter-spacing:.5px;margin-bottom:3px;}
.search-field input,.search-field select{border:none;background:none;font-family:inherit;font-size:14.5px;font-weight:600;color:var(--green-dark);width:100%;}
.search-field input:focus,.search-field select:focus{outline:none;}
.search-swap{width:36px;height:36px;border-radius:50%;background:var(--peach);color:var(--orange);display:flex;align-items:center;justify-content:center;font-size:16px;margin:0 auto;}
.search-submit{background:var(--green-dark);color:#fff;border-radius:10px;padding:16px 26px;font-weight:700;display:flex;align-items:center;gap:8px;height:100%;}
.search-submit:hover{background:var(--green);}
 .route-strip {
    /* Simulating the split background: dark green on the left, image on the right */
    background: #0a2118;
    background: linear-gradient(90deg, #0a2118 45%, rgba(10, 33, 24, 0.8) 70%, rgba(10, 33, 24, 0.3) 100%), url('path-to-your-mountain-bg.jpg') center right/cover no-repeat;
    padding: 40px 0;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  .route-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .route-header {
    margin-bottom: 25px;
  }
  .route-header-subtitle {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e0e0e0;
    display: block;
    margin-bottom: 5px;
  }
  .route-header-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .route-header-title .arrow {
    color: #ff8a00;
    font-size: 26px;
    font-weight: 400;
  }
  .route-flex-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .route-card {
    flex: 1;
    min-width: 260px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    background: rgba(10, 33, 24, 0.4);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .route-card-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .route-card-title.orange { color: #ff8a00; }
  .route-card-title.green { color: #73d896; }
  
  .route-time-row {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .route-time-label {
    color: #ff8a00;
    font-weight: 600;
    margin-right: 6px;
  }
  .route-time-val {
    font-weight: 700;
    color: #ffffff;
  }
  .route-points {
    font-size: 13px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 16px;
  }
  
  .route-center-circle {
    width: 150px;
    height: 150px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    flex-shrink: 0;
    align-self: center;
    position: relative;
    z-index: 2;
  }
  .route-center-circle svg {
    width: 50px;
    height: 50px;
    margin-bottom: 6px;
    fill: #0d2b20;
  }
  .route-center-text {
    color: #0d2b20;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.2;
  }
  .route-center-subtext {
    font-weight: 600;
    font-size: 10px;
    display: block;
    margin-top: 2px;
  }

  .route-perks-card {
    flex: 0 1 240px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 20px 24px;
    backdrop-filter: blur(6px);
  }
  .route-perks-title {
    color: #ff8a00;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
  }
  .route-perks-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .route-perks-list li {
    font-size: 13px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .route-perks-list li svg {
    width: 14px;
    height: 14px;
    color: #73d896;
    flex-shrink: 0;
  }

  /* Responsive tweaks */
  @media (max-width: 1024px) {
    .route-flex-wrapper { justify-content: center; }
    .route-center-circle { order: -1; margin-bottom: 20px; }
  }
/* ---------- Trust strip ---------- */
.trust-strip{background:var(--peach);padding:26px 0;margin-top:60px;}
.trust-grid{display:flex;justify-content:space-between;flex-wrap:wrap;gap:24px;}
.trust-item{display:flex;align-items:center;gap:12px;}
.trust-item .icon{width:38px;height:38px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;color:var(--orange);}
.trust-item strong{display:block;font-size:14.5px;color:var(--green-dark);}
.trust-item span{font-size:12.5px;color:var(--text-light);}

/* =========================================================
   DESTINATIONS
========================================================= */
.destinations{padding:80px 0 60px;}
.dest-slider{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;}
.dest-card{position:relative;border-radius:var(--radius);overflow:hidden;aspect-ratio:3/4;box-shadow:var(--shadow);}
.dest-card img{width:100%;height:100%;object-fit:cover;transition:.4s;}
.dest-card:hover img{transform:scale(1.08);}
.dest-card .overlay{
  position:absolute;inset:0;background:linear-gradient(0deg,rgba(10,20,15,.85),transparent 60%);
  display:flex;flex-direction:column;justify-content:flex-end;padding:18px;color:#fff;
}
.dest-card h3{color:#fff;font-size:18px;}
.dest-card p{font-size:12px;opacity:.9;display:flex;align-items:center;gap:5px;margin-top:4px;}

/* =========================================================
   WHY CHOOSE US
========================================================= */
.why-us{background:var(--green-soft);padding:70px 0;}
.why-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:50px;align-items:center;}
.why-us h2{font-size:32px;margin-bottom:14px;}
.why-us h2 .brand{color:var(--orange);}
.why-us > .container > .why-grid > div:first-child p{color:var(--text-light);margin-bottom:24px;}
.why-feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-bottom:28px;}
.why-feature{display:flex;align-items:center;gap:10px;font-weight:600;font-size:14px;color:var(--green-dark);}
.why-feature .icon{width:34px;height:34px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;color:var(--orange);flex-shrink:0;}
.why-media{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);}
.why-media img{width:100%;height:340px;object-fit:cover;}
.why-badge{
  position:absolute;right:20px;bottom:20px;background:rgba(15,30,25,.92);color:#fff;
  border-radius:10px;padding:20px;text-align:center;width:150px;
}
.why-badge strong{display:block;font-size:26px;color:var(--orange);}
.why-badge span{font-size:12px;display:block;margin:2px 0 8px;}
.why-badge small{font-size:11px;opacity:.8;}

/* =========================================================
   ROUTE / SCHEDULE STRIP
========================================================= */
.route-strip{
  background:linear-gradient(120deg,var(--green-dark),var(--green) 60%),url('../images/route-bg.svg') center/cover;
  background-blend-mode:multiply;color:#fff;padding:70px 0;position:relative;
}
.route-strip h2{color:#fff;font-size:26px;margin-bottom:6px;}
.route-strip h2 .arrow{color:var(--orange);}
.route-grid{display:grid;grid-template-columns:1fr auto 1fr;gap:30px;align-items:center;margin-top:24px;}
.route-box{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:var(--radius);padding:22px;}
.route-box .label{color:var(--orange);font-weight:700;font-size:12px;text-transform:uppercase;letter-spacing:1px;margin-bottom:10px;}
.route-box .time{display:flex;justify-content:space-between;font-size:14px;margin-bottom:10px;}
.route-box .time strong{color:#fff;font-size:15px;}
.route-box .points{font-size:12.5px;color:#d8e3dd;line-height:1.8;}
.route-center{display:flex;flex-direction:column;align-items:center;gap:10px;text-align:center;}
.route-center .bus-icon{width:76px;height:76px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;}
.route-center span{font-size:12px;font-weight:700;letter-spacing:.5px;}
.route-perks{background:rgba(255,255,255,.08);border-radius:var(--radius);padding:20px;font-size:13px;}
.route-perks li{padding:5px 0;display:flex;gap:8px;}

/* =========================================================
   AMENITIES STRIP
========================================================= */
.amenities{padding:50px 0;}
.amenities-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:16px;text-align:center;}
.amenity{display:flex;flex-direction:column;align-items:center;gap:10px;}
.amenity .icon{width:56px;height:56px;border-radius:50%;background:var(--green-soft);display:flex;align-items:center;justify-content:center;color:var(--green-dark);}
.amenity span{font-size:12.5px;font-weight:600;color:var(--text);}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials{padding:70px 0;background:var(--cream);}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.testi-card{background:#fff;border-radius:var(--radius);padding:24px;box-shadow:var(--shadow);position:relative;}
.testi-card .quote{font-size:34px;color:var(--peach);font-family:Georgia,serif;line-height:0;position:absolute;top:20px;right:22px;}
.testi-card .stars{color:var(--orange);font-size:13px;margin-bottom:10px;}
.testi-card p{font-size:14px;color:var(--text-light);margin-bottom:18px;}
.testi-person{display:flex;align-items:center;gap:12px;}
.testi-person img{width:42px;height:42px;border-radius:50%;object-fit:cover;}
.testi-person strong{display:block;font-size:14px;}
.testi-person span{font-size:12px;color:var(--text-light);}

/* =========================================================
   BLOG
========================================================= */
.blog-section{padding:70px 0 90px;}

.blog-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;}

.blog-card{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:.3s ease;}

.blog-card:hover{transform:translateY(-5px);}

.blog-card img{display:block;width:100%;height:auto;max-width:100%;object-fit:contain;background:#fff;}

.blog-card .body{padding:14px;}

.blog-card .cat{color:var(--orange);font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;}

.blog-card .date{font-size:10.5px;color:var(--text-light);float:right;}

.blog-card h4{font-size:14px;margin:8px 0 10px;line-height:1.5;}

.blog-card a.readmore{font-size:12px;font-weight:700;color:var(--green-dark);}

.blog-featured-image{
width:100%;
overflow:hidden;
border-radius:var(--radius);
margin-bottom:25px;
background:#fff;
box-shadow:var(--shadow);
text-align:center;
}

.blog-featured-image img{
display:block;
width:100%;
height:auto;
max-width:100%;
object-fit:contain;
border-radius:var(--radius);
transition:transform .4s ease;
}

.blog-featured-image:hover img{
transform:scale(1.02);
}

.blog-content{
font-size:16px;
line-height:1.8;
color:#333;
word-wrap:break-word;
overflow-wrap:break-word;
}

.blog-content img{
display:block;
width:auto;
max-width:100%;
height:auto;
margin:20px auto;
border-radius:10px;
object-fit:contain;
}

.blog-content figure{
margin:20px 0;
text-align:center;
}

.blog-content figure img{
width:100%;
height:auto;
}

.blog-content iframe,
.blog-content video{
width:100%;
max-width:100%;
border:none;
border-radius:10px;
aspect-ratio:16/9;
}

.faq-section{margin:50px 0;}

.faq-section h2{
font-size:34px;
margin-bottom:25px;
color:var(--green-dark);
}

.faq-item{
border:1px solid #e5e5e5;
border-radius:10px;
margin-bottom:15px;
overflow:hidden;
background:#fff;
}

.faq-question{
width:100%;
padding:18px 20px;
background:#fff;
border:none;
display:flex;
justify-content:space-between;
align-items:center;
font-size:18px;
font-weight:600;
color:var(--green-dark);
cursor:pointer;
text-align:left;
transition:.3s;
}

.faq-question:hover{
background:#f8f8f8;
}

.faq-question span{
font-size:26px;
font-weight:700;
color:var(--orange);
transition:.3s;
}

.faq-answer{
display:none;
padding:0 20px 20px;
font-size:16px;
line-height:1.8;
color:#555;
}

.faq-item.active .faq-answer{
display:block;
}

.faq-item.active .faq-question span{
transform:rotate(45deg);
}

.sidebar-card{
background:#fff;
border-radius:var(--radius);
padding:18px;
box-shadow:var(--shadow);
}

.sidebar-card h3{
font-size:22px;
margin-bottom:18px;
color:var(--green-dark);
}

.sidebar-post{
display:flex;
gap:10px;
margin-bottom:15px;
text-decoration:none;
color:var(--text);
align-items:center;
}

.sidebar-post img{
width:70px;
height:60px;
object-fit:cover;
border-radius:8px;
flex-shrink:0;
}

.sidebar-post h4{
font-size:14px;
line-height:1.4;
margin:0 0 5px;
transition:.3s;
}

.sidebar-post small{
font-size:12px;
color:var(--text-light);
}

.sidebar-post:hover h4{
color:var(--orange);
}

.route-box{
background:#f8f9fa;
border:1px solid #eaeaea;
border-radius:8px;
padding:25px;
margin:25px 0;
box-shadow:0 2px 8px rgba(0,0,0,.03);
}

.route-box h3{
margin-top:0!important;
margin-bottom:8px!important;
font-size:22px;
color:var(--green-dark);
}

.route-box p{
margin-bottom:15px!important;
font-size:15px;
color:#555;
}

.route-path{
display:flex;
flex-wrap:wrap;
align-items:center;
gap:12px;
padding:15px 20px;
background:#fff;
border:1px solid #f0f0f0;
border-radius:6px;
font-size:16px;
line-height:2;
color:#333;
}

.route-path span{
font-weight:600;
}

.route-path .arrow{
font-size:18px;
font-weight:700;
color:var(--orange);
}

.route-path .start{
color:#27ae60;
}

.route-path .end{
color:#c0392b;
}

/* Responsive */

@media(max-width:1200px){

.blog-grid{
grid-template-columns:repeat(4,1fr);
}

}

@media(max-width:992px){

.blog-grid{
grid-template-columns:repeat(3,1fr);
}

.grid-2{
grid-template-columns:1fr!important;
gap:25px!important;
}

.sidebar-card{
margin-top:20px;
}

}

@media(max-width:768px){

.blog-grid{
grid-template-columns:repeat(2,1fr);
}

.blog-section{
padding:50px 0;
}

.faq-section h2{
font-size:28px;
}

.blog-featured-image{
margin-bottom:20px;
}

.blog-content{
font-size:15px;
}

.route-path{
font-size:15px;
gap:8px;
}

}

@media(max-width:576px){

.blog-grid{
grid-template-columns:1fr;
}

.blog-card h4{
font-size:16px;
}

.blog-content{
font-size:15px;
}

.faq-question{
font-size:16px;
padding:15px;
}

.route-box{
padding:18px;
}

.route-path{
flex-direction:column;
align-items:flex-start;
}

.sidebar-post img{
width:80px;
height:65px;
}

}
/* .blog-page{padding:30px 0 50px;}
.blog-layout{display:grid;grid-template-columns:2.8fr 1fr;gap:25px;align-items:start;}
.blog-main{background:#fff;border-radius:var(--radius);padding:20px;box-shadow:var(--shadow);}
.blog-main .featured-image{width:100%;height:300px;object-fit:cover;border-radius:var(--radius);margin-bottom:15px;display:block;}
.blog-main .meta{display:flex;gap:10px;align-items:center;color:var(--orange);font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;margin-bottom:15px;}
.blog-content{font-size:17px;line-height:1.9;color:var(--text);word-wrap:break-word;}
.blog-content h1{font-size:40px;font-weight:700;line-height:1.25;color:var(--green-dark);margin:10px 0 18px;}
.blog-content h2{font-size:30px;font-weight:700;line-height:1.3;color:var(--green-dark);margin:35px 0 15px;padding-bottom:8px;border-bottom:1px solid #e5e5e5;}
.blog-content h3{font-size:24px;font-weight:700;line-height:1.4;color:var(--green-dark);margin:28px 0 12px;}
.blog-content h4{font-size:20px;font-weight:600;line-height:1.4;color:var(--green-dark);margin:22px 0 10px;}
.blog-content p{margin:0 0 18px;text-align:justify;}
.blog-content ul,.blog-content ol{margin:18px 0 20px 22px;padding:0;}
.blog-content li{margin-bottom:8px;line-height:1.8;}
.blog-content strong{font-weight:700;color:var(--green-dark);}
.blog-content a{color:var(--orange);text-decoration:none;}
.blog-content a:hover{text-decoration:underline;}
.blog-content img{max-width:100%;height:auto;border-radius:var(--radius);margin:20px auto;display:block;}
.blog-content table{width:100%;border-collapse:collapse;margin:20px 0;}
.blog-content table th,.blog-content table td{padding:10px;border:1px solid #ddd;}
.blog-content blockquote{margin:20px 0;padding:15px 20px;border-left:4px solid var(--orange);background:#fff8f2;font-style:italic;}
.blog-content hr{margin:30px 0;border:0;border-top:1px solid #ddd;}
.blog-sidebar{position:sticky;top:100px;}
.sidebar-card{background:#fff;border-radius:var(--radius);padding:18px;box-shadow:var(--shadow);}
.sidebar-card h3{font-size:22px;margin-bottom:18px;color:var(--green-dark);}
.sidebar-post{display:flex;gap:10px;margin-bottom:15px;text-decoration:none;color:var(--text);}
.sidebar-post img{width:70px;height:60px;object-fit:cover;border-radius:8px;flex-shrink:0;}
.sidebar-post h4{font-size:14px;line-height:1.4;margin:0 0 5px;}
.sidebar-post small{font-size:12px;color:var(--text-light);}
.sidebar-post:hover h4{color:var(--orange);}
.faq-section{margin:50px 0;}
.faq-section h2{font-size:34px;margin-bottom:25px;color:var(--green-dark);}
.faq-item{border:1px solid #e5e5e5;border-radius:10px;margin-bottom:15px;overflow:hidden;background:#fff;}
.faq-question{width:100%;padding:18px 20px;background:#fff;border:none;display:flex;justify-content:space-between;align-items:center;font-size:18px;font-weight:600;color:var(--green-dark);cursor:pointer;text-align:left;transition:.3s;}
.faq-question:hover{background:#f8f8f8;}
.faq-question span{font-size:26px;font-weight:700;color:var(--orange);transition:.3s;}
.faq-answer{display:none;padding:0 20px 20px;font-size:16px;line-height:1.8;color:#555;}
.faq-item.active .faq-answer{display:block;}
.faq-item.active .faq-question span{transform:rotate(45deg);}
.route-box{background:#f8f9fa;border:1px solid #eaeaea;border-radius:8px;padding:25px;margin:25px 0;box-shadow:0 2px 8px rgba(0,0,0,.03);}
.route-box h3{margin-top:0!important;color:var(--green-dark,#2c3e50);margin-bottom:8px!important;font-size:22px;}
.route-box p{margin-bottom:15px!important;font-size:15px;color:#555;}
.route-path{display:flex;flex-wrap:wrap;align-items:center;gap:12px;font-size:16px;color:#333;line-height:2;background:#fff;padding:15px 20px;border-radius:6px;border:1px solid #f0f0f0;}
.route-path span{font-weight:600;}
.route-path .arrow{color:var(--orange,#e74c3c);font-size:18px;font-weight:bold;}
.route-path .start{color:#27ae60;}
.route-path .end{color:#c0392b;}
@media(max-width:991px){.blog-page{padding:20px 0 40px;}.blog-layout{grid-template-columns:1fr;gap:20px;}.blog-sidebar{position:relative;top:auto;}.blog-main{padding:15px;}.blog-main .featured-image{height:220px;}.blog-content{font-size:16px;}.blog-content h1{font-size:32px;}.blog-content h2{font-size:26px;}.blog-content h3{font-size:22px;}.blog-content h4{font-size:18px;}} */
/* =========================================================
   FOOTER
========================================================= */
.footer-cta{background:var(--peach);}
.footer-cta-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px;padding:34px 24px;}
.footer-cta-inner h3{font-size:24px;}
.footer-cta-inner h3 span{color:var(--orange);}
.footer-cta-actions{display:flex;gap:16px;flex-wrap:wrap;}
.footer-cta-actions a{display:flex;align-items:center;gap:10px;background:#fff;padding:10px 18px;border-radius:10px;font-size:12.5px;color:var(--green-dark);font-weight:600;box-shadow:var(--shadow);}
.cta-whatsapp{background:var(--green-dark)!important;color:#fff!important;}
.cta-whatsapp svg{color:#fff;}

.site-footer{background:var(--green-dark);color:#cfe0d7;}
.footer-main{padding:56px 0 0;}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1.2fr;gap:30px;padding-bottom:36px;border-bottom:1px solid rgba(255,255,255,.1);}
.footer-col h4{color:#fff;font-size:15px;margin-bottom:16px;}
.footer-col ul li{margin-bottom:10px;font-size:13.5px;}
.footer-col ul li a:hover{color:var(--orange);}
.footer-brand p{font-size:13px;margin:14px 0 16px;color:#b7c9be;}
.footer-social{display:flex;gap:10px;}
.footer-social a{width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;font-size:11px;text-transform:uppercase;}
.footer-newsletter{display:flex;margin-top:12px;border-radius:8px;overflow:hidden;background:rgba(255,255,255,.08);}
.footer-newsletter input{flex:1;background:none;border:none;padding:11px 12px;color:#fff;font-size:13px;}
.footer-newsletter button{background:var(--orange);color:#fff;padding:0 16px;font-weight:700;}
.footer-bottom{display:flex;justify-content:space-between;padding:20px 24px;font-size:12.5px;flex-wrap:wrap;gap:8px;}
.footer-bottom a:hover{color:var(--orange);}

.whatsapp-float{
  position:fixed;bottom:24px;right:24px;width:58px;height:58px;border-radius:50%;
  background:#25D366;display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.25);z-index:300;
}

/* =========================================================
   INNER PAGE HERO (used by routes/destinations/about/etc.)
========================================================= */
.page-hero{
  background:linear-gradient(180deg,rgba(10,20,15,.7),rgba(10,20,15,.55)),url('../images/page-hero.svg') center/cover;
  color:#fff;padding:100px 0 60px;text-align:center;
}
.page-hero h1{color:#fff;font-size:40px;}
.page-hero .breadcrumb{margin-top:10px;font-size:13px;opacity:.85;}
.page-hero .breadcrumb a{color:var(--orange);}

/* Generic content blocks reused across inner pages */
.card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);padding:26px;}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
table.data-table{width:100%;border-collapse:collapse;}
table.data-table th,table.data-table td{padding:14px 16px;text-align:left;border-bottom:1px solid var(--border);font-size:14px;}
table.data-table th{background:var(--green-soft);color:var(--green-dark);font-weight:700;}

.form-control{width:100%;padding:13px 16px;border:1px solid var(--border);border-radius:10px;font-family:inherit;font-size:14px;margin-bottom:16px;}
textarea.form-control{resize:vertical;min-height:120px;}
label.form-label{display:block;font-weight:600;font-size:13.5px;margin-bottom:6px;color:var(--green-dark);}

.alert{padding:14px 18px;border-radius:10px;margin-bottom:20px;font-size:14px;}
.alert-success{background:#e4f5e8;color:#1f7a3d;}
.alert-error{background:#fbe6e6;color:#b3261e;}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:1100px){
  .dest-slider{grid-template-columns:repeat(3,1fr);}
  .blog-grid{grid-template-columns:repeat(3,1fr);}
  .amenities-grid{grid-template-columns:repeat(4,1fr);}
  .why-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:860px){
  .main-nav{position:fixed;top:76px;left:0;right:0;background:#fff;flex-direction:column;padding:10px 24px 20px;box-shadow:0 10px 20px rgba(0,0,0,.08);transform:translateY(-140%);opacity:0;transition:.3s;}
  .main-nav.open{transform:translateY(0);opacity:1;}
  .main-nav ul{flex-direction:column;gap:4px;}
  .main-nav a{display:block;padding:12px 0;border-bottom:1px solid var(--border);}
  .nav-toggle{display:flex;}
  .header-btn{display:none;}
  .hero h1{font-size:38px;}
  .search-form{grid-template-columns:1fr;}
  .search-swap{transform:rotate(90deg);}
  .trust-grid{justify-content:center;text-align:center;}
  .dest-slider,.testi-grid,.grid-3,.grid-4,.grid-2{grid-template-columns:1fr 1fr;}
  .blog-grid{grid-template-columns:1fr 1fr;}
  .route-grid{grid-template-columns:1fr;}
  .amenities-grid{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:560px){
  .dest-slider,.testi-grid,.blog-grid,.grid-3,.grid-4,.grid-2{grid-template-columns:1fr;}
  .amenities-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr;}
  .footer-cta-inner{flex-direction:column;align-items:flex-start;}
  .hero h1{font-size:30px;}
  .search-widget{margin-top:-100px;}
}
