/* ============================================================
   Explain Rajasthan – Main Stylesheet
   Modern Lite Theme | Saffron · Gold · Warm Charcoal
   ============================================================ */
:root {
  --primary:        #E8671A;   /* saffron orange */
  --primary-dark:   #C9530D;
  --primary-light:  #FEF0E6;
  --gold:           #F5A623;
  --gold-light:     #FEF7E6;
  --dark:           #1C1917;   /* warm charcoal */
  --dark2:          #292524;
  --text:           #3D2B1F;
  --text-light:     #7C6559;
  --text-muted:     #A8917E;
  --bg:             #FDFAF7;
  --bg-light:       #FEF6EE;
  --bg-card:        #FFFFFF;
  --border:         #F0E6DC;
  --border-dark:    #E5D5C5;
  --radius:         12px;
  --radius-sm:      8px;
  --shadow:         0 2px 16px rgba(60,30,10,.07);
  --shadow-md:      0 6px 28px rgba(60,30,10,.11);
  --shadow-hover:   0 12px 36px rgba(60,30,10,.15);
  --transition:     .22s ease;
  --font:           'Poppins', sans-serif;
  --font-heading:   'Playfair Display', serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; padding-top: 84px; }
body.has-hero { padding-top: 0; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 22px; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.navbar.scrolled,
body:not(.has-hero) .navbar {
  background: rgba(253,250,247,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(60,30,10,.09);
}
/* Inner pages (no dark hero) → dark nav links by default so they stay visible */
body:not(.has-hero) .nav-menu li a { color: var(--text); }
body:not(.has-hero) .nav-menu li a:hover,
body:not(.has-hero) .nav-menu li a.active { color: var(--primary); background: var(--primary-light); }
body:not(.has-hero) .nav-toggle span { background: var(--dark); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; padding: 14px 22px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img {
  height: 56px; width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
/* fallback text logo styles (kept for safety) */
.logo-icon { font-size: 2rem; line-height: 1; }
.logo-main {
  display: block; font-family: var(--font-heading);
  font-size: 1.22rem; color: var(--primary); font-weight: 700; line-height: 1.1;
}
.logo-sub {
  display: block; font-size: .63rem;
  color: var(--text-muted); letter-spacing: .05em;
}
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu li a {
  padding: 7px 13px; border-radius: 7px;
  font-size: .86rem; font-weight: 500; color: rgba(255,255,255,.9);
  transition: all var(--transition);
}
.navbar.scrolled .nav-menu li a { color: var(--text); }
.nav-menu li a:hover, .nav-menu li a.active {
  color: var(--gold); background: rgba(245,166,35,.12);
}
.navbar.scrolled .nav-menu li a:hover,
.navbar.scrolled .nav-menu li a.active {
  color: var(--primary); background: var(--primary-light);
}
.nav-cta {
  background: var(--primary) !important; color: #fff !important;
  border-radius: 25px !important; padding: 8px 22px !important;
  font-weight: 600 !important; box-shadow: 0 4px 14px rgba(232,103,26,.3);
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  box-shadow: 0 6px 20px rgba(232,103,26,.4); transform: translateY(-1px);
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ── Hero Banner (new) ── */
.hb {
  position: relative; height: 100vh; min-height: 560px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  text-align: center; margin-top: 0;
}
.hb-track { position: absolute; inset: 0; }
.hb-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  animation: none;
}
.hb-slide.active {
  opacity: 1;
  animation: hbKenBurns 8s ease forwards;
}
@keyframes hbKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hb-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom, rgba(10,5,2,.38) 0%, rgba(10,5,2,.55) 60%, rgba(10,5,2,.72) 100%);
}
.hb-content {
  position: relative; z-index: 5; color: #fff;
  padding: 40px 20px; max-width: 840px; width: 100%;
}
.hb-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,166,35,.18); border: 1px solid rgba(245,166,35,.38);
  color: var(--gold); font-size: .78rem; font-weight: 600;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 22px;
  letter-spacing: .06em; text-transform: uppercase;
}
.hb-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700; line-height: 1.18; margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.hb-title span { color: var(--gold); }
.hb-sub {
  font-size: 1.08rem; opacity: .88; margin-bottom: 36px;
  max-width: 600px; margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hb-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hb-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 10px; z-index: 10;
}
.hb-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5); background: transparent;
  cursor: pointer; padding: 0; transition: all .35s;
}
.hb-dot.active {
  background: var(--gold); border-color: var(--gold);
  width: 28px; border-radius: 6px;
}
.hb-label {
  position: absolute; bottom: 72px; left: 50%;
  transform: translateX(-50%);
  background: rgba(10,5,2,.52); backdrop-filter: blur(8px);
  color: #fff; font-size: .8rem; font-weight: 600;
  padding: 6px 20px; border-radius: 50px; white-space: nowrap;
  letter-spacing: .07em; z-index: 10;
  transition: opacity .4s ease;
  pointer-events: none;
}

/* ── Hero (legacy, kept for other pages) ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}

/* Slides */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.slide-scene {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.06) translateX(-14px); }
}
.slide-label {
  position: absolute; bottom: 90px;
  left: 50%; transform: translateX(-50%);
  z-index: 8;
  color: rgba(255,255,255,.8); font-size: .8rem;
  letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; white-space: nowrap;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* Star animations */
.star { animation: twinkle 3s ease-in-out infinite; }
.star.s2 { animation-delay: .8s; }
.star.s3 { animation-delay: 1.6s; }
.star.s4 { animation-delay: 2.2s; }
.star.s5 { animation-delay: .4s; }
@keyframes twinkle {
  0%,100% { opacity: .4; r: 1.2; }
  50%      { opacity: 1;  r: 2.2; }
}
/* Camel walk */
.camel-walk { animation: camelWalk 18s linear infinite; }
@keyframes camelWalk { from { transform: translateX(0); } to { transform: translateX(-900px); } }
/* Boat float */
.boat-float  { animation: boatFloat 4s ease-in-out infinite; }
.boat-float2 { animation: boatFloat 5.5s ease-in-out infinite reverse; }
@keyframes boatFloat { 0%,100%{transform:translateY(0) rotate(-.5deg)} 50%{transform:translateY(-6px) rotate(.5deg)} }

/* Slide controls */
.hero-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5);
  background: transparent; cursor: pointer; padding: 0;
  transition: all .3s; position: relative; overflow: hidden;
}
.hero-dot.active {
  background: var(--gold); border-color: var(--gold);
  width: 28px; border-radius: 6px;
}
.hero-prev, .hero-next {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.6rem; cursor: pointer; transition: all .25s;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover {
  background: rgba(232,103,26,.5); border-color: var(--primary);
}

/* Particles */
.particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(245,166,35,.35);
  animation: floatUp 8s ease-in-out infinite;
}
.p1 { width:6px;height:6px; left:10%; top:70%; animation-delay:0s;    animation-duration:9s; }
.p2 { width:4px;height:4px; left:25%; top:80%; animation-delay:1.5s;  animation-duration:7s; }
.p3 { width:8px;height:8px; left:60%; top:75%; animation-delay:3s;    animation-duration:11s; }
.p4 { width:5px;height:5px; left:75%; top:65%; animation-delay:4.5s;  animation-duration:8s; }
.p5 { width:3px;height:3px; left:88%; top:85%; animation-delay:2s;    animation-duration:10s; background:rgba(232,103,26,.4); }
.p6 { width:7px;height:7px; left:45%; top:90%; animation-delay:6s;    animation-duration:12s; }
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: .8; }
  90%  { opacity: .2; }
  100% { transform: translateY(-320px) scale(.4) rotate(180deg); opacity: 0; }
}

/* Hero content */
.hero-content {
  position: relative; z-index: 5;
  color: #fff; padding: 40px 20px; max-width: 820px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,166,35,.18); border: 1px solid rgba(245,166,35,.35);
  color: var(--gold); padding: 6px 18px; border-radius: 25px;
  font-size: .76rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 22px; backdrop-filter: blur(6px);
  animation: fadeDown .8s ease both;
}
.hero h1, .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 18px;
  animation: fadeDown .8s .2s ease both;
}
.hero h1 span { color: var(--gold); }
.hero p, .hero-sub {
  font-size: 1.05rem; opacity: .88; margin-bottom: 36px;
  max-width: 600px; margin-left: auto; margin-right: auto;
  animation: fadeDown .8s .4s ease both;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeDown .8s .6s ease both;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-overlay { position: absolute; inset: 0; background: rgba(10,5,2,.28); z-index: 2; }
.hero-bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%; opacity: .28;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 30px; font-weight: 600;
  font-size: .9rem; transition: all var(--transition);
  cursor: pointer; border: 2px solid transparent; font-family: var(--font);
}
.btn-primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(232,103,26,.35);
}
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,103,26,.45);
}
.btn-gold {
  background: var(--gold); color: #fff; border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(245,166,35,.35);
}
.btn-gold:hover {
  background: #D4900F; border-color: #D4900F; transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }
.btn-outline-dark {
  background: transparent; color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: #fff; }

/* ── Stats Strip ── */
.stats-strip {
  background: var(--dark);
  padding: 30px 0;
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,.06), transparent);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; text-align: center;
}
.stat-item { color: #fff; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem; font-weight: 700; line-height: 1; color: var(--gold);
}
.stat-label { font-size: .78rem; opacity: .75; margin-top: 5px; }

/* ── Section ── */
.section { padding: 78px 0; }
.section-alt { background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; color: var(--primary);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--dark); margin-bottom: 12px;
}
.section-header p { color: var(--text-light); max-width: 540px; margin: 0 auto; }
.divider {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  margin: 16px auto 0; border-radius: 3px;
}

/* ── Tour Cards ── */
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }
.tour-card {
  background: var(--bg-card); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.tour-card:hover {
  transform: translateY(-7px); box-shadow: var(--shadow-hover);
  border-color: var(--border-dark);
}
.tour-img {
  position: relative; height: 210px; overflow: hidden;
  background: linear-gradient(135deg, #E8671A, #F5A623);
}
.tour-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease;
}
.tour-card:hover .tour-img img { transform: scale(1.07); }
.tour-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.tour-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.95); color: var(--primary);
  padding: 4px 12px; border-radius: 20px; font-size: .7rem; font-weight: 700;
  letter-spacing: .04em; box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.tour-body { padding: 20px; }
.tour-meta {
  display: flex; gap: 14px; font-size: .74rem;
  color: var(--text-muted); margin-bottom: 9px;
}
.tour-meta span { display: flex; align-items: center; gap: 4px; }
.tour-body h3 {
  font-size: 1rem; font-weight: 600; color: var(--dark);
  margin-bottom: 7px; line-height: 1.4;
}
.tour-body p {
  font-size: .83rem; color: var(--text-light); margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden; line-height: 1.6;
}
.tour-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.price { font-weight: 700; color: var(--primary); font-size: 1.15rem; }
.price span { font-size: .73rem; font-weight: 400; color: var(--text-muted); }
.ask-price-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; font-size: .78rem; font-weight: 700;
  background: linear-gradient(135deg,#fff7ed,#fff3e0);
  color: var(--primary); border: 1.5px solid var(--primary);
  border-radius: 20px; transition: var(--transition); white-space: nowrap;
  letter-spacing: .02em;
}
.ask-price-btn::before { content: '💬'; font-size: .82rem; }
.ask-price-btn:hover { background: var(--primary); color: #fff; }
.ask-price-sidebar {
  font-size: 1.5rem; font-weight: 800; color: var(--primary);
  padding: 16px 0 4px; letter-spacing: -.01em;
}
.btn-sm {
  padding: 7px 18px; font-size: .8rem;
  background: var(--primary-light); color: var(--primary);
  border-radius: 20px; font-weight: 600; border: 1px solid var(--primary);
  transition: var(--transition);
}
.btn-sm:hover { background: var(--primary); color: #fff; }

/* ── Why Us ── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }
.why-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .why-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .why-grid-3 { grid-template-columns: 1fr; } }
.why-card {
  text-align: center; padding: 36px 22px 28px;
  background: var(--bg-card); border-radius: 16px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--icon-color, var(--primary));
  transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(60,30,10,.13);
  border-color: var(--border-dark);
}
.why-icon {
  width: 72px; height: 72px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative;
  font-size: 2rem;
  box-shadow: 0 8px 20px var(--icon-shadow, rgba(232,103,26,.25));
}
.why-icon svg {
  width: 34px; height: 34px;
  stroke: #fff; stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.why-card h3 { font-size: .98rem; font-weight: 600; margin-bottom: 9px; color: var(--dark); }
.why-card p  { font-size: .82rem; color: var(--text-light); line-height: 1.65; }

/* ── Destinations ── */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 14px; }
.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 230px; cursor: pointer; transition: var(--transition);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.dest-card:hover img { transform: scale(1.08); }
.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 14px 14px;
  background: linear-gradient(transparent, rgba(20,10,3,.82));
  color: #fff;
  z-index: 3;
}
.dest-info h3 { font-size: .95rem; font-weight: 600; }
.dest-info p  { font-size: .73rem; opacity: .82; margin-top: 2px; color: var(--gold); }
.dest-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
/* Dest card image overlay */
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s; z-index: 1; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(10,5,2,.68) 0%, rgba(10,5,2,.05) 45%, transparent 70%); }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 22px; }
.testi-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border);
  position: relative; overflow: hidden; transition: box-shadow var(--transition), transform var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.testi-card::before {
  content: '\201C'; position: absolute; top: -10px; right: 16px;
  font-family: var(--font-heading); font-size: 7rem;
  color: var(--primary-light); line-height: 1; pointer-events: none;
}
.stars, .testi-stars { color: var(--gold); font-size: 1.05rem; margin-bottom: 12px; letter-spacing: 3px; }
.testi-text { font-size: .9rem; color: var(--text); margin-bottom: 18px; line-height: 1.78; font-style: italic; }
.testi-card p {
  font-size: .88rem; color: var(--text); margin-bottom: 18px;
  line-height: 1.75; position: relative;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.testi-name  { font-weight: 600; font-size: .88rem; color: var(--dark); }
.testi-loc   { font-size: .74rem; color: var(--text-muted); margin-top: 2px; }

/* ── Gallery ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 12px; }
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  height: 185px; background: linear-gradient(135deg, var(--primary), var(--gold));
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .42s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}

/* ── Gallery Page ── */
.gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
.filter-btn {
  padding: 8px 20px; border-radius: 25px;
  border: 1.5px solid var(--border-dark); background: var(--bg-card);
  cursor: pointer; font-size: .83rem; font-weight: 500;
  color: var(--text-light); transition: var(--transition); font-family: var(--font);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--primary); background: var(--primary); color: #fff;
}
.gallery-full { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 14px; }
.gallery-full .gallery-item { height: 225px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #C9530D 50%, var(--gold) 100%);
  padding: 64px 20px; color: #fff;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,103,26,.2), transparent 60%),
              radial-gradient(ellipse at 75% 50%, rgba(245,166,35,.14), transparent 55%);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 260px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.cta-banner .container { position: relative; }
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 8px;
}
.cta-banner p { opacity: .88; font-size: .96rem; }
.btn-lg { padding: 13px 28px; font-size: .95rem; }
.btn-lg svg { vertical-align: middle; margin-right: 7px; }

/* ── Forms ── */
.form-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600;
  margin-bottom: 6px; color: var(--text);
}
.form-control {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--border-dark); border-radius: var(--radius-sm);
  font-size: .88rem; font-family: var(--font);
  background: var(--bg); color: var(--text);
  transition: border var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,103,26,.1);
}
textarea.form-control { resize: vertical; min-height: 110px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.alert { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: .87rem; }
.alert-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.alert-error   { background: #FFF5F5; color: #9B1C1C; border: 1px solid #FED7D7; }

/* ── Page Header ── */
.page-header {
  background: var(--dark);
  padding: 64px 20px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(232,103,26,.22), transparent 55%);
}
.page-header > * { position: relative; }
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px;
}
.page-header p { opacity: .78; font-size: .95rem; }
.breadcrumb { margin-top: 14px; font-size: .78rem; opacity: .6; }
.breadcrumb a { color: #fff; }
.breadcrumb span { margin: 0 6px; }

/* ── Tour Detail ── */
.tour-detail-hero {
  background: var(--dark); height: 390px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.tour-detail-hero img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; opacity: .38;
}
.tour-detail-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff; padding: 20px;
}
.tour-detail-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.8rem); margin-bottom: 14px;
}
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; margin-top: 42px; }
.detail-info h2 {
  font-family: var(--font-heading); font-size: 1.4rem;
  color: var(--dark); margin: 26px 0 12px;
}
.detail-info h2:first-child { margin-top: 0; }
.detail-info ul { padding-left: 20px; color: var(--text); font-size: .9rem; line-height: 2; }
.detail-info ul li { list-style: disc; }
.detail-sidebar { position: sticky; top: 85px; }
.booking-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border); border-top: 4px solid var(--primary);
}
.booking-card .price-big {
  font-size: 2.1rem; font-weight: 700; color: var(--primary);
}
.booking-card .price-big span {
  font-size: .84rem; font-weight: 400; color: var(--text-muted);
}
.meta-list { margin: 16px 0; border-top: 1px solid var(--border); padding-top: 16px; }
.meta-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .87rem; padding: 7px 0; border-bottom: 1px solid var(--border);
}
.meta-list li strong { min-width: 80px; color: var(--text-muted); }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.about-img {
  border-radius: var(--radius); overflow: hidden; height: 420px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 {
  font-family: var(--font-heading); font-size: 2rem;
  color: var(--dark); margin-bottom: 16px;
}
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: .93rem; line-height: 1.8; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px; font-size: .9rem;
}
.check-list li::before {
  content: '✓'; color: var(--primary); font-weight: 700;
  margin-top: 1px; flex-shrink: 0;
}

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 44px; }
.contact-info h2 {
  font-family: var(--font-heading); font-size: 1.8rem;
  color: var(--dark); margin-bottom: 14px;
}
.contact-info p { color: var(--text-light); margin-bottom: 24px; font-size: .93rem; }
.info-card {
  display: flex; gap: 14px; margin-bottom: 16px; padding: 18px;
  background: var(--bg-card); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.info-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  box-shadow: 0 6px 16px rgba(232,103,26,.25);
}
.info-icon svg {
  width: 24px; height: 24px; stroke: #fff; stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.info-card h4 { font-size: .84rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.info-card p  { font-size: .81rem; color: var(--text-light); margin: 0; }

/* ── Footer ── */
.footer { background: var(--bg); border-top: 2px solid var(--border); color: var(--text); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .footer-logo img { height: 44px; width: auto; margin-bottom: 14px; }
.footer-col p { font-size: .84rem; color: var(--text-light); line-height: 1.8; margin-bottom: 18px; }
.footer-col h4 {
  color: var(--dark); font-size: .78rem; font-weight: 700;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em;
  padding-bottom: 8px; border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a {
  font-size: .84rem; color: var(--text-light); transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links li a::before { content: '›'; color: var(--primary); font-weight: 700; }
.footer-links li a:hover { color: var(--primary); padding-left: 3px; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .84rem; color: var(--text-light); }
.fc-icon { width: 32px; height: 32px; background: var(--primary-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); }
.fc-icon svg { width: 15px; height: 15px; }
.footer-contact a { color: var(--text-light); transition: color var(--transition); }
.footer-contact a:hover { color: var(--primary); }
.social-links { display: flex; gap: 10px; margin-top: 4px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--primary-light); border: 1.5px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--primary);
}
.social-links a svg { width: 17px; height: 17px; }
.social-links a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 18px 0; background: var(--bg-light);
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; font-size: .78rem; color: var(--text-muted);
}
.contact-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .82rem; margin-bottom: 9px; opacity: .75;
}
.contact-list a { color: var(--text-light); }
.contact-list a:hover { color: var(--primary); }

/* ── Go to Top ── */
.go-top {
  position: fixed; bottom: 164px; right: 33px; z-index: 9998;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 16px rgba(232,103,26,.4);
  opacity: 0; transform: translateY(20px);
  transition: all .3s ease; pointer-events: none;
}
.go-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.go-top:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 8px 22px rgba(232,103,26,.5); }

/* ── Blog Listing ── */
.blog-list-section { background: var(--bg-light); }
.blog-filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.blog-filter-btn {
  padding: 7px 18px; border-radius: 25px; font-size: .82rem;
  font-weight: 500; border: 1.5px solid var(--border-dark);
  background: #fff; color: var(--text-light); transition: var(--transition);
}
.blog-filter-btn.active, .blog-filter-btn:hover {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.blog-list-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
@media (max-width: 900px) { .blog-list-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .blog-list-grid { grid-template-columns: 1fr; } }
.ai-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(16,185,129,.9); color: #fff;
  padding: 3px 10px; border-radius: 12px; font-size: .68rem; font-weight: 700;
}
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-btn {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-dark); background: #fff;
  font-weight: 600; font-size: .88rem; color: var(--text); transition: var(--transition);
}
.page-btn.active, .page-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── Blog Post Page ── */
.blog-post-hero {
  height: 480px; background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-end;
}
.blog-post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,5,2,.85) 0%, rgba(10,5,2,.35) 60%, transparent 100%);
}
.blog-post-hero-content { position: relative; z-index: 2; color: #fff; padding-bottom: 48px; }
.blog-post-cat {
  display: inline-block; background: var(--primary); color: #fff;
  padding: 4px 14px; border-radius: 20px; font-size: .74rem;
  font-weight: 700; margin-bottom: 14px; letter-spacing: .04em;
}
.blog-post-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.25; margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.blog-post-meta { display: flex; gap: 18px; font-size: .82rem; opacity: .82; flex-wrap: wrap; }
.ai-badge-inline {
  background: rgba(16,185,129,.8); color: #fff;
  padding: 2px 10px; border-radius: 10px; font-size: .74rem; font-weight: 700;
}
.blog-post-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
@media (max-width: 960px) { .blog-post-layout { grid-template-columns: 1fr; } }

/* Blog content typography */
.blog-content-body h2 {
  font-family: var(--font-heading); font-size: 1.5rem;
  color: var(--dark); margin: 32px 0 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--primary-light);
}
.blog-content-body h3 { font-size: 1.15rem; color: var(--dark); margin: 22px 0 9px; }
.blog-content-body p { color: var(--text); line-height: 1.85; margin-bottom: 16px; font-size: .95rem; }
.blog-content-body ul { padding-left: 22px; margin-bottom: 16px; }
.blog-content-body li { color: var(--text); line-height: 1.8; margin-bottom: 6px; font-size: .93rem; list-style: disc; }
.blog-content-body strong { color: var(--dark); font-weight: 700; }

.blog-share {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin: 32px 0; padding: 18px 22px;
  background: var(--bg-light); border-radius: 12px;
  border: 1px solid var(--border);
}
.blog-share span { font-weight: 600; font-size: .88rem; color: var(--text); }
.share-btn {
  padding: 7px 18px; border-radius: 20px; font-size: .82rem;
  font-weight: 700; transition: var(--transition);
}
.share-btn.wa { background: #25D366; color: #fff; }
.share-btn.wa:hover { background: #1EBF5A; }
.share-btn.fb { background: #1877F2; color: #fff; }
.share-btn.fb:hover { background: #0E60C4; }

.related-posts { margin-top: 40px; }
.related-posts h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--dark); margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 700px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .3s;
}
.related-card:hover { transform: translateY(-4px); }
.related-card img { width: 100%; height: 130px; object-fit: cover; display: block; }
.related-card-body { padding: 12px 14px; background: #fff; }
.related-cat { font-size: .68rem; font-weight: 700; color: var(--primary); text-transform: uppercase; }
.related-card-body h4 { font-size: .84rem; font-weight: 600; color: var(--dark); margin: 5px 0; line-height: 1.4; }
.related-card-body small { font-size: .74rem; color: var(--text-muted); }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 22px; }
.sidebar-card {
  background: #fff; border-radius: 16px; padding: 22px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.sidebar-cta { text-align: center; background: linear-gradient(160deg,#fff7f0,#fff); border-color: rgba(232,103,26,.18); }
.sidebar-cta-icon { font-size: 2.8rem; margin-bottom: 12px; }
.sidebar-cta h4 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }
.sidebar-cta p { font-size: .84rem; color: var(--text-light); }
.sidebar-title { font-size: .88rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); display: inline-block; }
.recent-post {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.recent-post:last-child { border-bottom: none; }
.recent-post:hover { padding-left: 4px; }
.recent-post img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.recent-post p { font-size: .83rem; font-weight: 500; color: var(--dark); line-height: 1.4; margin-bottom: 4px; }
.recent-post small { font-size: .73rem; color: var(--text-muted); }
.sidebar-contact { background: var(--bg-light); }

/* ── Call Float & WhatsApp Float ── */
.call-float {
  position: fixed; bottom: 96px; right: 28px; z-index: 9999;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(2, 132, 199, .45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.call-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(2, 132, 199, .6);
}

.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(37,211,102,.6);
}

/* ── Scroll Reveal ── */
.tour-card, .why-card, .dest-card, .testimonial-card,
.section-header, .about-text, .info-card, .form-card, .testi-card {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .6s ease calc(var(--rv-delay, 0s)),
              transform .6s ease calc(var(--rv-delay, 0s));
}
.tour-card.revealed, .why-card.revealed, .dest-card.revealed,
.testimonial-card.revealed, .section-header.revealed,
.about-text.revealed, .info-card.revealed, .form-card.revealed, .testi-card.revealed {
  opacity: 1; transform: translateY(0);
}
/* about-grid special — reveal container, not children individually */
.about-grid { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.about-grid.revealed { opacity: 1; transform: translateY(0); }

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── How It Works ── */
.hiw-section { position: relative; overflow: hidden; background: #FFFBF7; }
.hiw-bg-deco {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(232,103,26,.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(245,166,35,.07) 0%, transparent 40%);
  pointer-events: none;
}
.hiw-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; position: relative;
}
.hiw-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px 32px;
  box-shadow: 0 4px 28px rgba(60,30,10,.08);
  border: 1px solid var(--border);
  text-align: center; position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hiw-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(60,30,10,.13); }
.hiw-card-mid {
  background: linear-gradient(160deg,#fff7f0,#fff);
  border-color: rgba(232,103,26,.2);
  margin-top: -10px;
}
.hiw-num {
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800;
  color: rgba(232,103,26,.1); line-height: 1; margin-bottom: 8px;
  position: absolute; top: 16px; right: 20px;
}
.hiw-icon-wrap {
  width: 72px; height: 72px; border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.hiw-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.hiw-card p  { font-size: .85rem; color: var(--text-light); line-height: 1.7; }
.hiw-arrow {
  position: absolute; top: 50%; right: -22px;
  transform: translateY(-50%);
  font-size: 1.6rem; color: var(--primary); font-weight: 700; z-index: 5;
}
@media (max-width: 800px) {
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-card-mid { margin-top: 0; }
  .hiw-arrow { display: none; }
}

/* ── Offer Strip ── */
.offer-strip {
  background: linear-gradient(135deg, #1C1917 0%, #3D2B1F 100%);
  padding: 18px 0;
  position: relative; overflow: hidden;
}
.offer-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,166,35,.12), transparent 70%);
}
.offer-strip-inner {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; justify-content: center;
  position: relative;
}
.offer-strip-icon { font-size: 1.6rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.offer-strip-text { color: rgba(255,255,255,.88); font-size: .92rem; }
.offer-highlight {
  color: var(--gold); font-weight: 700; font-size: 1.05rem;
  background: rgba(245,166,35,.15); padding: 2px 8px; border-radius: 6px;
}
.offer-strip-btn {
  background: var(--gold); color: #1C1917;
  padding: 8px 22px; border-radius: 25px;
  font-weight: 700; font-size: .85rem;
  transition: var(--transition);
  white-space: nowrap;
}
.offer-strip-btn:hover { background: #F5A623; transform: scale(1.05); }

/* ── Travel Tips ── */
.tips-section { position: relative; overflow: hidden; }
.tips-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,103,26,.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.tips-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 900px) { .tips-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .tips-grid { grid-template-columns: 1fr; } }
.tip-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(60,30,10,.07);
  border: 1px solid var(--border);
  border-top: 4px solid var(--tip-color, var(--primary));
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative; overflow: hidden;
}
.tip-card::after {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--tip-color, var(--primary));
  opacity: .06;
}
.tip-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(60,30,10,.12); }
.tip-icon { font-size: 2.4rem; margin-bottom: 14px; }
.tip-card h4 { font-size: .98rem; font-weight: 700; color: var(--dark); margin-bottom: 9px; }
.tip-card p  { font-size: .83rem; color: var(--text-light); line-height: 1.7; }

/* ── Blog ── */
.blog-section { background: var(--bg-light); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 22px rgba(60,30,10,.08);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 18px 48px rgba(60,30,10,.14); }
.blog-img {
  position: relative; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--gold));
}
.blog-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: #fff;
  padding: 4px 12px; border-radius: 20px;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
}
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex; gap: 14px; font-size: .74rem;
  color: var(--text-muted); margin-bottom: 10px;
}
.blog-body h3 {
  font-size: 1rem; font-weight: 700; color: var(--dark);
  margin-bottom: 9px; line-height: 1.45;
}
.blog-body p {
  font-size: .83rem; color: var(--text-light);
  line-height: 1.7; margin-bottom: 18px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 700; font-size: .85rem;
  transition: gap .2s ease;
}
.blog-link:hover { gap: 10px; }
.blog-link span { transition: transform .2s ease; }
.blog-link:hover span { transform: translateX(4px); }

/* add blog-card and tip-card to scroll reveal */
.blog-card, .tip-card, .hiw-card {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .6s ease calc(var(--rv-delay, 0s)),
              transform .6s ease calc(var(--rv-delay, 0s));
}
.blog-card.revealed, .tip-card.revealed, .hiw-card.revealed {
  opacity: 1; transform: translateY(0);
}

/* ── Vehicles Fleet Section ── */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}
.vehicle-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: default;
  user-select: none;
}
.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-dark);
}
.vehicle-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f1ede8;
}
.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.vehicle-card:hover .vehicle-img img {
  transform: scale(1.05);
}
.vehicle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.94);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.vehicle-permit-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(16, 185, 129, .92);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .03em;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.vehicle-body {
  padding: 22px;
}
.vehicle-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.vehicle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.vehicle-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 14px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light);
}
.vehicle-desc {
  font-size: .84rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 16px;
}
.vehicle-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed var(--border);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.vehicle-features li {
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.vehicle-features li svg {
  color: #10B981;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .detail-grid    { grid-template-columns: 1fr; }
  .about-grid     { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(253,250,247,.98);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 10px 14px 18px; box-shadow: 0 16px 36px rgba(60,30,10,.15); gap: 2px;
    border-top: 2px solid var(--primary);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li a  { padding: 11px 16px; display: block; color: var(--text) !important; }
  .nav-menu li a:hover, .nav-menu li a.active { color: var(--primary) !important; background: var(--primary-light); }
  .nav-menu .nav-cta { margin-top: 6px; text-align: center; color: #fff !important; }
  .nav-toggle     { display: flex; }
  .stats-grid     { grid-template-columns: repeat(2,1fr); }
  .form-grid      { grid-template-columns: 1fr; }
  .hero           { min-height: 80vh; }
}
@media (max-width: 480px) {
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr; }
  .wa-float      { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-float svg  { width: 25px; height: 25px; }
  .call-float    { bottom: 78px; right: 20px; width: 50px; height: 50px; }
  .call-float svg{ width: 22px; height: 22px; }
  .go-top        { bottom: 136px; right: 24px; width: 42px; height: 42px; }
}

