/* ══════════════════════════════════════════
   SWARA VIGYAN — OM SRI DIVINES
   style.css
   ══════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c96d;
  --gold-dim:    rgba(201, 168, 76, 0.25);
  --cream:       #f0ece4;
  --deep:        #080b12;   /* midnight blue-black */
  --dark:        #0d1120;   /* deep navy */
  --brown:       #0a0f1e;   /* rich dark navy */
  --green-logo:  #1a6e8a;   /* teal accent */
  --green-mid:   #1e8aaa;   /* bright teal */
  --moon:        #b8d4f0;
  --sun:         #f4a235;
  --green:       #25d366;   /* WhatsApp green */
}

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

body {
  background: var(--deep);
  color: var(--cream);
  font-family: 'EB Garamond', serif;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(26,110,138,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 50% 40%, rgba(201,168,76,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(80,40,180,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(244,162,53,0.07) 0%, transparent 55%),
    linear-gradient(160deg, #080b12 0%, #0a0e1c 50%, #06080f 100%);
  z-index: -1;
}

/* Mandala rings */
.mandala-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,110,138,0.3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSlow linear infinite;
}
.mandala-ring:nth-child(1) { width: 500px; height: 500px; animation-duration: 60s; }
.mandala-ring:nth-child(2) { width: 700px; height: 700px; border-style: dashed; animation-duration: 90s; animation-direction: reverse; }
.mandala-ring:nth-child(3) { width: 900px; height: 900px; animation-duration: 120s; }

@keyframes rotateSlow {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.brand {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 6px;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 32px;
  animation: fadeUp 1s ease both;
}

.hero-corner-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e8c96d;
  box-shadow: 0 0 16px #e8c96d, 0 0 32px rgba(232,201,109,0.5);
  animation: fadeUp 1s ease 0.1s both;
  z-index: 10;
}

.hero-symbol-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  width: fit-content;
  gap: 0;
}




.hero-symbol-wrap .hero-symbol {
  width: 220px; height: 220px;
  position: relative;
  animation: fadeUp 1.2s ease 0.2s both;
  flex-shrink: 0;
  z-index: 1;
}
.hero-symbol svg,
.hero-symbol img { width: 100%; height: 100%; }

/* ── Mentor circle (replaces SVG symbol) ── */
.hero-mentor-circle {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1.2s ease 0.2s both;
}

.hero-mentor-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSlow linear infinite;
}
.hero-mentor-ring--1 {
  width: 250px; height: 250px;
  border: 1px solid rgba(201,168,76,0.45);
  animation-duration: 18s;
}
.hero-mentor-ring--2 {
  width: 275px; height: 275px;
  border: 1px dashed rgba(26,110,138,0.35);
  animation-duration: 28s;
  animation-direction: reverse;
}

.hero-mentor-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 3px #e8c96d,
    0 0 0 6px rgba(232,94,30,0.5),
    0 0 30px #e8c96d,
    0 0 70px rgba(26,110,138,0.4),
    0 20px 50px rgba(0,0,0,0.6);
  animation: fadeUp 1.2s ease 0.2s both, mentorGlow 3s ease-in-out infinite;
}

/* ── Corner mentor (right side) ── */
.hero-corner-mentor {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 220px;
  height: 280px;
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  border: 3px solid transparent;
  animation: fadeUp 1.2s ease 0.25s both, mentorGlow 3s ease-in-out infinite;
  z-index: 10;
  box-shadow:
    0 0 0 3px #e8c96d,
    0 0 0 6px rgba(232,94,30,0.6),
    0 0 30px #e8c96d,
    0 0 60px rgba(232,94,30,0.5),
    0 0 100px rgba(201,168,76,0.3),
    0 24px 60px rgba(0,0,0,0.6);
}

@keyframes mentorGlow {
  0%, 100% {
    box-shadow:
      0 0 0 3px #e8c96d,
      0 0 0 6px rgba(232,94,30,0.6),
      0 0 30px #e8c96d,
      0 0 60px rgba(232,94,30,0.5),
      0 0 100px rgba(201,168,76,0.3),
      0 24px 60px rgba(0,0,0,0.6);
  }
  50% {
    box-shadow:
      0 0 0 3px #f5d97a,
      0 0 0 8px rgba(255,120,40,0.7),
      0 0 50px #f5d97a,
      0 0 90px rgba(255,120,40,0.6),
      0 0 140px rgba(232,201,109,0.4),
      0 24px 60px rgba(0,0,0,0.6);
  }
}

@media (max-width: 768px) {
  .hero-mentor-circle { width: 190px; height: 190px; }
  .hero-mentor-img    { width: 175px; height: 175px; }
  .hero-mentor-ring--1 { width: 200px; height: 200px; }
  .hero-mentor-ring--2 { width: 220px; height: 220px; }
  .hero-corner-mentor { width: 110px; height: 140px; right: 10px; border-radius: 10px; }
}



.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #8a6320 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 28px;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-desc {
  max-width: 560px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(245,237,224,0.75);
  font-style: italic;
  margin-bottom: 48px;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 1s ease 1s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--deep);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(201,168,76,0.5); }

.btn-wa {
  background: var(--green);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(37,211,102,0.25);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(37,211,102,0.45); }

.btn-wa-full {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #25d366;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  padding: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(37,211,102,0.25);
}
.btn-wa-full:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(37,211,102,0.45); }

/* ══════════════════════════════════════════
   SECTIONS — COMMON
   ══════════════════════════════════════════ */
section { position: relative; padding: 90px 24px; }

.section-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 6px;
  color: var(--gold);
  opacity: 0.6;
  text-align: center;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  font-style: italic;
  color: rgba(245,237,224,0.6);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about { background: linear-gradient(180deg, #080b12 0%, #0d1120 100%); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(245,237,224,0.78);
  margin-bottom: 20px;
}
.about-text strong { color: var(--gold); }

.nadi-cards { display: flex; flex-direction: column; gap: 20px; }

.nadi-card {
  border: 1px solid var(--gold-dim);
  border-radius: 16px;
  padding: 24px 28px;
  background: rgba(201,168,76,0.04);
  display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.4s;
}
.nadi-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
  transform: translateX(6px);
}

.nadi-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.nadi-icon.moon { background: rgba(184,212,240,0.12); color: var(--moon); }
.nadi-icon.sun  { background: rgba(244,162,53,0.12);  color: var(--sun); }

.nadi-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}
.nadi-card p { font-size: 0.95rem; color: rgba(245,237,224,0.65); line-height: 1.6; }

/* ══════════════════════════════════════════
   BENEFITS
   ══════════════════════════════════════════ */
.benefits { background: linear-gradient(180deg, #0d1120 0%, #0a0e1c 100%); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(201,168,76,0.04);
  border: 1px solid var(--gold-dim);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s;
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.benefit-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.5); }
.benefit-card:hover::before { opacity: 1; }

.benefit-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.5rem;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.benefit-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 10px;
}
.benefit-card p { font-size: 0.95rem; color: rgba(245,237,224,0.65); line-height: 1.7; }

/* ══════════════════════════════════════════
   MENTOR
   ══════════════════════════════════════════ */
.mentor { background: linear-gradient(180deg, #0a0e1c 0%, #080b12 100%); }

.mentor-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.mentor-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-size: 3rem;
  box-shadow: 0 0 40px rgba(201,168,76,0.2);
}

.mentor-inner h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.mentor-tags {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 20px 0 28px;
}

.mentor-tag {
  border: 1px solid var(--gold-dim);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  opacity: 0.8;
}

.mentor-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245,237,224,0.7);
  font-style: italic;
}

/* ══════════════════════════════════════════
   JOIN / CTA SECTION
   ══════════════════════════════════════════ */
.join-section {
  background: #080b12;
  text-align: center;
  padding: 100px 24px;
  position: relative; overflow: hidden;
}
.join-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(26,110,138,0.12) 0%, transparent 70%);
}
.join-section p { font-style: italic; color: rgba(245,237,224,0.6); font-size: 1.1rem; margin-bottom: 20px; }

.join-quote {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 0 auto 50px;
  max-width: 500px;
}

/* ══════════════════════════════════════════
   FORM
   ══════════════════════════════════════════ */
.form-wrap {
  background: rgba(26,110,138,0.07);
  border: 1px solid rgba(201,168,76,0.3);
  border-top: 2px solid rgba(201,168,76,0.5);
  border-radius: 24px;
  padding: 44px 40px;
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative; z-index: 1;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(201,168,76,0.1);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(180,210,240,0.85);
  opacity: 1;
}

.form-field input,
.form-field select {
  background: rgba(26,110,138,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.form-field select option { background: #0d1120; color: var(--cream); }
.form-field input:focus,
.form-field select:focus { border-color: rgba(201,168,76,0.6); background: rgba(26,110,138,0.15); }
.form-field input::placeholder { color: rgba(240,236,228,0.3); }

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  background: linear-gradient(135deg, #1a6e8a, #c9a84c);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  padding: 16px;
  border: none; border-radius: 50px;
  cursor: pointer; margin-top: 8px;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(26,110,138,0.35);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(26,110,138,0.55); background: linear-gradient(135deg, #1e8aaa, #e8c96d); }

.form-or {
  display: flex; align-items: center; gap: 14px;
  margin: 28px 0;
}
.form-or span.line { flex: 1; height: 1px; background: var(--gold-dim); }
.form-or span.txt {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: rgba(201,168,76,0.7);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: #060810;
  border-top: 1px solid var(--gold-dim);
  padding: 40px 24px;
  text-align: center;
}
.footer-om { font-size: 2rem; color: var(--gold); opacity: 0.5; margin-bottom: 12px; }
footer p { font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 2px; color: rgba(245,237,224,0.35); }
footer a { color: var(--gold); opacity: 0.6; text-decoration: none; }
footer a:hover { opacity: 1; }

/* ══════════════════════════════════════════
   FLOATING ACTION CLUSTER
   ══════════════════════════════════════════ */
.float-cluster {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 999;
}

/* Quick Book button */
.float-quickbook {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c9a84c, #a8832a);
  color: #080b12;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  padding: 11px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  transition: all 0.3s;
  white-space: nowrap;
}
.float-quickbook:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.6);
  background: linear-gradient(135deg, #e8c96d, #c9a84c);
}

/* Circular WA button */
.wa-float {
  background: var(--green);
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  animation: pulse 2.5s infinite;
  align-self: flex-end;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ── Mobile: collapse pills, show only icons ── */
@media (max-width: 600px) {
  .float-cluster { bottom: 16px; right: 14px; gap: 8px; }
  .float-quickbook { font-size: 0.75rem; padding: 9px 14px; }
  .float-wa-pill { font-size: 0.75rem; padding: 9px 14px; }
  .wa-float { width: 50px; height: 50px; }
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .about-grid      { grid-template-columns: 1fr; }
  .form-grid       { grid-template-columns: 1fr; }
  .form-wrap       { padding: 28px 20px; }
  .hero-corner-logo { width: 44px; height: 44px; top: 16px; left: 16px; }
}

/* ══════════════════════════════════════════
   POPUP CARD & FORM STYLES (moved from index.html)
   ══════════════════════════════════════════ */

    /* ══════════ POPUP CARD — midnight navy palette ══════════ */

    .fp-card {
      position: fixed;
      z-index: 9999;
      width: 300px;
      background: linear-gradient(160deg, #0d1120 0%, #080b12 100%);
      border: 1px solid rgba(201,168,76,0.55);
      border-top: 3px solid #c9a84c;
      border-radius: 18px;
      padding: 22px 20px 18px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.8),
                  0 0 0 1px rgba(26,110,138,0.2),
                  inset 0 1px 0 rgba(201,168,76,0.15);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.45s ease, transform 0.45s cubic-bezier(.22,.68,0,1.2);
    }

    .fp-logo-wrap {
      text-align: center;
      margin-bottom: 10px;
    }
    .fp-logo {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 2px solid rgba(201,168,76,0.6);
      box-shadow: 0 0 20px rgba(201,168,76,0.3), 0 0 40px rgba(26,110,138,0.2);
      object-fit: cover;
    }
    .fp-card.show {
      opacity: 1;
      pointer-events: all;
    }

    #fp1 { top: 50%; left: 50%; transform: translate(-50%, calc(-50% + 30px)); width: 420px; max-width: calc(100vw - 32px); }
    #fp2 { bottom: 24px; left: 50%;   transform: translate(-50%, 40px); }
    #fp3 { bottom: 24px; right: 24px; transform: translateY(40px); }

    #fp1.show { transform: translate(-50%, -50%); }
    #fp2.show { transform: translate(-50%, 0); }
    #fp3.show { transform: translateY(0); }

    @media (max-width: 700px) {
      .fp-card {
        width: calc(100vw - 32px);
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(20px) !important;
        max-height: 90vh;
        overflow-y: auto;
      }
      #fp1 {
        top: 50% !important;
        transform: translate(-50%, calc(-50% + 20px)) !important;
        width: calc(100vw - 32px);
        max-height: 90vh;
        overflow-y: auto;
      }
      #fp1.show {
        transform: translate(-50%, -50%) !important;
      }
      #fp2 { display: none; }
      #fp3 { display: none; }
    }

    .fp-close {
      position: absolute;
      top: 10px; right: 12px;
      background: none; border: none;
      color: rgba(150,190,230,0.7);
      font-size: 1rem; cursor: pointer;
      line-height: 1; padding: 2px 6px;
      border-radius: 50%;
      transition: color 0.2s, background 0.2s;
    }
    .fp-close:hover { color: #c9a84c; background: rgba(201,168,76,0.12); }

    .fp-om { font-size: 1.3rem; color: #c9a84c; margin: 0 0 4px; line-height:1; }
    .fp-title {
      font-family: 'Cinzel', serif;
      color: #c9a84c;
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin: 0 0 4px;
      text-align: center;
    }
    .fp-sub {
      color: rgba(180,210,240,0.6);
      font-size: 0.78rem;
      font-style: italic;
      margin: 0 0 14px;
      line-height: 1.4;
      text-align: center;
    }

    .fp-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 10px;
    }
    .fp-group label {
      font-family: 'Cinzel', serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: rgba(180,210,240,0.85);
    }
    .fp-group input,
    .fp-group select {
      background: rgba(26,110,138,0.1);
      border: 1px solid rgba(201,168,76,0.28);
      border-radius: 8px;
      padding: 9px 11px;
      color: rgba(240,236,228,0.9);
      font-family: 'EB Garamond', serif;
      font-size: 0.9rem;
      outline: none;
      width: 100%;
      box-sizing: border-box;
      transition: border-color 0.2s, background 0.2s;
    }
    .fp-group input::placeholder { color: rgba(240,236,228,0.3); }
    .fp-group input:focus,
    .fp-group select:focus {
      border-color: rgba(201,168,76,0.7);
      background: rgba(26,110,138,0.18);
    }
    .fp-group select option { background: #0d1120; color: #f0ece4; }

    .fp-btn {
      width: 100%;
      background: linear-gradient(135deg, #1a6e8a 0%, #c9a84c 100%);
      color: #fff;
      font-family: 'Cinzel', serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 1px;
      border: none;
      border-radius: 50px;
      padding: 11px 18px;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 4px 18px rgba(26,110,138,0.4);
      margin-top: 4px;
      text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    .fp-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 26px rgba(26,110,138,0.55);
      background: linear-gradient(135deg, #1e8aaa 0%, #e8c96d 100%);
    }
    .fp-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

    .fp-or {
      display: flex; align-items: center; gap: 10px;
      margin: 12px 0 10px;
    }
    .fp-or-line { flex:1; height:1px; background: rgba(201,168,76,0.3); }
    .fp-or-txt {
      color: rgba(201,168,76,0.9);
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
    }

    .fp-wa {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      background: #25d366; color: #fff;
      font-family: 'Cinzel', serif; font-weight: 700;
      font-size: 0.78rem; letter-spacing: 0.3px;
      padding: 10px 16px; border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 3px 12px rgba(37,211,102,0.35);
    }
    .fp-wa:hover { background: #1ebe5d; transform: translateY(-1px); }

    .fp-success {
      display: none; text-align: center; padding: 10px 0 4px;
    }
    .fp-success.show { display: block; }
    .fp-success .fp-s-icon { font-size: 1.6rem; color: #c9a84c; margin-bottom: 8px; }
    .fp-success h4 {
      font-family: 'Cinzel', serif; color: #c9a84c;
      font-size: 0.9rem; margin: 0 0 6px; letter-spacing: 1px;
    }
    .fp-success p { color: rgba(180,210,240,0.75); font-size: 0.82rem; font-style: italic; }

    #fp-backdrop {
      position: fixed; inset: 0;
      background: rgba(0,5,20,0.7);
      z-index: 9998;
      opacity: 0; pointer-events: none;
      transition: opacity 0.4s ease;
      -webkit-backdrop-filter: blur(2px);
      backdrop-filter: blur(2px);
    }
    #fp-backdrop.show { opacity: 1; pointer-events: all; }

    .or-divider { display:flex; align-items:center; gap:14px; margin:20px 0 16px; }
    .or-line { flex:1; height:1px; background:rgba(201,168,76,0.3); }
    .or-text { color:rgba(201,168,76,0.9); font-family:'Cinzel',serif; font-size:0.82rem; font-weight:700; letter-spacing:3px; flex-shrink:0; }

    .btn-wa-group {
      display:flex; align-items:center; justify-content:center; gap:10px;
      background:#25d366; color:#fff;
      font-family:'Cinzel',serif; font-weight:700; font-size:0.95rem; letter-spacing:0.5px;
      padding:14px 24px; border-radius:50px; text-decoration:none;
      transition:all 0.3s; box-shadow:0 4px 16px rgba(37,211,102,0.3);
      width:100%; box-sizing:border-box;
    }
    .btn-wa-group:hover { background:#1ebe5d; transform:translateY(-2px); box-shadow:0 8px 24px rgba(37,211,102,0.45); }

    .popup-form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
    @media(max-width:500px){ .popup-form-row { grid-template-columns:1fr; } }
    .form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
    .form-group:last-child { margin-bottom:0; }
    .popup-form-row .form-group { margin-bottom:0; }
    .form-group label { font-family:'Cinzel',serif; font-size:0.78rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:rgba(180,210,240,0.85); }
    .form-group input, .form-group select, .form-group textarea {
      background:rgba(26,110,138,0.08); border:1px solid rgba(201,168,76,0.25); border-radius:10px;
      padding:12px 14px; color:rgba(240,236,228,0.9); font-family:'EB Garamond',serif; font-size:0.97rem;
      outline:none; transition:border-color 0.25s,background 0.25s; width:100%; box-sizing:border-box;
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color:rgba(240,236,228,0.3); }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:rgba(201,168,76,0.65); background:rgba(26,110,138,0.15); }
    .form-group select option { background:#0d1120; color:#f0ece4; }
    .popup-submit {
      width:100%; background:linear-gradient(135deg,#1a6e8a 0%,#c9a84c 100%); color:#fff;
      font-family:'Cinzel',serif; font-size:1rem; font-weight:700; letter-spacing:1.5px;
      border:none; border-radius:50px; padding:15px 24px; cursor:pointer;
      transition:all 0.3s; box-shadow:0 4px 20px rgba(26,110,138,0.4); margin-top:6px; margin-bottom:6px;
      text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    .popup-submit:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(26,110,138,0.55); background:linear-gradient(135deg,#1e8aaa 0%,#e8c96d 100%); }
    .popup-submit:disabled { opacity:0.6; cursor:not-allowed; transform:none; }
    .popup-note { text-align:center; font-size:0.8rem; color:rgba(180,210,240,0.4); font-style:italic; margin:6px 0 0; }
    .popup-success { display:none; text-align:center; padding:20px 0; }
    .popup-success.show { display:block; }
    .popup-success .success-icon { font-size:2rem; color:#c9a84c; margin-bottom:12px; }
    .popup-success h3 { font-family:'Cinzel',serif; color:#c9a84c; font-size:1.1rem; margin:0 0 10px; letter-spacing:1px; }
    .popup-success p { color:rgba(180,210,240,0.7); font-style:italic; font-size:0.95rem; }