/* ===== Kesar Haveli — Premium Theme ===== */
:root {
  --maroon: #6b1a1a;
  --maroon-dark: #4a0f0f;
  --maroon-light: #8b2e2e;
  --gold: #c9a227;
  --gold-light: #e8c84a;
  --gold-pale: #f5e6b8;
  --cream: #fff9f0;
  --cream-dark: #f3e4cc;
  --text: #2c1810;
  --text-muted: #5c4033;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(74, 15, 15, 0.15);
  --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.25);
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', 'Marcellus', serif;
  --font-body: 'Poppins', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Preloader ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--gold-light);
  letter-spacing: 4px;
  animation: pulse-gold 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin-top: 2rem;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  animation: loading-bar 1.2s ease-in-out infinite;
}

@keyframes loading-bar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.02); }
}

/* ===== Floating Particles ===== */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s ease-in-out infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(74, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 0.75rem 2rem;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-brand span {
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.4);
  color: var(--maroon-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 5, 5, 0.45) 0%,
    rgba(74, 15, 15, 0.65) 45%,
    rgba(44, 24, 16, 0.92) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fade-down 1s ease 0.3s both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fade-up 1s ease 0.5s both;
}

.hero h1 .gold {
  color: var(--gold-light);
  display: block;
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fade-up 1s ease 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 1s ease 0.9s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(201, 162, 39, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--maroon);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.45);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease infinite;
}

.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}

.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-dot {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Section Common ===== */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--maroon);
  margin-bottom: 1rem;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

.section-desc {
  max-width: 650px;
  margin: 1.5rem auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== Stats ===== */
.stats {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.about-image-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  z-index: 2;
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--maroon);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--cream-dark);
  border-radius: 10px;
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateX(5px);
  background: var(--gold-pale);
}

.about-feature-icon {
  font-size: 1.5rem;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* ===== Amenities ===== */
.amenities {
  background: var(--cream-dark);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--gold-pale);
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.amenity-card h4 {
  font-family: var(--font-display);
  color: var(--maroon);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.amenity-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Gallery ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--maroon-light);
  background: transparent;
  color: var(--maroon);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item a {
  display: block;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item .caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,15,15,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--maroon-dark);
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .caption {
  opacity: 1;
}

.gallery-item:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* ===== Packages ===== */
.packages {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(74, 15, 15, 0.2);
}

.package-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--maroon);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.package-header {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  padding: 2rem;
  text-align: center;
  color: var(--white);
}

.package-header .icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.package-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
}

.package-price del {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-left: 0.5rem;
}

.package-offer {
  display: inline-block;
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.package-body {
  padding: 2rem;
}

.package-body ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.package-body li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.package-body li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
}

.package-body .btn {
  width: 100%;
  justify-content: center;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, var(--maroon-light) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  animation: rotate-slow 30s linear infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  bottom: -150px;
  left: -50px;
  animation: rotate-slow 25s linear infinite reverse;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner .hero-buttons {
  position: relative;
  z-index: 1;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--white);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 2rem;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  font-style: normal;
}

.testimonial-author {
  font-weight: 600;
  color: var(--maroon);
}

.testimonial-event {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== Skip link (HEO / Accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10002;
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--white);
}

/* ===== SEO + HEO Venue Guide ===== */
.seo-guide {
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.seo-guide-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.85;
}

.seo-guide-content h3 {
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.75rem;
}

.seo-guide-content p {
  margin-bottom: 1rem;
}

.seo-guide-content a {
  color: var(--maroon-light);
  font-weight: 500;
}

.seo-guide-content a:hover {
  color: var(--gold);
}

.seo-guide-list {
  margin: 0.75rem 0 1rem 1.25rem;
}

.seo-guide-list li {
  margin-bottom: 0.5rem;
}

.seo-guide-keywords {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.85;
  padding-top: 1rem;
  border-top: 1px dashed var(--cream-dark);
  margin-top: 1.5rem !important;
}

/* ===== FAQ (SEO + AEO) ===== */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--cream);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gold-pale);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--maroon);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  transition: background 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  background: var(--gold-pale);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item a {
  color: var(--maroon-light);
  font-weight: 500;
}

.faq-item a:hover {
  color: var(--gold);
}

/* ===== Map & Directions ===== */
.map-section {
  padding: 0 0 5rem;
  background: var(--cream-dark);
}

.map-section .section-header {
  padding: 5rem 2rem 2rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-pale);
  height: 100%;
}

.location-card h3 {
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.location-address {
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--cream-dark);
}

.landmark-guide h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.landmark-guide ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.landmark-guide li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--cream-dark);
}

.landmark-guide li:last-child {
  border-bottom: none;
}

.landmark-guide li span {
  flex-shrink: 0;
}

.route-info {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.route-info strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.route-info p {
  margin: 0;
  font-size: 0.95rem;
}

.route-duration {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem !important;
  margin-top: 0.25rem !important;
}

.direction-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.direction-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 2px solid var(--cream-dark);
  background: var(--cream);
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.direction-btn strong {
  display: block;
  font-size: 0.9rem;
  color: var(--maroon);
}

.direction-btn small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.direction-btn-icon {
  font-size: 1.4rem;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.direction-btn:hover,
.direction-btn:focus-visible {
  transform: translateX(4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  outline: none;
}

.direction-btn-google:hover {
  background: #e8f4fd;
  border-color: #4285f4;
}

.direction-btn-apple:hover {
  background: #f0f0f0;
}

.direction-btn-locate:hover,
.direction-btn-route:hover {
  background: var(--gold-pale);
}

.direction-btn-copy:hover {
  background: #f0fff4;
  border-color: #25d366;
}

.direction-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.location-status {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  min-height: 1.2em;
  text-align: center;
}

.location-status.success {
  color: #1a7f4b;
}

.location-status.error {
  color: #c0392b;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--gold-pale);
  min-height: 480px;
}

#map {
  height: 100%;
  min-height: 480px;
  width: 100%;
  z-index: 1;
}

.map-floating-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-floating-btn-gps {
  bottom: 4rem;
  background: var(--maroon);
  color: var(--white);
}

.map-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.leaflet-popup-content-wrapper {
  background-color: var(--cream);
  color: var(--text);
  font-size: 14px;
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow);
  min-width: 220px;
}

.leaflet-popup-tip {
  background-color: var(--cream);
}

.custom-popup h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--maroon);
  font-family: var(--font-display);
}

.custom-popup p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.custom-popup .popup-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.custom-popup .popup-btn {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.custom-popup .popup-btn-primary {
  background: var(--maroon);
  color: var(--white);
}

.custom-popup .popup-btn-secondary {
  background: var(--gold);
  color: var(--maroon-dark);
}

.custom-popup .popup-btn:hover {
  opacity: 0.9;
}

.user-marker-icon {
  background: #4285f4;
  border: 3px solid white;
  border-radius: 50%;
  width: 16px !important;
  height: 16px !important;
  margin-left: -8px !important;
  margin-top: -8px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Nav overlay (mobile) */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(2px);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--gold-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(5px);
}

.contact-item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--white);
}

.contact-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

.contact-cta-box {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px solid var(--gold-pale);
}

.contact-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--maroon);
  margin-bottom: 1rem;
}

.contact-cta-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.phone-display {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--maroon);
  margin-bottom: 1.5rem;
  animation: pulse-phone 2s ease-in-out infinite;
}

.phone-secondary {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  opacity: 0.85;
  font-weight: 500;
}

@keyframes pulse-phone {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.contact-cta-box .hero-buttons {
  flex-direction: column;
  width: 100%;
}

.contact-cta-box .btn {
  width: 100%;
  justify-content: center;
}

/* ===== Footer ===== */
footer {
  background: var(--maroon-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer-brand + p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.footer-social {
  margin-top: 1.25rem;
}

.footer-social h4 {
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateX(4px);
}

.social-icon {
  font-size: 1.1rem;
}

.contact-social {
  margin-top: 0.35rem !important;
}

.contact-social a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
}

.contact-social a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== Floating Action Buttons ===== */
.fab-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: var(--transition);
  animation: fab-enter 0.6s ease both;
}

.fab:hover {
  transform: scale(1.1);
}

.fab-call {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  animation-delay: 0.2s;
}

.fab-whatsapp {
  background: #25d366;
  animation-delay: 0.4s;
}

@keyframes fab-enter {
  from { opacity: 0; transform: translateY(20px) scale(0.5); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.fab-pulse {
  animation: fab-pulse 2s ease-in-out infinite;
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7); }
}

/* ===== Mobile Call Bar ===== */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}

.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.mobile-call-bar .call-btn {
  background: var(--maroon);
  color: var(--white);
}

.mobile-call-bar .wa-btn {
  background: #25d366;
  color: var(--white);
}

/* ===== Audio Control ===== */
.audio-control {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(74, 15, 15, 0.85);
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.audio-control:hover {
  background: var(--maroon);
  transform: scale(1.1);
}

.audio-control.playing {
  animation: audio-pulse 1.5s ease-in-out infinite;
}

@keyframes audio-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201, 162, 39, 0); }
}

/* ===== AOS Custom ===== */
[data-aos] {
  pointer-events: auto;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
  }

  .map-wrapper {
    min-height: 380px;
    order: -1;
  }

  #map {
    min-height: 380px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image-badge {
    right: 1rem;
  }

  .package-card.featured {
    transform: none;
  }

  .package-card.featured:hover {
    transform: translateY(-10px);
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    align-items: center;
  }

  .social-link {
    max-width: 220px;
    justify-content: center;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  .nav-brand {
    font-size: 1.15rem;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--maroon-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1rem;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem !important;
    display: block !important;
  }

  section {
    padding: 3rem 1rem;
  }

  .map-section {
    padding-bottom: 3rem;
  }

  .map-section .section-header {
    padding: 3rem 1rem 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    letter-spacing: 2px;
  }

  .stats {
    padding: 2.5rem 1rem;
  }

  .stat-item {
    padding: 1rem 0.5rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 260px;
  }

  .about-image-badge {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
    right: 0.5rem;
    bottom: 1rem;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .gallery-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }

  .contact-info-card,
  .contact-cta-box {
    padding: 1.75rem 1.25rem;
  }

  .phone-display {
    font-size: 1.5rem;
  }

  .phone-secondary {
    font-size: 1rem !important;
  }

  .cta-banner {
    padding: 3rem 1rem;
  }

  .faq-item summary {
    font-size: 1rem;
    padding: 1rem 1.15rem;
  }

  .faq-item p {
    padding: 0 1.15rem 1rem;
    font-size: 0.9rem;
  }

  .location-grid {
    padding: 0 1rem;
    gap: 1rem;
  }

  .location-card {
    padding: 1.25rem;
  }

  .map-wrapper {
    min-height: 320px;
  }

  #map {
    min-height: 320px;
  }

  .direction-btn {
    padding: 0.9rem;
    min-height: 56px;
  }

  .mobile-call-bar {
    display: flex;
    padding: 0.65rem 0.75rem;
    padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  }

  .fab-container {
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    right: 0.75rem;
  }

  .fab-call {
    display: none;
  }

  .audio-control {
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    left: 0.75rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }

  .testimonial-quote {
    font-size: 1.05rem;
  }

  .package-header {
    padding: 1.5rem;
  }

  .package-body {
    padding: 1.5rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
  }

  .map-wrapper {
    min-height: 280px;
    border-width: 2px;
  }

  #map {
    min-height: 280px;
  }

  .direction-btn strong {
    font-size: 0.85rem;
  }

  .direction-btn small {
    font-size: 0.7rem;
  }

  .navbar.scrolled {
    padding: 0.6rem 0.75rem;
  }
}

@media (max-width: 360px) {
  .nav-brand {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .mobile-call-bar a {
    font-size: 0.8rem;
    padding: 0.75rem 0.5rem;
  }
}
