@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&family=Great+Vibes&display=swap');

:root {
  --bg-light: #F6F5F2;
  --bg-dark: #0A0E1A;
  --gold: #C5A880;
  --gold-light: #D4AF37;
  --text-dark: #1a1a1a;
  --text-light: #f0f0f0;
  --text-muted: #6b6b6b;
  --purple-glow: rgba(138, 93, 212, 0.3);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --accent-gold: #D4AF37;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: clip;
  max-width: 100vw;
  line-height: 1.6;
}

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* TOP BAR */
.top-bar {
  background: var(--bg-dark);
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-light);
}
.top-bar a { color: var(--text-light); opacity: 0.8; transition: opacity 0.3s; }
.top-bar a:hover { opacity: 1; }
.top-bar-links { display: flex; gap: 20px; align-items: center; }
.top-bar-links .sep { opacity: 0.4; font-size: 10px; }

/* HEADER */
.header {
  background: #fff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease-in-out;
}
.header-hidden {
  transform: translateY(-100%);
}
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-sunburst {
  width: 45px;
  height: 45px;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.5em;
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.btn-dotted {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 28px;
  border: 1.5px dashed var(--gold);
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.btn-dotted:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 25px; height: 2px; background: var(--text-dark); transition: 0.3s; }

/* HERO SECTION */
.hero {
  position: relative;
  padding: 40px 0 60px;
  background: var(--bg-light);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--purple-glow), transparent);
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left, .hero-right { padding: 20px; }
.floating-jupiter {
  position: absolute;
  top: 60px;
  left: -90px;
  width: 160px;
  height: 160px;
  z-index: 10;
  pointer-events: none;
}
.hero-big-text {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}
.hero-big-text em {
  font-style: italic;
  display: block;
}
.rotator-text {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  perspective: 400px;
  white-space: nowrap;
  padding-bottom: 10px;
}
.rotator-text .char {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  will-change: transform, opacity;
  white-space: pre;
}
.rotator-text .char.out {
  opacity: 0;
  transform: translateY(-25px) rotateX(75deg);
}
.rotator-text .char.in {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}
.rotator-text .char.initial-out {
  opacity: 0;
  transform: translateY(25px) rotateX(-75deg);
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hero-desc-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}
.hero-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}
/* Scroll Down Indicator */
.scroll-down-arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  text-decoration: none;
  z-index: 10;
  transition: opacity 0.3s;
  font-size: 32px;
}
.scroll-down-arrow:hover {
  opacity: 0.6;
}
.scroll-down-arrow i {
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* HERO FORM CARD */
.hero-form-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 168, 128, 0.3);
  text-align: left;
  max-width: 460px;
  margin-left: auto;
  position: relative;
  z-index: 5;
  scroll-margin-top: 100px;
}
.hero-form-card .form-title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 700;
}
.hero-form-card .form-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.hero-form .form-group {
  margin-bottom: 15px;
}
.hero-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.8);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(197, 168, 128, 0.3);
}
.hero-submit-btn {
  width: 100%;
  background: var(--accent-gold);
  color: #000;
  border: none;
  padding: 14px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.4);
}
.form-quick-contact {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.quick-contact-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.quick-contact-btn i {
  color: var(--gold);
  font-size: 16px;
}
.quick-contact-btn.whatsapp-btn i {
  color: #25D366; /* WhatsApp Green */
}
.quick-contact-btn:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.hero-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-center::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 195, 220, 0.35) 0%, rgba(200, 205, 225, 0.15) 50%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-image-arch {
  width: 420px;
  height: 540px;
  border-radius: 220px 220px 20px 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.hero-image-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-right .hero-big-text { text-align: right; }

/* PURPLE GLOW EDGES */
.purple-edge-left, .purple-edge-right {
  position: fixed;
  top: 0;
  width: 8px;
  height: 100%;
  z-index: 999;
  pointer-events: none;
}
.purple-edge-left {
  left: 0;
  background: linear-gradient(to right, var(--purple-glow), transparent);
}
.purple-edge-right {
  right: 0;
  background: linear-gradient(to left, var(--purple-glow), transparent);
}

/* SECTION COMMON */
.section { padding: 80px 0; position: relative; }
.section-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--text-dark);
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 620px;
}
.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto 30px; }

/* TAROT INSIGHTS & STATS (MATCHING REFERENCE LAYOUT) */
.insights {
  background: var(--bg-light);
  overflow: visible;
  padding: 60px 0;
  position: relative;
}

.insights-main-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: flex-start;
  position: relative;
}

.insights-left-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.insights-top-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.circle-img-container {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
  margin-left: -120px; /* Bleed off left edge significantly */
}

.crystal-float-left {
  position: absolute;
  top: 5%;
  left: 20px;
  width: 100px;
  height: 110px;
  z-index: 5;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
  animation: floatUpDown 5s ease-in-out infinite;
}

.circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-content {
  text-align: left;
  max-width: 500px;
}

.insights-content .section-subtitle {
  font-size: 18px;
  margin-bottom: 15px;
}

.insights-content .section-title {
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.insights-content .section-desc {
  font-size: 17px;
  margin-bottom: 35px;
}

/* STATS ROW UNDER LEFT CONTENT */
.stats-row {
  display: flex;
  gap: 80px;
  padding-top: 50px;
  border-top: 1px dashed rgba(197, 168, 128, 0.4);
  padding-left: 350px; /* Align stats with the text block, ignoring the circle */
}

.stat-item {
  position: relative;
  text-align: left;
  min-width: 180px;
}

.stat-bg-svg {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  pointer-events: none;
  z-index: 0;
}

.stat-number {
  font-family: var(--font-body);
  font-size: 72px;
  font-weight: 300;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* RIGHT SIDE TALL ARCH IMAGE WITH MOON AND SIGNATURE */
.insights-right-area {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.arch-wrapper {
  position: relative;
  width: 500px;
  margin-right: -60px; /* Bleed slightly off the right edge */
}

.floating-moon-asset {
  position: absolute;
  top: -20px;
  right: -5px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  z-index: 10;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.18));
  animation: floatUpDown 6s ease-in-out infinite;
  pointer-events: none;
}

.arch-img {
  width: 100%;
  height: 780px;
  border-radius: 250px 250px 20px 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.arch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-text {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-family: 'Great Vibes', cursive;
  font-size: 56px;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

/* GUIDED BY STARS TITLE REDESIGN */
.guided {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.guided::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: radial-gradient(ellipse 150% 100% at 50% 100%, #ffffff 0%, var(--bg-light) 100%);
  z-index: -1;
  pointer-events: none;
}

/* Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 0 auto 40px;
  max-width: 1000px;
  text-align: left;
}
.trust-item {
  background: #fff;
  padding: 18px 25px;
  border-radius: 10px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, border-color 0.3s;
}
.trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 168, 128, 0.5);
}

.guided-title-area {
  margin: 20px auto 40px;
  max-width: 900px;
  font-family: var(--font-heading);
  color: var(--text-dark);
}

.guided-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.inline-arch-img {
  width: 150px;
  height: 70px;
  border-radius: 75px 75px 0 0;
  overflow: hidden;
  display: inline-flex;
  margin: 0 5px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: translateY(6px);
}

.inline-arch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inline-crystal-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: inline-flex;
  margin: 0 5px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  transition: transform 0.1s linear;
  will-change: transform;
}

.inline-crystal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-fan {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 50px;
  position: relative;
  padding: 0;
  min-height: 700px;
}
.tarot-card {
  width: 266px;
  height: 489px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  border-radius: 14px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), z-index 0s;
  will-change: transform;
}
.tarot-card:not(:first-child) {
  margin-left: -80px; /* Less overlap = wider spread, all 7 cards visible */
}
/* Left-to-right stacking with smooth even arc */
.tarot-card:nth-child(1) { transform: rotate(-25deg); z-index: 1; margin-top: 220px; }
.tarot-card:nth-child(2) { transform: rotate(-17deg); z-index: 2; margin-top: 100px; }
.tarot-card:nth-child(3) { transform: rotate(-8deg);  z-index: 3; margin-top: 25px; }
.tarot-card:nth-child(4) { transform: rotate(0deg);   z-index: 4; margin-top: 0px; }
.tarot-card:nth-child(5) { transform: rotate(8deg);   z-index: 5; margin-top: 25px; }
.tarot-card:nth-child(6) { transform: rotate(17deg);  z-index: 6; margin-top: 100px; }
.tarot-card:nth-child(7) { transform: rotate(25deg);  z-index: 7; margin-top: 220px; }

/* On hover: card slides up WHILE keeping its tilt angle */
.tarot-card:nth-child(1):hover { transform: rotate(-25deg) translateY(-100px) !important; }
.tarot-card:nth-child(2):hover { transform: rotate(-17deg) translateY(-100px) !important; }
.tarot-card:nth-child(3):hover { transform: rotate(-8deg)  translateY(-100px) !important; }
.tarot-card:nth-child(4):hover { transform: rotate(0deg)   translateY(-100px) !important; }
.tarot-card:nth-child(5):hover { transform: rotate(8deg)   translateY(-100px) !important; }
.tarot-card:nth-child(6):hover { transform: rotate(17deg)  translateY(-100px) !important; }
.tarot-card:nth-child(7):hover { transform: rotate(25deg)  translateY(-100px) !important; }

/* Card inner: holds front + back stacked */
.tarot-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Front image (light card back) */
.tarot-card-front {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tarot-card:hover .tarot-card-front {
  opacity: 0;
}

/* Back (dark zodiac design) */
.tarot-card-back {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  background: #080b12;
  border: 1px solid var(--gold);
  border-radius: 14px;
  overflow: hidden;
}

/* ZODIAC CARD DESIGN */
.zodiac-card-design {
  width: 100%; height: 100%;
  padding: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  color: var(--gold);
}
.zcard-border {
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 8px;
  pointer-events: none;
}
.zcard-border::before, .zcard-border::after {
  content: ''; position: absolute; width: 6px; height: 6px; border: 1px solid var(--gold);
}
.zcard-border::before { top: -3px; left: -3px; }
.zcard-border::after { bottom: -3px; right: -3px; }
.zcard-top {
  margin-top: 20px;
}
.zcard-tiny {
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
}
.zcard-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 6px;
  margin: 5px 0;
  color: #fff;
}
.zcard-arch {
  flex: 1;
  margin: 20px 10px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 100px 100px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.zcard-moon {
  position: absolute;
  top: 20px;
  width: 14px; height: 14px;
  border-radius: 50%;
  box-shadow: 4px 4px 0 0 var(--gold);
  transform: rotate(-45deg);
}
.zcard-arch img {
  width: 70%;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(345deg) brightness(1.2);
}
.zcard-bottom {
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.zcard-triangle { font-size: 8px; }

/* Front card image */
.card-back-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}

/* VIDEO SECTION */
.video-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.video-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
}
.video-overlay .section-title { color: var(--text-light); margin-bottom: 30px; }
.play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 30px;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(5px);
}
.play-btn:hover { background: rgba(255,255,255,0.3); }
.marquee-strip {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-text {
  display: flex;
  gap: 40px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-light);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* COUNTERS */
.counters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 0;
}
.counter-item { text-align: center; position: relative; }
.counter-bg {
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 700;
  color: rgba(197, 168, 128, 0.25);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
.counter-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* MYSTICAL SERVICES REDESIGN */
.mystical-services-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  overflow: hidden;
}

/* Top Row */
.ms-top-row {
  display: grid;
  grid-template-columns: 45% 40% 15%;
  gap: 30px;
  align-items: center;
  margin-bottom: 60px;
}

.ms-top-left {
  height: 500px;
  border-radius: 20px 200px 20px 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.ms-top-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-top-center {
  padding-left: 20px;
}

.ms-top-center .section-title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.ms-top-center .section-desc {
  color: var(--text-muted);
  font-size: 16px;
}

.ms-top-right {
  display: flex;
  justify-content: flex-end;
}

.ms-pill-wrapper {
  position: relative;
  width: 140px;
  height: 380px;
  border-radius: 70px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.ms-pill-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  pointer-events: none;
}

.pill-text-overlay i {
  transform: rotate(-90deg);
}

/* Middle Row */
.ms-middle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  align-items: center;
}

.ms-features {
  display: flex;
  gap: 40px;
}

.service-card {
  flex: 1;
  padding: 20px 0;
}

.service-card-icon {
  width: 70px;
  height: 90px;
  margin-bottom: 20px;
  object-fit: contain;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.ms-right-image {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}

.ms-right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.ms-dark-crystal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: auto;
  z-index: 10;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
  transition: transform 0.1s linear;
  will-change: transform;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.services-grid-11 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}
.services-grid-11 .service-card {
  padding: 30px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(197, 168, 128, 0.15);
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.services-grid-11 .service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 168, 128, 0.5);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Bottom Gallery Row (Masonry) */
.ms-gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ms-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ms-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 250px;
}

.ms-gallery-item.ms-tall {
  height: 350px;
}

.ms-gallery-item.ms-tall-large {
  height: 620px;
}

.ms-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ms-gallery-item:hover img {
  transform: scale(1.05);
}
/* MYSTIC VISIONS TABS */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 50px 0;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: var(--font-body);
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0 15px 0;
  color: var(--text-muted);
  transition: 0.3s;
  display: flex; align-items: center; gap: 8px;
  position: relative;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}
.tab-btn.active, .tab-btn:hover {
  color: var(--text-dark);
}
.tab-btn.active::after {
  width: 40px;
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tab-image-wrapper { position: relative; display: flex; justify-content: center; align-items: center; }
.tab-circle-img {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.tab-circle-img img { width: 100%; height: 100%; object-fit: cover; }
.moon-background-wrapper {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15; /* Make it subtle */
}
.moon-background-wrapper img {
  width: 100%; height: 100%; object-fit: contain;
}
.tab-info { padding-left: 30px; }
.tab-info .badge {
  display: inline-block;
  padding: 6px 15px;
  border: 1px dotted var(--gold);
  border-radius: 2px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-bottom: 25px;
}
.tab-info .section-title {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 30px;
}
.tab-info .price {
  font-family: var(--font-heading);
  font-size: 72px;
  margin: 30px 0;
  color: var(--text-dark);
}
.tab-info .section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}
.tab-features {
  display: flex;
  gap: 35px;
  margin: 30px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}
.tab-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 0;
  border-top: none;
}
.tab-profile img {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.tab-profile-name { 
  font-family: var(--font-heading);
  font-weight: normal; 
  font-size: 24px; 
  color: var(--text-dark);
  margin-bottom: 5px;
}
.tab-profile-quote { font-size: 14px; color: var(--text-muted); font-style: normal; }

/* CELESTIAL INSIGHTS */
.celestial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.celestial-left {
  background: var(--bg-light);
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.celestial-left .section-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: var(--text-muted);
}
.celestial-left .section-title {
  font-size: 64px;
  line-height: 1.1;
  margin: 15px 0 25px;
}
.celestial-left .progress-title {
  font-weight: 500;
  margin-top: 30px;
  font-family: var(--font-body);
  font-size: 15px;
}
.celestial-right {
  background: #000000;
  padding: 60px; /* Space around the grid (4 sides) */
  position: relative;
  overflow: hidden;
}
.stars-parallax {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background-image: 
    radial-gradient(1.5px 1.5px at 20px 30px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 80px 120px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 150px 70px, rgba(255,255,255,0.8), rgba(0,0,0,0)),
    radial-gradient(2.5px 2.5px at 250px 250px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 300px 90px, rgba(255,255,255,0.9), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 380px 180px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 450px 30px, rgba(255,255,255,0.8), rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 50px 350px, #ffffff, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 500px 500px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  height: max-content;
  position: relative;
  z-index: 1;
}
.zodiac-item {
  border: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: transparent;
  transition: background 0.3s ease;
  aspect-ratio: 4 / 3;
}
.zodiac-item:hover {
  background: rgba(197, 168, 128, 0.05);
}
.zodiac-item img {
  width: 50%; /* Normal size inside the box */
  height: 50%;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.zodiac-item:hover img {
  opacity: 1;
}
.progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(0,0,0,0.05);
  margin: 10px 0 25px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--gold);
  width: 25%; /* Match screenshot */
}
.btn-dotted {
  padding: 12px 25px;
  border: 1px dotted var(--gold);
  background: transparent;
  color: var(--text-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  cursor: pointer;
  align-self: flex-start;
  transition: 0.3s;
}
.btn-dotted:hover {
  background: var(--gold);
  color: #fff;
}

/* Testimonials Auto-Scroll */
.testimonials-scroller {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.testimonials-track {
  display: flex;
  gap: 25px;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content;
}
@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonials-scroller:hover .testimonials-track {
  animation-play-state: paused;
}
.testimonial-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 14px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: left;
  min-width: 320px;
  max-width: 380px;
  flex-shrink: 0;
}
.testimonial-card h4 {
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-dark);
  margin: 0 0 5px 0;
}
.testimonial-card p {
  margin: 0;
}

/* CTA SECTION */
.cta-section {
  background: var(--bg-dark);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.4);
}
.cta-btn:hover {
  background: #d4b896;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 168, 128, 0.5);
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.blog-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 380px;
}
.blog-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover img { transform: scale(1.05); }
.blog-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 25px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}
.blog-date {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 4px 14px;
  font-size: 12px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 8px;
}
.blog-card p { font-size: 13px; opacity: 0.85; line-height: 1.5; }
.blog-sidebar { }
.sidebar-search {
  display: flex;
  margin-bottom: 30px;
}
.sidebar-search input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  background: #fff;
}
.sidebar-search button {
  padding: 12px 16px;
  background: var(--text-dark);
  border: none;
  color: #fff;
  cursor: pointer;
}
.sidebar-title {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 20px;
}
.sidebar-post {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: center;
}
.sidebar-post img {
  width: 70px; height: 70px;
  border-radius: 6px;
  object-fit: cover;
}
.sidebar-post h4 { font-family: var(--font-heading); font-size: 16px; margin-bottom: 4px; }
.sidebar-post p { font-size: 12px; color: var(--text-muted); }

/* FOOTER */
.footer {
  color: var(--text-light);
  padding: 50px 40px 25px;
  position: relative;
  overflow: hidden;
}
.footer-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.footer-video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.82);
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 0.8fr 0.8fr;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  align-items: start;
}
.footer-col {}
.footer h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: 1px;
}
.footer p, .footer a { font-size: 13px; opacity: 0.75; line-height: 1.7; }
.footer a:hover { opacity: 1; color: var(--gold); }
.footer-logo {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px !important;
  max-width: 320px;
  margin-bottom: 15px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: 0.3s;
  opacity: 1 !important;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(197,168,128,0.15); }
.footer-contact-list,
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.footer-contact-list li i {
  color: var(--gold);
  width: 16px;
  font-size: 13px;
  flex-shrink: 0;
}
.footer-links-list li {
  margin-bottom: 8px;
}
.footer-links-list li a {
  font-size: 13px;
  opacity: 0.7;
  transition: 0.3s;
}
.footer-links-list li a:hover {
  opacity: 1;
  color: var(--gold);
  padding-left: 5px;
}
.footer .payment-btn { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  background: rgba(197, 168, 128, 0.1); 
  border: 1px solid var(--gold); 
  padding: 10px 18px; 
  border-radius: 6px; 
  color: var(--gold); 
  font-family: var(--font-body); 
  font-size: 13px; 
  text-decoration: none;
  transition: 0.3s;
  opacity: 1 !important;
}
.footer .payment-btn:hover {
  background: var(--gold);
  color: #000;
}
.footer .payment-btn i { font-size: 16px; }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer-bottom p {
  font-size: 12px !important;
  opacity: 0.4 !important;
  margin: 0;
}

/* CONTACT SECTION */
/* CONTACT SECTION */
.contact-form {
  background: #fff;
  padding: 35px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
}
.contact-form .form-group.full-width {
  grid-column: 1 / -1;
}
.contact-form label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.contact-form input, .contact-form textarea {
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
  font-size: 14px;
  font-family: var(--font-body);
  color: #555;
  background: transparent;
  outline: none;
  transition: 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-bottom-color: var(--gold);
}
.contact-form textarea {
  resize: vertical;
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }

  /* HERO */
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-right { display: flex; justify-content: center; width: 100%; margin-top: 20px; }
  .hero-form-card { margin: 0 auto; }
  .hero-left { text-align: center; }
  .hero-left .hero-big-text { text-align: center; }
  .hero-center { margin: 30px auto; }
  .hero-center::before { width: 350px; height: 350px; }
  .hero-image-arch { width: 320px; height: 420px; margin: 0 auto; }
  .floating-jupiter { display: none; }

  /* INSIGHTS / ABOUT US */
  .insights-main-layout { grid-template-columns: 1fr; gap: 30px; }
  .insights-top-row { flex-direction: column; align-items: center; gap: 30px; }
  .circle-img-container { width: 280px; height: 280px; margin-left: 0; }
  .crystal-float-left { display: none; }
  .insights-content { text-align: center; max-width: 100%; }
  .insights-content .section-title { font-size: 42px; }
  .stats-row { padding-left: 0; flex-direction: column; gap: 30px; align-items: center; }
  .stat-item { text-align: center; min-width: auto; }
  .insights-right-area { justify-content: center; }
  .arch-wrapper { width: 100%; max-width: 400px; margin-right: 0; }
  .arch-img { height: 500px; }

  /* GUIDED / TRUST */
  .guided-line { font-size: clamp(28px, 4vw, 48px); flex-wrap: wrap; }
  .inline-arch-img { width: 100px; height: 45px; }
  .inline-crystal-img { width: 40px; height: 40px; }
  .trust-grid { grid-template-columns: 1fr; }

  /* CARDS FAN */
  .card-fan .tarot-card { width: 160px; height: 280px; }
  .card-fan .tarot-card:not(:first-child) { margin-left: -50px; }
  .card-fan { min-height: 500px; }

  /* SERVICES */
  .ms-top-row { grid-template-columns: 1fr; }
  .ms-top-left { height: 350px; border-radius: 20px; }
  .ms-top-right { justify-content: center; }
  .ms-pill-wrapper { width: 100%; height: 200px; border-radius: 20px; }
  .pill-text-overlay { transform: translate(-50%, -50%) rotate(0deg); }
  .pill-text-overlay i { transform: none; }
  .ms-middle-row { grid-template-columns: 1fr; }
  .ms-features { flex-direction: column; gap: 30px; }
  .ms-dark-crystal { display: none; }
  .ms-gallery-row { grid-template-columns: 1fr; }
  .services-grid-11 { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }

  /* TABS */
  .tab-layout { grid-template-columns: 1fr; }
  .tab-info { padding-left: 0; text-align: center; }
  .tab-info .section-title { font-size: 40px; }
  .tab-image-wrapper { order: -1; }
  .moon-background-wrapper { width: 400px; height: 400px; }
  .tabs-nav { gap: 20px; }

  /* CELESTIAL */
  .celestial { grid-template-columns: 1fr; }
  .celestial-left { padding: 60px 30px; }
  .celestial-left .section-title { font-size: 44px; }
  .celestial-right { padding: 30px; }
  .zodiac-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }

  /* BLOG */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-posts { grid-template-columns: 1fr; }

  /* TESTIMONIALS */
  .testimonial-card { min-width: 280px; max-width: 320px; padding: 25px; }

  /* CONTACT */
  .contact-form { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .footer-contact-list li { justify-content: flex-start; }
  .footer { padding: 40px 20px 25px; }
}


/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* GLOBAL */
  body { overflow-x: clip; }
  .container { padding: 0 15px; }
  .section { padding: 50px 0; }

  /* TOP BAR & NAV */
  .top-bar { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .header { padding: 12px 15px; display: flex; justify-content: space-between; align-items: center; }
  .logo { position: static; transform: none; flex-grow: 1; display: flex; justify-content: flex-start; margin-right: auto; }
  .logo-text { font-size: 18px; text-align: center; }
  .logo-sunburst { width: 30px; height: 30px; }
  .hamburger { margin-left: auto; }
  .header .btn-dotted { display: none; }

  /* HERO */
  .hero { min-height: auto; padding: 30px 0; padding-bottom: 50px; }
  .scroll-down-arrow { left: auto; right: 40px; bottom: 10px; font-size: 28px; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .hero-left, .hero-right { padding: 10px 0; }
  .hero-right { display: flex; justify-content: center; width: 100%; margin-top: 10px; }
  .hero-form-card { margin: 0 auto; }
  .hero-left .hero-big-text { text-align: center; }
  .hero-big-text { font-size: clamp(36px, 8vw, 52px); }
  .hero-desc-title { font-size: 22px; }
  .hero-desc { font-size: 13px; }
  .hero-center { margin: 20px auto; }
  .hero-center::before { width: 280px; height: 280px; }
  .hero-image-arch { width: 280px; height: 360px; margin: 0 auto; }
  .floating-jupiter { display: none; }

  /* INSIGHTS / ABOUT US */
  .insights { padding: 40px 0; }
  .insights-main-layout { grid-template-columns: 1fr; gap: 25px; }
  .insights-top-row { flex-direction: column; gap: 20px; align-items: center; }
  .circle-img-container { width: 220px; height: 220px; margin-left: 0; }
  .crystal-float-left { display: none; }
  .insights-content { text-align: center; max-width: 100%; }
  .insights-content .section-subtitle { font-size: 15px; }
  .insights-content .section-title { font-size: 32px; }
  .insights-content .section-desc { font-size: 14px; }
  .stats-row { 
    flex-direction: column; 
    gap: 25px; 
    padding-left: 0; 
    padding-top: 30px; 
    align-items: center; 
  }
  .stat-item { text-align: center; min-width: auto; }
  .stat-number { font-size: 60px; }
  .stat-bg-svg { width: 120px; height: 120px; left: 50%; transform: translate(-50%, -50%); }

  /* RIGHT AREA ARCH IMAGE */
  .insights-right-area { justify-content: center; }
  .arch-wrapper { width: 100%; max-width: 300px; margin-right: 0; }
  .arch-img { height: 400px; border-radius: 160px 160px 15px 15px; }
  .floating-moon-asset { width: 80px; height: 80px; top: -10px; right: 5px; }
  .signature-text { font-size: 36px; bottom: 15px; right: 15px; }

  /* GUIDED / TRUST */
  .guided { padding: 50px 0 0; }
  .guided-title-area { margin: 15px auto 30px; }
  .guided-line { 
    font-size: clamp(22px, 6vw, 36px); 
    flex-wrap: wrap; 
    gap: 8px; 
    margin-bottom: 8px;
  }
  .inline-arch-img { width: 80px; height: 36px; }
  .inline-crystal-img { width: 35px; height: 35px; }
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-item { font-size: 14px; padding: 12px 18px; }

  /* TAROT CARDS FAN — FULL CARD ONE-AT-A-TIME */
  .card-fan {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 0 20px;
    gap: 20px;
  }
  .card-fan .tarot-card {
    width: 95%;
    max-width: 380px;
    height: auto;
    aspect-ratio: 2 / 3.2;
    position: relative;
    margin-left: 0 !important;
    margin-top: 0 !important;
    transform: rotate(0deg) !important;
    flex-shrink: 0;
  }
  .card-fan .tarot-card:not(:first-child) {
    margin-left: 0;
  }
  /* Disable hover transforms on mobile */
  .card-fan .tarot-card:nth-child(1):hover,
  .card-fan .tarot-card:nth-child(2):hover,
  .card-fan .tarot-card:nth-child(3):hover,
  .card-fan .tarot-card:nth-child(4):hover,
  .card-fan .tarot-card:nth-child(5):hover,
  .card-fan .tarot-card:nth-child(6):hover,
  .card-fan .tarot-card:nth-child(7):hover {
    transform: rotate(0deg) !important;
  }

  /* COUNTERS */
  .counters-row { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
    padding: 30px 0; 
  }
  .counter-bg { font-size: 80px; }
  .counter-label { font-size: 13px; }

  /* VIDEO SECTION */
  .video-section { min-height: 40vh; }
  .marquee-text { font-size: 18px; }

  /* SERVICES */
  .mystical-services-section { padding: 50px 0; }
  .ms-top-row { grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
  .ms-top-left { height: 250px; border-radius: 15px; }
  .ms-top-center .section-title { font-size: 32px; }
  .ms-top-center { padding-left: 0; text-align: center; }
  .ms-top-right { justify-content: center; }
  .ms-pill-wrapper { 
    width: 100%; 
    height: 180px; 
    border-radius: 15px; 
  }
  .pill-text-overlay { 
    transform: translate(-50%, -50%) rotate(0deg); 
    font-size: 18px; 
  }
  .pill-text-overlay i { transform: none; }
  .ms-middle-row { grid-template-columns: 1fr; gap: 25px; margin-bottom: 30px; }
  .ms-features { flex-direction: column; gap: 25px; }
  .ms-dark-crystal { display: none; }
  .ms-right-image { height: 250px; border-radius: 10px; }
  .ms-gallery-row { grid-template-columns: 1fr; gap: 15px; }
  .ms-gallery-item { height: 200px; }
  .ms-gallery-item.ms-tall { height: 250px; }
  .ms-gallery-item.ms-tall-large { height: 300px; }
  .services-grid-11 { grid-template-columns: 1fr; gap: 15px; }
  .services-grid-11 .service-card { padding: 20px; }
  .service-cards { grid-template-columns: 1fr; }

  /* TABS / PRODUCTS */
  .tabs-nav { 
    flex-direction: row; 
    flex-wrap: wrap; 
    gap: 10px; 
    justify-content: center; 
    margin: 30px 0;
  }
  .tab-btn { font-size: 13px; padding: 8px 0 10px; }
  .tab-layout { grid-template-columns: 1fr; gap: 30px; }
  .tab-image-wrapper { order: -1; }
  .tab-circle-img { width: 220px; height: 220px; margin: 0 auto 20px; }
  .moon-background-wrapper { width: 300px; height: 300px; }
  .tab-info { padding-left: 0; text-align: center; }
  .tab-info .badge { margin-bottom: 15px; }
  .tab-info .section-title { font-size: 30px; }
  .tab-info .price { font-size: 48px; margin: 20px 0; }
  .tab-info .section-desc { font-size: 14px; }
  .tab-features { justify-content: center; gap: 20px; font-size: 13px; }
  .tab-profile { justify-content: center; flex-direction: column; text-align: center; }

  /* CELESTIAL INSIGHTS */
  .celestial { 
    grid-template-columns: 1fr !important; 
    min-height: auto !important; 
  }
  .celestial-left { padding: 40px 20px; }
  .celestial-left .section-subtitle { font-size: 16px; }
  .celestial-left .section-title { font-size: 32px; }
  .celestial-right { 
    padding: 15px !important; 
    overflow: visible !important; 
    height: auto !important; 
  }
  .stars-parallax { display: none !important; }
  .zodiac-grid { 
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important; 
    height: auto !important;
  }
  .zodiac-item { 
    aspect-ratio: unset !important;
    height: 110px !important;
    min-height: 110px !important;
    width: 100% !important; 
    overflow: visible !important;
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .zodiac-item img {
    width: auto !important;
    height: 60px !important;
    max-height: 60px !important;
    object-fit: contain;
  }

  /* BLOG */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-posts { grid-template-columns: 1fr; }
  .blog-card { height: 280px; }

  /* TESTIMONIALS */
  .testimonial-card { min-width: 260px; max-width: 300px; padding: 20px; font-size: 14px; }

  /* CONTACT */
  .contact-form { 
    grid-template-columns: 1fr; 
    padding: 20px 15px; 
    gap: 12px; 
    max-width: 100%; 
  }

  /* FOOTER */
  .footer { padding: 35px 15px 20px; }
  .footer-grid { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 25px; 
    margin-bottom: 20px; 
  }
  .footer-desc { margin: 0 auto 15px; }
  .footer-social { justify-content: center; }
  .footer-contact-list li { justify-content: center; }
  .footer-links-list { text-align: center; }
  .footer h4 { font-size: 18px; margin-bottom: 12px; }
  .footer-logo { font-size: 24px; letter-spacing: 2px; }

  /* PURPLE EDGE — less prominent on mobile */
  .purple-edge-left, .purple-edge-right { width: 4px; }

  /* Section titles */
  .section-title { font-size: clamp(26px, 6vw, 38px); }
  .section-desc { font-size: 14px; }
}


/* ============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-big-text { font-size: clamp(30px, 9vw, 42px); }
  .hero-desc-title { font-size: 18px; }
  .hero-image-arch { width: 260px; height: 340px; }
  .hero-center::before { width: 220px; height: 220px; }

  .insights-content .section-title { font-size: 28px; }
  .stat-number { font-size: 48px; }

  .guided-line { font-size: clamp(18px, 6vw, 28px); }
  .inline-arch-img { width: 60px; height: 28px; }
  .inline-crystal-img { width: 28px; height: 28px; }

  .card-fan .tarot-card {
    width: 90%;
    max-width: 300px;
  }

  .counters-row { grid-template-columns: 1fr; gap: 20px; }
  .counter-bg { font-size: 60px; }

  .ms-top-center .section-title { font-size: 26px; }
  .ms-top-left { height: 200px; }

  .tab-circle-img { width: 180px; height: 180px; }
  .tab-info .section-title { font-size: 24px; }
  .tab-info .price { font-size: 36px; }

  .celestial-left .section-title { font-size: 26px; }


  .blog-card { height: 220px; }

  .footer-logo { font-size: 24px; }
}

/* ============================================
   MASONRY GALLERY SECTION
   ============================================ */
.gallery-section {
  padding: 80px 20px;
  background: var(--bg-light);
}
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 250px);
  gap: 20px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(197, 168, 128, 0.2);
}
/* Desktop Grid Placement */
.item-1 { grid-column: 1; grid-row: 1 / 3; } /* Tall Left */
.item-2 { grid-column: 2; grid-row: 1 / 2; } /* Square Top Mid */
.item-3 { grid-column: 3; grid-row: 1 / 3; } /* Tall Right */
.item-4 { grid-column: 1; grid-row: 3 / 4; } /* Square Bot Left */
.item-5 { grid-column: 2; grid-row: 2 / 4; } /* Tall Bot Mid */
.item-6 { grid-column: 3; grid-row: 3 / 4; } /* Square Bot Right */

.gallery-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #0a0a0a;
}
.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.9;
}
.gallery-item:hover .gallery-img-wrapper img {
  transform: scale(1.1);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-rows: repeat(3, 200px);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
  }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; }
  .item-1, .item-3, .item-5 { grid-row: span 2 !important; }
  .item-2, .item-4, .item-6 { grid-row: span 1 !important; }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  .gallery-item {
    grid-column: 1 !important;
    grid-row: span 1 !important;
  }
}

/* ============================================
   PAYMENT PAGE STYLES (NEXT LEVEL)
   ============================================ */
.payment-body {
  background: radial-gradient(circle at 50% 50%, #1a1a24 0%, #050505 100%);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.payment-body::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseOrb 8s infinite alternate;
  pointer-events: none;
}
@keyframes pulseOrb {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.payment-container {
  width: 100%;
  max-width: 500px;
  padding: 20px;
  z-index: 2;
  perspective: 1000px;
}
.payment-card {
  background: rgba(20, 20, 20, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(197, 168, 128, 0.05);
  position: relative;
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.payment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  box-shadow: 0 0 15px var(--accent-gold);
}
.payment-icon-wrapper {
  font-size: 60px;
  background: linear-gradient(135deg, #e3c08d 0%, #a67c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 15px rgba(197, 168, 128, 0.3));
}
.payment-title {
  font-family: var(--font-heading);
  font-size: 32px;
  background: linear-gradient(to right, #ffffff, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.payment-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}
.paypal-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.amount-input-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.currency-symbol {
  position: absolute;
  left: 25px;
  font-size: 28px;
  color: var(--accent-gold);
  font-family: var(--font-heading);
}
.amount-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.5);
  border-radius: 12px;
  padding: 20px 20px 20px 60px;
  font-size: 32px;
  color: #fff;
  font-family: var(--font-heading);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}
.amount-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8), 0 0 25px rgba(197, 168, 128, 0.4);
  transform: scale(1.03);
}
.amount-input::placeholder {
  color: rgba(255,255,255,0.15);
}
.btn-pay-now {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(45deg, #b8860b, #ffd700, #b8860b, #ffd700);
  background-size: 300% auto;
  color: #000;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: 0.5s;
  box-shadow: 0 10px 20px rgba(197, 168, 128, 0.3);
}
.btn-pay-now:hover {
  background-position: right center;
  box-shadow: 0 15px 30px rgba(197, 168, 128, 0.5);
  transform: translateY(-3px);
}
.btn-pay-now i {
  font-size: 20px;
}
.payment-secure-text {
  margin-top: 35px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.payment-secure-text i {
  color: #28a745; 
  margin-right: 5px;
  text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

@media (max-width: 480px) {
  .payment-card { padding: 40px 25px; }
  .payment-title { font-size: 26px; }
  .amount-input { font-size: 26px; padding: 15px 15px 15px 45px; }
  .currency-symbol { left: 20px; font-size: 22px; }
}

/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */
.thanks-card {
  animation: floatCard 4s ease-in-out infinite alternate;
}
.success-icon-wrapper {
  font-size: 80px;
  background: linear-gradient(135deg, #f9d976 0%, #e3c08d 50%, #a67c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 30px rgba(197, 168, 128, 0.6));
  animation: scalePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes scalePop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 15px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  width: 100%;
  background: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  border-radius: 2px;
  transform-origin: left;
  animation: progressShrink 5s linear forwards;
}
@keyframes progressShrink {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

/* FLOATING CONTACT ICONS */
.floating-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.float-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: box-shadow 0.3s;
}
.float-btn:hover {
  transform: translateY(-8px) scale(1.05);
}
.float-btn:hover img {
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
  }
}
