/* ============================================
   Rajasthan Maheshwari Bhawan - Hotel Website
   Complete Stylesheet
   ============================================ */

/* ----- CSS Custom Properties ----- */
:root {
  --primary: #B87333;
  --primary-dark: #96602A;
  --primary-light: #D4956B;
  --secondary: #2E8B7A;
  --secondary-dark: #1F6B5F;
  --secondary-light: #5BB5A6;
  --accent: #C9A96E;
  --accent-light: #DBBF8B;
  --bg: #FDFAF6;
  --bg-alt: #F5EDE0;
  --text: #3A3A3A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.2);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ----- Container ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- Section Base ----- */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 1.05rem;
}

/* ----- Mandala Decorative Divider ----- */
.decorative-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  gap: 0;
}

.decorative-divider::before,
.decorative-divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(
    to var(--direction, right),
    var(--accent),
    transparent
  );
}

.decorative-divider::before {
  --direction: right;
  background: linear-gradient(to right, transparent, var(--accent));
}

.decorative-divider::after {
  --direction: left;
  background: linear-gradient(to left, transparent, var(--accent));
}

.decorative-divider span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--accent);
  transform: rotate(45deg);
  margin: 0 8px;
  flex-shrink: 0;
}

/* Alternative: if no span is present, use a pseudo-element approach on section titles */
.section-title::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: var(--accent);
  transform: rotate(45deg);
  margin: 15px auto 0;
  position: relative;
}

/* Only show ::after diamond if there is no .decorative-divider sibling following */
.section-title + .decorative-divider {
  margin-top: 5px;
}

.section-divider {
  text-align: center;
  margin-bottom: 30px;
}

.section-title:has(+ .decorative-divider)::after {
  display: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 15px 0;
  background: rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-transparent {
  background: rgba(0,0,0,0.3);
}

.navbar-scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.navbar-transparent .nav-logo {
  color: white;
}

.navbar-scrolled .nav-logo {
  color: #B87333;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  padding: 5px 0;
  position: relative;
  transition: var(--transition);
}

.navbar-transparent .nav-menu a {
  color: white;
}

.navbar-transparent .nav-menu a:hover,
.navbar-transparent .nav-menu a.active {
  color: white;
  opacity: 0.85;
}

.navbar-scrolled .nav-menu a {
  color: #3A3A3A;
}

.navbar-scrolled .nav-menu a:hover,
.navbar-scrolled .nav-menu a.active {
  color: #B87333;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #B87333;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.navbar-transparent .nav-menu a.active::after {
  background: var(--white);
}

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

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar-transparent .hamburger span {
  background: var(--white);
}

.navbar-scrolled .hamburger span {
  background: var(--text);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

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

/* --- Hero Keyframe Animations --- */
@keyframes heroGradientShift {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-18px) rotate(2deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
  75% {
    transform: translateY(-22px) rotate(1deg);
  }
}

@keyframes heroFloatAlt {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-14px) rotate(-2deg);
  }
  66% {
    transform: translateY(-24px) rotate(1.5deg);
  }
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLetterReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-12px);
  }
  60% {
    transform: translateX(-50%) translateY(-6px);
  }
}

@keyframes heroSpinSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url('../images/537762060.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* Dark overlay for text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Floating decorative elements */
.hero-floating {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-floating svg {
  display: block;
}

.hero-float-1 {
  top: 12%;
  left: 8%;
  opacity: 0.18;
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-float-2 {
  top: 20%;
  right: 10%;
  opacity: 0.15;
  animation: heroFloatAlt 10s ease-in-out infinite;
  animation-delay: -2s;
}

.hero-float-3 {
  bottom: 18%;
  left: 15%;
  opacity: 0.2;
  animation: heroFloat 12s ease-in-out infinite;
  animation-delay: -4s;
}

.hero-float-4 {
  bottom: 25%;
  right: 12%;
  opacity: 0.22;
  animation: heroFloatAlt 9s ease-in-out infinite;
  animation-delay: -1s;
}

.hero-float-5 {
  top: 50%;
  left: 5%;
  opacity: 0.15;
  animation: heroFloat 11s ease-in-out infinite;
  animation-delay: -3s;
}

.hero-float-6 {
  top: 35%;
  right: 5%;
  opacity: 0.18;
  animation: heroSpinSlow 30s linear infinite;
}

.hero-float-7 {
  bottom: 10%;
  left: 45%;
  opacity: 0.16;
  animation: heroFloatAlt 13s ease-in-out infinite;
  animation-delay: -5s;
}

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

/* Title with letter reveal animation */
.hero-content .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  white-space: nowrap;
}

.hero-title .hero-letter {
  display: inline-block;
  opacity: 0;
  animation: heroLetterReveal 0.5s ease forwards;
}

/* Tagline fade-in with delay */
.hero-content .hero-tagline {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 1.2s;
}

/* Subtitle fade-in with longer delay */
.hero-content .hero-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.7;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 1.6s;
}

/* CTA buttons fade-in */
.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 2.0s;
}

/* Scroll down indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: heroBounce 2s ease infinite;
  cursor: pointer;
  text-decoration: none;
}

.hero-scroll-indicator svg {
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

/* Legacy class support */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 115, 51, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--bg-alt);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.highlight-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.highlight-card {
  flex: 1;
  min-width: 150px;
  max-width: 220px;
  text-align: center;
  padding: 25px 15px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px var(--shadow);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

.highlight-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.highlight-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-image {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.stat-card {
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 120px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px var(--shadow);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

.stat-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.stat-card .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  line-height: 1.2;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 5px;
  display: block;
}

/* ============================================
   ROOMS SECTION
   ============================================ */
.rooms {
  background: var(--bg);
}

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

.room-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-hover);
}

.room-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Override old placeholder gradients — no longer needed with real images */
.room-card:nth-child(1) .room-image,
.room-card:nth-child(2) .room-image,
.room-card:nth-child(3) .room-image,
.room-card:nth-child(4) .room-image,
.room-card:nth-child(5) .room-image,
.room-card:nth-child(6) .room-image {
  background: none;
}

.room-details {
  padding: 25px;
}

.room-body {
  padding: 25px;
}

.room-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 10px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}

.room-amenities span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.room-amenities span i {
  color: var(--secondary);
  font-size: 0.9rem;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.room-price .price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
}

.room-price .per-night {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 400;
}

.room-price .price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

.btn-inquire {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  margin-top: 15px;
}

.btn-inquire:hover {
  background: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(184, 115, 51, 0.3);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--bg-alt);
}

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

.service-card {
  background: var(--white);
  padding: 30px 20px;
  text-align: center;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border-top: 3px solid transparent;
  box-shadow: 0 3px 10px var(--shadow);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-hover);
  border-top-color: var(--accent);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    background: var(--bg);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary);
    color: white;
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-caption {
    font-weight: 500;
    font-size: 1rem;
}

.gallery-overlay .fa-expand {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Make first two items span 2 columns for visual interest */
.gallery-item:nth-child(1) {
    grid-column: span 2;
}
.gallery-item:nth-child(2) {
    grid-column: span 2;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
    color: white;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 400;
}

/* ============================================
   EXPLORE / DESTINATIONS SECTION
   ============================================ */
.explore {
  background: var(--bg);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border-radius: 50px;
  border: 2px solid var(--secondary);
  background: transparent;
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--secondary);
  color: var(--white);
}

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

.destination-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.destination-card.hidden {
  display: none;
}

.destination-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card .destination-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

/* Placeholder gradients for destination images */
.destination-card:nth-child(1) .destination-image {
  background: linear-gradient(135deg, #2E8B57, #66CDAA);
}

.destination-card:nth-child(2) .destination-image {
  background: linear-gradient(135deg, #DAA520, #F0E68C);
}

.destination-card:nth-child(3) .destination-image {
  background: linear-gradient(135deg, #8B4513, #D2691E);
}

.destination-card:nth-child(4) .destination-image {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.destination-card:nth-child(5) .destination-image {
  background: linear-gradient(135deg, #CD853F, #DEB887);
}

.destination-card:nth-child(6) .destination-image {
  background: linear-gradient(135deg, #556B2F, #8FBC8F);
}

.destination-card:nth-child(7) .destination-image {
  background: linear-gradient(135deg, #9B7DB8, #C4A8D8);
}

.destination-card:nth-child(8) .destination-image {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.destination-card:nth-child(9) .destination-image {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

/* Category tags */
.category-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-tag.nature {
  background: #5BB5A6;
}

.category-tag.wildlife {
  background: var(--primary);
}

.category-tag.heritage {
  background: #9B7DB8;
}

.category-tag.temple {
  background: #C27C6E;
}

.destination-details {
  padding: 20px;
}

.destination-body {
  padding: 20px;
}

.destination-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.destination-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.destination-distance {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.destination-distance i {
  color: var(--primary);
}

/* Destination link styles */
.destination-link {
  text-decoration: none;
  color: inherit;
}

.destination-link h3 {
  transition: color 0.3s ease;
}

.destination-link:hover h3 {
  color: #B87333;
}

.destination-link .fa-external-link-alt {
  font-size: 0.7em;
  opacity: 0.5;
  margin-left: 5px;
}

.destination-learn-more {
  display: inline-block;
  margin-top: 10px;
  color: #2E8B7A;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.destination-learn-more:hover {
  color: #B87333;
}

/* Map container */
#map {
  height: 500px;
  width: 100%;
  border-radius: var(--border-radius);
  margin-top: 50px;
  box-shadow: 0 5px 20px var(--shadow);
  overflow: hidden;
  background: var(--bg-alt);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
  background: var(--bg-alt);
}

.reviews-container {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar for reviews */
.reviews-container::-webkit-scrollbar {
  height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
  background: var(--bg-alt);
  border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-dark);
}

/* Firefox scrollbar */
.reviews-container {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) var(--bg-alt);
}

.review-card {
  min-width: 320px;
  max-width: 350px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  scroll-snap-align: start;
  flex-shrink: 0;
  border-top: 4px solid var(--accent);
  box-shadow: 0 4px 15px var(--shadow);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: 0 8px 25px var(--shadow-hover);
}

.review-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.reviewer-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.review-date {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 2px;
}

.google-reviews-link {
  text-align: center;
  margin-top: 35px;
}

.google-reviews-link a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.google-reviews-link a:hover {
  color: var(--secondary-dark);
  gap: 12px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 25px var(--shadow);
}

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

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #AAAAAA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(46, 139, 122, 0.1);
}

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

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(184, 115, 51, 0.3);
  transform: translateY(-2px);
}

/* Contact Info — new card-based layout */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-info-wrapper h3,
.contact-form-wrapper h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 25px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border-left: 4px solid var(--primary, #B87333);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary, #B87333), var(--accent, #C9A96E));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.contact-card-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text, #3A3A3A);
}

.contact-card-content p {
  color: var(--text-light, #7A7A7A);
  font-size: 0.95rem;
  margin: 3px 0;
  line-height: 1.5;
}

.contact-card-content a {
  color: var(--secondary, #2E8B7A);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-card-content a:hover {
  color: var(--primary, #B87333);
}

.map-embed {
  margin-top: 10px;
}

.map-embed iframe {
  width: 100%;
  height: 250px;
  border-radius: var(--border-radius);
  border: none;
  box-shadow: 0 4px 15px var(--shadow);
}

/* Legacy contact styles — hidden/overridden */
.contact-info-card,
.contact-info-item,
.contact-icon,
.contact-text {
  display: none;
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 25px;
  right: 25px;
  padding: 15px 25px;
  border-radius: var(--border-radius);
  z-index: 9999;
  transform: translateX(150%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 20px var(--shadow-hover);
}

.toast.show {
  transform: translateX(0);
}

.toast-success {
  background: var(--secondary);
  color: var(--white);
}

.toast-error {
  background: #E74C3C;
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0 30px;
}

.footer-col h3 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 10px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-col p i {
  color: var(--accent);
  width: 20px;
  margin-right: 8px;
}

.footer-col p a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col p a:hover {
  color: var(--white);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  padding-bottom: 20px;
}

.footer-bottom .made-with-love {
  color: var(--accent);
}

/* ============================================
   TOURS & PACKAGES BANNER
   ============================================ */

.tours-banner {
  position: relative;
  margin: 60px 0 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.tours-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a3a2a 0%, #2E8B7A 50%, #1a5a4a 100%);
  z-index: 0;
}

.tours-banner-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
}

.tours-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  padding: 45px;
  align-items: center;
}

.tours-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tours-badge i {
  margin-right: 5px;
}

.tours-banner-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.tours-banner-left p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.tours-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.tours-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.tours-highlight i {
  color: var(--accent-light);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tours-price-card {
  background: white;
  border-radius: 16px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tours-price-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.tours-price-header i {
  color: var(--secondary);
}

.tours-price-amount {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.tours-price-amount .rupee {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

.tours-price-amount .amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}

.tours-price-amount .per {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-left: 2px;
}

.tours-price-note {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-bottom: 22px;
}

.tours-cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  margin-bottom: 10px;
}

.tours-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 50px;
  background: #25D366;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.tours-whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .tours-banner-content {
    grid-template-columns: 1fr;
    padding: 30px 25px;
    gap: 30px;
  }
  .tours-banner-left h3 {
    font-size: 1.4rem;
  }
  .tours-highlights {
    grid-template-columns: 1fr;
  }
  .tours-price-card {
    padding: 25px 20px;
  }
  .tours-price-amount .amount {
    font-size: 2.2rem;
  }
}

/* ============================================
   TOUR SERVICES POPUP
   ============================================ */

.tour-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.tour-popup.active {
  display: flex;
}

.tour-popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.tour-popup-content {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 45px 40px 35px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.tour-popup-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tour-popup-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.tour-popup-close:hover {
  color: var(--text);
}

.tour-popup-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(184, 115, 51, 0.3);
}

.tour-popup-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 12px;
}

.tour-popup-content > p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.tour-popup-features {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tour-popup-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tour-popup-feature i {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.tour-popup-feature:hover i {
  background: var(--secondary);
  color: white;
  transform: translateY(-3px);
}

.tour-popup-feature span {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
}

.tour-popup-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tour-popup-btn {
  padding: 12px 24px !important;
  font-size: 0.95rem !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.tour-popup-btn.btn-secondary {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.tour-popup-btn.btn-secondary:hover {
  background: var(--secondary);
  color: white;
}

.tour-popup-note {
  font-size: 0.85rem !important;
  color: var(--text-light) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

@media (max-width: 480px) {
  .tour-popup-content {
    padding: 35px 25px 25px;
  }
  .tour-popup-content h3 {
    font-size: 1.3rem;
  }
  .tour-popup-features {
    gap: 15px;
  }
  .tour-popup-actions {
    flex-direction: column;
  }
  .tour-popup-btn {
    width: 100% !important;
    justify-content: center;
  }
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* WhatsApp pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 95px;
  right: 30px;
  z-index: 999;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet landscape and small desktop */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2) { grid-column: span 1; }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content .hero-title,
  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

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

/* Tablet portrait and larger phones */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

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

  .section-subtitle {
    margin-bottom: 35px;
    font-size: 0.95rem;
  }

  /* Navigation */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-top: 1px solid #f0f0f0;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    padding: 12px 0;
    color: var(--text) !important;
    border-bottom: 1px solid #f5f5f5;
    display: block;
    width: 100%;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  /* Hero */
  .hero-content .hero-title,
  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .hero-content .hero-tagline,
  .hero-content .tagline {
    font-size: 1.2rem;
  }

  .hero-content .hero-subtitle,
  .hero-content .subtitle {
    font-size: 1rem;
  }

  .hero-cta,
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-float-1,
  .hero-float-5,
  .hero-float-6,
  .hero-float-7 {
    display: none;
  }

  .btn {
    width: 80%;
    max-width: 280px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    height: 300px;
    order: -1;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 15px;
  }

  .stat-card {
    min-width: calc(50% - 10px);
  }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Rooms */
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Explore */
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  #map {
    height: 350px;
    margin-top: 30px;
  }

  /* Reviews */
  .review-card {
    min-width: 280px;
    max-width: 300px;
    padding: 25px;
  }

  /* Contact */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 20px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h3::after {
    margin: 10px auto 0;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }
}

/* Small phones */
@media (max-width: 480px) {
  section {
    padding: 50px 0;
  }

  .container {
    padding: 0 15px;
  }

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

  /* Hero */
  .hero-content .hero-title,
  .hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.3;
    white-space: normal;
  }

  .hero-content .hero-tagline,
  .hero-content .tagline {
    font-size: 1.05rem;
  }

  .hero-content .hero-subtitle,
  .hero-content .subtitle {
    font-size: 0.9rem;
  }

  .hero-floating {
    display: none;
  }

  .hero-scroll-indicator {
    bottom: 20px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 100%;
  }

  /* About stats */
  .about-stats {
    flex-direction: column;
  }

  .stat-card {
    min-width: 100%;
  }

  .about-image {
    height: 250px;
  }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }

  /* Rooms */
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .room-image {
    height: 200px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Explore */
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .filter-btn {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  #map {
    height: 280px;
  }

  /* Reviews */
  .review-card {
    min-width: 260px;
    max-width: 280px;
    padding: 20px;
  }

  /* Contact */
  .contact-form {
    padding: 25px 20px;
  }

  .contact-map iframe {
    height: 250px;
  }

  /* Floating elements */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }

  .scroll-top {
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 22px;
    font-size: 1rem;
  }
}

/* ============================================
   UTILITY & ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: var(--primary-light);
  color: var(--white);
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in,
  .slide-left,
  .slide-right {
    opacity: 1;
    transform: none;
  }
}
