/* ============================================================
   Cosmic Insight Pro — Premium Mystical Theme
   cosmicinsightpro.com | Pronika Bhagwat Pandey
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --deep-purple:   #2c0b4e;
  --mid-purple:    #3d1068;
  --light-purple:  #5a1a8a;
  --gold:          #d4af37;
  --gold-light:    #f0d060;
  --gold-dark:     #a8881e;
  --black:         #0a0a0a;
  --dark-bg:       #100320;
  --card-bg:       #1a0535;
  --white:         #ffffff;
  --off-white:     #f5f0ff;
  --text-muted:    #c8b8e8;
  --border-gold:   rgba(212,175,55,0.35);
  --shadow-gold:   0 0 30px rgba(212,175,55,0.2);
  --shadow-purple: 0 8px 40px rgba(44,11,78,0.6);
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Poppins', sans-serif;
  --transition:    0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.25;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

/* ─── Star Canvas ───────────────────────────────────────────── */
#starCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  touch-action: none;
  z-index: 0;
  /* Disable on very small/low-power screens for perf */
}
@media (max-width: 480px) {
  #starCanvas { opacity: 0.5; }
}

/* ─── Utility Classes ───────────────────────────────────────── */
.section-pad     { padding: 90px 0; }
.section-pad-sm  { padding: 60px 0; }
.z1              { position: relative; z-index: 1; }

.gold-text       { color: var(--gold) !important; }
.purple-text     { color: var(--light-purple); }
.muted-text      { color: var(--text-muted); }

.gold-divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto 28px;
  border-radius: 2px;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ─── Overlay Gradients ─────────────────────────────────────── */
.overlay-dark {
  background: linear-gradient(135deg, rgba(10,3,32,0.92) 0%, rgba(44,11,78,0.85) 100%);
}

.section-bg-1 {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #1a0535 50%, var(--dark-bg) 100%);
}
.section-bg-2 {
  background: linear-gradient(180deg, #1a0535 0%, #0d021f 100%);
}
.section-bg-gold {
  background: linear-gradient(135deg, #1a0535 0%, #2c0b4e 50%, #1a0535 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(212,175,55,0.45);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(212,175,55,0.6); }
.btn-gold:hover::before { opacity: 1; }

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 34px;
  border: 2px solid var(--gold);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black) !important;
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.55); }

/* ─── NAVBAR ────────────────────────────────────────────────── */
#mainNav {
  background: rgba(10,3,32,0.92);   /* always visible — crucial for mobile */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
  padding: 16px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
}
#mainNav.scrolled {
  background: rgba(10,3,32,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--gold);
  padding: 10px 0;
}

/* Mobile nav dropdown — needs solid background */
@media (max-width: 991px) {
  #mainNav .navbar-collapse {
    background: rgba(10,3,32,0.98);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    margin-top: 12px;
    padding: 16px 12px;
  }
  #mainNav .navbar-nav .nav-link {
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(212,175,55,0.08);
  }
  #mainNav .navbar-nav .nav-item:last-child .nav-link { border-bottom: none; }
  #mainNav .navbar-nav .nav-cta { margin-top: 8px; }
  #mainNav .navbar-nav .nav-cta .nav-link {
    text-align: center;
    justify-content: center;
    display: flex;
    margin: 0 8px;
  }
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand .brand-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.navbar-brand span { color: var(--gold); }

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-nav .nav-cta .nav-link {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black) !important;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 700;
}
.navbar-nav .nav-cta .nav-link::after { display: none; }
.navbar-nav .nav-cta .nav-link:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }

.navbar-toggler {
  border: 1px solid var(--border-gold);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212,175,55,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── HERO SECTION ──────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(90,26,138,0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.08) 0%, transparent 50%),
              linear-gradient(180deg, #0a0318 0%, #1a0535 50%, #0a0318 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(90,26,138,0.35);
  top: -100px; left: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(212,175,55,0.08);
  bottom: -80px; right: -80px;
  animation-delay: -4s;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge i { font-size: 0.9rem; animation: spin 6s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 50px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  border-top: 1px solid var(--border-gold);
  padding-top: 30px;
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-globe {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(212,175,55,0.15) 0%,
    rgba(90,26,138,0.4) 40%,
    rgba(10,3,32,0.8) 100%);
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 80px rgba(212,175,55,0.15), inset 0 0 60px rgba(90,26,138,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
  max-width: 100%;
}
.hero-globe-icon {
  font-size: 8rem;
  opacity: 0.6;
  color: var(--gold);
}
.hero-globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  animation: rotate 20s linear infinite;
}
.ring-1 { width: 105%; height: 105%; animation-duration: 25s; }
.ring-2 { width: 115%; height: 115%; animation-duration: 35s; animation-direction: reverse; border-style: dashed; }
.ring-3 { width: 125%; height: 125%; animation-duration: 45s; border-color: rgba(212,175,55,0.15); }

.hero-floating-card {
  position: absolute;
  background: rgba(26,5,53,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow-gold);
  animation: float 5s ease-in-out infinite;
}
.hero-floating-card i { font-size: 1.2rem; color: var(--gold); }
.card-1 { top: 10%; right: -5%; animation-delay: -2s; }
.card-2 { bottom: 15%; left: -5%; animation-delay: -4s; }
.card-3 { top: 55%; right: -10%; animation-delay: -1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}

/* ─── SCROLL INDICATOR ──────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeInUp 1s ease 2s both;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--border-gold);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::before {
  content: '';
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ─── SERVICE CARDS ─────────────────────────────────────────── */
.service-card {
  background: linear-gradient(145deg, rgba(26,5,53,0.9), rgba(44,11,78,0.6));
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-purple);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  box-shadow: var(--shadow-gold);
  transform: scale(1.1);
}
.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 20px; }

/* ─── ABOUT SNIPPET ─────────────────────────────────────────── */
.about-img-frame {
  position: relative;
  display: inline-block;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 420px;
  background: linear-gradient(145deg, #1a0535, #2c0b4e);
  border-radius: 24px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(212,175,55,0.2);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, transparent 60%);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-badge .num { font-size: 2rem; line-height: 1; display: block; }
.about-badge .lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.step-card {
  text-align: center;
  padding: 30px 24px;
  position: relative;
}
.step-number {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}
.step-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }
.step-connector {
  position: absolute;
  top: 60px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonial-card {
  background: linear-gradient(145deg, rgba(26,5,53,0.95), rgba(44,11,78,0.7));
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 36px 30px;
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(212,175,55,0.15);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
.testimonial-text {
  color: var(--off-white);
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-purple), var(--light-purple));
  border: 2px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.testimonial-location { font-size: 0.78rem; color: var(--text-muted); }

/* ─── TRUST BADGES ──────────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(90deg, rgba(212,175,55,0.05), rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 32px 0;
}
.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust-icon { font-size: 2rem; color: var(--gold); }
.trust-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.trust-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── WHY CHOOSE US ─────────────────────────────────────────── */
.why-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.why-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.why-content h5 { font-size: 1.05rem; margin-bottom: 6px; }
.why-content p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(212,175,55,0.6); }

.faq-question {
  width: 100%;
  background: rgba(26,5,53,0.8);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { background: rgba(44,11,78,0.8); color: var(--gold); }
.faq-question i { color: var(--gold); font-size: 0.85rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-question.active { color: var(--gold); }
.faq-question.active i { transform: rotate(180deg); }

.faq-answer {
  background: rgba(16,3,32,0.7);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}
.faq-answer.open { padding: 0 24px 20px; }

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--deep-purple) 0%, #1a0535 40%, var(--deep-purple) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── SERVICE DETAIL CARDS (services.php) ───────────────────── */
.service-detail-section { padding: 80px 0; border-bottom: 1px solid rgba(212,175,55,0.1); }
.service-detail-section:last-child { border-bottom: none; }

.service-detail-icon {
  font-size: 5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.service-detail-badge {
  display: inline-block;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.benefit-list { list-style: none; padding: 0; margin: 0; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  color: var(--text-muted);
  font-size: 0.93rem;
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li i { color: var(--gold); flex-shrink: 0; margin-top: 4px; }

.who-for-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.who-tag {
  background: rgba(90,26,138,0.3);
  border: 1px solid rgba(90,26,138,0.6);
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 50px;
}

.duration-box {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03));
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.duration-box i { font-size: 1.5rem; color: var(--gold); }
.duration-box strong { color: var(--white); font-size: 0.95rem; }
.duration-box span { color: var(--text-muted); font-size: 0.85rem; display: block; }

/* ─── BOOKING FORM ──────────────────────────────────────────── */
.booking-form-wrap {
  background: linear-gradient(145deg, rgba(26,5,53,0.95), rgba(44,11,78,0.7));
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 50px 44px;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-control, .form-select {
  background: rgba(10,3,32,0.7);
  border: 1px solid var(--border-gold);
  color: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  background: rgba(44,11,78,0.5);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  color: var(--white);
  outline: none;
}
.form-control::placeholder { color: rgba(200,184,232,0.5); }
.form-select option { background: #1a0535; color: var(--white); }
textarea.form-control { resize: vertical; min-height: 120px; }

.booking-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 28px 0;
}
.booking-divider::before, .booking-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-gold);
}

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact-info-card {
  background: linear-gradient(145deg, rgba(26,5,53,0.9), rgba(44,11,78,0.6));
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 36px 30px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-item-value { font-size: 0.95rem; color: var(--white); font-weight: 500; }

.map-placeholder {
  width: 100%; height: 300px;
  background: linear-gradient(145deg, #1a0535, #0a0318);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.map-placeholder i { font-size: 3rem; color: rgba(212,175,55,0.3); }

/* ─── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #0a0318 0%, #1a0535 60%, #0a0318 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(90,26,138,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 16px; }

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 50px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -38px;
  top: 4px;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(212,175,55,0.6);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-title { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-text { color: var(--text-muted); font-size: 0.9rem; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #080215 0%, #050010 100%);
  border-top: 1px solid var(--border-gold);
  padding-top: 70px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; max-width: 300px; }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gold);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-contact li i { color: var(--gold); flex-shrink: 0; margin-top: 4px; }

.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 20px 0;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ─── FLOAT WHATSAPP BUTTON ─────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.7); color: white; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ─── ANIMATIONS ────────────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp 0.8s ease both; }

/* ─── SUCCESS/ERROR MESSAGES ────────────────────────────────── */
.alert-cosmic {
  border-radius: 14px;
  border: 1px solid var(--border-gold);
  background: rgba(26,5,53,0.9);
  color: var(--gold);
  padding: 16px 20px;
  font-size: 0.92rem;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-title { font-size: clamp(2rem, 6vw, 3.2rem); }
  .hero-globe { width: 300px; height: 300px; }
  .hero-floating-card { display: none; }
  .about-badge { bottom: -10px; right: 10px; }
  .booking-form-wrap { padding: 30px 20px; }
  .cta-banner { padding: 50px 30px; }
  .step-connector { display: none; }
}

@media (max-width: 767px) {
  /* Ensure content clears the fixed navbar (~70px tall) */
  .hero-section { padding-top: 80px; }
  .page-hero    { padding: 100px 0 50px; }

  .section-pad    { padding: 50px 0; }
  .section-pad-sm { padding: 36px 0; }

  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.7rem; }

  /* Stack CTA buttons full-width on mobile */
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn-gold,
  .hero-cta-group .btn-whatsapp { justify-content: center; width: 100%; }

  /* Globe: hide on very small screens to save space */
  .hero-visual { display: none; }

  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .about-img-placeholder { max-width: 280px; margin: 0 auto 50px; }

  /* Booking & contact forms */
  .booking-form-wrap { padding: 24px 16px; }

  /* Trust bar: 2-col grid */
  .trust-bar .col-6 { flex: 0 0 50%; max-width: 50%; }

  /* Service cards: full width */
  .service-card { margin-bottom: 4px; }

  /* CTA banner */
  .cta-banner { padding: 40px 20px; border-radius: 16px; }

  /* Testimonial cards */
  .testimonial-card { padding: 28px 20px; }

  /* WhatsApp float: slightly smaller */
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; right: 16px; }

  /* Buttons: full-width stacking helper */
  .btn-mobile-full { width: 100%; justify-content: center; }

  /* Footer */
  .site-footer .row > [class*="col-"] { text-align: center; }
  .footer-brand p { margin: 12px auto; }
  .social-links { justify-content: center; }
  .footer-links a { justify-content: center; }
  .footer-contact li { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
  .section-title { font-size: 1.7rem; }
  .navbar-brand { font-size: 1.2rem; }
  .navbar-brand .brand-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  .booking-form-wrap { padding: 20px 14px; }
}
