/* Location landing page — Best Astrologer Nagarbhavi */

.location-page {
  background: var(--bg, #0a0818);
}

/* ----- Hero ----- */
.loc-hero {
  position: relative;
  padding: 120px 0 72px;
  overflow: hidden;
}

.loc-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 15% 20%, rgba(120, 50, 180, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 70% at 90% 80%, rgba(180, 90, 40, 0.18), transparent 50%),
    linear-gradient(135deg, #1a0f3a 0%, #2a1460 45%, #3d1f7a 100%);
  z-index: 0;
}

.loc-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/hero-space-bg.png") center / cover no-repeat;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.loc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.loc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.loc-breadcrumb a {
  color: rgba(255, 220, 150, 0.95);
  text-decoration: none;
}

.loc-breadcrumb a:hover {
  color: var(--gold, #d4af37);
}

.loc-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
}

.loc-hero p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 28px;
  max-width: 620px;
}

.loc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.loc-hero__actions .btn {
  min-height: 52px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 560;
  letter-spacing: 0.01em;
  line-height: 1.2;
  box-sizing: border-box;
}

.loc-hero__actions .btn--gold {
  background: linear-gradient(135deg, #ffc933 0%, #e0b33a 48%, #d4af37 100%);
  color: #1a1200;
  border: 1.5px solid transparent;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35);
}

.loc-hero__actions .btn--outline-gold {
  background: transparent;
  border: 1.5px solid #d4af37;
  color: #e8c96a;
  box-shadow: none;
}

.loc-hero__actions .btn--outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #ffd978;
}

/* ----- Category bar ----- */
.loc-cats {
  position: relative;
  z-index: 2;
  margin-top: -28px;
  padding-bottom: 8px;
}

.loc-cats__row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 18px 20px;
  background: rgba(18, 12, 40, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.loc-cats__row::-webkit-scrollbar {
  display: none;
}

.loc-cat {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 96px;
  padding: 8px 10px;
  text-decoration: none;
  color: var(--text-muted, #b8b0c8);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  transition: color 0.2s ease;
}

.loc-cat:hover {
  color: var(--gold, #d4af37);
}

.loc-cat__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold, #d4af37);
  font-size: 1.15rem;
}

/* ----- Service listings ----- */
.loc-listings .loc-listing {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 22px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(28, 18, 55, 0.92), rgba(16, 12, 36, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
}

.loc-listing__meta h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}

.loc-rating {
  margin: 0 0 14px;
  font-size: 0.86rem;
  color: var(--text-muted, #b8b0c8);
}

.loc-rating span {
  color: var(--gold, #d4af37);
  letter-spacing: 0.08em;
}

.loc-listing__body ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.loc-listing__body li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.loc-listing__body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold, #d4af37);
  font-size: 0.85rem;
}

.loc-listing__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.loc-price {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted, #b8b0c8);
}

.loc-price strong {
  color: #6fdc8c;
  font-size: 1.25rem;
  font-weight: 600;
}

.loc-listing__media {
  border-radius: 14px;
  overflow: hidden;
  min-height: 200px;
  background: rgba(0, 0, 0, 0.25);
}

.loc-listing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----- Packages ----- */
.loc-packages {
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(88, 40, 140, 0.2), transparent);
}

.loc-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.loc-package {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 0 24px;
  background: rgba(16, 12, 36, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  overflow: hidden;
}

.loc-package--featured {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15), 0 24px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-6px);
}

.loc-package__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold, #d4af37);
  color: #1a1208;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

.loc-package__head {
  padding: 22px 22px 16px;
  background: linear-gradient(135deg, #3a1f78, #5a2fa0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.loc-package__head h3 {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.loc-package__head p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.loc-package__price {
  margin: 18px 22px 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold, #d4af37);
  line-height: 1;
}

.loc-package__price span {
  font-size: 1.2rem;
  vertical-align: super;
}

.loc-package ul {
  list-style: none;
  margin: 0 22px 20px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}

.loc-package li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.loc-package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold, #d4af37);
}

.loc-package .btn {
  margin: 0 22px;
  text-align: center;
  justify-content: center;
}

/* ----- Areas cloud ----- */
.loc-areas__cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.loc-areas__cloud a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(28, 18, 55, 0.65);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.86rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.loc-areas__cloud a:hover {
  border-color: rgba(212, 175, 55, 0.65);
  color: var(--gold, #d4af37);
  background: rgba(212, 175, 55, 0.08);
}

/* ----- FAQ ----- */
.loc-faq__wrap {
  max-width: 820px;
}

.loc-faq__list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.loc-faq__item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.loc-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.loc-faq__q span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold, #d4af37);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.2s ease;
}

.loc-faq__item.is-open .loc-faq__q span {
  transform: rotate(45deg);
  background: rgba(212, 175, 55, 0.15);
}

.loc-faq__a {
  display: none;
  padding: 0 4px 18px;
}

.loc-faq__item.is-open .loc-faq__a {
  display: block;
}

.loc-faq__a p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted, #b8b0c8);
}

.loc-faq__a a {
  color: var(--gold, #d4af37);
}

/* ----- Why grid ----- */
.loc-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}

.loc-why__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(20, 14, 42, 0.55);
}

.loc-why__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold, #d4af37);
  font-size: 1.1rem;
}

.loc-why__item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 560;
  color: #fff;
}

.loc-why__item p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted, #b8b0c8);
}

/* ----- SEO content ----- */
.loc-seo__inner {
  max-width: 820px;
  margin-inline: auto;
}

.loc-seo__inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
}

.loc-seo__inner h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold, #d4af37);
  margin: 28px 0 10px;
}

.loc-seo__inner p {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.loc-seo__inner ul {
  margin: 0 0 14px;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.loc-seo__inner a {
  color: var(--gold, #d4af37);
}

.loc-seo__inner strong {
  color: #fff;
  font-weight: 560;
}

/* ----- Contact action bar ----- */
.loc-contact-bar {
  padding: 0 0 48px;
}

.loc-contact-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.loc-contact-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 26px 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  background: linear-gradient(160deg, rgba(58, 31, 120, 0.85), rgba(24, 16, 52, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.loc-contact-bar__item:hover {
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-3px);
}

.loc-contact-bar__icon {
  color: var(--gold, #d4af37);
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .loc-packages__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .loc-package--featured {
    transform: none;
  }

  .loc-listing {
    grid-template-columns: 1fr !important;
  }

  .loc-listing__media {
    min-height: 200px;
    order: -1;
  }

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

@media (max-width: 640px) {
  .loc-hero {
    padding: 108px 0 56px;
  }

  .loc-hero p {
    font-size: 0.95rem;
  }

  .loc-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .loc-hero__actions .btn {
    flex: 0 1 auto;
    min-height: 48px;
    padding: 12px 22px;
    font-size: 0.9rem;
    justify-content: center;
    white-space: nowrap;
  }

  .loc-cats {
    margin-top: -18px;
  }

  .loc-cats__row {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .loc-listings .loc-listing {
    padding: 18px;
  }

  .loc-why__grid {
    grid-template-columns: 1fr;
  }

  .loc-contact-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .loc-contact-bar__item {
    padding: 20px 10px;
    font-size: 0.86rem;
  }

  .loc-faq__q {
    font-size: 0.95rem;
  }
}
