@import url('https://fonts.googleapis.com/css2?family=Yatra+One&family=Tiro+Devanagari+Hindi:ital@0;1&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== VARIABLES — Indian Imperial Palette ===== */
:root {
  /* Sandstone & marble */
  --sandstone:      #c8975a;
  --sandstone-pale: #f5e8d5;
  --sandstone-dark: #9e6b38;
  --marble:         #faf7f2;
  --marble-warm:    #f0e8d8;

  /* Mughal red — Red Fort, Agra Fort */
  --fort-red:       #8b2020;
  --fort-red-mid:   #a32828;
  --fort-red-pale:  #faeaea;

  /* Saffron — sacred fires, marigold garlands */
  --saffron:        #d4620a;
  --saffron-mid:    #e8780f;
  --saffron-light:  #f0a040;
  --saffron-pale:   #fdf0e0;

  /* Jade & forest — carved emerald inlay */
  --jade:           #1a5c3a;
  --jade-mid:       #256845;
  --jade-light:     #3a8c5a;
  --jade-pale:      #e8f2ec;

  /* Deep lapis — Mughal blue tiles */
  --lapis:          #1c2e5a;
  --lapis-mid:      #253b75;
  --lapis-pale:     #e0e8f5;

  /* Gold — pietra dura inlay, temple gilding */
  --gold:           #a8760a;
  --gold-warm:      #c99015;
  --gold-light:     #e8b830;
  --gold-pale:      #fdf5d8;

  /* Ink tones */
  --ink:            #180d06;
  --ink-mid:        #2d1a0a;
  --ink-faded:      #5c3e22;
  --ink-light:      #9a7450;
  --ink-whisper:    #c8a880;

  /* Backgrounds */
  --bg:             #f7efe2;
  --surface:        #fdf9f3;

  --border:         rgba(168,118,10,0.18);
  --border-strong:  rgba(139,32,32,0.25);

  --shadow-sm:  0 2px 10px  rgba(24,13,6,0.10);
  --shadow-md:  0 6px 28px  rgba(24,13,6,0.14);
  --shadow-lg:  0 16px 54px rgba(24,13,6,0.18);
  --shadow-xl:  0 30px 80px rgba(24,13,6,0.24);

  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Compatibility aliases used in inline styles */
  --green:      var(--jade-mid);
  --green-pale: var(--jade-pale);
  --dark:       var(--ink);
  --muted:      var(--ink-faded);
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  /* Subtle sandstone grain texture */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  background-attachment: fixed;
  
  
}

h1, h2, h3, h4, h5 {
  font-family: 'Yatra One', serif;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--ink);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--sandstone-pale); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--saffron), var(--fort-red));
  border-radius: 0;
}

/* ===================================
   JALI LATTICE — CSS geometric pattern
   (mimics carved stone screens of
   Fatehpur Sikri, Agra Fort, Humayun's Tomb)
   =================================== */
.jali-bg {
  background-image:
    repeating-linear-gradient(0deg,   transparent 0px, transparent 18px, rgba(168,118,10,0.07) 18px, rgba(168,118,10,0.07) 19px),
    repeating-linear-gradient(90deg,  transparent 0px, transparent 18px, rgba(168,118,10,0.07) 18px, rgba(168,118,10,0.07) 19px),
    repeating-linear-gradient(45deg,  transparent 0px, transparent 12px, rgba(168,118,10,0.04) 12px, rgba(168,118,10,0.04) 13px),
    repeating-linear-gradient(-45deg, transparent 0px, transparent 12px, rgba(168,118,10,0.04) 12px, rgba(168,118,10,0.04) 13px);
}

/* ===================================
   PIETRA DURA BORDER — inlay ornament
   Inspired by Taj Mahal marble inlay
   =================================== */
.inlay-border {
  border-top: 3px solid var(--gold-warm);
  position: relative;
}
.inlay-border::before {
  content: '';
  position: absolute;
  top: -6px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%, var(--fort-red) 15%,
    var(--gold-light) 35%, var(--jade-light) 50%,
    var(--gold-light) 65%, var(--fort-red) 85%,
    transparent 100%);
}

/* ===== DECORATIVE LOTUS DIVIDER ===== */
.lotus-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-warm);
  font-size: 20px;
  margin: 0 auto 14px;
  justify-content: center;
}
.lotus-divider::before, .lotus-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-warm), transparent);
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 7%;
  height: 76px;
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Jali lattice in dark */
  background-image:
    repeating-linear-gradient(0deg,   transparent 0, transparent 14px, rgba(200,150,90,0.06) 14px, rgba(200,150,90,0.06) 15px),
    repeating-linear-gradient(90deg,  transparent 0, transparent 14px, rgba(200,150,90,0.06) 14px, rgba(200,150,90,0.06) 15px);
  border-bottom: 1px solid rgba(200,150,90,0.2);
  box-shadow: 0 4px 24px rgba(24,13,6,0.5);
}

/* Triple-line Mughal decorative border below header */
header::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 2%,
    var(--fort-red) 10%, var(--fort-red) 12%,
    var(--gold-warm) 12%, var(--gold-warm) 88%,
    var(--fort-red) 88%, var(--fort-red) 90%,
    transparent 98%);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon { font-size: 28px; }

header h2 {
  font-family: 'Yatra One', serif;
  font-size: 24px;
  color: var(--sandstone-pale);
  letter-spacing: 2px;
}

header h2 span { color: var(--gold-light); }

nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav a {
  padding: 8px 14px;
  color: var(--ink-whisper);
  font-family: 'Lora', serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

nav a::after {
  content: '◆';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scale(0);
  font-size: 5px;
  color: var(--saffron-light);
  transition: transform 0.25s ease;
}

nav a:hover { color: var(--gold-light); }
nav a:hover::after, nav a.active::after { transform: translateX(-50%) scale(1); }
nav a.active { color: var(--gold-light); }

/* ===== BUTTONS ===== */
.btn, button {
  font-family: 'Lora', serif;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 24px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

/* Mughal arch shape via clip-path on primary btn */
.btn-primary {
  background: linear-gradient(135deg, var(--saffron-mid) 0%, var(--saffron) 100%);
  color: var(--marble);
  border: 1.5px solid var(--saffron-light);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 4px 16px rgba(212,98,10,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-warm) 0%, var(--saffron-mid) 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,98,10,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--sandstone-pale);
  border: 1.5px solid rgba(245,232,213,0.35);
}

.btn-outline:hover {
  background: rgba(245,232,213,0.1);
  border-color: var(--sandstone-pale);
}

.btn-green {
  background: linear-gradient(135deg, var(--jade-mid) 0%, var(--jade) 100%);
  color: var(--marble);
  border: 1.5px solid var(--jade-light);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 16px rgba(26,92,58,0.3);
}

.btn-green:hover {
  background: linear-gradient(135deg, var(--jade-light) 0%, var(--jade-mid) 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,92,58,0.4);
}

/* ===== HERO ===== */
.hero {
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 8% 110px;
  background:
    linear-gradient(180deg,
      rgba(24,13,6,0.82) 0%,
      rgba(44,18,6,0.65) 45%,
      rgba(26,92,58,0.55) 100%),
    url('https://images.unsplash.com/photo-1564507592333-c60657eea523?w=1800') center/cover no-repeat fixed;
  color: var(--marble);
  position: relative;
  overflow: hidden;
}

/* Jali overlay on hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent 0, transparent 28px, rgba(200,150,90,0.055) 28px, rgba(200,150,90,0.055) 29px),
    repeating-linear-gradient(90deg,  transparent 0, transparent 28px, rgba(200,150,90,0.055) 28px, rgba(200,150,90,0.055) 29px),
    repeating-linear-gradient(45deg,  transparent 0, transparent 20px, rgba(200,150,90,0.025) 20px, rgba(200,150,90,0.025) 21px),
    repeating-linear-gradient(-45deg, transparent 0, transparent 20px, rgba(200,150,90,0.025) 20px, rgba(200,150,90,0.025) 21px);
  pointer-events: none;
}

/* Crenellated fort-wall bottom edge */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--bg);
  /* Battlement / merlon silhouette like Red Fort walls */
  clip-path: polygon(
    0% 100%, 0% 55%,
    3% 55%, 3% 30%, 6% 30%, 6% 55%,
    9% 55%, 9% 30%, 12% 30%, 12% 55%,
    15% 55%, 15% 30%, 18% 30%, 18% 55%,
    21% 55%, 21% 30%, 24% 30%, 24% 55%,
    27% 55%, 27% 30%, 30% 30%, 30% 55%,
    33% 55%, 33% 30%, 36% 30%, 36% 55%,
    39% 55%, 39% 30%, 42% 30%, 42% 55%,
    45% 55%, 45% 30%, 48% 30%, 48% 55%,
    51% 55%, 51% 30%, 54% 30%, 54% 55%,
    57% 55%, 57% 30%, 60% 30%, 60% 55%,
    63% 55%, 63% 30%, 66% 30%, 66% 55%,
    69% 55%, 69% 30%, 72% 30%, 72% 55%,
    75% 55%, 75% 30%, 78% 30%, 78% 55%,
    81% 55%, 81% 30%, 84% 30%, 84% 55%,
    87% 55%, 87% 30%, 90% 30%, 90% 55%,
    93% 55%, 93% 30%, 96% 30%, 96% 55%,
    100% 55%, 100% 100%
  );
}

.hero-badge {
  background: rgba(168,118,10,0.2);
  border: 1px solid rgba(232,184,48,0.55);
  color: var(--gold-light);
  padding: 7px 24px;
  font-family: 'Yatra One', serif;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 28px;
  display: inline-block;
  animation: fadeSlideDown 0.9s ease both;
  position: relative;
}

/* Lotus petal corner decorations on badge */
.hero-badge::before { content: '🪷 '; }
.hero-badge::after  { content: ' 🪷'; }

.hero h1 {
  font-family: 'Yatra One', serif;
  font-size: clamp(42px, 6.5vw, 82px);
  line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 2px 0 rgba(168,118,10,0.3);
  animation: fadeSlideUp 0.9s 0.1s ease both;
}

.hero h1 em {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-style: italic;
  color: var(--gold-light);
  display: block;
  font-size: 0.72em;
  margin-top: 4px;
  letter-spacing: 3px;
  text-shadow: 0 0 40px rgba(232,184,48,0.4);
}

.hero p {
  font-family: 'Lora', serif;
  font-size: 19px;
  max-width: 560px;
  margin: 0 auto 44px;
  opacity: 0.85;
  font-weight: 400;
  font-style: italic;
  line-height: 1.9;
  animation: fadeSlideUp 0.9s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideUp 0.9s 0.3s ease both;
}

/* Stats bar — styled like a marble inscription plaque */
.hero-stats {
  display: flex;
  margin-top: 70px;
  animation: fadeSlideUp 0.9s 0.4s ease both;
  background: rgba(24,13,6,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232,184,48,0.28);
  border-left:  4px solid var(--saffron);
  border-right: 4px solid var(--saffron);
  box-shadow: 0 0 60px rgba(212,98,10,0.12);
}

.stat {
  text-align: center;
  padding: 22px 38px;
  position: relative;
}

.stat + .stat {
  border-left: 1px solid rgba(232,184,48,0.2);
}

.stat strong {
  display: block;
  font-family: 'Yatra One', serif;
  font-size: 32px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 0 20px rgba(232,184,48,0.3);
}

.stat span {
  font-family: 'Lora', serif;
  font-size: 11px;
  opacity: 0.55;
  letter-spacing: 1.5px;
  font-style: italic;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ===== SECTION ===== */
.section { padding: 100px 8%; }

/* Section label styled like a carved stone inscription */
.section-label {
  font-family: 'Lora', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: italic;
}

.section-label::before, .section-label::after {
  content: '';
  flex: 1;
  height: 1px;
}
.section-label::before {
  background: linear-gradient(90deg, transparent, var(--saffron-light), var(--gold-warm));
}
.section-label::after {
  background: linear-gradient(90deg, var(--gold-warm), var(--saffron-light), transparent);
}

.section-header .section-label { justify-content: center; }
.section-header { text-align: center; }

.section-title {
  font-family: 'Yatra One', serif;
  font-size: clamp(28px, 3.8vw, 48px);
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub {
  font-family: 'Lora', serif;
  color: var(--ink-faded);
  max-width: 540px;
  margin-bottom: 60px;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.9;
}

.section-header .section-sub { margin: 0 auto 60px; }

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 30px;
}

.card {
  background: var(--surface);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

/* Mughal arch top on every card — pointed arch silhouette */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--fort-red) 0%,
    var(--gold-warm) 30%,
    var(--saffron-light) 50%,
    var(--gold-warm) 70%,
    var(--fort-red) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.card:hover::before { transform: scaleX(1); }

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(168,118,10,0.3);
}

.card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  /* Warm sandstone tone */
  filter: sepia(18%) saturate(1.1) brightness(0.96) contrast(1.02);
  transition: transform 0.65s ease, filter 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
  filter: sepia(5%) saturate(1.15) brightness(1.02);
}

.card-body { padding: 24px 26px 30px; }

/* Tag styled like a temple inscription cartouche */
.card-tag {
  font-family: 'Lora', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fort-red-mid);
  background: var(--fort-red-pale);
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 12px;
  border-left: 3px solid var(--fort-red);
  font-style: normal;
}

.card h3 {
  font-family: 'Yatra One', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--ink);
}

.card p {
  font-family: 'Lora', serif;
  font-size: 14.5px;
  color: var(--ink-faded);
  margin-bottom: 18px;
  line-height: 1.85;
}

.card-meta {
  display: flex;
  gap: 16px;
  font-family: 'Lora', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-light);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.card-meta span { display: flex; align-items: center; gap: 5px; }

/* ===== CARD IMAGE WRAP ===== */
.card-img-wrap { position: relative; overflow: hidden; }

/* ===== PLACE BADGE — shaped like a palace seal ===== */
.place-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--ink);
  color: var(--gold-light);
  font-family: 'Lora', serif;
  font-size: 10px;
  font-weight: 700;
  font-style: italic;
  padding: 5px 13px;
  letter-spacing: 0.5px;
  border: 1px solid var(--gold-warm);
  box-shadow: 0 2px 8px rgba(24,13,6,0.4);
}

/* ===== PLACE CARD ===== */
.place-card { cursor: pointer; }

/* ===== GUIDE CARD — Styled like a royal court portrait frame ===== */
.guide-card {
  text-align: center;
  padding: 36px 26px 28px;
  background: var(--surface);
  border-top: 0;
}

/* Ornamental top — echoes temple gopuram decoration */
.guide-card::before {
  content: '❧ ◈ ❧';
  display: block;
  font-size: 13px;
  color: var(--gold-warm);
  margin-bottom: 16px;
  letter-spacing: 6px;
  opacity: 0.8;
}

.guide-avatar {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  object-fit:cover;
  margin: 0 auto 16px;
  /* Double ring like temple portrait medallion */
  border: 3px solid var(--sandstone-pale);
  box-shadow:
    0 0 0 2px var(--gold-warm),
    0 0 0 5px var(--sandstone-pale),
    0 0 0 6px var(--border),
    var(--shadow-md);
  display: block;
  filter: sepia(12%) saturate(1.05);
  transition: var(--transition);
}

.guide-card:hover .guide-avatar {
  filter: sepia(0%) saturate(1.1);
  box-shadow:
    0 0 0 2px var(--saffron-light),
    0 0 0 5px var(--sandstone-pale),
    0 0 0 6px var(--saffron),
    var(--shadow-lg);
}

.guide-card h3 {
  font-family: 'Yatra One', serif;
  font-size: 20px;
  margin-bottom: 5px;
}


.guide-card .location {
  font-family: 'Lora', serif;
  font-size: 13px;
  color: var(--saffron);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 12px;
}

.guide-card p {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 0;
  color: var(--ink-faded);
}

.stars {
  color: var(--saffron-mid);
  font-size: 13px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.lang-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 12px 0;
}

.lang-tag {
  background: var(--jade-pale);
  color: var(--jade);
  font-family: 'Lora', serif;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(26,92,58,0.2);
  font-style: italic;
}

/* ===== REGISTER CARDS ===== */
.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 880px;
  margin: 0 auto;
}

.reg-card {
  background: var(--surface);
  padding: 50px 42px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  /* Top triple-line inlay */
  border-top: 4px solid var(--saffron-mid);
}

.reg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--fort-red) 0%, var(--fort-red) 8%,
    var(--gold-warm) 8%, var(--gold-warm) 92%,
    var(--fort-red) 92%, var(--fort-red) 100%);
}

/* Mughal dome watermark */
.reg-card::after {
  content: '🕌';
  position: absolute;
  bottom: -10px; right: -10px;
  font-size: 110px;
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
  filter: grayscale(1);
}

.reg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-warm);
}

.reg-icon {
  font-size: 52px;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(212,98,10,0.25));
}

.reg-card h3 {
  font-family: 'Yatra One', serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.reg-card p {
  font-family: 'Lora', serif;
  color: var(--ink-faded);
  font-size: 15.5px;
  margin-bottom: 28px;
  line-height: 1.85;
  font-style: italic;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background:
    linear-gradient(170deg,
      rgba(24,13,6,0.88) 0%,
      rgba(60,28,10,0.72) 50%,
      rgba(26,92,58,0.78) 100%),
    url('https://images.unsplash.com/photo-1564507592333-c60657eea523?w=1400') center/cover no-repeat;
  color: var(--marble);
  padding: 100px 8% 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Jali overlay */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 22px, rgba(200,150,90,0.06) 22px, rgba(200,150,90,0.06) 23px),
    repeating-linear-gradient(90deg, transparent 0, transparent 22px, rgba(200,150,90,0.06) 22px, rgba(200,150,90,0.06) 23px);
  pointer-events: none;
}

/* Battlement bottom edge */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 70px;
  background: var(--bg);
  clip-path: polygon(
    0% 100%, 0% 55%,
    4% 55%, 4% 30%, 7% 30%, 7% 55%,
    11% 55%, 11% 30%, 14% 30%, 14% 55%,
    18% 55%, 18% 30%, 21% 30%, 21% 55%,
    25% 55%, 25% 30%, 28% 30%, 28% 55%,
    32% 55%, 32% 30%, 35% 30%, 35% 55%,
    39% 55%, 39% 30%, 42% 30%, 42% 55%,
    46% 55%, 46% 30%, 49% 30%, 49% 55%,
    53% 55%, 53% 30%, 56% 30%, 56% 55%,
    60% 55%, 60% 30%, 63% 30%, 63% 55%,
    67% 55%, 67% 30%, 70% 30%, 70% 55%,
    74% 55%, 74% 30%, 77% 30%, 77% 55%,
    81% 55%, 81% 30%, 84% 30%, 84% 55%,
    88% 55%, 88% 30%, 91% 30%, 91% 55%,
    95% 55%, 95% 30%, 98% 30%, 98% 55%,
    100% 55%, 100% 100%
  );
}

.page-hero .section-label { color: var(--gold-light); }
.page-hero .section-label::before { background: linear-gradient(90deg, transparent, rgba(232,184,48,0.6)); }
.page-hero .section-label::after  { background: linear-gradient(90deg, rgba(232,184,48,0.6), transparent); }

.page-hero h1 {
  font-family: 'Yatra One', serif;
  font-size: clamp(34px, 5.5vw, 62px);
  margin-bottom: 16px;
  animation: fadeSlideUp 0.8s ease both;
  text-shadow: 0 4px 20px rgba(0,0,0,0.55);
}

.page-hero p {
  font-family: 'Lora', serif;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto;
  font-size: 17.5px;
  font-style: italic;
  line-height: 1.85;
}

/* ===== SEARCH BAR ===== */
.search-bar {
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 36px auto 0;
  background: var(--surface);
  border: 1px solid var(--gold-warm);
  border-radius: 0;
  padding: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.28);
  overflow: hidden;
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 20px;
  font-family: 'Lora', serif;
  font-size: 16px;
  font-style: italic;
  outline: none;
  color: var(--ink);
}

.search-bar input::placeholder { color: var(--ink-light); font-style: italic; }

.search-bar button {
  background: linear-gradient(135deg, var(--saffron-mid), var(--saffron));
  color: var(--marble);
  padding: 14px 26px;
  border-left: 1px solid var(--saffron-light);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.search-bar button:hover { background: linear-gradient(135deg, var(--gold-warm), var(--saffron-mid)); transform: none; box-shadow: none; }

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-tab {
  padding: 9px 22px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink-faded);
  font-family: 'Lora', serif;
  font-size: 13px;
  font-style: italic;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
}

.filter-tab.active, .filter-tab:hover {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--gold-warm);
  box-shadow: 0 4px 12px rgba(24,13,6,0.22);
}

/* ===== STEPS / HOW IT WORKS ===== */
/* Styled like a carved stone panel sequence */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.step {
  text-align: center;
  padding: 40px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold-warm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron-light), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.step:hover { background: var(--sandstone-pale); box-shadow: var(--shadow-md); }
.step:hover::after { transform: scaleX(1); }

/* Step number as a Mughal medallion */
.step-num {
  width: 60px;
  height: 60px;
  background: var(--ink);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Yatra One', serif;
  font-size: 22px;
  margin: 0 auto 20px;
  border: 3px solid var(--gold-warm);
  box-shadow: 0 0 0 4px var(--sandstone-pale), 0 6px 20px rgba(24,13,6,0.3);
  position: relative;
}

.step h4 {
  font-family: 'Yatra One', serif;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--ink);
}

.step p {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: var(--ink-faded);
  font-style: italic;
  line-height: 1.8;
}

/* ===== SERVICES ===== */
.service-card {
  padding: 30px 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  border-left: 4px solid transparent;
  transition: var(--transition);
}

.service-card:hover {
  border-left-color: var(--saffron);
  background: var(--saffron-pale);
}

.service-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: var(--sandstone-pale);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--ink);
  border-color: var(--gold-warm);
}

.service-card h3 {
  font-family: 'Yatra One', serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--ink);
}

.service-card p {
  font-family: 'Lora', serif;
  font-size: 14.5px;
  color: var(--ink-faded);
  margin-bottom: 0;
  line-height: 1.85;
  font-style: italic;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  /* Double frame like a Mughal miniature painting */
  border: 5px solid var(--sandstone-pale);
  outline: 2px solid var(--gold-warm);
  outline-offset: 6px;
  filter: sepia(15%) saturate(1.05) brightness(0.96);
}

.about-text .section-label { justify-content: flex-start; }
.about-text .section-label::before { display: none; }
.about-text .section-label::after { background: linear-gradient(90deg, var(--gold-warm), transparent); }

.about-points {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Lora', serif;
  font-size: 15.5px;
  color: var(--ink-faded);
  font-style: italic;
}

.point-icon {
  background: var(--sandstone-pale);
  border: 1px solid var(--border-strong);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Yatra One', serif;
  font-size: 34px;
  margin-bottom: 16px;
}

.contact-info p {
  font-family: 'Lora', serif;
  color: var(--ink-faded);
  margin-bottom: 36px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.9;
}

.contact-details { display: flex; flex-direction: column; gap: 14px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--saffron-mid);
  transition: var(--transition);
}

.contact-item:hover { border-left-color: var(--fort-red); background: var(--sandstone-pale); }

.c-icon {
  background: var(--sandstone-pale);
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-family: 'Lora', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 3px;
}

.contact-item span {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: var(--ink-faded);
  font-style: italic;
}

.contact-form-box {
  background: var(--surface);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--fort-red);
  position: relative;
}

.contact-form-box::before {
  content: '';
  position: absolute;
  top: 3px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-warm), transparent);
}

.contact-form-box h3 {
  font-family: 'Yatra One', serif;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 24px;
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,13,6,0.82);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--surface);
  padding: 44px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-strong);
  border-top: 5px solid var(--saffron-mid);
  transform: scale(0.96) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
  position: relative;
}

/* Top inlay stripe (Fort red + gold) */
.modal::before {
  content: '';
  position: absolute;
  top: 4px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 2%, var(--fort-red) 10%, var(--gold-light) 50%, var(--fort-red) 90%, transparent 98%);
  opacity: 0.6;
}

/* Lotus dome watermark */
.modal::after {
  content: '🕌';
  position: absolute;
  bottom: 10px; right: 14px;
  font-size: 60px;
  opacity: 0.05;
  pointer-events: none;
  line-height: 1;
  filter: grayscale(1);
}

.modal-overlay.active .modal { transform: scale(1) translateY(0); }

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.modal-header div { display: flex; align-items: center; gap: 12px; }

.modal-header h3 {
  font-family: 'Yatra One', serif;
  font-size: 22px;
  color: var(--ink);
}

.modal-close {
  background: var(--sandstone-pale);
  color: var(--ink-faded);
  border: 1px solid var(--border-strong);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  padding: 0;
}

.modal-close:hover {
  background: var(--fort-red);
  color: var(--marble);
  border-color: var(--fort-red);
  transform: rotate(90deg);
}

/* ===== FORMS ===== */
form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 7px; text-align: left; }

.form-group label {
  font-family: 'Lora', serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--saffron);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

input, select, textarea {
  font-family: 'Lora', serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 0;
  background: var(--marble-warm);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--saffron-mid);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(212,98,10,0.1);
}

input::placeholder, textarea::placeholder {
  color: var(--ink-light);
  font-style: italic;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a7450' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--marble-warm);
  padding-right: 38px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 110px; line-height: 1.75; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== PLACE MODAL DETAILS ===== */
.place-modal-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 22px;
  border: 3px solid var(--sandstone-pale);
  outline: 1px solid var(--border);
  filter: sepia(12%) saturate(1.05);
}

.place-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.detail-box {
  background: var(--marble-warm);
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--saffron-light);
}

.detail-box .label {
  font-family: 'Lora', serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--saffron);
  margin-bottom: 6px;
}

.detail-box .value {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--ink);
  color: var(--sandstone-pale);
  padding: 16px 28px;
  font-family: 'Lora', serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  z-index: 99999;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
  pointer-events: none;
  border-left: 4px solid var(--saffron-mid);
  border-top: 1px solid rgba(200,150,90,0.3);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: var(--ink-whisper);
  padding: 80px 8% 36px;
  position: relative;
  overflow: hidden;
}

/* Inlay triple-line at top */
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    transparent 2%,
    var(--fort-red) 8%, var(--fort-red) 12%,
    var(--gold-warm) 12%, var(--gold-light) 50%, var(--gold-warm) 88%,
    var(--fort-red) 88%, var(--fort-red) 92%,
    transparent 98%);
}

/* Jali pattern in footer */
footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 24px, rgba(200,150,90,0.03) 24px, rgba(200,150,90,0.03) 25px),
    repeating-linear-gradient(90deg, transparent 0, transparent 24px, rgba(200,150,90,0.03) 24px, rgba(200,150,90,0.03) 25px);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  font-family: 'Lora', serif;
  color: var(--sandstone-pale);
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,150,90,0.2);
  font-style: normal;
}

.footer-col p {
  font-family: 'Lora', serif;
  font-size: 14.5px;
  margin-bottom: 8px;
  line-height: 1.9;
  color: var(--ink-whisper);
  font-style: italic;
}

.footer-col a {
  display: block;
  font-family: 'Lora', serif;
  color: var(--ink-whisper);
  font-size: 14.5px;
  margin-bottom: 10px;
  transition: var(--transition);
  font-style: italic;
}

.footer-col a:hover { color: var(--gold-light); padding-left: 8px; }

.footer-logo {
  font-family: 'Yatra One', serif;
  font-size: 26px;
  color: var(--sandstone-pale);
  margin-bottom: 14px;
  display: block;
  letter-spacing: 1px;
}

.footer-logo span { color: var(--gold-light); }

.social-icons { display: flex; gap: 10px; margin-top: 22px; }

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,150,90,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink-whisper);
  transition: var(--transition);
  margin-bottom: 0;
  padding-left: 0;
}

.social-icons a:hover {
  background: var(--saffron-mid);
  border-color: var(--saffron-light);
  color: var(--marble);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(212,98,10,0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(200,150,90,0.1);
  padding-top: 28px;
  text-align: center;
  font-family: 'Lora', serif;
  font-size: 13px;
  color: rgba(200,150,90,0.3);
  letter-spacing: 1px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ===== MOBILE NAV TOGGLE ===== */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(200,150,90,0.35);
  color: var(--sandstone-pale);
  font-size: 22px;
  line-height: 1;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-toggle:hover {
  background: rgba(200,150,90,0.12);
  border-color: var(--gold-warm);
  color: var(--gold-light);
  transform: none;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .register-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .place-detail-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .steps-grid { gap: 12px; }
  .about-img { height: 340px; }
  /* Reduce header padding on tablet to prevent crowding */
  header { padding: 0 4%; }
  nav a { padding: 8px 10px; }
  .header-actions { gap: 6px; }
  .header-actions .btn { padding: 9px 14px; font-size: 12px; }
}

@media (max-width: 640px) {
  header { padding: 0 5%; height: 62px; }
  .nav-toggle { display: flex; }
  .header-actions { display: none; }
  nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ink);
    border-bottom: 3px solid var(--gold-warm);
    padding: 10px 0;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(24,13,6,0.5);
  }
  nav.nav-open { display: flex; }
  nav a {
    padding: 14px 5%;
    font-size: 15px;
    border-bottom: 1px solid rgba(200,150,90,0.1);
  }
  .section { padding: 70px 5%; }
  .hero { padding: 60px 5% 110px; min-height: 88vh; }
  .page-hero { padding: 80px 5% 100px; }
  footer { padding: 60px 5% 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .register-grid { gap: 22px; grid-template-columns: 1fr; }
  .modal { padding: 28px 22px; }
  .contact-form-box { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(34px, 11vw, 52px); }
  .hero-stats { flex-direction: column; }
  .stat + .stat { border-left: none; border-top: 1px solid rgba(232,184,48,0.18); }
  .stat { padding: 18px 28px; }
  .hero::after { height: 50px; }
  .page-hero::after { height: 40px; }
}

/* Fix iOS Safari background-attachment: fixed */
@media (max-width: 768px) {
  body { background-attachment: scroll; }
  .hero {
    background-attachment: scroll;
    background-image:
      linear-gradient(180deg,
        rgba(24,13,6,0.82) 0%,
        rgba(44,18,6,0.65) 45%,
        rgba(26,92,58,0.55) 100%),
      url('https://images.unsplash.com/photo-1564507592333-c60657eea523?w=1800') center/cover no-repeat;
  }
}

@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .filter-tabs { gap: 6px; }
  .filter-tab { font-size: 12px; padding: 8px 14px; }
}


/* =======================================================
   SHAKTI — WOMEN'S SAFETY SECTION
   Inspired by: Rani Lakshmibai · Nari Shakti · Durga
   Rose gold · Deep magenta · Kumkum red · Ivory
   ======================================================= */

/* ── Shakti colour tokens ── */
:root {
  --shakti:          #b5245a;   /* deep magenta-rose */
  --shakti-mid:      #cc2d68;
  --shakti-light:    #e8517a;
  --shakti-pale:     #fdf0f4;
  --shakti-muted:    #f7d6e2;
  --rose-gold:       #c8735a;
  --rose-gold-light: #e8a090;
  --kumkum:          #cc1a3a;   /* kumkum/sindoor red */
  --lotus-pink:      #f0a8b8;
  --shakti-border:   rgba(181,36,90,0.22);
  --shakti-shadow:   0 6px 28px rgba(181,36,90,0.22);
}

/* ══════════════════════════════════════════════════
   FLOATING SHAKTI BUTTON — fixed bottom-left
   Pulsing lotus, always visible
   ══════════════════════════════════════════════════ */
.shakti-fab {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

.shakti-fab-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shakti-mid) 0%, var(--kumkum) 100%);
  border: 2.5px solid var(--rose-gold-light);
  box-shadow:
    0 0 0 0 rgba(181,36,90,0.55),
    0 8px 24px rgba(181,36,90,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  transition: var(--transition);
  animation: shakti-pulse 2.8s ease-in-out infinite;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 0;
  overflow: visible;
}

/* Outer glow ring */
.shakti-fab-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,81,122,0.4);
  animation: shakti-ring 2.8s ease-in-out infinite;
}

/* Second outer ring */
.shakti-fab-btn::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(232,81,122,0.18);
  animation: shakti-ring 2.8s ease-in-out infinite 0.4s;
}

.shakti-fab-label {
  font-family: 'Yatra One', serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--shakti);
  text-transform: uppercase;
  margin-top: 6px;
  background: var(--surface);
  padding: 3px 8px;
  border: 1px solid var(--shakti-border);
  white-space: nowrap;
}

@keyframes shakti-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181,36,90,0.55), 0 8px 24px rgba(181,36,90,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(181,36,90,0), 0 10px 32px rgba(181,36,90,0.55); }
}

@keyframes shakti-ring {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.1); opacity: 0; }
}

.shakti-fab-btn:hover {
  background: linear-gradient(135deg, var(--kumkum) 0%, var(--shakti) 100%);
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(181,36,90,0.55);
}

/* ══════════════════════════════════════════════════
   SHAKTI MODAL OVERLAY
   ══════════════════════════════════════════════════ */
.shakti-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,8,16,0.72);
  z-index: 9991;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
}

.shakti-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ══════════════════════════════════════════════════
   SHAKTI MODAL PANEL
   ══════════════════════════════════════════════════ */
.shakti-modal {
  background: var(--surface);
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.35s ease;
  opacity: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--shakti) var(--shakti-muted);
}

.shakti-overlay.open .shakti-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Pietra dura top inlay — shakti colours */
.shakti-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    transparent 2%,
    var(--kumkum) 10%, var(--kumkum) 13%,
    var(--rose-gold-light) 13%, var(--lotus-pink) 50%, var(--rose-gold-light) 87%,
    var(--kumkum) 87%, var(--kumkum) 90%,
    transparent 98%);
  z-index: 2;
}

/* Jali lattice in shakti pink */
.shakti-modal::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent 0, transparent 20px, rgba(181,36,90,0.03) 20px, rgba(181,36,90,0,0.03) 21px),
    repeating-linear-gradient(90deg,  transparent 0, transparent 20px, rgba(181,36,90,0.03) 20px, rgba(181,36,90,0.03) 21px);
  pointer-events: none;
  z-index: 0;
}

/* ── Modal Header ── */
.shakti-header {
  background: linear-gradient(135deg, var(--shakti) 0%, var(--kumkum) 60%, var(--rose-gold) 100%);
  padding: 32px 36px 28px;
  position: relative;
  z-index: 1;
  /* jali overlay on header */
  background-image:
    repeating-linear-gradient(0deg,   transparent 0, transparent 14px, rgba(255,255,255,0.04) 14px, rgba(255,255,255,0.04) 15px),
    repeating-linear-gradient(90deg,  transparent 0, transparent 14px, rgba(255,255,255,0.04) 14px, rgba(255,255,255,0.04) 15px),
    linear-gradient(135deg, var(--shakti) 0%, var(--kumkum) 60%, var(--rose-gold) 100%);
}

.shakti-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.shakti-header-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shakti-emblem {
  font-size: 44px;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.shakti-header h2 {
  font-family: 'Yatra One', serif;
  font-size: clamp(22px, 4vw, 30px);
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.shakti-header p {
  font-family: 'Lora', serif;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  letter-spacing: 0.5px;
}

.shakti-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  font-family: sans-serif;
  padding: 0;
}

.shakti-close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

/* ── Tabs navigation ── */
.shakti-tabs {
  display: flex;
  background: var(--shakti-muted);
  border-bottom: 2px solid var(--shakti-border);
  position: relative;
  z-index: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.shakti-tabs::-webkit-scrollbar { display: none; }

.shakti-tab {
  font-family: 'Lora', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 18px;
  border: none;
  background: transparent;
  color: var(--shakti);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 0;
  overflow: visible;
}

.shakti-tab:hover {
  background: rgba(181,36,90,0.08);
  color: var(--kumkum);
}

.shakti-tab.active {
  background: var(--surface);
  color: var(--kumkum);
  border-bottom-color: var(--kumkum);
  font-style: italic;
}

/* ── Tab content panels ── */
.shakti-body {
  padding: 32px 36px;
  position: relative;
  z-index: 1;
}

.shakti-panel { display: none; }
.shakti-panel.active { display: block; }

/* ══════════════════════════════════════════════════
   PANEL 1 — SOS / EMERGENCY
   ══════════════════════════════════════════════════ */

/* Big SOS button */
.sos-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 22px 28px;
  background: linear-gradient(135deg, #cc0020 0%, #8b0000 100%);
  color: #fff;
  font-family: 'Yatra One', serif;
  font-size: 22px;
  letter-spacing: 3px;
  border: none;
  cursor: pointer;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-radius: 0;
  animation: sos-glow 2s ease-in-out infinite;
  box-shadow: 0 4px 24px rgba(204,0,32,0.4);
}

.sos-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 8px,
    transparent 8px,
    transparent 16px
  );
}

.sos-btn:hover {
  background: linear-gradient(135deg, #e80020 0%, #aa0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(204,0,32,0.6);
}

@keyframes sos-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(204,0,32,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(204,0,32,0.7); }
}

.sos-sub {
  font-family: 'Lora', serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

/* Police contacts grid */
.police-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.police-card {
  background: var(--marble-warm);
  border: 1px solid var(--shakti-border);
  border-left: 4px solid var(--kumkum);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
}

.police-card:hover {
  background: var(--shakti-pale);
  transform: translateX(2px);
  box-shadow: var(--shakti-shadow);
}

.police-icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}

.police-card-info .police-label {
  font-family: 'Lora', serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--shakti);
  margin-bottom: 3px;
}

.police-card-info .police-number {
  font-family: 'Yatra One', serif;
  font-size: 20px;
  color: var(--kumkum);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

.police-card-info .police-desc {
  font-family: 'Lora', serif;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-faded);
}

/* Call button on police card */
.call-btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Lora', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border: 1.5px solid var(--kumkum);
  color: var(--kumkum);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  border-radius: 0;
  overflow: visible;
  text-decoration: none;
}

.call-btn:hover {
  background: var(--kumkum);
  color: #fff;
}

/* Safety info banner */
.safety-banner {
  background: linear-gradient(135deg, var(--shakti-pale) 0%, var(--shakti-muted) 100%);
  border: 1px solid var(--shakti-border);
  border-left: 5px solid var(--shakti);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.safety-banner-icon { font-size: 28px; flex-shrink: 0; }

.safety-banner h4 {
  font-family: 'Yatra One', serif;
  font-size: 16px;
  color: var(--shakti);
  margin-bottom: 4px;
}

.safety-banner p {
  font-family: 'Lora', serif;
  font-size: 13px;
  color: var(--ink-faded);
  font-style: italic;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   PANEL 2 — FEMALE GUIDES
   ══════════════════════════════════════════════════ */
.female-guides-intro {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(90deg, var(--shakti-pale), var(--surface));
  border: 1px solid var(--shakti-border);
  padding: 18px 22px;
  margin-bottom: 24px;
}

.female-guides-intro-icon { font-size: 32px; }

.female-guides-intro p {
  font-family: 'Lora', serif;
  font-size: 14px;
  color: var(--ink-faded);
  font-style: italic;
}

.female-guides-intro strong {
  color: var(--shakti);
  font-style: normal;
}

/* Guide filter strip */
.guide-filter-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.guide-filter-chip {
  font-family: 'Lora', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1.5px solid var(--shakti-border);
  color: var(--shakti);
  background: var(--shakti-pale);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
}

.guide-filter-chip.active,
.guide-filter-chip:hover {
  background: var(--shakti);
  color: #fff;
  border-color: var(--shakti);
}

/* Female guide card grid */
.female-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.female-guide-card {
  background: var(--marble-warm);
  border: 1px solid var(--shakti-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Top inlay stripe on hover */
.female-guide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kumkum), var(--lotus-pink), var(--rose-gold));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.female-guide-card:hover::before { transform: scaleX(1); }

.female-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(181,36,90,0.18);
}

.female-guide-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--shakti-muted), var(--shakti-pale));
  font-size: 64px;
  border-bottom: 1px solid var(--shakti-border);
  position: relative;
}

/* Verified badge */
.guide-verified {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--jade);
  color: #fff;
  font-family: 'Lora', serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.female-guide-body {
  padding: 16px 18px 18px;
}

.female-guide-name {
  font-family: 'Yatra One', serif;
  font-size: 16px;
  color: var(--shakti);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.female-guide-meta {
  font-family: 'Lora', serif;
  font-size: 12px;
  color: var(--ink-faded);
  font-style: italic;
  margin-bottom: 8px;
}

.guide-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.guide-spec-tag {
  font-family: 'Lora', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  background: var(--shakti-muted);
  color: var(--shakti);
  border: 1px solid var(--shakti-border);
}

.guide-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-family: 'Lora', serif;
  font-size: 12px;
  color: var(--ink-faded);
}

.guide-stars { color: var(--gold-warm); letter-spacing: 1px; }

.guide-book-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--shakti-mid), var(--kumkum));
  color: #fff;
  border: none;
  font-family: 'Lora', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.guide-book-btn:hover {
  background: linear-gradient(135deg, var(--kumkum), var(--shakti));
  box-shadow: 0 4px 16px rgba(181,36,90,0.35);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   PANEL 3 — COMPLAINTS / REPORT
   ══════════════════════════════════════════════════ */
.complaint-types {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.complaint-type-btn {
  padding: 16px 14px;
  border: 1.5px solid var(--shakti-border);
  background: var(--marble-warm);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-radius: 0;
  overflow: visible;
}

.complaint-type-btn:hover,
.complaint-type-btn.selected {
  border-color: var(--shakti);
  background: var(--shakti-pale);
  box-shadow: var(--shakti-shadow);
}

.complaint-type-icon { font-size: 28px; }

.complaint-type-label {
  font-family: 'Lora', serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--shakti);
}

/* Complaint form */
.complaint-form-wrap {
  background: var(--shakti-pale);
  border: 1px solid var(--shakti-border);
  padding: 24px 26px;
  margin-bottom: 20px;
}

.complaint-form-wrap h4 {
  font-family: 'Yatra One', serif;
  font-size: 17px;
  color: var(--shakti);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Shakti-styled form overrides within complaint */
.shakti-modal input:focus,
.shakti-modal select:focus,
.shakti-modal textarea:focus {
  border-color: var(--shakti-mid);
  box-shadow: 0 0 0 3px rgba(181,36,90,0.1);
}

.shakti-modal .form-group label { color: var(--shakti); }

.complaint-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--shakti-mid), var(--kumkum));
  color: #fff;
  border: none;
  font-family: 'Yatra One', serif;
  font-size: 17px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.complaint-submit:hover {
  background: linear-gradient(135deg, var(--kumkum), var(--shakti));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181,36,90,0.4);
}

/* Status tracker steps */
.complaint-status {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 20px;
  flex-wrap: wrap;
}

.status-step {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  background: var(--marble-warm);
  border: 1px solid var(--shakti-border);
  font-family: 'Lora', serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--ink-light);
  position: relative;
}

.status-step.done {
  background: var(--jade-pale);
  color: var(--jade);
  border-color: var(--jade-light);
}

.status-step.active {
  background: var(--shakti-pale);
  color: var(--kumkum);
  border-color: var(--shakti);
}

.status-step-num {
  display: block;
  font-family: 'Yatra One', serif;
  font-size: 20px;
  margin-bottom: 2px;
}

/* ══════════════════════════════════════════════════
   PANEL 4 — SAFETY TIPS
   ══════════════════════════════════════════════════ */
.safety-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.safety-tip-card {
  background: var(--marble-warm);
  border: 1px solid var(--shakti-border);
  border-top: 3px solid var(--shakti-light);
  padding: 20px 20px 18px;
  transition: var(--transition);
}

.safety-tip-card:hover {
  background: var(--shakti-pale);
  transform: translateY(-3px);
  box-shadow: var(--shakti-shadow);
}

.safety-tip-icon { font-size: 28px; margin-bottom: 10px; display: block; }

.safety-tip-title {
  font-family: 'Yatra One', serif;
  font-size: 15px;
  color: var(--shakti);
  margin-bottom: 7px;
}

.safety-tip-text {
  font-family: 'Lora', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-faded);
  line-height: 1.75;
}

/* App download strip */
.app-strip {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  /* jali overlay */
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 14px, rgba(181,36,90,0.04) 14px, rgba(181,36,90,0.04) 15px),
    repeating-linear-gradient(90deg, transparent 0, transparent 14px, rgba(181,36,90,0.04) 14px, rgba(181,36,90,0.04) 15px),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
}

.app-strip-text h4 {
  font-family: 'Yatra One', serif;
  font-size: 18px;
  color: var(--lotus-pink);
  margin-bottom: 4px;
}

.app-strip-text p {
  font-family: 'Lora', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-whisper);
}

.app-strip-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.app-dl-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--shakti-light);
  color: var(--lotus-pink);
  background: rgba(181,36,90,0.1);
  font-family: 'Lora', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
  overflow: visible;
  text-decoration: none;
}

.app-dl-btn:hover {
  background: var(--shakti);
  border-color: var(--shakti);
  color: #fff;
}

/* ══════════════════════════════════════════════════
   PANEL 5 — COMMUNITY & REVIEWS
   ══════════════════════════════════════════════════ */
.community-review {
  background: var(--marble-warm);
  border: 1px solid var(--shakti-border);
  border-left: 4px solid var(--lotus-pink);
  padding: 18px 20px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.community-review:hover {
  border-left-color: var(--shakti);
  background: var(--shakti-pale);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shakti-light), var(--kumkum));
  border: 2px solid var(--shakti-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: #fff;
  font-family: 'Yatra One', serif;
}

.review-name {
  font-family: 'Yatra One', serif;
  font-size: 15px;
  color: var(--shakti);
}

.review-location {
  font-family: 'Lora', serif;
  font-size: 11px;
  font-style: italic;
  color: var(--ink-light);
}

.review-text {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--ink-faded);
  line-height: 1.8;
}

.review-text::before { content: '\201C'; color: var(--shakti-light); font-size: 18px; }
.review-text::after  { content: '\201D'; color: var(--shakti-light); font-size: 18px; }

/* Share experience form */
.share-experience {
  background: var(--shakti-pale);
  border: 1px solid var(--shakti-border);
  padding: 22px 24px;
  margin-top: 22px;
}

.share-experience h4 {
  font-family: 'Yatra One', serif;
  font-size: 17px;
  color: var(--shakti);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ══════════════════════════════════════════════════
   SECTION HEADING inside panels
   ══════════════════════════════════════════════════ */
.shakti-section-title {
  font-family: 'Yatra One', serif;
  font-size: 18px;
  color: var(--shakti);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--shakti-border);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

/* Small divider — lotus in shakti pink */
.shakti-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--shakti-light);
  font-size: 16px;
  margin: 20px 0;
  justify-content: center;
}

.shakti-divider::before, .shakti-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--shakti-light), transparent);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Shakti components
   ══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .shakti-fab {
    bottom: 20px;
    left: 20px;
  }

  .shakti-fab-btn {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .shakti-fab-label { font-size: 9px; padding: 2px 6px; }

  .shakti-header { padding: 24px 20px 20px; }
  .shakti-body   { padding: 22px 18px; }

  .shakti-header h2 { font-size: 20px; }
  .shakti-emblem    { font-size: 34px; }

  .police-grid,
  .female-guide-grid,
  .complaint-types,
  .safety-tips-grid { grid-template-columns: 1fr; }

  .status-step { flex-basis: 48%; }

  .app-strip { flex-direction: column; align-items: flex-start; }
  .app-strip-btns { width: 100%; }
  .app-dl-btn { flex: 1; justify-content: center; }

  .complaint-status { flex-direction: column; }
  .status-step { flex-basis: 100%; }

  .shakti-tabs { gap: 0; }
  .shakti-tab  { padding: 12px 12px; font-size: 10px; }
}

@media (max-width: 480px) {
  .guide-filter-strip { gap: 6px; }
  .guide-filter-chip  { font-size: 10px; padding: 6px 10px; }
  .sos-btn { font-size: 18px; padding: 18px 20px; }
  .female-guide-grid  { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — toast for Shakti
   ══════════════════════════════════════════════════ */
.toast-shakti {
  border-left-color: var(--shakti);
}

