/* ============================================================
   PACHMARHI.COM — Main Stylesheet
   Fonts: Signika (headings), Open Sans (body)
   Primary: #FF9000 | Dark: #1c1c2e | Text: #444
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Signika:wght@400;600;700&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #444;
  background: #fff;
  line-height: 1.75;
  padding-top: 72px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #FF9000; text-decoration: none; transition: color .25s; }
a:hover { color: #e07b00; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Signika', sans-serif;
  color: #1c1c2e;
  line-height: 1.25;
}

/* ── Layout ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 72px 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 3px;
  font-family: 'Signika', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s, transform .2s;
  border: none;
}

.btn-primary {
  background: #FF9000;
  color: #fff;
}

.btn-primary:hover {
  background: #e07b00;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #FF9000;
  color: #FF9000;
}

.btn-outline:hover {
  background: #FF9000;
  color: #fff;
}

/* ── Section Titles ── */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #FF9000;
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-title p {
  max-width: 640px;
  margin: 0 auto;
  color: #777;
  font-size: 1rem;
}

/* ── HEADER / NAV ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: box-shadow .3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Signika', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1c1c2e;
}

.logo span { color: #FF9000; }
.logo:hover { color: #1c1c2e; }

nav#main-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}

nav#main-nav ul li a {
  color: #1c1c2e;
  font-family: 'Signika', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 3px;
  transition: color .2s, background .2s;
}

nav#main-nav ul li a:hover,
nav#main-nav ul li a.active {
  color: #FF9000;
  background: rgba(255,144,0,.08);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #1c1c2e;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── HERO SLIDER ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform .8s cubic-bezier(.77,0,.175,1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,46,.65) 0%, rgba(0,0,0,.3) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.slide-content h1 {
  font-family: 'Signika', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s .3s, transform .7s .3s;
}

.slide-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  max-width: 600px;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .5s, transform .7s .5s;
}

.slide-content .btn {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .7s .7s, transform .7s .7s, background .25s, transform .2s;
}

.slide.active .slide-content h1,
.slide.active .slide-content p,
.slide.active .slide-content .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
  backdrop-filter: blur(4px);
}

.slider-btn:hover { background: rgba(255,144,0,.7); border-color: #FF9000; }
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .25s, transform .25s;
  border: none;
}

.slider-dot.active {
  background: #FF9000;
  transform: scale(1.3);
}

/* ── INTRO SECTION ── */
#intro {
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.intro-text h2 span { color: #FF9000; }

.intro-text p {
  color: #666;
  margin-bottom: 12px;
}

.intro-text .btn { margin-top: 20px; }

.intro-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform .5s;
}

.intro-image:hover img { transform: scale(1.04); }

/* Stats bar */
.stats-bar {
  background: #FF9000;
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 28px 20px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.25);
}

.stat-item:last-child { border-right: none; }

.stat-item .number {
  font-family: 'Signika', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.stat-item .label {
  font-size: 0.85rem;
  opacity: .9;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ── FEATURED TOURS ── */
#featured-tours {
  background: #f8f7f5;
  background-image: url('https://www.pachmarhi.com/wp-content/themes/midway/images/patterns/pattern_1.jpg');
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.tour-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.tour-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.tour-card:hover .tour-card-img img { transform: scale(1.08); }

.tour-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #FF9000;
  color: #fff;
  font-family: 'Signika', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.tour-card-body {
  padding: 20px 22px 22px;
}

.tour-card-body .location {
  font-size: 0.8rem;
  color: #FF9000;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #1c1c2e;
}

.tour-card-body p {
  font-size: 0.88rem;
  color: #777;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-body a.read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FF9000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tour-card-body a.read-more::after {
  content: '→';
  transition: transform .2s;
}

.tour-card-body a.read-more:hover::after { transform: translateX(4px); }

/* ── GALLERY ── */
#gallery-preview {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,144,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s;
}

.gallery-overlay .icon {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .35s, transform .35s;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { background: rgba(255,144,0,.55); }
.gallery-item:hover .gallery-overlay .icon { opacity: 1; transform: scale(1); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff;
  padding: 30px 14px 12px;
  font-family: 'Signika', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform .35s;
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── TESTIMONIALS ── */
#testimonials {
  background: linear-gradient(135deg, #1c1c2e 0%, #2a2a4a 100%);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20rem;
  font-family: Georgia, serif;
  color: rgba(255,144,0,.06);
  line-height: 1;
  pointer-events: none;
}

#testimonials .section-title h2 { color: #fff; }
#testimonials .section-title p { color: rgba(255,255,255,.65); }
#testimonials .section-title h2::after { background: #FF9000; }

.testimonial-slider-wrap {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track { overflow: hidden; }

.testimonials-list {
  display: flex;
  transition: transform .6s cubic-bezier(.77,0,.175,1);
}

.testimonial {
  min-width: 100%;
  text-align: center;
  padding: 0 20px;
}

.testimonial p {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.85;
  margin-bottom: 28px;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FF9000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Signika', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.author-info .name {
  font-family: 'Signika', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
}

.author-info .title {
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  background: #1c1c2e;
  background-image: url('https://www.pachmarhi.com/wp-content/themes/midway/images/patterns/pattern_1.jpg');
  background-blend-mode: overlay;
  padding: 90px 0 50px;
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
}

.breadcrumb a { color: #FF9000; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── ABOUT PAGE ── */
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-text h2 {
  font-size: 1.6rem;
  margin: 28px 0 12px;
  color: #FF9000;
}

.about-text h2:first-child { margin-top: 0; }

.about-text p { margin-bottom: 14px; color: #555; }

.about-sidebar .map-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  margin-bottom: 28px;
}

.about-sidebar .map-card img { width: 100%; }
.about-sidebar .map-card .map-caption {
  padding: 14px 18px;
  font-family: 'Signika', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1c1c2e;
  text-align: center;
}

.info-card {
  background: #fff8ef;
  border-left: 4px solid #FF9000;
  border-radius: 0 6px 6px 0;
  padding: 18px 20px;
  margin-bottom: 16px;
}

.info-card h4 {
  font-size: 0.95rem;
  color: #1c1c2e;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 0.88rem;
  color: #666;
  margin: 0;
}

/* ── HOW TO REACH ── */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.reach-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  text-align: center;
  transition: transform .3s;
}

.reach-card:hover { transform: translateY(-4px); }

.reach-icon {
  width: 64px;
  height: 64px;
  background: #fff8ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #FF9000;
}

.reach-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.reach-card p { color: #666; font-size: 0.92rem; }

/* ── ALL TOURS PAGE ── */
.all-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

/* ── GALLERY PAGE ── */
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ── TOUR DETAIL ── */
.tour-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.tour-detail-content .tour-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  margin-bottom: 32px;
}

.tour-detail-content h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.tour-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.tour-meta .location-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff8ef;
  color: #FF9000;
  font-family: 'Signika', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 20px;
}

.tour-detail-content p {
  color: #555;
  margin-bottom: 14px;
  line-height: 1.8;
}

.tour-sidebar {
  position: sticky;
  top: 92px;
}

.sidebar-widget {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FF9000;
}

.related-place-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.related-place-card:last-child { border-bottom: none; }

.related-place-card img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.related-place-card .rpc-info h5 {
  font-size: 0.92rem;
  color: #1c1c2e;
  margin-bottom: 2px;
}

.related-place-card .rpc-info a {
  font-size: 0.8rem;
  color: #FF9000;
  font-weight: 600;
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.contact-info p { color: #666; margin-bottom: 24px; }

.contact-reason {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-reason .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: #fff8ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF9000;
  font-size: 1.1rem;
}

.contact-reason h5 {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.contact-reason p {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

.contact-form {
  background: #fff;
  border-radius: 10px;
  padding: 36px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1c1c2e;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #444;
  transition: border-color .25s;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF9000;
  background: #fff;
}

.form-group textarea { min-height: 130px; resize: vertical; }

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#lightbox.open { display: flex; }

#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(0,0,0,.5);
  object-fit: contain;
}

#lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity .2s;
}

#lightbox-close:hover { opacity: 1; }

#lightbox-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: 0.95rem;
  font-family: 'Signika', sans-serif;
}

/* ── FOOTER ── */
#site-footer {
  background: #1c1c2e;
  color: rgba(255,255,255,.75);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 320px;
}

.footer-widget h4 {
  color: #fff;
  font-family: 'Signika', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FF9000;
  display: inline-block;
}

.footer-widget ul li {
  margin-bottom: 9px;
}

.footer-widget ul li a {
  color: rgba(255,255,255,.65);
  font-size: 0.9rem;
  transition: color .2s;
}

.footer-widget ul li a:hover { color: #FF9000; }

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #FF9000; }

/* ── SCROLL TO TOP ── */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #FF9000;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255,144,0,.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  z-index: 999;
}

#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: #e07b00; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.bg-light { background: #f8f7f5; }
.highlight { color: #FF9000; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s, transform .6s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-image { order: -1; }
  .intro-image img { height: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.25); }
  .about-content { grid-template-columns: 1fr; }
  .tour-detail-layout { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  section { padding: 48px 0; }

  /* ── Mobile Nav ── */
  nav#main-nav { display: none; }
  nav#main-nav.open {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    padding: 8px 0 16px;
    z-index: 999;
  }
  nav#main-nav.open ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  nav#main-nav.open ul li {
    display: block;
    width: 100%;
  }
  nav#main-nav.open ul li a,
  nav#main-nav.open ul li button {
    display: block !important;
    width: 100%;
    padding: 12px 24px;
    border-radius: 0;
    text-align: left;
    font-family: 'Signika', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1c1c2e;
    background: none;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
  }
  nav#main-nav.open ul li a:hover,
  nav#main-nav.open ul li button:hover {
    color: #FF9000;
    background: rgba(255,144,0,.06);
  }
  .nav-toggle { display: flex; }

  /* ── Hero ── */
  #hero { height: 75vh; min-height: 420px; }
  .hero-slide h1 { font-size: 2rem; }
  .hero-slide p { font-size: 1rem; }
  .slider-btn { width: 38px; height: 38px; font-size: 1rem; }
  .slider-btn.prev { left: 12px; }
  .slider-btn.next { right: 12px; }

  /* ── Grids ── */
  .tours-grid { grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  /* ── Section headings ── */
  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: 0.95rem; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  section { padding: 40px 0; }

  #hero { height: 65vh; min-height: 380px; }
  .hero-slide h1 { font-size: 1.6rem; }

  .tours-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 24px 16px; }

  .section-title { font-size: 1.5rem; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
