﻿/* =============================================
   ASTROCLONE -- WHITE + BLUE & GOLD THEME
   Background: #ffffff / #f4f7ff (white/light blue)
   Primary Blue: #1a3a8e
   Mid Blue: #2a5cbf
   Light Blue: #4a90d9
   Gold: #c9a84c
   Gold Dark: #a07830
   Text: #1a1a3e
   Muted: #5a6a9a
============================================= */

:root {
  --bg:     #ffffff;
  --bg2:    #f4f7ff;
  --bg3:    #e8eeff;
  --blue1:  #1a3a8e;
  --blue2:  #2a5cbf;
  --blue3:  #4a90d9;
  --gold:   #c9a84c;
  --gold2:  #a07830;
  --text:   #1a1a3e;
  --muted:  #5a6a9a;
  --card:   rgba(255,255,255,0.95);
  --border: rgba(74,144,217,0.22);
  --gborder:rgba(201,168,76,0.35);
  --t:      all 0.4s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Georgia', serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius:3px; }

/* =============================================
   STARFIELD CANVAS
============================================= */
#starfield {
  position:fixed; top:0; left:0;
  width:100%; height:100%;
  z-index:0; pointer-events:none;
  opacity:0.35;
}

/* =============================================
   HEADER
============================================= */
.header {
  position:fixed; top:0; left:0; right:0;
  z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 40px; height:80px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(74,144,217,0.15);
  box-shadow:0 2px 20px rgba(74,144,217,0.08);
  transition:var(--t);
}
.header.scrolled {
  background:rgba(255,255,255,0.99);
  box-shadow:0 4px 30px rgba(74,144,217,0.15);
}

.logo { display:flex; align-items:center; gap:10px; text-decoration:none; margin-left:30px; }
.logo img {
  height:70px; width:auto;
  max-width:200px;
  border-radius:12px; object-fit:contain;
  border:none;
  display:block;
  transition:var(--t);
}
.logo img:hover { transform:scale(1.04); opacity:0.9; }
.logo-text { font-size:18px; font-weight:700; color:var(--blue1); letter-spacing:2px; font-family:Arial,sans-serif; }

nav { display:flex; gap:4px; align-items:center; }
nav a {
  color:var(--text); text-decoration:none;
  font-size:13px; letter-spacing:0.5px;
  padding:8px 14px; border-radius:6px;
  transition:var(--t); position:relative;
  font-family:Arial,sans-serif; font-weight:500;
}
nav a::after {
  content:''; position:absolute;
  bottom:4px; left:50%;
  transform:translateX(-50%) scaleX(0);
  width:60%; height:2px;
  background:var(--gold);
  transition:transform 0.3s ease;
  border-radius:2px;
}
nav a:hover { color:var(--blue2); }
nav a:hover::after { transform:translateX(-50%) scaleX(1); }
nav a.active { color:var(--blue1); font-weight:700; }
nav a.active::after { transform:translateX(-50%) scaleX(1); }
.nav-cta {
  background:linear-gradient(135deg,var(--gold),var(--gold2)) !important;
  color:#fff !important; font-weight:700;
  padding:8px 18px !important; border-radius:20px !important;
  font-size:12px !important; letter-spacing:1px;
  box-shadow:0 2px 12px rgba(201,168,76,0.3);
}
.nav-cta:hover { transform:translateY(-1px); box-shadow:0 6px 20px rgba(201,168,76,0.4); }
.nav-cta::after { display:none !important; }

/* =============================================
   NAV DROPDOWN
============================================= */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > .nav-drop-btn {
  color: var(--text); text-decoration: none;
  font-size: 13px; letter-spacing: 0.5px;
  padding: 8px 14px; border-radius: 6px;
  transition: var(--t); position: relative;
  font-family: Arial, sans-serif; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; gap: 4px;
  background: none; border: none;
}
.nav-dropdown > .nav-drop-btn::after {
  content: '▾'; font-size: 10px; color: var(--gold);
  transition: transform 0.3s ease;
}
.nav-dropdown:hover > .nav-drop-btn { color: var(--blue2); }
.nav-dropdown:hover > .nav-drop-btn::after { transform: rotate(180deg); }
.nav-dropdown > .nav-drop-btn.active { color: var(--blue1); font-weight: 700; }

.nav-drop-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(74,144,217,0.18);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(74,144,217,0.15), 0 0 0 1px rgba(201,168,76,0.08);
  min-width: 240px; padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 2000;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateY(0);
}
.nav-drop-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 8px;
  font-size: 12px; color: var(--text);
  text-decoration: none; font-family: Arial, sans-serif;
  transition: var(--t); white-space: nowrap;
}
.nav-drop-menu a:hover {
  background: rgba(74,144,217,0.07);
  color: var(--blue1);
}
.nav-drop-menu a::after { display: none !important; }
.nav-drop-menu .drop-icon {
  width: 26px; height: 26px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(74,144,217,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.nav-drop-divider {
  height: 1px; background: rgba(74,144,217,0.1);
  margin: 6px 8px;
}
.nav-drop-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  padding: 6px 14px 2px;
  font-family: Arial, sans-serif;
}

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
  position:relative; min-height:100vh;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  padding:100px 40px 60px;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(74,144,217,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #f4f7ff 0%, #e8eeff 55%, #f0f4ff 100%);
  overflow:hidden; z-index:1;
}
.hero-orb {
  position:absolute; border-radius:50%;
  filter:blur(80px); pointer-events:none;
  animation:orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width:500px; height:500px; background:radial-gradient(circle,rgba(74,144,217,0.18),transparent); top:-100px; left:-100px; }
.hero-orb-2 { width:400px; height:400px; background:radial-gradient(circle,rgba(201,168,76,0.12),transparent); bottom:-50px; right:-50px; animation-delay:-4s; }
.hero-orb-3 { width:300px; height:300px; background:radial-gradient(circle,rgba(42,92,191,0.1),transparent); top:40%; left:40%; animation-delay:-2s; }
@keyframes orbFloat {
  0%,100% { transform:translate(0,0) scale(1); }
  33%      { transform:translate(30px,-20px) scale(1.05); }
  66%      { transform:translate(-20px,30px) scale(0.95); }
}
.hero-zodiac {
  display: none;
}
@keyframes slowSpin { to { transform:translateY(-50%) rotate(360deg); } }
.hero-books { position:absolute; inset:0; pointer-events:none; z-index:1; overflow:hidden; }
.book-card {
  position:absolute; width:130px; border-radius:10px; overflow:hidden;
  box-shadow:0 12px 30px rgba(74,144,217,0.2);
  opacity:0.25; animation:bookFloat 6s ease-in-out infinite;
  border:1px solid rgba(201,168,76,0.25);
}
.book-card img { width:100%; display:block; }
.book-card:nth-child(1) { left:2%; top:22%; animation-delay:0s; transform:rotate(-8deg); }
.book-card:nth-child(2) { left:7%; top:48%; animation-delay:-2s; transform:rotate(-4deg); }
.book-card:nth-child(3) { right:2%; top:22%; animation-delay:-1s; transform:rotate(8deg); }
.book-card:nth-child(4) { right:7%; top:48%; animation-delay:-3s; transform:rotate(4deg); }
@keyframes bookFloat {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-14px); }
}
.hero-inner {
  position:relative; z-index:2;
  display:grid; grid-template-columns:1fr 420px;
  gap:60px; align-items:center;
  max-width:1200px; width:100%;
}
.hero-left { animation:fadeUp 0.8s ease both; }
@keyframes fadeUp {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(74,144,217,0.1);
  border:1px solid rgba(74,144,217,0.3);
  color:var(--blue2); font-size:11px; letter-spacing:2px;
  padding:6px 16px; border-radius:20px; margin-bottom:24px;
  font-family:Arial,sans-serif; font-weight:600;
  animation:fadeUp 0.8s 0.1s ease both;
}
.hero-badge::before { content:'✦'; color:var(--gold); animation:spin 4s linear infinite; display:inline-block; }
@keyframes spin { to { transform:rotate(360deg); } }
.hero-title {
  font-size:clamp(30px,4vw,50px); font-weight:700;
  line-height:1.2; color:var(--blue1); margin-bottom:20px;
  animation:fadeUp 0.8s 0.2s ease both;
}
.hero-title span {
  background:linear-gradient(135deg,var(--gold),#e8a020,var(--blue3));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hero-subtitle {
  font-size:15px; color:var(--muted); line-height:1.8;
  margin-bottom:30px; font-family:Arial,sans-serif;
  animation:fadeUp 0.8s 0.3s ease both;
}
.hero-trust { display:flex; align-items:center; gap:14px; animation:fadeUp 0.8s 0.4s ease both; }
.hero-avatars { display:flex; }
.hero-avatars span {
  width:36px; height:36px; border-radius:50%;
  border:2px solid #fff;
  background:linear-gradient(135deg,var(--gold),var(--blue3));
  display:flex; align-items:center; justify-content:center;
  font-size:14px; margin-left:-8px;
}
.hero-avatars span:first-child { margin-left:0; }
.hero-stars { color:var(--gold); font-size:16px; letter-spacing:2px; }
.hero-trust-text { font-size:12px; color:var(--muted); font-family:Arial,sans-serif; }

/* Hero Form Card */
.hero-form-card {
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(74,144,217,0.2);
  border-radius:20px; padding:32px;
  animation:fadeUp 0.8s 0.3s ease both;
  box-shadow:0 20px 60px rgba(74,144,217,0.12), 0 0 0 1px rgba(201,168,76,0.1);
}
.hero-form-title { font-size:16px; font-weight:700; color:var(--blue1); margin-bottom:20px; text-align:center; font-family:Arial,sans-serif; }
.form-group { margin-bottom:14px; }
.form-group label { display:block; font-size:11px; color:var(--muted); margin-bottom:6px; letter-spacing:1px; font-family:Arial,sans-serif; text-transform:uppercase; font-weight:600; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:10px 14px;
  background:#f4f7ff;
  border:1px solid rgba(74,144,217,0.25);
  border-radius:8px; color:var(--text);
  font-size:13px; font-family:Arial,sans-serif;
  transition:var(--t); outline:none;
}
.form-group textarea { resize:vertical; min-height:100px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--blue3);
  background:#fff;
  box-shadow:0 0 0 3px rgba(74,144,217,0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color:#aab0cc; }
.form-group select option { background:#fff; color:var(--text); }
.gender-toggle { display:flex; gap:8px; }
.gender-btn {
  flex:1; padding:9px;
  border:1px solid rgba(74,144,217,0.25);
  border-radius:8px; background:#f4f7ff;
  color:var(--muted); font-size:13px; cursor:pointer;
  transition:var(--t); font-family:Arial,sans-serif;
}
.gender-btn.active, .gender-btn:hover {
  background:rgba(74,144,217,0.1);
  border-color:var(--blue3); color:var(--blue1); font-weight:600;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.form-submit-btn {
  width:100%; padding:13px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#fff; font-size:14px; font-weight:700;
  border:none; border-radius:10px; cursor:pointer;
  letter-spacing:1px; font-family:Arial,sans-serif;
  transition:var(--t); margin-top:6px;
  position:relative; overflow:hidden;
  box-shadow:0 4px 15px rgba(201,168,76,0.3);
}
.form-submit-btn::before {
  content:''; position:absolute; top:0; left:-100%;
  width:100%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);
  transition:left 0.5s ease;
}
.form-submit-btn:hover::before { left:100%; }
.form-submit-btn:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(201,168,76,0.4); }
.form-note { text-align:center; font-size:10px; color:var(--muted); margin-top:10px; font-family:Arial,sans-serif; }

/* Stats Bar */
.hero-stats {
  position:relative; z-index:2;
  display:flex; justify-content:center; gap:60px;
  padding:28px 40px; width:100%;
  background:linear-gradient(90deg,#f4f7ff,#e8eeff,#f4f7ff);
  border-top:1px solid rgba(74,144,217,0.15);
  border-bottom:1px solid rgba(74,144,217,0.15);
}
.stat-item { text-align:center; }
.stat-number { font-size:34px; font-weight:700; color:var(--gold); display:block; line-height:1; }
.stat-label { font-size:11px; color:var(--muted); letter-spacing:2px; font-family:Arial,sans-serif; text-transform:uppercase; margin-top:4px; }

/* =============================================
   SCROLL REVEAL + SECTION COMMON
============================================= */
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }
.reveal-delay-4 { transition-delay:0.4s; }

.section-eyebrow { font-size:11px; letter-spacing:4px; color:var(--gold); text-transform:uppercase; font-family:Arial,sans-serif; margin-bottom:12px; display:block; font-weight:700; }
.section-title { font-size:clamp(26px,3vw,40px); font-weight:700; color:var(--blue1); line-height:1.3; }
.section-title span { background:linear-gradient(135deg,var(--gold),#e8a020); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.section-divider { width:60px; height:3px; background:linear-gradient(90deg,var(--gold),var(--blue3)); margin:16px auto 0; border-radius:2px; }

/* =============================================
   SERVICES SECTION
============================================= */
.services-section {
  position:relative; z-index:1;
  padding:80px 40px;
  background:linear-gradient(180deg,#f4f7ff 0%,#ffffff 100%);
}
.services-title { font-size:clamp(26px,3vw,40px); font-weight:700; color:var(--blue1); text-align:center; margin-bottom:10px; }
.services-subtitle { text-align:center; color:var(--muted); font-size:14px; font-family:Arial,sans-serif; margin-bottom:40px; }
.services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:1200px; margin:0 auto; }
.service-card {
  background:#fff; border:1px solid var(--border);
  border-radius:16px; padding:22px 16px;
  display:flex; flex-direction:column; align-items:center;
  text-align:center; gap:12px;
  transition:var(--t); cursor:pointer;
  position:relative; overflow:hidden;
  box-shadow:0 2px 12px rgba(74,144,217,0.06);
}
.service-card::after {
  content:''; position:absolute;
  bottom:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--gold),var(--blue3),var(--gold));
  transform:scaleX(0); transition:transform 0.4s ease;
}
.service-card:hover::after { transform:scaleX(1); }
.service-card:hover {
  transform:translateY(-7px);
  border-color:rgba(201,168,76,0.4);
  box-shadow:0 20px 40px rgba(74,144,217,0.15), 0 0 0 1px rgba(201,168,76,0.2);
}
.service-img-wrap {
  width:100px; height:100px; border-radius:50%;
  overflow:hidden; flex-shrink:0;
  border:2px solid rgba(201,168,76,0.4);
  box-shadow:0 0 20px rgba(74,144,217,0.2);
  transition:var(--t);
  background:linear-gradient(135deg,var(--bg2),var(--bg3));
}
.service-card:hover .service-img-wrap { box-shadow:0 0 28px rgba(201,168,76,0.4); transform:scale(1.06); }
.service-img-wrap img { width:100%; height:100%; object-fit:cover; }
.service-card h3 { font-size:13px; font-weight:700; color:var(--blue1); line-height:1.4; font-family:Arial,sans-serif; }
.service-card p { font-size:11px; color:var(--muted); line-height:1.7; flex:1; font-family:Arial,sans-serif; }
.service-btn {
  display:block; width:100%; padding:9px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#fff; text-align:center; text-decoration:none;
  border-radius:8px; font-size:12px; font-weight:700;
  letter-spacing:1px; font-family:Arial,sans-serif;
  transition:var(--t); margin-top:auto;
  position:relative; overflow:hidden;
  box-shadow:0 2px 10px rgba(201,168,76,0.25);
}
.service-btn::before {
  content:''; position:absolute; top:0; left:-100%;
  width:100%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);
  transition:left 0.4s ease;
}
.service-btn:hover::before { left:100%; }
.service-btn:hover { transform:translateY(-1px); box-shadow:0 6px 20px rgba(201,168,76,0.4); }

/* =============================================
   ABOUT SECTION
============================================= */
.about-section { position:relative; z-index:1; background:linear-gradient(180deg,#ffffff 0%,#f4f7ff 40%,#e8eeff 70%,#f4f7ff 100%); }
.about-hero { padding:80px 40px; text-align:center; position:relative; overflow:hidden; }
.about-eyebrow { font-size:11px; letter-spacing:4px; color:var(--gold); text-transform:uppercase; font-family:Arial,sans-serif; margin-bottom:16px; display:block; font-weight:700; }
.about-headline { font-size:clamp(32px,4vw,52px); font-weight:700; color:var(--blue1); line-height:1.2; }
.about-headline-italic { font-style:italic; background:linear-gradient(135deg,var(--gold),#e8a020,var(--blue3)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.about-sub { max-width:560px; margin:20px auto 0; font-size:14px; color:var(--muted); line-height:1.9; font-family:Arial,sans-serif; }
.about-why { display:flex; gap:40px; padding:60px 80px; background:rgba(74,144,217,0.04); align-items:flex-start; flex-wrap:wrap; border-top:1px solid rgba(74,144,217,0.1); }
.about-why-left { flex:1; min-width:260px; }
.about-why-bar { width:4px; height:40px; background:linear-gradient(180deg,var(--gold),var(--blue3)); margin-bottom:16px; border-radius:2px; }
.about-why-left h2 { font-size:24px; font-weight:700; color:var(--blue1); margin-bottom:16px; }
.about-why-left p { font-size:14px; color:var(--muted); line-height:1.9; margin-bottom:12px; font-family:Arial,sans-serif; }
.about-why-quote { flex:1; min-width:220px; background:linear-gradient(135deg,rgba(201,168,76,0.08),rgba(74,144,217,0.06)); border:1px solid rgba(201,168,76,0.25); border-radius:16px; padding:32px; display:flex; flex-direction:column; gap:14px; }
.about-quote-icon { font-size:36px; color:var(--gold); }
.about-why-quote p { font-size:15px; font-style:italic; color:var(--blue1); line-height:1.8; }
.about-approach { padding:60px 80px; text-align:center; background:#fff; }
.about-approach h2 { font-size:28px; font-weight:700; color:var(--blue1); margin-bottom:16px; }
.about-approach p { max-width:700px; margin:0 auto 24px; font-size:14px; color:var(--muted); line-height:1.9; font-family:Arial,sans-serif; }
.about-approach ul { list-style:none; display:inline-flex; flex-direction:column; gap:10px; text-align:left; }
.about-approach ul li { font-size:14px; color:var(--blue2); padding-left:20px; position:relative; font-family:Arial,sans-serif; }
.about-approach ul li::before { content:'✦'; position:absolute; left:0; color:var(--gold); font-size:10px; top:3px; }
.about-different { background:linear-gradient(135deg,var(--blue1),var(--blue2)); padding:60px 40px; text-align:center; }
.about-different h2 { font-size:24px; font-weight:700; color:#fff; margin-bottom:28px; }
.about-tags { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.about-tags span { border:1px solid rgba(255,255,255,0.4); color:#fff; padding:10px 22px; border-radius:30px; font-size:13px; font-family:Arial,sans-serif; background:rgba(255,255,255,0.1); transition:var(--t); }
.about-tags span:hover { background:rgba(201,168,76,0.3); border-color:var(--gold); transform:translateY(-2px); }
.about-services-overview { padding:60px 40px; text-align:center; background:#f4f7ff; }
.about-services-overview h2 { font-size:28px; font-weight:700; color:var(--blue1); margin-bottom:8px; }
.about-services-overview h2::after { content:''; display:block; width:50px; height:3px; background:linear-gradient(90deg,var(--gold),var(--blue3)); margin:12px auto 32px; border-radius:2px; }
.about-services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:900px; margin:0 auto; }
.about-service-item { background:#fff; border:1px solid var(--border); border-radius:14px; padding:28px; text-align:left; transition:var(--t); box-shadow:0 2px 12px rgba(74,144,217,0.06); }
.about-service-item:hover { border-color:rgba(201,168,76,0.4); transform:translateY(-4px); box-shadow:0 12px 30px rgba(74,144,217,0.12); }
.about-service-item span { font-size:22px; color:var(--gold); }
.about-service-item h4 { font-size:14px; font-weight:700; color:var(--blue1); margin:10px 0 8px; font-family:Arial,sans-serif; }
.about-service-item p { font-size:12px; color:var(--muted); line-height:1.7; font-family:Arial,sans-serif; }
.about-secure { display:flex; gap:40px; padding:60px 80px; align-items:flex-start; flex-wrap:wrap; background:#fff; }
.about-secure-left { flex:1; min-width:260px; }
.about-secure-icon { font-size:32px; color:var(--gold); margin-bottom:14px; }
.about-secure-left h3 { font-size:24px; font-weight:700; color:var(--blue1); margin-bottom:14px; }
.about-secure-left p { font-size:14px; color:var(--muted); line-height:1.9; margin-bottom:16px; font-family:Arial,sans-serif; }
.about-secure-left ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.about-secure-left ul li { font-size:13px; color:var(--blue2); padding-left:20px; position:relative; font-family:Arial,sans-serif; }
.about-secure-left ul li::before { content:'✦'; position:absolute; left:0; color:var(--gold); font-size:10px; top:3px; }
.about-ecosystem { flex:1; min-width:220px; background:linear-gradient(135deg,var(--blue1),var(--blue2)); border-radius:16px; padding:32px; color:#fff; box-shadow:0 8px 30px rgba(26,58,142,0.25); }
.about-ecosystem h4 { font-size:16px; font-weight:700; margin-bottom:18px; color:var(--gold); }
.about-ecosystem ul { list-style:none; display:flex; flex-direction:column; gap:12px; }
.about-ecosystem ul li { font-size:13px; line-height:1.6; color:rgba(255,255,255,0.9); font-family:Arial,sans-serif; }
.about-vision-mission { padding:60px 40px; text-align:center; background:#f4f7ff; }
.about-vm-icon { font-size:36px; margin-bottom:14px; }
.about-vision h3, .about-mission h3 { font-size:26px; font-weight:700; color:var(--blue1); margin-bottom:16px; }
.about-vm-quote { font-style:italic; color:var(--blue2); font-size:16px; max-width:520px; margin:0 auto; line-height:1.9; }
.about-vm-divider { border:none; border-top:2px solid rgba(201,168,76,0.3); margin:40px auto; max-width:400px; }
.about-mission p { font-size:15px; color:var(--muted); max-width:520px; margin:0 auto; line-height:1.9; font-family:Arial,sans-serif; }
.about-address { padding:40px; display:flex; justify-content:center; background:#fff; }
.about-address-card { background:#f4f7ff; border:1px solid var(--border); border-radius:14px; padding:28px 40px; display:flex; gap:16px; align-items:flex-start; font-size:14px; color:var(--muted); line-height:1.9; font-family:Arial,sans-serif; box-shadow:0 2px 12px rgba(74,144,217,0.08); }
.about-address-card span { font-size:24px; margin-top:2px; }
.about-address-card strong { color:var(--blue1); }

/* =============================================
   SITE FOOTER
============================================= */
.site-footer { position:relative; z-index:1; background:linear-gradient(180deg,var(--blue1) 0%,#0f2060 100%); border-top:3px solid var(--gold); }
.footer-top { display:flex; gap:60px; padding:50px 60px; flex-wrap:wrap; align-items:flex-start; }
.footer-logo { font-size:22px; font-weight:700; color:var(--gold); letter-spacing:2px; }
.footer-company { font-size:11px; font-weight:700; color:rgba(255,255,255,0.6); margin:6px 0 4px; letter-spacing:1px; font-family:Arial,sans-serif; }
.footer-tagline { font-size:11px; color:rgba(255,255,255,0.4); font-family:Arial,sans-serif; }
.footer-brand { min-width:180px; }
.footer-desc { flex:1; font-size:13px; color:rgba(255,255,255,0.65); line-height:1.9; max-width:600px; font-family:Arial,sans-serif; }
.footer-nav-label { text-align:center; font-size:18px; font-weight:700; letter-spacing:6px; color:#fff; padding:20px 0 10px; font-family:Arial,sans-serif; }
.footer-hr { border:none; border-top:1px solid rgba(255,255,255,0.1); margin:0 60px; }
.footer-links-row { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; padding:40px 60px; }
.footer-col-title { font-size:10px; font-weight:700; letter-spacing:3px; color:var(--gold); margin-bottom:16px; text-transform:uppercase; font-family:Arial,sans-serif; }
.footer-col p, .footer-col a { display:block; font-size:12px; color:rgba(255,255,255,0.6); text-decoration:none; margin-bottom:10px; line-height:1.6; font-family:Arial,sans-serif; transition:color 0.3s ease; }
.footer-col a:hover { color:var(--gold); }
.footer-bottom { color: #fff; display:flex; align-items:center; justify-content:space-between; padding:20px 60px; border-top:1px solid rgba(255,255,255,0.08); flex-wrap:wrap; gap:14px; }
.footer-bottom-brand { display:flex; flex-direction:column; gap:2px; }
.footer-logo-sm { font-size:14px; font-weight:700; color:var(--gold); }
.footer-company-sm { font-size:10px; color:rgba(255,255,255,0.5); font-family:Arial,sans-serif; }
.footer-copy { font-size:11px; color:rgba(255,255,255,0.4); text-align:center; flex:1; font-family:Arial,sans-serif; }
.footer-social { display:flex; gap:10px; }
.footer-social a { display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,0.2); color:rgba(255,255,255,0.6); font-size:11px; font-weight:700; text-decoration:none; font-family:Arial,sans-serif; transition:var(--t); }
.footer-social a:hover { background:var(--gold); color:#fff; border-color:var(--gold); transform:translateY(-2px); box-shadow:0 4px 15px rgba(201,168,76,0.4); }

/* =============================================
   SERVICE DETAIL PAGE
============================================= */
.detail-page {
  display: flex; flex-direction: column;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #f4f7ff 0%, #fff 60%, #f4f7ff 100%);
  align-items: center; min-height: 100vh;
  position: relative; z-index: 1;
}
.detail-main {
  flex: 1; max-width: 860px; width: 100%;
  padding: 40px 44px 60px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(74,144,217,0.10);
  border: 1px solid rgba(74,144,217,0.12);
  margin: 30px 20px;
}
.detail-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase;
  font-family: Arial, sans-serif; margin-bottom: 20px;
  display: inline-block; border-left: 3px solid var(--gold);
  padding-left: 12px;
}
.detail-hero-img {
  width: 100%; max-height: 440px; object-fit: cover;
  border-radius: 18px; margin-bottom: 32px;
  border: 1px solid rgba(74,144,217,0.15);
  box-shadow: 0 24px 60px rgba(74,144,217,0.18);
}
.detail-title {
  font-size: clamp(22px, 3vw, 30px); font-weight: 800;
  color: var(--blue1); margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px; line-height: 1.3;
}
.detail-intro {
  font-size: 15px; color: var(--gold2); font-weight: 600;
  margin-bottom: 20px; font-family: Arial, sans-serif;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(74,144,217,0.05));
  border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0;
}
.detail-body p {
  font-size: 14px; color: var(--muted); line-height: 2;
  margin-bottom: 18px; font-family: Arial, sans-serif;
}
.detail-body strong { color: var(--blue1); }
.detail-body ul {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin: 16px 0 24px; padding: 20px 24px;
  background: #f4f7ff; border-radius: 14px;
  border: 1px solid rgba(74,144,217,0.12);
}
.detail-body ul li {
  font-size: 13px; color: var(--blue2);
  padding-left: 22px; position: relative;
  font-family: Arial, sans-serif; line-height: 1.7;
}
.detail-body ul li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--gold); font-size: 10px; top: 3px;
}
.enquire-btn {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px; padding: 16px 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff; font-size: 15px; font-weight: 700;
  border-radius: 50px; text-decoration: none;
  letter-spacing: 2px; font-family: Arial, sans-serif;
  transition: var(--t); box-shadow: 0 6px 24px rgba(201,168,76,0.35);
  position: relative; overflow: hidden;
}
.enquire-btn::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.enquire-btn:hover::before { left: 100%; }
.enquire-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,168,76,0.45); }
.detail-sidebar { width:270px; flex-shrink:0; }
.sidebar-title { font-size:13px; font-weight:700; color:var(--blue1); margin-bottom:14px; padding:12px 16px; background:var(--bg2); border:1px solid var(--border); border-radius:8px; font-family:Arial,sans-serif; letter-spacing:1px; }
.sidebar-list { display:flex; flex-direction:column; gap:10px; }
.sidebar-item { display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--border); border-radius:10px; padding:10px; transition:var(--t); text-decoration:none; box-shadow:0 2px 8px rgba(74,144,217,0.06); }
.sidebar-item:hover { border-color:rgba(201,168,76,0.4); transform:translateX(3px); box-shadow:0 4px 16px rgba(74,144,217,0.12); }
.sidebar-thumb { width:44px; height:44px; border-radius:50%; object-fit:cover; background:linear-gradient(135deg,var(--gold),var(--blue3)); flex-shrink:0; }
.sidebar-info { flex:1; overflow:hidden; }
.sidebar-name { display:block; font-size:11px; font-weight:700; color:var(--blue1); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; font-family:Arial,sans-serif; }
.sidebar-desc { display:block; font-size:10px; color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; font-family:Arial,sans-serif; }
.sidebar-view-btn { background:linear-gradient(135deg,var(--gold),var(--gold2)); color:#fff; border:none; border-radius:6px; padding:5px 10px; font-size:10px; font-weight:700; cursor:pointer; font-family:Arial,sans-serif; white-space:nowrap; transition:var(--t); }
.sidebar-view-btn:hover { box-shadow:0 4px 12px rgba(201,168,76,0.3); }

/* =============================================
   CONNECT ASTROLOGERS PAGE
============================================= */
.astro-page { position:relative; z-index:1; min-height:100vh; background:linear-gradient(180deg,#f4f7ff 0%,#e8eeff 40%,#f4f7ff 100%); padding:100px 40px 80px; }
.astro-page-hero { text-align:center; margin-bottom:60px; animation:fadeUp 0.8s ease both; }
.astro-page-sub { max-width:580px; margin:20px auto 0; font-size:14px; color:var(--muted); line-height:1.9; font-family:Arial,sans-serif; }
.astro-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; max-width:1200px; margin:0 auto; }
.astro-card { background:#fff; border:1px solid var(--border); border-radius:20px; padding:30px; display:flex; flex-direction:column; gap:20px; transition:var(--t); position:relative; overflow:hidden; box-shadow:0 4px 20px rgba(74,144,217,0.08); }
.astro-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--gold),var(--blue3),var(--gold)); background-size:200% 100%; animation:shimmerBar 3s linear infinite; }
@keyframes shimmerBar { 0%{background-position:-200% 0;} 100%{background-position:200% 0;} }
.astro-card:hover { transform:translateY(-8px); border-color:rgba(201,168,76,0.4); box-shadow:0 24px 60px rgba(74,144,217,0.15); }
.astro-card-top { display:flex; gap:16px; align-items:flex-start; }
.astro-avatar-wrap { position:relative; flex-shrink:0; }
.astro-avatar-img { width:80px; height:80px; border-radius:50%; object-fit:cover; border:2px solid rgba(201,168,76,0.4); box-shadow:0 0 20px rgba(74,144,217,0.2); }
.astro-avatar-placeholder { width:80px; height:80px; border-radius:50%; background:linear-gradient(135deg,var(--bg2),var(--bg3)); border:2px solid rgba(201,168,76,0.3); display:flex; align-items:center; justify-content:center; font-size:32px; }
.astro-online-dot { position:absolute; bottom:4px; right:4px; width:14px; height:14px; border-radius:50%; background:#22c55e; border:2px solid #fff; box-shadow:0 0 8px rgba(34,197,94,0.5); animation:pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100%{box-shadow:0 0 8px rgba(34,197,94,0.5);}50%{box-shadow:0 0 16px rgba(34,197,94,0.8);} }
.astro-card-info { flex:1; }
.astro-name { font-size:17px; font-weight:700; color:var(--blue1); line-height:1.3; margin-bottom:4px; }
.astro-title { font-size:12px; color:var(--muted); font-family:Arial,sans-serif; margin-bottom:8px; }
.astro-exp-badge { display:inline-block; background:rgba(201,168,76,0.1); border:1px solid rgba(201,168,76,0.35); color:var(--gold2); font-size:11px; padding:3px 10px; border-radius:12px; font-family:Arial,sans-serif; margin-bottom:6px; font-weight:600; }
.astro-stars { color:var(--gold); font-size:13px; letter-spacing:2px; }
.astro-bio { font-size:13px; color:var(--muted); line-height:1.9; font-family:Arial,sans-serif; }
.astro-bio strong { color:var(--blue1); }
.astro-tagline { font-style:italic; color:var(--blue2); font-size:13px; border-left:3px solid var(--gold); padding-left:14px; line-height:1.7; font-family:Arial,sans-serif; }
.astro-spec-title { font-size:10px; font-weight:700; letter-spacing:3px; color:var(--gold2); text-transform:uppercase; font-family:Arial,sans-serif; margin-bottom:10px; }
.astro-spec-tags { display:flex; flex-wrap:wrap; gap:8px; }
.astro-spec-tags span { background:var(--bg2); border:1px solid var(--border); color:var(--blue2); font-size:11px; padding:4px 12px; border-radius:20px; font-family:Arial,sans-serif; transition:var(--t); }
.astro-spec-tags span:hover { background:rgba(201,168,76,0.1); border-color:rgba(201,168,76,0.4); color:var(--gold2); }
.astro-services-list ul { list-style:none; display:grid; grid-template-columns:1fr 1fr; gap:6px; }
.astro-services-list ul li { font-size:12px; color:var(--muted); font-family:Arial,sans-serif; line-height:1.6; }
.astro-links { display:flex; gap:10px; flex-wrap:wrap; }
.astro-link-btn { display:inline-flex; align-items:center; gap:6px; padding:8px 16px; border-radius:8px; font-size:12px; font-weight:700; text-decoration:none; font-family:Arial,sans-serif; transition:var(--t); border:1px solid; }
.astro-yt { background:rgba(255,0,0,0.06); border-color:rgba(255,0,0,0.25); color:#cc0000; }
.astro-yt:hover { background:rgba(255,0,0,0.12); transform:translateY(-2px); }
.astro-udemy { background:rgba(74,144,217,0.08); border-color:rgba(74,144,217,0.3); color:var(--blue2); }
.astro-udemy:hover { background:rgba(74,144,217,0.15); transform:translateY(-2px); }
.astro-contact-bar { display:flex; gap:10px; margin-top:auto; }
.astro-contact-btn { flex:1; padding:11px 10px; background:linear-gradient(135deg,var(--gold),var(--gold2)); color:#fff; text-align:center; text-decoration:none; border-radius:10px; font-size:12px; font-weight:700; font-family:Arial,sans-serif; transition:var(--t); letter-spacing:0.5px; box-shadow:0 2px 10px rgba(201,168,76,0.25); }
.astro-contact-btn:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(201,168,76,0.35); }
.astro-wa { background:linear-gradient(135deg,#25d366,#128c7e); color:#fff; box-shadow:0 2px 10px rgba(37,211,102,0.2); }
.astro-wa:hover { box-shadow:0 6px 20px rgba(37,211,102,0.35); }

/* =============================================
   RESPONSIVE
============================================= */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; max-width:600px; }
  .hero-books { display:none; }
  .hero-zodiac { display:none; }
  .services-grid { grid-template-columns:repeat(3,1fr); }
  .about-services-grid { grid-template-columns:repeat(2,1fr); }
  .astro-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  .header { padding:0 20px; }
  nav { gap:2px; }
  nav a { font-size:11px; padding:6px 8px; }
  .hero-section { padding:90px 20px 40px; }
  .services-section { padding:60px 20px; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .hero-stats { gap:30px; padding:20px; flex-wrap:wrap; }
  .about-why, .about-secure { padding:40px 20px; }
  .about-approach { padding:40px 20px; }
  .footer-links-row { grid-template-columns:repeat(2,1fr); padding:30px 20px; }
  .footer-top, .footer-bottom { padding-left:20px; padding-right:20px; }
  .footer-hr { margin:0 20px; }
  .detail-page { flex-direction:column; padding:90px 20px 40px; }
  .detail-sidebar { width:100%; }
  .astro-page { padding:90px 20px 60px; }
}
@media(max-width:480px) {
  .services-grid { grid-template-columns:1fr; }
  .about-services-grid { grid-template-columns:1fr; }
  .footer-links-row { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .astro-grid { grid-template-columns:1fr; }
  .astro-services-list ul { grid-template-columns:1fr; }
}

/* =============================================
   COSMIC AVATAR — Astrologer Cards
============================================= */
.astro-avatar-section {
  display:flex; justify-content:center;
  position:relative; margin-bottom:4px;
}
.astro-cosmic-avatar {
  width:110px; height:110px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  position:relative; flex-shrink:0;
  animation:avatarPulse 3s ease-in-out infinite;
}
@keyframes avatarPulse {
  0%,100% { transform:scale(1); }
  50%      { transform:scale(1.04); }
}
.av-blue {
  background:radial-gradient(circle at 35% 35%, #5ba3f5, #1a3a8e);
  box-shadow:0 0 0 4px rgba(74,144,217,0.2), 0 0 30px rgba(74,144,217,0.3);
  border:3px solid rgba(201,168,76,0.5);
}
.av-gold {
  background:radial-gradient(circle at 35% 35%, #f0d080, #a07830);
  box-shadow:0 0 0 4px rgba(201,168,76,0.2), 0 0 30px rgba(201,168,76,0.35);
  border:3px solid rgba(74,144,217,0.4);
}
.av-purple {
  background:radial-gradient(circle at 35% 35%, #7c6fcd, #2a1a8e);
  box-shadow:0 0 0 4px rgba(124,111,205,0.2), 0 0 30px rgba(124,111,205,0.3);
  border:3px solid rgba(201,168,76,0.5);
}
.av-ring {
  position:absolute; inset:-8px; border-radius:50%;
  border:2px dashed rgba(201,168,76,0.4);
  animation:ringRotate 12s linear infinite;
}
@keyframes ringRotate { to { transform:rotate(360deg); } }
.av-symbol {
  font-size:44px; color:#fff; z-index:1;
  text-shadow:0 0 20px rgba(255,255,255,0.6);
  line-height:1;
}
.av-glow {
  position:absolute; inset:0; border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
}

/* Updated card layout */
.astro-card-header { text-align:center; }
.astro-badges-row { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin:8px 0; }
.astro-badge-gold {
  background:rgba(201,168,76,0.15) !important;
  border-color:rgba(201,168,76,0.4) !important;
  color:var(--gold2) !important;
}

/* Override old card-top layout for new centered design */
.astro-card { text-align:center; }
.astro-card .astro-name { font-size:18px; margin-top:8px; }
.astro-card .astro-title { margin-bottom:0; }
.astro-card .astro-tagline { text-align:left; }
.astro-card .astro-bio { text-align:left; }
.astro-card .astro-specialities { text-align:left; }
.astro-card .astro-links { justify-content:center; }

/* Online dot repositioned for centered avatar */
.astro-avatar-section .astro-online-dot {
  position:absolute;
  bottom:6px; right:calc(50% - 62px);
  width:16px; height:16px;
  border-radius:50%; background:#22c55e;
  border:2px solid #fff;
  box-shadow:0 0 10px rgba(34,197,94,0.6);
  animation:pulseDot 2s ease-in-out infinite;
}

/* =============================================
   MEET OUR ASTROLOGERS — Homepage Section
============================================= */
.astrologers-section {
  position: relative; z-index: 1;
  padding: 70px 40px;
  background: linear-gradient(180deg, #fdf8ee 0%, #f5edd8 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.astrologers-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #3b2a0e;
  margin-bottom: 32px;
  font-family: Georgia, serif;
}

.astrologers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.astrologer-card {
  background: #fff;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: var(--t);
  box-shadow: 0 2px 16px rgba(201,168,76,0.08);
}

.astrologer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.5);
}

/* Reuse cosmic avatar styles — override size */
.astrologer-card .astrologer-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
  animation: avatarPulse 3s ease-in-out infinite;
}
.astrologer-card .av-blue {
  background: radial-gradient(circle at 35% 35%, #5ba3f5, #1a3a8e);
  box-shadow: 0 0 0 4px rgba(74,144,217,0.15), 0 0 24px rgba(74,144,217,0.25);
  border: 3px solid rgba(201,168,76,0.5);
}
.astrologer-card .av-gold {
  background: radial-gradient(circle at 35% 35%, #f0d080, #a07830);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15), 0 0 24px rgba(201,168,76,0.3);
  border: 3px solid rgba(74,144,217,0.4);
}
.astrologer-card .av-purple {
  background: radial-gradient(circle at 35% 35%, #9b8fe0, #3a2a9e);
  box-shadow: 0 0 0 4px rgba(155,143,224,0.15), 0 0 24px rgba(155,143,224,0.25);
  border: 3px solid rgba(201,168,76,0.5);
}
.astrologer-card .av-cta {
  background: radial-gradient(circle at 35% 35%, #c9a84c, #7a5010);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2), 0 0 24px rgba(201,168,76,0.3);
  border: 3px solid rgba(74,144,217,0.3);
}
.astrologer-card .av-ring {
  position: absolute; inset: -7px; border-radius: 50%;
  border: 1.5px dashed rgba(201,168,76,0.5);
  animation: ringRotate 12s linear infinite;
}
.astrologer-card .av-symbol {
  font-size: 36px; color: #fff; z-index: 1;
  text-shadow: 0 0 16px rgba(255,255,255,0.5);
  line-height: 1;
}
.astrologer-card .av-glow {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), transparent 60%);
}

.astrologer-name {
  font-size: 14px;
  font-weight: 700;
  color: #3b2a0e;
  letter-spacing: 0.5px;
  font-family: Arial, sans-serif;
  line-height: 1.3;
}

.astrologer-bio {
  font-size: 12px;
  color: #7a6040;
  line-height: 1.7;
  font-family: Arial, sans-serif;
  flex: 1;
}

.astrologer-btn {
  display: block;
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, #c9a84c, #a07830);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
  transition: var(--t);
  margin-top: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(201,168,76,0.3);
}
.astrologer-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.4s ease;
}
.astrologer-btn:hover::before { left: 100%; }
.astrologer-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.astrologer-btn-outline {
  background: transparent;
  border: 2px solid rgba(201,168,76,0.6);
  color: #a07830;
  box-shadow: none;
}
.astrologer-btn-outline:hover {
  background: linear-gradient(135deg, #c9a84c, #a07830);
  color: #fff;
  border-color: transparent;
}

.astrologer-card-cta {
  background: linear-gradient(135deg, #fdf8ee, #f5edd8);
  border: 2px dashed rgba(201,168,76,0.4);
}

@media(max-width:1024px) { .astrologers-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:540px)  { .astrologers-grid { grid-template-columns: 1fr; } }

/* =============================================
   SERVICE CARD — DIFFERENT TEXT STYLES
============================================= */
/* Style 1: Bold Blue */
.svc-title-blue {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue1);
  line-height: 1.4;
  font-family: Arial, sans-serif;
  letter-spacing: 0.3px;
}

/* Style 2: Gold Italic Serif */
.svc-title-gold {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1.4;
  font-family: Georgia, serif;
  font-style: italic;
}

/* Style 3: Uppercase Spaced */
.svc-title-italic {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue2);
  line-height: 1.4;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* About section improvements */
.about-why { border-radius: 0; }
.about-why-left h2 { font-size: 22px; border-left: 4px solid var(--gold); padding-left: 14px; }
.about-approach h2 { position: relative; display: inline-block; }
.about-approach h2::after { content: ''; display: block; width: 50px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--blue3)); margin: 10px auto 0; border-radius: 2px; }


/* =============================================
   COURSES SECTION (index.html)
============================================= */
.courses-section {
  position: relative; z-index: 1;
  padding: 80px 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
}
.courses-title {
  font-size: clamp(26px, 3vw, 40px); font-weight: 700;
  color: var(--blue1); text-align: center; margin-bottom: 10px;
}
.courses-subtitle {
  text-align: center; color: var(--muted);
  font-size: 14px; font-family: Arial, sans-serif; margin-bottom: 48px;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px; max-width: 1200px; margin: 0 auto;
}

/* Course Card */
.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: var(--t);
  box-shadow: 0 4px 20px rgba(74,144,217,0.08);
  position: relative;
}
.course-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue3), var(--gold));
  background-size: 200% 100%;
  animation: shimmerBar 3s linear infinite;
}
.course-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 24px 60px rgba(74,144,217,0.15);
}
.course-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; padding: 5px 14px; border-radius: 20px;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 10px rgba(201,168,76,0.35);
}
.course-img-wrap {
  position: relative; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
}
.course-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.course-card:hover .course-img-wrap img { transform: scale(1.06); }
.course-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,58,142,0.3) 0%, rgba(26,58,142,0.7) 100%);
  display: flex; align-items: center; justify-content: center;
}
.course-icon {
  font-size: 56px; opacity: 0.85;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.6));
  animation: floatIcon 4s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.course-body {
  padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1;
}
.course-title {
  font-size: 18px; font-weight: 700; color: var(--blue1);
  font-family: Arial, sans-serif; line-height: 1.3;
}
.course-tagline {
  font-size: 13px; color: var(--muted);
  font-family: Arial, sans-serif; line-height: 1.7;
}
.course-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.course-meta-item {
  font-size: 11px; color: var(--blue2);
  background: rgba(74,144,217,0.08);
  border: 1px solid rgba(74,144,217,0.2);
  padding: 4px 12px; border-radius: 20px;
  font-family: Arial, sans-serif; font-weight: 600;
}
.course-topics {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.course-topics span {
  font-size: 10px; color: var(--gold2);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 3px 10px; border-radius: 12px;
  font-family: Arial, sans-serif; font-weight: 600;
}
.course-btn {
  display: block; width: 100%; padding: 12px;
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  color: #fff; text-align: center; text-decoration: none;
  border-radius: 10px; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; font-family: Arial, sans-serif;
  transition: var(--t); margin-top: auto;
  box-shadow: 0 4px 15px rgba(26,58,142,0.25);
  position: relative; overflow: hidden;
}
.course-btn::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.4s ease;
}
.course-btn:hover::before { left: 100%; }
.course-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
  transform: translateY(-1px);
}

/* =============================================
   COURSE DETAIL PAGE (course-detail.html)
============================================= */
.course-detail-page {
  position: relative; z-index: 1; min-height: 100vh;
}

/* Hero Banner */
.cd-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue1) 0%, #0f2060 60%, #1a1a5e 100%);
  padding: 120px 60px 60px;
  border-bottom: 3px solid var(--gold);
}
.cd-hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.cd-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent);
  top: -100px; right: -100px;
}
.cd-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,144,217,0.2), transparent);
  bottom: -80px; left: -80px;
}
.cd-hero-inner {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto;
  animation: fadeUp 0.8s ease both;
}
.cd-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: 3px; padding: 6px 18px; border-radius: 20px;
  font-family: Arial, sans-serif; margin-bottom: 20px;
}
.cd-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.cd-tagline {
  font-size: 15px; color: rgba(255,255,255,0.75);
  font-family: Arial, sans-serif; line-height: 1.8;
  max-width: 680px; margin-bottom: 28px;
}
.cd-meta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.cd-meta-pill {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px; border-radius: 20px;
  font-family: Arial, sans-serif;
}

/* Body Layout */
.cd-body-wrap {
  background: linear-gradient(180deg, #f4f7ff 0%, #fff 100%);
  position: relative; z-index: 1;
}
.cd-body {
  display: flex;
  gap: 36px;
  padding: 60px 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}
.cd-main { flex: 1; min-width: 0; overflow: visible; }
.cd-section-heading {
  font-size: 22px; font-weight: 700; color: var(--blue1);
  margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
  font-family: Arial, sans-serif;
}
.cd-heading-icon { font-size: 24px; }

/* Syllabus Chapters */
.cd-chapter {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px; margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(74,144,217,0.06);
  transition: var(--t);
}
.cd-chapter:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 8px 28px rgba(74,144,217,0.1);
}
.cd-chapter-header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; cursor: pointer;
  background: linear-gradient(90deg, rgba(74,144,217,0.04), transparent);
  transition: background 0.3s ease;
  user-select: none;
}
.cd-chapter-header:hover { background: rgba(74,144,217,0.07); }
.cd-chapter-num {
  font-size: 22px; font-weight: 700;
  color: var(--gold); font-family: Arial, sans-serif;
  min-width: 36px; line-height: 1;
}
.cd-chapter-title {
  flex: 1; font-size: 14px; font-weight: 700;
  color: var(--blue1); font-family: Arial, sans-serif;
  line-height: 1.4;
}
.cd-chapter-toggle {
  font-size: 12px; color: var(--muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Chapter Body — accordion */
.cd-chapter-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}
.cd-chapter-body.open {
  max-height: 1000px;
  padding: 0 22px 20px;
}
.cd-topic-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  padding-top: 4px;
}
.cd-topic-list li {
  font-size: 13px; color: var(--muted);
  font-family: Arial, sans-serif; line-height: 1.7;
  padding-left: 22px; position: relative;
}
.cd-topic-list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--gold); font-size: 9px; top: 4px;
}

/* Enroll buttons */
.cd-enroll-wrap {
  display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap;
}
.cd-enroll-btn {
  display: inline-block; padding: 14px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff; font-size: 14px; font-weight: 700;
  border-radius: 10px; text-decoration: none;
  letter-spacing: 1px; font-family: Arial, sans-serif;
  transition: var(--t);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.cd-enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.45);
}
.cd-enquire-btn {
  display: inline-block; padding: 14px 40px;
  background: transparent;
  color: var(--blue1); font-size: 14px; font-weight: 700;
  border-radius: 10px; text-decoration: none;
  letter-spacing: 1px; font-family: Arial, sans-serif;
  border: 2px solid var(--blue2);
  transition: var(--t);
}
.cd-enquire-btn:hover {
  background: var(--blue1); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,58,142,0.25);
}

/* Sidebar */
.cd-sidebar {
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: flex-start;
}
.cd-sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(74,144,217,0.07);
  position: relative;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}
.cd-sidebar-highlight {
  background: linear-gradient(135deg, rgba(74,144,217,0.04), rgba(201,168,76,0.04));
  border-color: rgba(201,168,76,0.25);
}
.cd-cta-card {
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  border-color: transparent;
  text-align: center;
}
.cd-cta-card p {
  color: rgba(255,255,255,0.85);
  font-size: 14px; font-family: Arial, sans-serif; line-height: 1.7;
}
.cd-sidebar-title {
  font-size: 13px; font-weight: 700; color: var(--blue1);
  letter-spacing: 1.5px; font-family: Arial, sans-serif;
  margin-bottom: 18px; text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(201,168,76,0.3);
}
.cd-cta-card .cd-sidebar-title { color: var(--gold); border-bottom-color: rgba(201,168,76,0.4); }

/* Learn list */
.cd-learn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.cd-learn-list li {
  font-size: 13px; color: var(--muted);
  font-family: Arial, sans-serif; line-height: 1.6;
  padding-left: 22px; position: relative;
}
.cd-learn-list li::before {
  content: '✔'; position: absolute; left: 0;
  color: var(--gold); font-size: 11px; top: 2px; font-weight: 700;
}

/* Highlight items */
.cd-highlight-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px;
}
.cd-highlight-item:last-child { margin-bottom: 0; }
.cd-hi-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.cd-highlight-item strong {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--blue1); font-family: Arial, sans-serif; margin-bottom: 2px;
}
.cd-highlight-item p {
  font-size: 11px; color: var(--muted);
  font-family: Arial, sans-serif; line-height: 1.6; margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cd-body { flex-direction: column; padding: 40px 30px 60px; }
  .cd-sidebar { width: 100%; position: static; }
  .cd-hero { padding: 100px 30px 50px; }
}
@media (max-width: 768px) {
  .courses-grid { grid-template-columns: 1fr; }
  .cd-hero { padding: 90px 20px 40px; }
  .cd-body { padding: 30px 20px 50px; }
  .cd-enroll-wrap { flex-direction: column; }
  .cd-enroll-btn, .cd-enquire-btn { text-align: center; }
}
.cd-chapter-link {
  display: inline-block; margin-left: auto; flex-shrink: 0;
  font-size: 11px; font-weight: 700; color: var(--gold2);
  text-decoration: none; font-family: Arial, sans-serif;
  letter-spacing: 0.5px; padding: 4px 12px;
  border: 1px solid rgba(201,168,76,0.4); border-radius: 20px;
  transition: var(--t); white-space: nowrap;
}
.cd-chapter-link:hover {
  background: var(--gold); color: #fff;
  border-color: var(--gold);
}

/* =============================================
   INDIVIDUAL CHAPTER PAGE
============================================= */
.chap-page { position: relative; z-index: 1; min-height: 100vh; }

/* Chapter Hero */
.chap-hero {
  position: relative; overflow: hidden;
  padding: 120px 60px 56px;
  border-bottom: 3px solid var(--gold);
}
.chap-hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.chap-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.18), transparent);
  top: -120px; right: -80px;
}
.chap-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(74,144,217,0.22), transparent);
  bottom: -80px; left: -60px;
}
.chap-hero-inner {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto;
  animation: fadeUp 0.8s ease both;
}
.chap-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-family: Arial, sans-serif;
  margin-bottom: 20px; flex-wrap: wrap;
}
.chap-breadcrumb a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color 0.3s;
}
.chap-breadcrumb a:hover { color: var(--gold); }
.chap-breadcrumb span { color: rgba(255,255,255,0.35); }
.chap-breadcrumb strong { color: rgba(255,255,255,0.9); }
.chap-num-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; padding: 5px 16px; border-radius: 20px;
  font-family: Arial, sans-serif; margin-bottom: 16px;
}
.chap-title {
  font-size: clamp(24px, 3.5vw, 42px); font-weight: 700;
  color: #fff; line-height: 1.25; margin-bottom: 14px;
}
.chap-subtitle {
  font-size: 15px; color: rgba(255,255,255,0.72);
  font-family: Arial, sans-serif; line-height: 1.8;
  max-width: 680px; margin-bottom: 28px;
}
.chap-nav-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.chap-nav-pill {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px; border-radius: 20px;
  font-family: Arial, sans-serif;
  text-decoration: none; transition: var(--t);
}
.chap-nav-pill:hover, .chap-nav-pill.active {
  background: var(--gold); color: #fff; border-color: var(--gold);
}

/* Chapter Body */
.chap-body {
  display: flex; gap: 32px;
  padding: 60px 60px 80px;
  max-width: 1300px; margin: 0 auto;
  align-items: flex-start;
  background: linear-gradient(180deg, #f4f7ff 0%, #fff 100%);
}
.chap-main { flex: 1; min-width: 0; }

/* Topic Cards */
.chap-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; margin-bottom: 40px;
}
.chap-topic-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px; padding: 22px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: var(--t);
  box-shadow: 0 2px 12px rgba(74,144,217,0.06);
}
.chap-topic-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(74,144,217,0.12);
}
.chap-topic-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(74,144,217,0.1));
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.chap-topic-text { flex: 1; }
.chap-topic-text strong {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--blue1); font-family: Arial, sans-serif;
  margin-bottom: 4px; line-height: 1.4;
}
.chap-topic-text p {
  font-size: 12px; color: var(--muted);
  font-family: Arial, sans-serif; line-height: 1.6; margin: 0;
}

/* Chapter section heading */
.chap-section-heading {
  font-size: 20px; font-weight: 700; color: var(--blue1);
  margin-bottom: 22px; display: flex; align-items: center; gap: 10px;
  font-family: Arial, sans-serif;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(201,168,76,0.25);
}

/* Key Points block */
.chap-key-points {
  background: linear-gradient(135deg, rgba(74,144,217,0.05), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 14px; padding: 28px; margin-bottom: 32px;
}
.chap-key-points h3 {
  font-size: 15px; font-weight: 700; color: var(--blue1);
  font-family: Arial, sans-serif; margin-bottom: 16px;
}
.chap-key-points ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.chap-key-points ul li {
  font-size: 13px; color: var(--muted);
  font-family: Arial, sans-serif; line-height: 1.7;
  padding-left: 22px; position: relative;
}
.chap-key-points ul li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--gold); font-size: 9px; top: 4px;
}

/* Chapter nav (prev/next) */
.chap-pagination {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px; gap: 14px; flex-wrap: wrap;
}
.chap-pag-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--blue2); border-radius: 10px;
  color: var(--blue1); font-size: 13px; font-weight: 700;
  text-decoration: none; font-family: Arial, sans-serif;
  transition: var(--t);
}
.chap-pag-btn:hover {
  background: var(--blue1); color: #fff; border-color: var(--blue1);
  transform: translateY(-2px);
}
.chap-pag-btn.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.chap-pag-btn.gold:hover {
  box-shadow: 0 8px 25px rgba(201,168,76,0.45);
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}
.chap-pag-center {
  font-size: 12px; color: var(--muted);
  font-family: Arial, sans-serif; text-align: center;
}

/* Chapter Sidebar */
.chap-sidebar {
  width: 280px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.chap-sidebar-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 22px;
  box-shadow: 0 4px 20px rgba(74,144,217,0.07);
}
.chap-sidebar-title {
  font-size: 12px; font-weight: 700; color: var(--blue1);
  letter-spacing: 1.5px; font-family: Arial, sans-serif;
  margin-bottom: 14px; text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(201,168,76,0.3);
}
/* Chapter list in sidebar */
.chap-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.chap-list li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  text-decoration: none; font-size: 12px;
  color: var(--muted); font-family: Arial, sans-serif;
  transition: var(--t); border: 1px solid transparent;
}
.chap-list li a:hover {
  background: rgba(74,144,217,0.06);
  border-color: rgba(74,144,217,0.15);
  color: var(--blue1);
}
.chap-list li a.current {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(74,144,217,0.06));
  border-color: rgba(201,168,76,0.3);
  color: var(--blue1); font-weight: 700;
}
.chap-list-num {
  width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: Arial, sans-serif;
}
.chap-list li a.current .chap-list-num {
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
}

/* Responsive */
@media (max-width: 1024px) {
  .chap-body { flex-direction: column; padding: 40px 30px 60px; }
  .chap-sidebar { width: 100%; }
  .chap-hero { padding: 100px 30px 50px; }
}
@media (max-width: 768px) {
  .chap-hero { padding: 90px 20px 40px; }
  .chap-body { padding: 30px 20px 50px; }
  .chap-topics-grid { grid-template-columns: 1fr; }
  .chap-pagination { flex-direction: column; align-items: stretch; }
  .chap-pag-btn { justify-content: center; }
}


/* =============================================
   INLINE COURSE SECTION (index.html)
============================================= */
.ic-wrap {
  max-width: 1200px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(74,144,217,0.12);
  border: 1px solid rgba(201,168,76,0.2);
}

/* Hero */
.ic-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a3a8e 0%, #0f2060 60%, #1a1a5e 100%);
  padding: 56px 60px 48px;
  border-bottom: 3px solid var(--gold);
}
.ic-hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.ic-orb-1 { width:400px;height:400px;background:radial-gradient(circle,rgba(201,168,76,0.15),transparent);top:-100px;right:-80px; }
.ic-orb-2 { width:300px;height:300px;background:radial-gradient(circle,rgba(74,144,217,0.2),transparent);bottom:-60px;left:-60px; }
.ic-hero-inner { position: relative; z-index: 2; }
.ic-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: 3px; padding: 5px 16px; border-radius: 20px;
  font-family: Arial, sans-serif; margin-bottom: 16px;
}
.ic-title {
  font-size: clamp(24px, 3.5vw, 42px); font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 12px;
}
.ic-tagline {
  font-size: 15px; color: rgba(255,255,255,0.75);
  font-family: Arial, sans-serif; line-height: 1.8;
  max-width: 640px; margin-bottom: 24px;
}
.ic-meta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.ic-meta-pill {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px; border-radius: 20px;
  font-family: Arial, sans-serif;
}

/* Body */
.ic-body {
  display: flex; gap: 28px;
  padding: 48px 60px 60px;
  background: linear-gradient(180deg, #f4f7ff 0%, #fff 100%);
  align-items: flex-start;
}
.ic-main { flex: 1; min-width: 0; }
.ic-section-heading {
  font-size: 20px; font-weight: 700; color: var(--blue1);
  font-family: Arial, sans-serif; margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(201,168,76,0.25);
}

/* Chapter accordion */
.ic-chapter {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(74,144,217,0.05);
  transition: var(--t);
}
.ic-chapter:hover { border-color: rgba(201,168,76,0.35); box-shadow: 0 6px 20px rgba(74,144,217,0.1); }
.ic-ch-header {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; cursor: pointer;
  background: linear-gradient(90deg, rgba(74,144,217,0.04), transparent);
  user-select: none;
}
.ic-ch-header:hover { background: rgba(74,144,217,0.07); }
.ic-ch-num {
  font-size: 20px; font-weight: 700; color: var(--gold);
  font-family: Arial, sans-serif; min-width: 32px;
}
.ic-ch-title {
  flex: 1; font-size: 13px; font-weight: 700;
  color: var(--blue1); font-family: Arial, sans-serif; line-height: 1.4;
}
.ic-ch-arrow { font-size: 11px; color: var(--muted); flex-shrink: 0; }
.ic-ch-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}
.ic-ch-body.open { max-height: 800px; padding: 4px 20px 18px; }
.ic-ch-body ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ic-ch-body ul li {
  font-size: 12px; color: var(--muted);
  font-family: Arial, sans-serif; line-height: 1.7;
  padding-left: 18px; position: relative;
}
.ic-ch-body ul li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--gold); font-size: 8px; top: 4px;
}

/* Enroll bar */
.ic-enroll-bar {
  display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap;
}
.ic-enroll-btn {
  display: inline-block; padding: 13px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff; font-size: 14px; font-weight: 700;
  border-radius: 10px; text-decoration: none;
  letter-spacing: 1px; font-family: Arial, sans-serif;
  transition: var(--t); box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.ic-enroll-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.45); }
.ic-enquire-btn {
  display: inline-block; padding: 13px 36px;
  background: transparent; color: var(--blue1);
  font-size: 14px; font-weight: 700;
  border-radius: 10px; text-decoration: none;
  letter-spacing: 1px; font-family: Arial, sans-serif;
  border: 2px solid var(--blue2); transition: var(--t);
}
.ic-enquire-btn:hover { background: var(--blue1); color: #fff; transform: translateY(-2px); }

/* Sidebar */
.ic-sidebar {
  width: 280px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.ic-sb-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 22px;
  box-shadow: 0 4px 16px rgba(74,144,217,0.07);
}
.ic-sb-highlight {
  background: linear-gradient(135deg, rgba(74,144,217,0.04), rgba(201,168,76,0.04));
  border-color: rgba(201,168,76,0.25);
}
.ic-sb-cta {
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  border-color: transparent;
}
.ic-sb-cta p { font-size: 13px; color: rgba(255,255,255,0.85); font-family: Arial, sans-serif; line-height: 1.7; }
.ic-sb-title {
  font-size: 11px; font-weight: 700; color: var(--blue1);
  letter-spacing: 2px; text-transform: uppercase;
  font-family: Arial, sans-serif; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid rgba(201,168,76,0.3);
}
.ic-sb-cta .ic-sb-title { color: var(--gold); border-bottom-color: rgba(201,168,76,0.4); }
.ic-learn-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ic-learn-list li {
  font-size: 12px; color: var(--muted);
  font-family: Arial, sans-serif; line-height: 1.6;
  padding-left: 18px; position: relative;
}
.ic-learn-list li::before {
  content: '✔'; position: absolute; left: 0;
  color: var(--gold); font-size: 9px; top: 2px; font-weight: 700;
}
.ic-hi-item {
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px;
}
.ic-hi-item:last-child { margin-bottom: 0; }
.ic-hi-item > span { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ic-hi-item strong { display: block; font-size: 12px; font-weight: 700; color: var(--blue1); font-family: Arial, sans-serif; margin-bottom: 2px; }
.ic-hi-item p { font-size: 11px; color: var(--muted); font-family: Arial, sans-serif; line-height: 1.5; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .ic-body { flex-direction: column; padding: 36px 30px 50px; }
  .ic-sidebar { width: 100%; }
  .ic-hero { padding: 48px 30px 40px; }
}
@media (max-width: 640px) {
  .ic-hero { padding: 40px 20px 32px; }
  .ic-body { padding: 28px 16px 40px; }
  .ic-enroll-bar { flex-direction: column; }
}


/* =============================================
   COURSE DETAIL PAGE — ENHANCED STYLES
============================================= */

/* Breadcrumb */
.cd-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-family: Arial, sans-serif;
  margin-bottom: 20px; flex-wrap: wrap;
}
.cd-breadcrumb a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color 0.3s;
}
.cd-breadcrumb a:hover { color: var(--gold); }
.cd-breadcrumb span { color: rgba(255,255,255,0.35); }

/* Hero padding */
.cd-hero { padding: 110px 60px 56px; }
.cd-hero-inner { max-width: 960px; }

/* Hero rating */
.cd-hero-rating {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.cd-stars {
  color: var(--gold); font-size: 18px; letter-spacing: 2px;
}
.cd-rating-text {
  font-size: 15px; font-weight: 700; color: #fff;
  font-family: Arial, sans-serif;
}
.cd-rating-count {
  font-size: 12px; color: rgba(255,255,255,0.6);
  font-family: Arial, sans-serif;
}

/* Hero action buttons */
.cd-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.cd-hero-enroll {
  font-size: 15px; padding: 14px 44px;
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}
.cd-hero-enquire {
  font-size: 15px; padding: 14px 36px;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff; border-radius: 10px;
  text-decoration: none; font-weight: 700;
  font-family: Arial, sans-serif; letter-spacing: 1px;
  transition: var(--t);
}
.cd-hero-enquire:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* Progress bar */
.cd-progress-bar-wrap {
  position: sticky; top: 68px; z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,144,217,0.15);
  box-shadow: 0 2px 12px rgba(74,144,217,0.08);
}
.cd-progress-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  padding: 10px 60px;
}
.cd-progress-label {
  font-size: 11px; font-weight: 700; color: var(--muted);
  letter-spacing: 1.5px; text-transform: uppercase;
  font-family: Arial, sans-serif; white-space: nowrap;
}
.cd-progress-track {
  flex: 1; height: 6px; background: var(--bg3);
  border-radius: 3px; overflow: hidden;
}
.cd-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue3));
  border-radius: 3px;
  transition: width 0.5s ease;
}
.cd-progress-pct {
  font-size: 11px; font-weight: 700; color: var(--blue2);
  font-family: Arial, sans-serif; white-space: nowrap;
}

/* Overview cards */
.cd-overview-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-bottom: 36px;
}
.cd-ov-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 2px 10px rgba(74,144,217,0.06);
  transition: var(--t);
}
.cd-ov-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74,144,217,0.1);
}
.cd-ov-icon { font-size: 26px; flex-shrink: 0; }
.cd-ov-info { display: flex; flex-direction: column; gap: 2px; }
.cd-ov-info strong {
  font-size: 13px; font-weight: 700; color: var(--blue1);
  font-family: Arial, sans-serif;
}
.cd-ov-info span {
  font-size: 11px; color: var(--muted);
  font-family: Arial, sans-serif;
}

/* Chapter count badge */
.cd-chapter-count {
  margin-left: auto;
  font-size: 11px; font-weight: 700; color: var(--gold2);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 12px; border-radius: 20px;
  font-family: Arial, sans-serif; letter-spacing: 0.5px;
}

/* Syllabus controls */
.cd-syllabus-controls {
  display: flex; gap: 10px; margin-bottom: 20px;
}
.cd-ctrl-btn {
  padding: 8px 20px; border-radius: 8px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  font-family: Arial, sans-serif; letter-spacing: 0.5px;
  transition: var(--t); border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff; box-shadow: 0 2px 10px rgba(201,168,76,0.25);
}
.cd-ctrl-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.35); }
.cd-ctrl-outline {
  background: transparent; color: var(--blue1);
  border: 2px solid var(--blue2); box-shadow: none;
}
.cd-ctrl-outline:hover { background: var(--blue1); color: #fff; }

/* Chapter icon */
.cd-chapter-icon {
  font-size: 18px; flex-shrink: 0;
}

/* Topic count badge on chapter header */
.cd-topic-badge {
  font-size: 10px; font-weight: 700; color: var(--muted);
  background: var(--bg2); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 12px;
  font-family: Arial, sans-serif; white-space: nowrap;
  flex-shrink: 0;
}

/* Active chapter highlight */
.cd-chapter-active {
  border-color: rgba(201,168,76,0.4) !important;
  box-shadow: 0 6px 24px rgba(74,144,217,0.1) !important;
}
.cd-chapter-active .cd-chapter-header {
  background: linear-gradient(90deg, rgba(201,168,76,0.06), rgba(74,144,217,0.04));
}

/* Price card */
.cd-price-card {
  border: 2px solid rgba(201,168,76,0.3);
  background: linear-gradient(135deg, #fff, #f9f7ff);
  position: relative;
  overflow: visible;
}
.cd-price-header {
  margin-bottom: 10px;
}
.cd-price-tag {
  font-size: 14px; font-weight: 700; color: var(--blue1);
  font-family: Arial, sans-serif; display: block;
}
.cd-price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 16px;
}
.cd-price-current {
  font-size: 17px; font-weight: 700; color: var(--gold2);
  font-family: Arial, sans-serif;
}
.cd-price-includes {
  list-style: none !important;
  margin: 16px 0 0 0 !important;
  padding: 16px 0 0 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(74,144,217,0.12);
}
.cd-price-includes li {
  font-size: 13px; color: var(--muted);
  font-family: Arial, sans-serif; line-height: 1.6;
  padding-left: 0 !important;
  position: static !important;
  display: flex; align-items: center; gap: 8px;
}
.cd-price-includes li::before {
  display: none !important;
}
.cd-price-includes li::after {
  display: none !important;
}

/* Instructor card */
.cd-instructor-card {
  border: 1px solid var(--border);
}
.cd-instructor-info {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 14px;
}
.cd-instructor-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--blue3));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; border: 2px solid rgba(201,168,76,0.3);
}
.cd-instructor-name {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--blue1); font-family: Arial, sans-serif; margin-bottom: 3px;
}
.cd-instructor-role {
  display: block; font-size: 11px; color: var(--muted);
  font-family: Arial, sans-serif; margin-bottom: 3px;
}
.cd-instructor-exp {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--gold2); font-family: Arial, sans-serif;
}
.cd-instructor-btn {
  display: block; text-align: center; padding: 9px;
  background: transparent; color: var(--blue1);
  border: 2px solid var(--blue2); border-radius: 8px;
  font-size: 12px; font-weight: 700; text-decoration: none;
  font-family: Arial, sans-serif; transition: var(--t);
}
.cd-instructor-btn:hover { background: var(--blue1); color: #fff; }

/* Sticky sidebar — only on large screens, no height clipping */
@media (min-width: 1025px) {
  .cd-sidebar {
    position: sticky;
    top: 88px;
  }
}

/* Reviews section */
.cd-reviews-section {
  background: linear-gradient(180deg, #f4f7ff 0%, #e8eeff 100%);
  padding: 60px 60px 80px;
  border-top: 1px solid rgba(74,144,217,0.12);
  position: relative; z-index: 1;
}
.cd-reviews-inner { max-width: 1300px; margin: 0 auto; }
.cd-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cd-review-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  box-shadow: 0 4px 20px rgba(74,144,217,0.07);
  transition: var(--t);
}
.cd-review-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74,144,217,0.12);
}
.cd-review-stars {
  color: var(--gold); font-size: 16px; letter-spacing: 2px;
  margin-bottom: 14px;
}
.cd-review-text {
  font-size: 13px; color: var(--muted);
  font-family: Arial, sans-serif; line-height: 1.8;
  font-style: italic; margin-bottom: 20px;
}
.cd-reviewer {
  display: flex; align-items: center; gap: 12px;
}
.cd-reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--blue3));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff;
  font-family: Arial, sans-serif;
}
.cd-reviewer strong {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--blue1); font-family: Arial, sans-serif;
}
.cd-reviewer span {
  font-size: 11px; color: var(--muted);
  font-family: Arial, sans-serif;
}

/* Responsive updates */
@media (max-width: 1024px) {
  .cd-body { flex-direction: column; padding: 40px 30px 60px; }
  .cd-sidebar { width: 100%; position: static; }
  .cd-overview-cards { grid-template-columns: repeat(2, 1fr); }
  .cd-reviews-grid { grid-template-columns: 1fr 1fr; }
  .cd-reviews-section { padding: 40px 30px 60px; }
  .cd-progress-inner { padding: 10px 30px; }
}
@media (max-width: 768px) {
  .cd-hero { padding: 90px 20px 40px; }
  .cd-body { flex-direction: column; padding: 30px 20px 50px; }
  .cd-sidebar { width: 100%; position: static; }
  .cd-overview-cards { grid-template-columns: repeat(2, 1fr); }
  .cd-reviews-grid { grid-template-columns: 1fr; }
  .cd-reviews-section { padding: 30px 20px 50px; }
  .cd-progress-inner { padding: 10px 20px; }
  .cd-hero-actions { flex-direction: column; }
  .cd-hero-enroll, .cd-hero-enquire { text-align: center; }
  .cd-syllabus-controls { flex-wrap: wrap; }
  .cd-enroll-wrap { flex-direction: column; }
  .cd-enroll-btn, .cd-enquire-btn { text-align: center; }
}
@media (max-width: 480px) {
  .cd-overview-cards { grid-template-columns: 1fr 1fr; }
}


/* =============================================
   GLOBAL DESIGN IMPROVEMENTS
============================================= */

/* Better section spacing & backgrounds */
.services-section {
  background: linear-gradient(180deg, #f4f7ff 0%, #ffffff 50%, #f4f7ff 100%) !important;
}
.services-grid {
  gap: 24px !important;
}
.service-card {
  border-radius: 20px !important;
  padding: 28px 20px !important;
  box-shadow: 0 4px 20px rgba(74,144,217,0.08) !important;
}
.service-card:hover {
  box-shadow: 0 24px 50px rgba(74,144,217,0.18), 0 0 0 1px rgba(201,168,76,0.25) !important;
}
.service-img-wrap {
  width: 110px !important; height: 110px !important;
  border-radius: 50% !important;
  border: 3px solid rgba(201,168,76,0.35) !important;
  box-shadow: 0 0 0 6px rgba(74,144,217,0.06) !important;
}
.service-btn {
  border-radius: 50px !important;
  padding: 10px 20px !important;
  font-size: 12px !important;
}

/* =============================================
   CONSULT ASTROLOGER PAGE — IMPROVED
============================================= */
.astro-page {
  background: linear-gradient(180deg, #f4f7ff 0%, #e8eeff 40%, #f4f7ff 100%);
  padding: 100px 40px 80px;
  position: relative; z-index: 1;
}
.astro-page-hero {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeUp 0.8s ease both;
}
.astro-page-sub {
  max-width: 600px; margin: 16px auto 0;
  font-size: 15px; color: var(--muted);
  line-height: 1.9; font-family: Arial, sans-serif;
}
.astro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px; max-width: 1100px; margin: 0 auto;
}
.astro-card {
  background: #fff;
  border: 1px solid rgba(74,144,217,0.15);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 8px 32px rgba(74,144,217,0.10);
  transition: var(--t);
  position: relative; overflow: hidden;
}
.astro-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue3), var(--gold));
  border-radius: 24px 24px 0 0;
}
.astro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(74,144,217,0.18), 0 0 0 1px rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.3);
}
.astro-name {
  font-size: 20px !important; font-weight: 800 !important;
  color: var(--blue1) !important;
}
.astro-title {
  font-size: 13px !important; color: var(--gold2) !important;
  font-family: Arial, sans-serif !important; font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}
.astro-bio {
  font-size: 13px !important; color: var(--muted) !important;
  line-height: 1.9 !important; font-family: Arial, sans-serif !important;
}
.astro-tagline {
  font-style: italic; color: var(--blue2);
  font-size: 13px; font-family: Arial, sans-serif;
  padding: 10px 16px;
  background: rgba(74,144,217,0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
}
.astro-spec-tags span {
  border-radius: 50px !important;
  font-size: 11px !important;
  padding: 6px 14px !important;
}
.astro-contact-btn {
  border-radius: 50px !important;
  font-size: 13px !important;
  padding: 11px 20px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(74,144,217,0.15) !important;
}
.astro-contact-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(74,144,217,0.25) !important;
}
.astro-wa {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3) !important;
}
.astro-wa:hover {
  box-shadow: 0 8px 24px rgba(37,211,102,0.4) !important;
}

/* =============================================
   CONTACT PAGE — IMPROVED
============================================= */
.contact-page {
  padding: 100px 40px 80px !important;
}
.contact-form-card,
.contact-info-card {
  border-radius: 24px !important;
  box-shadow: 0 8px 40px rgba(74,144,217,0.10) !important;
  border: 1px solid rgba(74,144,217,0.15) !important;
}
.contact-info-item {
  border-radius: 14px !important;
  transition: all 0.3s ease !important;
}
.contact-submit-btn {
  border-radius: 50px !important;
  font-size: 15px !important;
  padding: 15px !important;
  box-shadow: 0 6px 20px rgba(201,168,76,0.35) !important;
}
.contact-submit-btn:hover {
  box-shadow: 0 10px 30px rgba(201,168,76,0.45) !important;
}

/* =============================================
   CHAPTER PAGES — IMPROVED
============================================= */
.chapter-page,
.chapter-hero,
.ic-page {
  background: linear-gradient(180deg, #f4f7ff 0%, #fff 60%, #f4f7ff 100%);
}
.ic-chapter {
  border-radius: 18px !important;
  box-shadow: 0 4px 20px rgba(74,144,217,0.08) !important;
  border: 1px solid rgba(74,144,217,0.12) !important;
  transition: var(--t) !important;
}
.ic-chapter:hover {
  box-shadow: 0 12px 36px rgba(74,144,217,0.15) !important;
  border-color: rgba(201,168,76,0.3) !important;
  transform: translateY(-3px) !important;
}
.ic-ch-header {
  border-radius: 18px !important;
}
.ic-enroll-btn {
  border-radius: 50px !important;
  padding: 14px 40px !important;
  font-size: 14px !important;
  box-shadow: 0 6px 20px rgba(201,168,76,0.35) !important;
}
.ic-enroll-btn:hover {
  box-shadow: 0 10px 30px rgba(201,168,76,0.45) !important;
}

/* =============================================
   FOOTER — IMPROVED
============================================= */
.site-footer {
  background: linear-gradient(180deg, #0d1f5c 0%, #0a1540 100%) !important;
}
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--t);
  font-size: 12px; font-weight: 700;
  text-decoration: none; color: rgba(255,255,255,0.7);
  font-family: Arial, sans-serif;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(201,168,76,0.4);
}
.footer-col a {
  transition: var(--t) !important;
}
.footer-col a:hover {
  color: var(--gold) !important;
  padding-left: 6px !important;
}

/* =============================================
   BOOK APPOINTMENT PAGE — IMPROVED
============================================= */
.hero { padding-top: 100px !important; }

/* =============================================
   RESPONSIVE IMPROVEMENTS
============================================= */
@media (max-width: 768px) {
  .detail-main { padding: 28px 20px 40px !important; margin: 20px 12px !important; }
  .astro-grid { grid-template-columns: 1fr !important; }
  .astro-page { padding: 90px 20px 60px !important; }
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .detail-title { font-size: 20px !important; }
}

/* =============================================
   SERVICES PAGE HERO
============================================= */
.services-page-hero {
  position: relative; z-index: 1;
  padding: 120px 40px 50px;
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74,144,217,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #f4f7ff 0%, #e8eeff 100%);
  border-bottom: 1px solid rgba(74,144,217,0.12);
}
.services-page-hero-inner {
  max-width: 700px; margin: 0 auto;
  animation: fadeUp 0.8s ease both;
}
.services-page-sub {
  font-size: 15px; color: var(--muted);
  line-height: 1.9; font-family: Arial, sans-serif;
  margin-top: 16px;
}
