/* ============================================
   LANGA MANGANIYAR FOLK - ROYAL RAJASTHAN LUXURY
   ============================================ */
:root {
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --gold-dark: #8b6914;
  --maroon: #6b1d2a;
  --maroon-dark: #3d0f17;
  --sand: #d4c4a8;
  --sand-light: #f5f0e6;
  --cream: #faf8f3;
  --black: #0d0a08;
  --black-soft: #1a1512;
  --text: #2c2419;
  --text-muted: #5c5248;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 20px 60px rgba(13, 10, 8, 0.25);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--maroon); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10001; width: 0%;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--maroon-dark);
}
.display-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.02em;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.gold-divider {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}
.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 720px; }

/* Navbar */
.navbar-royal {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent;
}
.navbar-royal.scrolled {
  background: rgba(13, 10, 8, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar-royal .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light) !important;
  font-weight: 600;
}
.navbar-royal .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.navbar-royal .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 1px; background: var(--gold);
  transition: all var(--transition); transform: translateX(-50%);
}
.navbar-royal .nav-link:hover::after,
.navbar-royal .nav-link.active::after { width: 70%; }
.navbar-toggler { border-color: var(--gold) !important; }
.navbar-toggler-icon { filter: invert(1); }

.btn-royal {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
  border-radius: var(--radius);
}
.btn-royal:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}
.btn-royal-filled {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border: none;
}
.btn-royal-filled:hover { color: var(--black); background: var(--gold-light); }
.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff !important;
}
.btn-whatsapp:hover { background: #1da851; color: #fff !important; }

/* Hero */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video,
.hero-video-wrap .hero-bg-fallback {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg-fallback {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--black) 50%, var(--maroon) 100%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13,10,8,0.5) 0%,
    rgba(61,15,23,0.6) 50%,
    rgba(13,10,8,0.85) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  max-width: 1000px;
}
.hero-content h1 {
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}
.hero-content .hero-sub {
  color: var(--sand-light);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  display: block; width: 24px; height: 40px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  margin: 0 auto 0.5rem;
  position: relative;
}
.scroll-indicator span::before {
  content: ''; position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes scrollDot { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 20px; } }

/* Sections */
.section-padding { padding: 6rem 0; }
.section-dark {
  background: var(--black-soft);
  color: var(--sand-light);
}
.section-dark h2, .section-dark h3 { color: var(--gold-light); }
.section-dark p,
.section-dark .lead,
.section-dark li { color: rgba(245, 240, 230, 0.92); }
.section-sand { background: var(--sand-light); }
.section-maroon {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: var(--cream);
}
.section-maroon h2 { color: var(--gold-light); }
.section-maroon p,
.section-maroon .lead { color: rgba(250, 248, 243, 0.92); }

/* Reveal animation — content visible by default (fixes empty page if JS slow/fails) */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-enhanced .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js-enhanced .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service cards */
a.service-card,
a.service-card:hover {
  color: inherit;
  text-decoration: none;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(201,162,39,0.2);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }

/* Instrument cards */
.instrument-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.instrument-block:nth-child(even) { direction: rtl; }
.instrument-block:nth-child(even) > * { direction: ltr; }
.instrument-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (max-width: 768px) {
  .instrument-block, .instrument-block:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* Gallery masonry */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(61,15,23,0.9));
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.2rem;
}
@media (max-width: 992px) { .gallery-grid { columns: 2; } }
@media (max-width: 576px) { .gallery-grid { columns: 1; } }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img { max-height: 90vh; max-width: 90vw; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  color: #fff; font-size: 2rem; cursor: pointer;
  background: none; border: none;
}

/* Testimonials */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 3rem;
  text-align: center;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--sand-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.testimonial-card .author {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.testimonial-nav button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.testimonial-nav button.active { background: var(--gold); }

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(201,162,39,0.2);
  margin-bottom: 0;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--maroon-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding-bottom: 1.25rem; color: var(--text-muted); }

/* Forms */
.form-royal .form-control,
.form-royal .form-select {
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  background: #fff;
}
.form-royal .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

/* Footer */
.footer-royal {
  background: var(--black);
  color: var(--sand);
  padding: 4rem 0 2rem;
}
.footer-royal h5 {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-royal a { color: var(--sand); }
.footer-royal a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,162,39,0.2);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Floating elements */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9998;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

.sticky-book {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9997;
}
.sticky-book .btn-royal-filled {
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 30px rgba(201,162,39,0.4);
}

/* Breadcrumb */
.breadcrumb-royal {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
  padding: 7rem 0 3rem;
  margin-top: 0;
}
.breadcrumb-royal h1 {
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.breadcrumb-royal .breadcrumb {
  background: transparent;
  margin: 0 0 1rem;
  padding: 0;
}
.breadcrumb-royal .breadcrumb-item a { color: var(--sand); }
.breadcrumb-royal .breadcrumb-item.active { color: var(--gold); }
.breadcrumb-royal .breadcrumb-item + .breadcrumb-item::before {
  color: var(--gold-dark);
}

/* Blog */
.blog-card {
  background: #fff;
  border: 1px solid rgba(201,162,39,0.15);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
}
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.blog-card img { aspect-ratio: 16/10; object-fit: cover; }
.blog-card .card-body { padding: 1.5rem; }
.blog-sidebar {
  background: #fff;
  border: 1px solid rgba(201,162,39,0.2);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

/* Video embed */
.video-card {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.video-card iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}
.video-gallery-title {
  margin: 0.75rem 0 0.5rem;
  line-height: 1.35;
  min-height: 2.7em;
}
.video-gallery-title a { color: var(--maroon-dark); font-weight: 600; }
.video-gallery-title a:hover { color: var(--gold-dark); }
.video-gallery-desc { margin-bottom: 0; }
.video-filter-bar .btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--maroon-dark);
}
.langa-video-showcase .video-gallery-title a { color: var(--gold-light); }
.langa-video-showcase .video-gallery-title a:hover { color: #fff; }
.langa-video-showcase .video-gallery-desc { color: rgba(255,255,255,0.75); }
.langa-video-showcase .video-gallery-desc a { color: var(--gold-light); }

/* City / content pages */
.content-rich p { margin-bottom: 1.25rem; }
.content-rich h2 { margin: 2.5rem 0 1rem; font-size: 2rem; }
.content-rich h3 { margin: 2rem 0 0.75rem; font-size: 1.5rem; color: var(--maroon); }
.content-rich ul { margin: 1rem 0 1.5rem 1.5rem; }
.content-rich li { margin-bottom: 0.5rem; }
.content-rich .lead { max-width: 100%; }

/* Popup */
.popup-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 10002;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: var(--cream);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem;
  border: 1px solid var(--gold);
  position: relative;
}
.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--maroon);
}

/* Parallax */
.parallax-section {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--black-soft) 50%, var(--maroon) 100%);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.parallax-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(61,15,23,0.7);
}
.parallax-section .container { position: relative; z-index: 1; text-align: center; }
.parallax-section h2 { color: var(--gold-light); }

/* Maps */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
}
.map-embed iframe { width: 100%; height: 400px; border: 0; }

/* Internal links box */
.related-links {
  background: var(--sand-light);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.related-links h4 { margin-bottom: 1rem; font-size: 1.1rem; }
.related-links ul { list-style: none; margin: 0; padding: 0; }
.related-links li { margin-bottom: 0.5rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 4rem 2rem;
  text-align: center;
}
.cta-band h2 { color: var(--gold-light); margin-bottom: 1rem; }
.cta-band p { color: var(--sand-light); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Page hero smaller */
.page-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--black-soft) 50%, var(--maroon) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
}
.page-hero h1 { color: #fff; }

/* Stats */
.stat-box {
  text-align: center;
  padding: 2rem;
}
.stat-box .number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.stat-box .label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.5rem;
}

/* Manager profile */
.manager-card {
  background: linear-gradient(145deg, var(--maroon-dark), var(--maroon));
  color: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 162, 39, 0.35);
  height: 100%;
}
.manager-card .section-subtitle { color: var(--gold-light); }
.manager-card .section-title { color: #fff; font-size: 2.25rem; }
.manager-card .role {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.manager-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.manager-card li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}
.manager-card li i { color: var(--gold); margin-right: 0.5rem; }

/* Rich gallery / category cards */
.gallery-rich-card {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: 1.75rem 1.25rem;
  height: 100%;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.gallery-rich-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(107, 29, 42, 0.06));
  pointer-events: none;
}
.gallery-rich-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.gallery-rich-card .g-icon {
  font-size: 2.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.gallery-rich-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--maroon-dark);
}
.gallery-rich-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.trust-badge {
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon-dark);
}

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.timeline-item .year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-dark);
  line-height: 1;
}

/* Layout helpers */
body { min-height: 100vh; }
main { display: block; }
.container { max-width: 1140px; }
.book-cta h3 { color: var(--maroon-dark); }
.seo-video-embed .video-card { margin-top: 0.75rem; }

@media (max-width: 768px) {
  .section-padding { padding: 4rem 0; }
  .breadcrumb-royal { padding: 6rem 0 2rem; }
  .navbar-royal .navbar-brand { font-size: 1.2rem; }
  .display-title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .sticky-book { bottom: 90px; right: 16px; }
  .whatsapp-float { bottom: 160px; right: 16px; }
  .parallax-section { background-attachment: scroll; }
}
