/* ══════════════════════════════════════════════════
   OTHER MOST VISITED PLACES — other-places.css
   Theme: midnight indigo-blue (distinct from MICE amber)
   Accents: saffron #f5a623 · ember #c4622d · gold #d4af37
══════════════════════════════════════════════════ */

/* ── Scroll Reveal ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════
   1. HERO
═══════════════════════════════════════ */
.op-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  background: #0d0602;
}

.op-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 18% 72%, rgba(196, 98, 45, 0.68) 0%, transparent 58%),
    radial-gradient(ellipse 58% 50% at 82% 28%, rgba(212, 175, 55, 0.44) 0%, transparent 56%),
    radial-gradient(ellipse 88% 44% at 50% 100%, rgba(100, 30, 5, 0.82) 0%, transparent 68%),
    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='%23c4622d' fill-opacity='0.07'%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");
}

.op-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 6, 2, 0.55) 0%,
    rgba(13, 6, 2, 0.08) 45%,
    rgba(13, 6, 2, 0.62) 100%
  );
}

.op-hero-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.op-hero-deco-text {
  font-family: var(--f-hi, 'Tiro Devanagari Hindi', serif);
  font-size: clamp(14rem, 36vw, 30rem);
  color: rgba(245, 166, 35, 0.045);
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

.op-hero-inner {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 150px 5vw 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.op-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.op-breadcrumb a {
  color: rgba(245, 166, 35, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.op-breadcrumb a:hover { color: var(--saffron, #f5a623); }
.op-breadcrumb-sep { color: rgba(255, 255, 255, 0.3); font-size: 0.8rem; }
.op-breadcrumb span:last-child { color: rgba(255, 255, 255, 0.55); }

.op-hero-top {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.op-hero-top .section-label {
  font-family: var(--f-lbl, 'Cinzel', serif);
  color: var(--saffron, #f5a623);
  font-size: 0.72rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  display: block;
}

.op-hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.op-hero-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
  margin: 0;
  max-width: 200px;
}
.op-hero-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245, 166, 35, 0.35);
}
.op-hero-gem { color: var(--saffron, #f5a623); font-size: 0.8rem; opacity: 0.85; }

.op-hero-title {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
  animation: hero-in 2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.op-hero-title em {
  font-style: italic;
  color: var(--saffron, #f5a623);
}

.op-hero-scroll {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.op-hero-scroll span {
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #9a7a60;
}
.op-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(245, 166, 35, 0.55), transparent);
  animation: op-scroll-fade 2.2s ease-in-out infinite;
}
@keyframes op-scroll-fade {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

@media (max-width: 768px) {
  .op-hero-inner     { padding: 80px 1.8rem 2rem; }
  .op-hero-title     { font-size: clamp(1.6rem, 7vw, 3rem); white-space: normal; }
  .op-hero-deco-text { font-size: clamp(8rem, 25vw, 16rem); }
}

/* ═══════════════════════════════════════
   2. ABOUT
═══════════════════════════════════════ */
.op-about {
  padding: 1.5rem 4rem 5.5rem;
  background: var(--bg, #faf5ed);
}

.op-about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

/* Absolute-fill image column */
.op-about-image {
  position: relative;
  min-height: 380px;
}
.op-about-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.22);
}
.op-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.op-about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,8,2,0.5) 0%, transparent 60%);
}
.op-about-img-badge {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  background: rgba(10,5,1,0.72);
  border: 1px solid rgba(212,175,55,0.35);
  backdrop-filter: blur(10px);
  padding: 0.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}
.op-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--saffron, #f5a623);
  line-height: 1;
}
.op-badge-label {
  font-family: 'Cinzel', serif;
  font-size: 0.44rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Content column */
.op-about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  padding: 2rem 0;
}

.op-rule {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.4rem;
}
.op-rule::before,
.op-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(196,98,45,0.35), transparent);
}
.op-rule::after { background: linear-gradient(to left, rgba(196,98,45,0.35), transparent); }
.op-gem {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  color: var(--ember, #c4622d);
  opacity: 0.65;
}

.op-about-stats {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}
.op-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.op-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ember, #c4622d);
  line-height: 1;
}
.op-stat-lbl {
  font-family: 'Cinzel', serif;
  font-size: 0.44rem;
  letter-spacing: 0.16em;
  color: var(--body, #6a4a2a);
  text-transform: uppercase;
}
.op-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(196,98,45,0.25);
}

/* ═══════════════════════════════════════
   3. PLACES CAROUSEL SECTION
   Midnight indigo-blue — distinct from MICE
═══════════════════════════════════════ */
.op-places {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

/* Deep midnight-blue atmospheric background */
.op-places {
  background:
    radial-gradient(ellipse 70% 55% at 5% 95%, rgba(15, 35, 80, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 95% 5%, rgba(55, 20, 80, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse 45% 35% at 50% 50%, rgba(10, 20, 60, 0.14) 0%, transparent 58%),
    linear-gradient(155deg, #080c18 0%, #060910 40%, #0b0d1c 72%, #07090e 100%);
}

/* Subtle crosshatch texture */
.op-places::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 40L40 0M-5 5L5 -5M35 45L45 35' stroke='rgba(100,130,200,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.op-places > * { position: relative; z-index: 1; }

/* Section header */
.op-places-header {
  text-align: center;
  padding: 0 2rem 3rem;
}
.op-places-hindi {
  font-family: 'Tiro Devanagari', serif;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  color: rgba(212,175,55,0.5);
  display: block;
  margin-bottom: 0.8rem;
  letter-spacing: 0.06em;
}
.op-places-title {
  color: #fff !important;
  margin-bottom: 1rem;
}
.op-places-title em { color: var(--saffron, #f5a623) !important; }

.op-section-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  max-width: 180px;
  margin: 0 auto;
}
.op-section-rule::before,
.op-section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.3));
}
.op-section-rule::after { background: linear-gradient(to left, transparent, rgba(212,175,55,0.3)); }
.op-gem-light {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  color: rgba(212,175,55,0.55);
}

/* Carousel wrapper */
.op-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.op-carousel-btn {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--saffron, #f5a623);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0 0.8rem;
}
.op-carousel-btn:hover {
  background: rgba(196,98,45,0.3);
  border-color: var(--saffron, #f5a623);
  transform: scale(1.08);
}

.op-carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.op-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Individual Slide (full-image, ENGAGEMENTS style) ── */
.op-slide {
  flex: 0 0 auto;
  height: 440px;
  cursor: pointer;
}

.op-slide-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease;
}
.op-slide-inner:hover { transform: scale(1.02); }

.op-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(5,4,12,0.08) 0%,
    rgba(5,4,12,0.18) 35%,
    rgba(5,4,12,0.65) 62%,
    rgba(5,4,12,0.94) 100%);
}

/* Number badge — top left */
.op-slide-num {
  position: absolute;
  top: 1.4rem;
  left: 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  color: rgba(245,166,35,0.7);
  z-index: 2;
}

/* Content at bottom */
.op-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.op-slide-cat {
  font-family: 'Cinzel', serif;
  font-size: 0.42rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron, #f5a623);
  background: rgba(196,98,45,0.22);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.65rem;
  display: inline-block;
}

.op-slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.op-slide-line {
  width: 44px;
  height: 1.5px;
  background: linear-gradient(to right, var(--ember, #c4622d), var(--saffron, #f5a623));
  margin-bottom: 1.1rem;
}

.op-slide-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.44rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron, #f5a623);
  background: transparent;
  border: 1px solid rgba(245,166,35,0.45);
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: all 0.3s ease;
}
.op-slide-btn:hover {
  background: rgba(245,166,35,0.15);
  border-color: var(--saffron, #f5a623);
}
.op-btn-arrow {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}
.op-slide-btn:hover .op-btn-arrow { transform: translateX(3px); }

/* Dots */
.op-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.2rem;
  padding-bottom: 1rem;
}
.op-dot {
  width: 20px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(245,166,35,0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}
.op-dot.is-active {
  width: 44px;
  background: var(--saffron, #f5a623);
}

/* ═══════════════════════════════════════
   4. DETAIL PANEL (right drawer)
═══════════════════════════════════════ */
.op-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,3,10,0.68);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.op-panel-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.op-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(540px, 95vw);
  background: #06090e;
  border-left: 3px solid var(--saffron, #f5a623);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.op-panel-overlay.is-open .op-panel { transform: translateX(0); }

.op-panel-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  z-index: 10;
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(245,166,35,0.35);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border-radius: 2px;
}
.op-panel-close:hover { background: rgba(196,98,45,0.35); color: #fff; }

.op-panel-img {
  position: relative;
  height: 300px;
  flex: 0 0 300px;
  overflow: hidden;
}
.op-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.op-panel-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(6,9,14,0.1) 0%,
    rgba(6,9,14,0.25) 50%,
    rgba(6,9,14,0.92) 100%);
}
.op-panel-img-info {
  position: absolute;
  bottom: 1.4rem;
  left: 1.6rem;
  right: 1.6rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.op-panel-cat-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.44rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron, #f5a623);
  background: rgba(196,98,45,0.25);
  border: 1px solid rgba(245,166,35,0.35);
  padding: 0.3rem 0.8rem;
}
.op-panel-num-bg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: rgba(212,175,55,0.18);
  line-height: 1;
  letter-spacing: -0.02em;
}

.op-panel-content {
  padding: 2rem 2.2rem 3rem;
  flex: 1;
}
.op-panel-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.op-panel-rule {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.op-panel-rule::before,
.op-panel-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(245,166,35,0.35), transparent);
}
.op-panel-rule::after { background: linear-gradient(to left, rgba(245,166,35,0.35), transparent); }
.op-panel-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin: 0;
}

/* ═══════════════════════════════════════
   5. RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .op-about-inner { gap: 2.5rem; }
  .op-about       { padding: 1.5rem 2.5rem 4.5rem; }
}

@media (max-width: 768px) {
  .op-about-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .op-about-image {
    min-height: 280px;
    position: relative;
    height: 280px;
  }
  .op-about-img    { position: absolute; }
  .op-about        { padding: 1.5rem 1.6rem 3.5rem; }
  .op-slide        { height: 380px; }
  .op-carousel-btn { width: 40px; height: 40px; margin: 0 0.4rem; }
}

@media (max-width: 640px) {
  .op-slide         { height: 340px; }
  .op-about-stats   { gap: 1rem; }
  .op-places-header { padding-bottom: 2rem; }
}
