/* =================================================================
   ASTRO ARUN — ASTROLOGY CONSULTATION PAGE (ac- prefix)
   Page specific stylesheet. Add as css/astrology-consultation.css
   and link it in astrology-consultation.html AFTER ownstyle.css and
   nav-premium.css so it can build on the shared design tokens.
   Palette matches homepage: purple #4d0079 / #2e1065, violet accent
   #7c3aed, gold #c8940c / #c8973a, soft bg #f5f3ff / #faf7ff.
   ================================================================= */

.ac-page { overflow-x: hidden; }

/* -----------------------------------------------------------------
   HERO — compact, single line heading, no image, no buttons
   ----------------------------------------------------------------- */
.ac-hero {
  position: relative;
  background: linear-gradient(135deg, #2e1065 0%, #4d0079 55%, #6d35c9 100%);
  padding: 34px 20px 32px;
  overflow: hidden;
}

.ac-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(200,151,58,0.14);
}

.ac-hero::after {
  content: '';
  position: absolute;
  bottom: -70px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.ac-hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.ac-hero-title-wrap {
  display: inline-block;
  background: linear-gradient(135deg, #f4dfa0 0%, #c8973a 100%);
  border-radius: 12px;
  padding: 8px 16px;
  margin: 0 0 16px;
  box-shadow: 0 10px 26px rgba(200,151,58,0.4);
  max-width: 100%;
}

.ac-hero-title {
  font-weight: 800;
  color: #2e1065;
  line-height: 1.08;
  letter-spacing: -0.6px;
  margin: 0;
  white-space: nowrap;
  font-size: clamp(1.05rem, 5.3vw, 3rem);
}

.ac-hero-langs-text {
  color: #e2d4ff;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0 0 14px;
  font-size: clamp(0.85rem, 2.2vw, 1rem);
}

.ac-hero-lang-sep {
  display: inline-block;
  color: #e0b455;
  font-size: 0.65em;
  margin: 0 8px;
  vertical-align: middle;
}

.ac-hero-sub {
  color: #e2d4ff;
  font-weight: 500;
  line-height: 1.5;
  max-width: 52ch;
  margin: 0 auto;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
}

@media (max-width: 420px) {
  .ac-hero { padding: 28px 16px 26px; }
  .ac-hero-title-wrap { padding: 7px 12px; }
}

/* -----------------------------------------------------------------
   SHARED SECTION HELPERS
   ----------------------------------------------------------------- */
.ac-section { padding: 56px 20px; }
.ac-section-white { background: #ffffff; }
.ac-section-soft  { background: #f5f3ff; }
.ac-container { max-width: 1080px; margin: 0 auto; }
.ac-container-narrow { max-width: 800px; margin: 0 auto; }

/* -----------------------------------------------------------------
   INTRO — single premium card with dividers
   ----------------------------------------------------------------- */
.ac-intro-card {
  display: flex;
  align-items: stretch;
  background: #faf7ff;
  border: 1px solid rgba(200,151,58,0.28);
  border-top: 3px solid #c8973a;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 16px;
}

.ac-intro-para { flex: 1; padding: 0 20px; }
.ac-intro-para:first-child { padding-left: 0; }
.ac-intro-para:last-child { padding-right: 0; }

.ac-intro-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(200,151,58,0.35);
  flex-shrink: 0;
}

.ac-intro-card p {
  color: #443a5c;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

.ac-intro-highlight {
  position: relative;
  text-align: center;
  padding: 4px 10px;
}

.ac-intro-highlight p {
  color: #5b21b6;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 860px) {
  .ac-intro-card { flex-direction: column; padding: 16px 18px; }
  .ac-intro-para { padding: 10px 0; }
  .ac-intro-para:first-child { padding-top: 0; }
  .ac-intro-para:last-child { padding-bottom: 0; }
  .ac-intro-divider { width: 100%; height: 1px; }
}

/* -----------------------------------------------------------------
   SERVICE HEAD (centered, badge style heading)
   ----------------------------------------------------------------- */
.ac-service { }
.ac-service-alt { background: #f5f3ff; }

.ac-service-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 26px;
}

.ac-service-title-row {
  display: inline-flex;
  align-items: flex-end;
  gap: 12px;
}

.ac-service-badge-num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4d0079, #7c3aed);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(124,58,237,0.35);
}

.ac-service-title {
  position: relative;
  font-weight: 800;
  color: #2e1065;
  line-height: 1.16;
  margin: 0;
  padding-bottom: 9px;
  font-size: clamp(1.55rem, 5.6vw, 2.6rem);
}

.ac-service-title::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #c8940c, #e6b93a);
}

.ac-service-lead {
  color: #55536e;
  font-size: 1.08rem;
  line-height: 1.42;
  margin: 12px 0 0;
}

.ac-service-lead + .ac-service-lead { margin-top: 8px; }

@media (max-width: 560px) {
  .ac-service-title-row { flex-wrap: wrap; justify-content: center; align-items: center; }
}

/* -----------------------------------------------------------------
   BENEFITS GRID (What You Can Expect)
   ----------------------------------------------------------------- */
.ac-sub-head {
  font-weight: 800;
  color: #2e1065;
  font-size: 1.6rem;
  margin: 8px 0 20px;
  text-align: center;
}

.ac-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}

.ac-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(77,0,121,0.10);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 4px 16px rgba(46,16,101,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ac-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(46,16,101,0.12);
  border-color: rgba(124,58,237,0.3);
}

.ac-benefit-full { grid-column: 1 / -1; }

.ac-bib {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-bib svg { width: 18px; height: 18px; }

.ac-bib-violet { background: #f0e6ff; color: #7900ac; }
.ac-bib-blue   { background: #e3eeff; color: #022c96; }
.ac-bib-green  { background: #e2f7ee; color: #007a3d; }
.ac-bib-orange { background: #fff2e2; color: #b85c00; }
.ac-bib-teal   { background: #e0f5f8; color: #006075; }

.ac-bhead {
  font-weight: 800;
  color: #2e1065;
  font-size: 0.96rem;
  margin: 0 0 3px;
}

.ac-btext {
  color: #55536e;
  font-size: 0.86rem;
  line-height: 1.42;
  margin: 0;
}

@media (max-width: 720px) {
  .ac-benefits-grid { grid-template-columns: 1fr; }
  .ac-benefit-full { grid-column: 1; }
}

/* -----------------------------------------------------------------
   TRUST BLOCK
   ----------------------------------------------------------------- */
.ac-trust {
  background: linear-gradient(135deg, #1a0a38 0%, #3b1f7a 100%);
  border-radius: 18px;
  padding: 34px 30px;
  margin: 34px 0 16px;
  text-align: center;
}

.ac-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,58,0.18);
  border: 1px solid rgba(200,151,58,0.5);
  color: #f4dfa0;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 20px;
  padding: 7px 20px;
  margin-bottom: 22px;
}

.ac-trust-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.ac-tstat { text-align: center; }

.ac-tnum {
  display: block;
  font-weight: 800;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.1;
}

.ac-tlabel {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  margin-top: 4px;
}

.ac-trust-para {
  color: rgba(255,255,255,0.88);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.65;
  font-size: 0.98rem;
}

@media (max-width: 560px) {
  .ac-trust-stats { gap: 24px; }
  .ac-tnum { font-size: 1.6rem; }
}

/* -----------------------------------------------------------------
   WHO NEEDS A CONSULTATION
   ----------------------------------------------------------------- */
.ac-needs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}

.ac-need-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(77,0,121,0.10);
  border-radius: 10px;
  padding: 11px 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ac-need-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(46,16,101,0.1);
}

.ac-need-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(124,58,237,0.10);
  color: #5b21b6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-need-icon svg { width: 15px; height: 15px; }

.ac-need-card p {
  margin: 0;
  color: #443a5c;
  font-size: 0.93rem;
  line-height: 1.4;
  font-weight: 600;
}

.ac-need-card a { color: #5b21b6; text-decoration: underline; }

/* -----------------------------------------------------------------
   HOW THE CONSULTATION WORKS — STEPS
   ----------------------------------------------------------------- */
.ac-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ac-step-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(77,0,121,0.10);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(46,16,101,0.05);
}

.ac-step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.ac-step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4d0079, #7c3aed);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(124,58,237,0.35);
}

.ac-step-title {
  font-weight: 800;
  color: #2e1065;
  font-size: 1.02rem;
  line-height: 1.25;
  margin: 0;
}

.ac-step-text {
  color: #55536e;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0 0 0 38px;
}

@media (max-width: 860px) {
  .ac-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ac-steps { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------------
   QUICK FACTS STRIP
   ----------------------------------------------------------------- */
.ac-quickfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.ac-quickfacts-2col { grid-template-columns: repeat(2, 1fr); }

.ac-qf-card {
  background: #faf7ff;
  border: 1px solid rgba(77,0,121,0.10);
  border-radius: 10px;
  padding: 12px 14px;
}

.ac-qf-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.ac-qf-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: #7900ac;
}

.ac-qf-label {
  font-weight: 800;
  color: #2e1065;
  font-size: 0.96rem;
}

.ac-qf-value {
  color: #55536e;
  font-size: 0.9rem;
  line-height: 1.38;
}

.ac-qf-value a { color: #022c96; font-weight: 700; text-decoration: underline; }

@media (max-width: 860px) {
  .ac-quickfacts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ac-quickfacts, .ac-quickfacts-2col { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------------
   APPROACH / WHY BOXES (Service 2 and 3 differentiators)
   ----------------------------------------------------------------- */
.ac-approach {
  background: linear-gradient(135deg, #faf3e2 0%, #fdf8ee 100%);
  border: 1px solid rgba(200,151,58,0.35);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 20px 0;
}

.ac-approach-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg,#f4dfa0 0%,#c8973a 100%);
  color: #3a2200;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.7rem;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 10px;
}

.ac-approach h3 {
  font-weight: 800;
  color: #2e1065;
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 8px;
}

.ac-approach p {
  color: #443a5c;
  line-height: 1.48;
  font-size: 0.94rem;
  margin: 0 0 10px;
}
.ac-approach p:last-child { margin-bottom: 0; }

.ac-approach-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ac-approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(200,151,58,0.4);
  color: #443a5c;
  font-size: 0.92rem;
  line-height: 1.42;
}
.ac-approach-list li:last-child { border-bottom: none; }

.ac-approach-item-title {
  display: block;
  color: #2e1065;
  font-weight: 800;
  font-size: 0.98rem;
  margin-bottom: 3px;
}

.ac-approach-item-text {
  margin: 0;
}

.ac-approach-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #c8973a;
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.ac-why-box {
  background: #f5f3ff;
  border-left: 4px solid #7c3aed;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0 10px;
}

.ac-why-box h3 {
  font-weight: 800;
  color: #2e1065;
  font-size: 1.08rem;
  margin: 0 0 8px;
}

.ac-why-box p {
  color: #443a5c;
  line-height: 1.48;
  font-size: 0.92rem;
  margin: 0 0 8px;
}
.ac-why-box p:last-child { margin-bottom: 0; }



/* -----------------------------------------------------------------
   USE CASE PILLS (Muhurta)
   ----------------------------------------------------------------- */
.ac-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 14px 0 4px;
}

.ac-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f5f0ff 0%, #ede0ff 100%);
  border: none;
  color: #5b21b6;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
  border-radius: 20px;
  padding: 6px 15px;
  box-shadow: 0 2px 8px rgba(91,33,182,0.12);
}

.ac-pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #c8973a;
  flex-shrink: 0;
}

/* -----------------------------------------------------------------
   DETAILS CARDS (Bride / Groom, Marriage Muhurta fields)
   ----------------------------------------------------------------- */
.ac-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.ac-details-card {
  background: #ffffff;
  border: 1px solid rgba(77,0,121,0.10);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 4px 16px rgba(46,16,101,0.05);
}

.ac-details-card h4 {
  font-weight: 800;
  color: #5b21b6;
  font-size: 0.92rem;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ac-details-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ac-details-card li {
  padding: 4px 0;
  border-bottom: 1px solid rgba(77,0,121,0.08);
  color: #443a5c;
  font-size: 0.85rem;
  line-height: 1.35;
}
.ac-details-card li:last-child { border-bottom: none; }

.ac-details-note {
  color: #55536e;
  font-size: 0.9rem;
  line-height: 1.48;
  text-align: center;
  max-width: 640px;
  margin: 12px auto 0;
}

@media (max-width: 720px) {
  .ac-details-grid { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------------
   PER-SERVICE MINI CTA
   ----------------------------------------------------------------- */
.ac-mini-cta {
  text-align: center;
  margin-top: 34px;
}

.ac-mini-cta a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  padding: 13px 28px;
  text-decoration: none;
  font-size: 0.96rem;
  box-shadow: 0 8px 20px rgba(37,211,102,0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}
.ac-mini-cta a:hover { background: #1eab52; transform: translateY(-2px); color: #fff; }

/* -----------------------------------------------------------------
   THIN SECTION DIVIDER
   ----------------------------------------------------------------- */
.ac-divider {
  display: block;
  width: 140px;
  height: 1px;
  margin: 0 auto;
  border: none;
  background: linear-gradient(90deg, transparent, rgba(200,151,58,0.6), transparent);
}

/* -----------------------------------------------------------------
   RELATED READING STRIP
   ----------------------------------------------------------------- */
.ac-related-heading {
  text-align: center;
  font-weight: 800;
  color: #2e1065;
  font-size: 1.4rem;
  margin: 0 0 22px;
}

.ac-related-placeholder {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  border: 1.5px dashed rgba(124,58,237,0.3);
  border-radius: 12px;
  padding: 24px 20px;
  color: #7a7392;
  font-size: 0.95rem;
  background: #faf7ff;
}

.ac-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ac-related-card {
  display: block;
  background: #faf7ff;
  border: 1px solid rgba(77,0,121,0.1);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ac-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(46,16,101,0.1);
}

.ac-related-pill {
  display: inline-block;
  background: rgba(124,58,237,0.12);
  color: #5b21b6;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 12px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.ac-related-name {
  display: block;
  color: #2e1065;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .ac-related-grid { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------------
   MOBILE SECTION PADDING
   ----------------------------------------------------------------- */
@media (max-width: 640px) {
  .ac-section { padding: 42px 16px; }
  .ac-service-head { margin-bottom: 30px; }
}
