/* =============================================
   EOTT - Eye Of The Tiger | Custom Styles
   Colors: Dark Green #2e401c | Light Green #7d854a | Cream #eddecc
   ============================================= */

:root {
  --dark-green: #2e401c;
  --light-green: #7d854a;
  --cream: #eddecc;
  --cream-light: #f5ede0;
  --white: #ffffff;
  --text-dark: #1a1a1a;
}

/* ── Global ── */
* { box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  overflow-x: hidden!important; /* prevent horizontal scroll on mobile */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

a { text-decoration: none; }

/* ── Navbar ── */
.navbar {
  transition: background-color 0.4s ease, padding 0.3s ease;
  padding: 18px 0;
}

.navbar.transparent {
  background-color: transparent !important;
}

.navbar.scrolled {
  background-color: var(--dark-green) !important;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 1px;
}

.navbar-brand span {
  font-size: 0.65rem;
  display: block;
  letter-spacing: 3px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0.9;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 8px 16px !important;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--cream);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero / Video Header ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  /* Fallback image shown until video loads — replace URL with your own photo */
  background: #1a1a1a url('../image/hero.webp') center/cover no-repeat;
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Oversized to fill any aspect ratio without letterboxing */
  width: 177.78vh;   /* 16:9 — height × (16/9) */
  height: 56.25vw;   /* 16:9 — width  × (9/16) */
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(46,64,28,0.55) 0%,
    rgba(46,64,28,0.3) 50%,
    rgba(46,64,28,0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 14px;
 font-weight: 600;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
    text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: bold;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: var(--white);
}

/* ── Buttons ── */
.btn-eott {
  background-color: var(--light-green);
  color: var(--white);
  border: none;
  padding: 14px 38px;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0;
  transition: background 0.3s;
  display: inline-block;
}

.btn-eott:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.btn-eott-outline {
  border: 2px solid var(--light-green);
  color: var(--light-green);
  padding: 12px 32px;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s;
  display: inline-block;
}

.btn-eott-outline:hover {
  background-color: var(--light-green);
  color: var(--white);
}

.btn-eott-cream {
  background-color: var(--cream);
  color: var(--dark-green);
  border: none;
  padding: 14px 38px;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 0;
  transition: background 0.3s;
  display: inline-block;
}

.btn-eott-cream:hover {
  background-color: #e0d0ba;
  color: var(--dark-green);
}

/* ── Section Helpers ── */
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--light-green);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--dark-green);
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--light-green);
  margin: 0 auto 32px;
}

.section-divider.left {
  margin: 0 0 32px;
}

/* ── Ranthambore Info (Home p2) ── */
.ranthambore-section {
  background-color: var(--cream);
  padding: 100px 0;
}

.ranthambore-img-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.ranthambore-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-stat {
  text-align: center;
  padding: 20px 10px;
}

.info-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--light-green);
  font-weight: 700;
  line-height: 1;
}

.info-stat .label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-top: 6px;
}

/* ── Booking Section (Home p3) ── */
.booking-section {
  background: linear-gradient(rgba(46,64,28,0.88), rgba(46,64,28,0.88)),
              url('../image/contact-bg.jpg') center/cover no-repeat;
  padding: 100px 0;
  color: var(--white);
}

.booking-form-wrap {
  background-color: var(--cream);
  padding: 48px 40px;
  color: var(--dark-green);
}

.booking-form-wrap .form-label {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark-green);
}

.booking-form-wrap .form-control,
.booking-form-wrap .form-select {
  border: 1px solid #c8baa8;
  border-radius: 0;
  background-color: var(--white);
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--dark-green);
}

.booking-form-wrap .form-control:focus,
.booking-form-wrap .form-select:focus {
  border-color: var(--light-green);
  box-shadow: none;
}

.booking-form-wrap .form-check-input {
  border-color: var(--light-green);
  border-radius: 2px;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  cursor: pointer;
}

.booking-form-wrap .form-check-input:checked {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

.booking-form-wrap .form-check-input:focus {
  box-shadow: none;
  border-color: var(--light-green);
}

.booking-form-wrap .form-check-label {
  font-size: 0.92rem;
  color: var(--dark-green);
  cursor: pointer;
}

/* ── Gallery Section (Home p4) ── */
.gallery-section {
  background-color: var(--white);
  padding: 100px 0;
}

.gallery-carousel .carousel-inner {
  overflow: hidden;
}

.gallery-carousel .carousel-item img {
  height: 520px;
  object-fit: cover;
  width: 100%;
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
  width: 48px;
  height: 48px;
  background-color: var(--light-green);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  border-radius: 0;
}

.gallery-carousel .carousel-control-prev { left: 16px; }
.gallery-carousel .carousel-control-next { right: 16px; }

.gallery-carousel .carousel-indicators [data-bs-target] {
  background-color: var(--light-green);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.5;
}

.gallery-carousel .carousel-indicators .active {
  opacity: 1;
}

/* ── FAQ Section ── */
.faq-section {
  background-color: var(--cream);
  padding: 100px 0;
}

.faq-section .accordion-item {
  background-color: var(--cream);
  border: none;
  border-bottom: 1px solid #cfc0a8;
  border-radius: 0 !important;
}

.faq-section .accordion-button {
  background-color: var(--cream);
  color: var(--dark-green);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 22px 0;
  border-radius: 0 !important;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: var(--cream);
  color: var(--light-green);
}

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e401c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237d854a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
  background-color: var(--cream);
  color: #555;
  padding: 0 0 24px;
  line-height: 1.85;
  font-size: 0.95rem;
}

/* ── Testimonials ── */
.testimonials-section {
  background-color: var(--dark-green);
  padding: 100px 0;
  color: var(--white);
}

.testimonial-card {
  text-align: center;
  padding: 20px 40px 40px;
  max-width: 680px;
  margin: 0 auto;
}

.testimonial-card .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--light-green);
  display: block;
  margin-bottom: 28px;
}

.testimonial-card p {
  font-size: 1.08rem;
  line-height: 1.9;
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-card .author-name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.testimonial-card .author-title {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  margin-top: 4px;
}

.testimonial-card .stars {
  color: var(--cream);
  font-size: 0.9rem;
  margin-bottom: 24px;
  letter-spacing: 3px;
}

.testimonials-carousel .carousel-indicators [data-bs-target] {
  background-color: var(--light-green);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.5;
}

.testimonials-carousel .carousel-indicators .active {
  opacity: 1;
}

/* ── Instagram Feed ── */
.instagram-section {
  padding: 80px 0;
  background-color: var(--cream-light);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: #c5b89a;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,64,28,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
  font-size: 1.5rem;
  gap: 4px;
}

.insta-overlay small {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* ── About Section ── */
.about-section {
  padding: 100px 0;
  background-color: var(--white);
}

.about-img-stack {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 82%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  border: 6px solid var(--white);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  left: 0;
  background-color: var(--light-green);
  color: var(--white);
  text-align: center;
  padding: 20px 28px;
  z-index: 2;
}

.about-badge .years {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .years-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ── Services Section ── */
.services-section {
  padding: 0;
}

.services-header-img {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.services-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,64,28,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 20px;
}

.services-header-overlay h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 10px;
}

.services-header-overlay p {
  max-width: 560px;
  font-size: 1rem;
  opacity: 0.88;
}

.services-cards-bg {
  background-color: var(--cream);
  padding: 70px 0;
}

.service-card {
  text-align: center;
  padding: 40px 28px;
  background-color: var(--white);
  height: 100%;
}

.service-card .icon {
  width: 64px;
  height: 64px;
  background-color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--light-green);
}

.service-card h5 {
  color: var(--dark-green);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.service-card p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.85;
  margin: 0;
}

/* ── Other Attractions ── */
.attractions-section {
  background-color: var(--dark-green);
  padding: 100px 0;
  color: var(--white);
}

.attraction-card {
  background-color: rgba(255,255,255,0.06);
  padding: 48px 36px;
  text-align: center;
  height: 100%;
  border-top: 3px solid var(--light-green);
}

.attraction-card .attr-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--light-green);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}

.attraction-card h4 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.attraction-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.85;
  margin: 0;
}

.attractions-carousel .carousel-control-prev,
.attractions-carousel .carousel-control-next {
  width: 44px;
  height: 44px;
  background-color: var(--light-green);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin-top: 0;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,64,28,0.2);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

/* ── About Page: Ranthambore Section ── */
.ranthambore-about-section {
  padding: 100px 0;
  background-color: var(--cream);
}

.fact-box {
  background-color: var(--white);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
}

.fact-box .fact-icon {
  font-size: 2rem;
  color: var(--light-green);
  margin-bottom: 12px;
}

.fact-box h5 {
  color: var(--dark-green);
  font-size: 1rem;
  margin-bottom: 8px;
}

.fact-box p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0;
}

/* ── Gallery Page ── */
.gallery-page-section {
  padding: 80px 0;
  background-color: var(--white);
}

.gallery-main-carousel .carousel-item img {
  height: 560px;
  object-fit: cover;
}

.gallery-main-carousel .carousel-control-prev,
.gallery-main-carousel .carousel-control-next {
  width: 48px;
  height: 48px;
  background-color: var(--light-green);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.gallery-thumbs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.gallery-thumb {
  width: calc(16.66% - 6px);
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Contact Page ── */
.contact-section {
  padding: 100px 0;
  background-color: var(--cream);
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--light-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info-item h6 {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-green);
  margin-bottom: 5px;
  font-family: 'Lato', sans-serif;
}

.contact-info-item p {
  color: var(--dark-green);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-form-wrap {
  background-color: var(--white);
  padding: 48px 40px;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select,
.contact-form-wrap textarea {
  border: 1px solid #c8baa8;
  border-radius: 0;
  padding: 12px 16px;
  font-size: 0.92rem;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--light-green);
  box-shadow: none;
}

.contact-form-wrap .form-label {
  font-size: 0.76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark-green);
}

.map-wrap {
  margin-top: 60px;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* ── Footer ── */
footer {
  background-color: var(--dark-green);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 30px;
}

footer h5 {
  color: var(--cream);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: color 0.2s;
}

footer ul li a:hover {
  color: var(--cream);
}

footer p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
  display: block;
}

.footer-brand-tagline {
  font-size: 0.62rem;
  letter-spacing: 3.5px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  display: block;
  margin-top: 2px;
}

.footer-divider {
  border-color: rgba(255,255,255,0.12);
  margin: 40px 0 20px;
}

.footer-bottom {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition: background 0.3s;
}

.social-links a:hover {
  background: var(--light-green);
  color: var(--white);
}

/* ── Gallery dot indicators (outside carousel) ── */
.gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #c8baa8;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.gallery-dot.active,
.gallery-dot:hover {
  background-color: var(--light-green);
  transform: scale(1.3);
}

/* ── Navbar dropdown ── */
.navbar-nav .dropdown-menu {
  background-color: var(--light-green);
  border: none;
  border-radius: 0;
  padding: 6px 0;
  min-width: 220px;
  margin-top: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.navbar-nav .dropdown-item {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  background-color: var(--dark-green);
  color: var(--cream);
}
/* Arrow on dropdown toggle */
.navbar-nav .dropdown-toggle::after {
  border-top-color: rgba(255,255,255,0.8);
  vertical-align: 0.15em;
}

/* ── Utility ── */
.bg-cream { background-color: var(--cream); }
.bg-dark-green { background-color: var(--dark-green); }
.bg-light-green { background-color: var(--light-green); }
.text-cream { color: var(--cream) !important; }
.text-light-green { color: var(--light-green) !important; }
.text-dark-green { color: var(--dark-green) !important; }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤991px)
══════════════════════════════════════ */
@media (max-width: 991px) {

  /* Navbar */
  .navbar-collapse {
    background-color: var(--dark-green);
    padding: 12px 16px 16px;
    margin-top: 8px;
    border-radius: 0;
  }
  .navbar-nav .nav-link { padding: 10px 12px !important; }
  .navbar-nav .nav-link::after { display: none; }

  /* Sections reduce padding */
  .ranthambore-section,
  .booking-section,
  .gallery-section,
  .faq-section,
  .testimonials-section,
  .about-section,
  .attractions-section,
  .ranthambore-about-section { padding: 70px 0; }

  /* About image stack */
  .about-img-stack { height: 360px; }

  /* Instagram */
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  /* Gallery thumbnails */
  .gallery-thumb { width: calc(25% - 6px); }

  /* Services header image */
  .services-header-img { height: 280px; }

  /* Page hero inner pages */
  .page-hero { min-height: 280px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤767px)
══════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Navbar ── */
  .navbar { padding: 12px 0; }
  .navbar-brand { font-size: 1.3rem; }
  .navbar-brand span { font-size: 0.58rem; letter-spacing: 2px; }

  /* ── Hero ── */
  .hero { height: 100svh; min-height: 560px; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 3px; }
  .hero-content { padding: 0 16px; }
  .hero-content .d-flex { flex-direction: column; align-items: center; }
  .btn-eott, .btn-eott-outline, .btn-eott-cream { width: 100%; max-width: 280px; text-align: center; }

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

  /* ── Ranthambore section ── */
  .ranthambore-section { padding: 60px 0; }
  .ranthambore-img-wrap { height: 260px; margin-bottom: 12px; }

  /* ── Wildlife Safaris cards ── */
  .gallery-section,
  .faq-section,
  .testimonials-section,
  .about-section,
  .attractions-section,
  .instagram-section { padding: 60px 0; }

  /* ── Booking form ── */
  .booking-section { padding: 60px 0; }
  .booking-form-wrap { padding: 28px 16px; }
  .booking-form-wrap h4 { font-size: 1.25rem; }

  /* ── Contact form ── */
  .contact-section { padding: 60px 0; }
  .contact-form-wrap { padding: 28px 16px; }

  /* ── Gallery carousel ── */
  .gallery-carousel .carousel-item img { height: 260px; }
  .gallery-main-carousel .carousel-item img { height: 260px; }
  .gallery-thumb { width: calc(33.33% - 6px); }

  /* ── About image stack ── */
  .about-img-stack { height: 280px; }
  .about-img-secondary { width: 48%; height: 48%; }
  .about-badge { padding: 14px 18px; }
  .about-badge .years { font-size: 1.8rem; }

  /* ── Attraction cards ── */
  .attraction-card { padding: 32px 20px; }

  /* ── Instagram ── */
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }

  /* ── Services ── */
  .services-header-img { height: 220px; }
  .services-header-overlay h2 { font-size: 1.5rem; }
  .services-header-overlay p { font-size: 0.85rem; }
  .services-cards-bg { padding: 50px 0; }

  /* ── Testimonials ── */
  .testimonial-card { padding: 10px 16px 30px; }
  .testimonial-card p { font-size: 0.95rem; }
  .testimonial-card .quote-mark { font-size: 4rem; }

  /* ── Page hero (inner pages) ── */
  .page-hero { min-height: 240px; }
  .page-hero-content h1 { font-size: 1.8rem; }

  /* ── Wildlife Safaris section ── */
  section[style*="background-color:var(--cream)"] { padding: 50px 0 !important; }

  /* ── Hero buttons side by side on mobile ── */
  .hero-btns { gap: 12px !important; }
  .hero-btns .btn-eott,
  .hero-btns .btn-eott-outline { width: auto; max-width: none; padding: 12px 24px; font-size: 0.85rem; }

  /* ── Map ── */
  .map-wrap iframe { height: 300px; }
  .map-wrap { margin-top: 40px; }

  /* ── Footer ── */
  footer { padding: 50px 0 24px; }
  .footer-brand { font-size: 1.5rem; }
  .footer-bottom { text-align: center; }
  .footer-bottom .col-md-6:last-child { margin-top: 6px; }

  /* ── Ranthambore about (about page) ── */
  .ranthambore-about-section { padding: 60px 0; }

  /* ── Info stats ── */
  .info-stat .number { font-size: 1.8rem; }
  .info-stat .label { font-size: 0.68rem; }

  /* ── Booking procedure steps ── */
  .booking-section .col-lg-5,
  .booking-section .col-lg-7 { padding-left: 16px; padding-right: 16px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-thumb { width: calc(50% - 6px); }
  .hero-title { font-size: 1.9rem; }
  .ranthambore-img-wrap { height: 360px; }
  .gallery-carousel .carousel-item img { height: 220px; }
  .page-hero { min-height: 210px; }
  .page-hero-content h1 { font-size: 1.5rem; }
  .about-img-stack { height: 400px; }

  /* Booking form: stack all fields full width */
  .booking-form-wrap .row > [class*="col-md"] { flex: 0 0 100%; max-width: 100%; }

  /* Contact form: same */
  .contact-form-wrap .row > [class*="col-md"] { flex: 0 0 100%; max-width: 100%; }

  /* Section paddings tighter */
  .ranthambore-section,
  .booking-section,
  .gallery-section,
  .faq-section,
  .about-section,
  .attractions-section { padding: 48px 0; }
}
