﻿/* =============================================
   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:68px;
  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; }
.logo img {
  height:48px; width:48px;
  border-radius:50%; object-fit:cover;
  border:2px solid rgba(201,168,76,0.5);
  box-shadow:0 0 16px rgba(74,144,217,0.4);
  transition:var(--t);
  animation:logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { box-shadow:0 0 16px rgba(74,144,217,0.4); }
  50%      { box-shadow:0 0 28px rgba(201,168,76,0.6), 0 0 44px rgba(74,144,217,0.3); }
}
.logo img:hover { transform:scale(1.08) rotate(5deg); }
.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; }

/* =============================================
   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 {
  position:absolute; right:-80px; top:50%;
  transform:translateY(-50%);
  width:420px; height:420px; opacity:0.06;
  animation:slowSpin 40s linear infinite;
  pointer-events:none; z-index:1;
}
@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; gap:30px; padding:100px 60px 60px; background:linear-gradient(180deg,#f4f7ff 0%,#fff 100%); align-items:flex-start; min-height:100vh; position:relative; z-index:1; flex-direction:row; flex-wrap:nowrap; }
.detail-main { flex:1; }
.detail-section-label { font-size:24px; font-weight:700; color:var(--blue1); margin-bottom:24px; }
.detail-hero-img { width:100%; max-height:420px; object-fit:cover; border-radius:14px; margin-bottom:24px; border:1px solid rgba(74,144,217,0.2); box-shadow:0 20px 50px rgba(74,144,217,0.15); }
.detail-title { font-size:22px; font-weight:800; color:var(--blue1); margin-bottom:18px; text-transform:uppercase; letter-spacing:1px; }
.detail-intro { font-size:15px; color:var(--gold2); font-weight:600; margin-bottom:14px; font-family:Arial,sans-serif; }
.detail-body p { font-size:13px; color:var(--muted); line-height:1.9; margin-bottom:16px; font-family:Arial,sans-serif; }
.detail-body strong { color:var(--blue1); }
.enquire-btn { display:inline-block; margin-top:28px; padding:14px 44px; background:linear-gradient(135deg,var(--gold),var(--gold2)); color:#fff; font-size:14px; font-weight:700; border-radius:8px; text-decoration:none; letter-spacing:2px; font-family:Arial,sans-serif; transition:var(--t); box-shadow:0 4px 15px rgba(201,168,76,0.3); }
.enquire-btn:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(201,168,76,0.4); }
.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; }
