/* =====================================================
   VRĂJITOAREA MAESTRA — style.css
   Mobile-first. Breakpoint desktop: 768px
   ===================================================== */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --deep:    #06030f;
  --mid:     #0d0821;
  --cosmic:  #1a1045;
  --nebula:  #2a1760;
  --violet:  #6b21d4;
  --astral:  #9b59ff;
  --gold:    #c9a227;
  --gold-l:  #f0cc5a;
  --gold-p:  #fde97a;
  --rose:    #c0396e;
  --white:   #f3eeff;
  --silver:  #c8b8f8;
  --body:    #d4c8f0;
  --muted:   #8b7cb0;
  --gp:      rgba(107,33,212,0.4);
  --gg:      rgba(201,162,39,0.5);
  --r: 20px;
}

body {
  font-family: 'EB Garamond', serif;
  background: var(--deep);
  color: var(--body);
  overflow-x: hidden;
  /* space for ticker at bottom */
  padding-bottom: 36px;
}

/* Stars background */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(107,33,212,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(192,57,110,.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='50' cy='80' r='1' fill='rgba(255,255,255,0.7)'/%3E%3Ccircle cx='120' cy='30' r='1.2' fill='rgba(200,184,248,0.8)'/%3E%3Ccircle cx='200' cy='150' r='0.8' fill='white'/%3E%3Ccircle cx='310' cy='60' r='1' fill='rgba(255,255,255,0.6)'/%3E%3Ccircle cx='370' cy='200' r='1.3' fill='rgba(200,184,248,0.7)'/%3E%3Ccircle cx='80' cy='300' r='0.9' fill='white'/%3E%3Ccircle cx='250' cy='280' r='1.1' fill='rgba(255,255,255,0.8)'/%3E%3Ccircle cx='340' cy='350' r='0.8' fill='rgba(200,184,248,0.6)'/%3E%3Ccircle cx='160' cy='370' r='1' fill='white'/%3E%3Ccircle cx='60' cy='180' r='1.2' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E") repeat;
  animation: twinkle 8s ease-in-out infinite alternate;
}
@keyframes twinkle { 0%{opacity:.6} 100%{opacity:1} }

/* ── LAYOUT ── */
.container { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 0 18px; }
section    { padding: 56px 0; position: relative; z-index: 1; }

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header { text-align: center; margin-bottom: 44px; }
.section-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--body); max-width: 640px;
  margin: 0 auto; font-style: italic;
}

/* ── BUTTONS ── */
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.btn-call, .btn-wa, .btn-mystic {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif;
  font-weight: 700; letter-spacing: 1.2px;
  text-decoration: none; border-radius: 50px;
  transition: transform .2s, box-shadow .3s;
  white-space: nowrap;
  font-size: .95rem; padding: 14px 28px;
}
.btn-call {
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-p));
  box-shadow: 0 0 24px var(--gg);
}
.btn-call:hover  { transform: translateY(-2px); box-shadow: 0 0 40px var(--gg); }
.btn-wa {
  color: #fff;
  background: linear-gradient(135deg, #1a7a45, #25d366);
  box-shadow: 0 0 20px rgba(37,211,102,.3);
}
.btn-wa:hover    { transform: translateY(-2px); box-shadow: 0 0 36px rgba(37,211,102,.5); }
.btn-mystic {
  color: #fff;
  background: linear-gradient(135deg, var(--nebula), var(--violet));
  border: 1px solid rgba(155,89,255,.4);
  box-shadow: 0 0 16px var(--gp);
}
.btn-mystic:hover{ transform: translateY(-2px); box-shadow: 0 0 30px var(--gp); }

.btn-sm { font-size: .8rem !important; padding: 10px 14px !important; flex: 1; text-align: center; min-width: 0; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(6,3,15,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(155,89,255,.2);
}
.nav-inner {
  display: flex; align-items: center;
  padding: 10px 18px; gap: 10px;
  max-width: 1100px; margin: 0 auto;
}
.nav-logo {
  font-family: 'Cinzel Decorative', cursive;
  font-size: .85rem; color: var(--gold-l);
  text-decoration: none; white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 0 16px var(--gg);
}
.nav-logo span { display: none; } /* hide text on mobile, show icon only */

/* NAV LINKS — hidden on mobile, shown via burger */
.nav-links {
  list-style: none;
  display: none; /* mobile: hidden */
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(6,3,15,.98);
  border-bottom: 1px solid rgba(155,89,255,.2);
  padding: 12px 0; z-index: 300;
}
.nav-links.open { display: block; }
.nav-links li a {
  display: block; padding: 10px 20px;
  font-family: 'Cinzel', serif; font-size: .8rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--silver); text-decoration: none;
}
.nav-links li a:hover { color: var(--gold-l); }

.nav-burger {
  margin-left: auto;
  background: none; border: 1px solid rgba(155,89,255,.3);
  color: var(--silver); font-size: 1.1rem;
  padding: 5px 10px; border-radius: 8px;
  cursor: pointer; flex-shrink: 0;
}

.nav-cta {
  font-family: 'Cinzel', serif; font-size: .75rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--violet), var(--rose));
  color: #fff; text-decoration: none;
  padding: 8px 14px; border-radius: 30px;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 0 16px var(--gp);
}

/* ── FLOATING CTA — desktop only ── */
.floating-cta { display: none; }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 110px 18px 72px;
}
.hero-moon {
  font-size: 4rem; display: block;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(201,162,39,.8));
  margin-bottom: 12px;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.hero-badge {
  display: inline-block;
  font-family: 'Cinzel', serif; font-size: .68rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,162,39,.35);
  padding: 5px 16px; border-radius: 30px;
  background: rgba(201,162,39,.07); margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.8rem, 8vw, 3.8rem);
  color: var(--white); line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 0 36px rgba(155,89,255,.5);
}
.hero-sub {
  font-family: 'Cinzel', serif; font-size: clamp(.8rem, 3vw, 1.1rem);
  color: var(--gold-l); letter-spacing: 1.5px; margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--body); max-width: 680px;
  margin: 0 auto 32px; font-style: italic;
}
.hero-desc strong { color: var(--silver); font-style: normal; }
.hero .btn-group { margin-bottom: 0; }

/* ── GARANTII STRIP ── */
.garantii-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 20px; padding: 24px 18px;
  background: rgba(42,23,96,.2);
  border-top: 1px solid rgba(155,89,255,.12);
  border-bottom: 1px solid rgba(155,89,255,.12);
  position: relative; z-index: 1;
}
.g-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif; font-size: .72rem;
  letter-spacing: 1px; text-transform: uppercase; color: var(--silver);
}
.g-item span { font-size: 1.1rem; }

/* ── PHOTO + TEXT (intercalate) ── */
.pt-section { padding: 56px 0; }
.pt-section.pt-alt { background: linear-gradient(180deg, rgba(42,23,96,.08) 0%, transparent 100%); }

.pt-row {
  display: flex; flex-direction: column; gap: 28px;
}
/* Mobile: image ALWAYS first */
.pt-img  { order: 1; }
.pt-text { order: 2; }

.media-img {
  width: 100%; border-radius: var(--r);
  display: block; object-fit: cover;
  aspect-ratio: 4/3;
  border: 1px solid rgba(155,89,255,.2);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

/* Placeholder shown when image missing */
.photo-slot {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(42,23,96,.6), rgba(107,33,212,.15));
  border: 2px dashed rgba(155,89,255,.3);
  border-radius: var(--r); color: var(--muted);
  font-family: 'Cinzel', serif; font-size: .8rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-align: center; padding: 20px;
}
.photo-slot span { font-size: 2.5rem; opacity: .5; }
.photo-slot small { font-size: .68rem; color: rgba(139,124,176,.6); }

.pt-text h2 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  color: var(--white); margin-bottom: 14px; line-height: 1.3;
}
.pt-text p {
  font-size: 1.02rem; line-height: 1.85;
  color: var(--body); margin-bottom: 12px;
}
.pt-text .btn-group { justify-content: flex-start; margin-top: 16px; }

/* ── SPECIALITATI ── */
.spec-section { padding: 56px 0; }
.spec-box {
  background: linear-gradient(180deg, rgba(42,23,96,.3) 0%, transparent 100%);
  border-radius: var(--r); padding: 36px 24px;
  border: 1px solid rgba(155,89,255,.15);
}
.spec-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 12px; margin-top: 28px;
}
.spec-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px; background: rgba(13,8,33,.6);
  border-radius: 14px; border: 1px solid rgba(155,89,255,.12);
}
.spec-item > span { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.spec-item strong { color: var(--silver); display: block; margin-bottom: 2px; font-size: .95rem; }
.spec-item p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ── SERVICII ── */
#servicii { padding: 56px 0; }
.srv-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px;
}
.srv-card {
  background: linear-gradient(135deg, rgba(13,8,33,.95), rgba(42,23,96,.5));
  border: 1px solid rgba(155,89,255,.2);
  border-radius: var(--r); padding: 26px 22px;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.srv-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--gold), var(--rose));
}
.srv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(107,33,212,.3); }
.srv-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.srv-card h3 {
  font-family: 'Cinzel', serif; font-size: 1rem;
  color: var(--gold-l); margin-bottom: 10px; letter-spacing: 1px;
}
.srv-card p { font-size: .95rem; line-height: 1.65; color: var(--body); margin-bottom: 12px; }
.srv-card ul { list-style: none; margin-bottom: 18px; }
.srv-card ul li {
  font-size: .88rem; color: var(--body);
  padding: 3px 0 3px 18px; position: relative;
}
.srv-card ul li::before { content:'→'; position:absolute; left:0; color:var(--astral); }
.srv-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── SERVICE IMAGE ── */
.srv-img-wrap {
  margin: 14px 0 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(155,89,255,.18);
}
.srv-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}
.srv-img-caption {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  padding: 8px 10px 10px;
  background: rgba(13,8,33,.7);
  margin: 0;
  font-style: italic;
  letter-spacing: .3px;
  line-height: 1.4;
  border-top: 1px solid rgba(155,89,255,.1);
}

/* ── CTA BANNER ── */
.cta-banner { padding: 48px 0; }
.cta-box {
  background: linear-gradient(135deg, rgba(42,23,96,.95), rgba(192,57,110,.2));
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 22px; padding: 44px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content:'✦ ✦ ✦'; position:absolute; top:14px; left:50%;
  transform:translateX(-50%); color:var(--gold); font-size:.75rem; letter-spacing:8px;
}
.cta-box h2 {
  font-family:'Cinzel Decorative',cursive;
  font-size:clamp(1.2rem,4vw,2rem); color:var(--white); margin-bottom:14px;
}
.cta-box p { font-size:1.05rem; color:var(--body); max-width:560px; margin:0 auto 28px; font-style:italic; line-height:1.8; }

/* ── PHONE NUMBER (glowing) ── */
.phone-num {
  display: block; text-decoration: none;
  font-family:'Cinzel Decorative',cursive;
  font-size:clamp(1.6rem,6vw,2.6rem);
  color:var(--gold-p); margin-bottom:24px;
  text-shadow:0 0 24px var(--gg);
  animation:phoneGlow 2.5s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes phoneGlow {
  0%,100%{text-shadow:0 0 20px var(--gg)}
  50%{text-shadow:0 0 48px rgba(240,204,90,.9),0 0 80px rgba(201,162,39,.4)}
}

/* ── VIDEO ── */
.video-section { padding: 56px 0; }
.video-wrap {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid rgba(155,89,255,.25);
  position: relative; background: var(--mid);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.video-thumb-placeholder {
  position: relative; aspect-ratio: 16/9;
  cursor: pointer; overflow: hidden;
  background: linear-gradient(135deg, var(--mid), var(--nebula));
  display: flex; align-items: center; justify-content: center;
}
.video-thumb-placeholder img {
  width:100%; height:100%; object-fit:cover; display:block;
}
.video-default-thumb {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 24px; text-align: center;
}
.vd-icon { font-size: 4rem; opacity: .6; }
.video-default-thumb p { font-family:'Cinzel',serif; font-size:.9rem; color:var(--silver); letter-spacing:1px; }
.video-default-thumb small { font-size:.75rem; color:var(--muted); }
.play-btn {
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width:68px; height:68px; border-radius:50%;
  background: linear-gradient(135deg,var(--gold),var(--gold-p));
  border: none; cursor: pointer; font-size:1.4rem;
  color:var(--deep); display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 0 rgba(240,204,90,.6);
  animation:playPulse 2s ease-out infinite;
  padding-left:4px;
}
@keyframes playPulse {
  0%{box-shadow:0 0 0 0 rgba(240,204,90,.6)}
  70%{box-shadow:0 0 0 18px rgba(240,204,90,0)}
  100%{box-shadow:0 0 0 0 rgba(240,204,90,0)}
}
.video-wrap iframe {
  position:absolute; inset:0; width:100%; height:100%; border:none;
}

/* ── TALISMANE ── */
.tal-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
}
.tal-item {
  background: rgba(42,23,96,.3);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 14px; padding: 18px 12px;
  text-align: center; transition: all .3s;
}
.tal-item:hover { background:rgba(42,23,96,.5); border-color:rgba(201,162,39,.5); transform:scale(1.04); }
.tal-item span { font-size:1.8rem; display:block; margin-bottom:8px; }
.tal-item p { font-family:'Cinzel',serif; font-size:.72rem; color:var(--gold-l); letter-spacing:.5px; }

/* ── STEPS ── */
.steps { display:flex; flex-direction:column; gap:0; }
.step {
  display:flex; gap:18px; align-items:flex-start;
  padding:22px 0; border-bottom:1px solid rgba(155,89,255,.1);
}
.step:last-child { border-bottom:none; }
.step-n {
  font-family:'Cinzel Decorative',cursive; font-size:2rem;
  color:rgba(155,89,255,.25); min-width:52px; text-align:center; line-height:1;
}
.step-c h3 { font-family:'Cinzel',serif; font-size:1rem; color:var(--gold-l); margin-bottom:6px; }
.step-c p  { font-size:.95rem; line-height:1.7; color:var(--body); }

/* ── EXTRA BOX ── */
.extra-box {
  background:linear-gradient(135deg,rgba(13,8,33,.8),rgba(42,23,96,.3));
  border-radius:var(--r); padding:36px 24px;
  border:1px solid rgba(155,89,255,.15);
}
.extra-box h3 {
  font-family:'Cinzel Decorative',cursive; font-size:clamp(1.2rem,4vw,1.6rem);
  color:var(--white); margin-bottom:16px;
}
.extra-box p { font-size:1.02rem; line-height:1.9; color:var(--body); margin-bottom:14px; }
.extra-box p:last-of-type { margin-bottom:0; }

/* ── TESTIMONIALE ── */
#multumiri { padding:56px 0; }
.testi-grid { display:grid; grid-template-columns:1fr; gap:18px; }
.testi-card {
  background:linear-gradient(135deg,rgba(13,8,33,.95),rgba(42,23,96,.4));
  border:1px solid rgba(155,89,255,.18); border-radius:18px; padding:24px;
  position:relative;
}
.testi-card::before {
  content:'"'; position:absolute; top:10px; left:18px;
  font-family:'Cinzel Decorative',cursive; font-size:3.5rem;
  color:var(--violet); opacity:.35; line-height:1;
}
.testi-stars { color:var(--gold); font-size:.95rem; letter-spacing:2px; margin-bottom:10px; }
.testi-text { font-size:.98rem; line-height:1.75; color:var(--body); font-style:italic; margin-bottom:12px; }
.testi-author { font-family:'Cinzel',serif; font-size:.82rem; color:var(--gold-l); letter-spacing:1px; }
.disclaimer { text-align:center; font-size:.78rem; color:var(--muted); margin-top:20px; font-style:italic; }

/* ── CONTACT BOX ── */
.contact-box {
  background:linear-gradient(135deg,rgba(42,23,96,.5),rgba(13,8,33,.8));
  border-radius:26px; padding:52px 24px; text-align:center;
  border:1px solid rgba(155,89,255,.25);
}
.contact-box h2 { font-family:'Cinzel Decorative',cursive; font-size:clamp(1.4rem,4vw,2.2rem); color:var(--white); margin-bottom:14px; }
.contact-box p { font-size:1.05rem; color:var(--body); max-width:520px; margin:0 auto 28px; font-style:italic; line-height:1.8; }

/* ── FOOTER ── */
footer {
  border-top:1px solid rgba(155,89,255,.15);
  padding:36px 0; text-align:center; position:relative; z-index:1;
}
.footer-logo { font-family:'Cinzel Decorative',cursive; font-size:1.1rem; color:var(--gold); margin-bottom:14px; }
.footer-links {
  display:flex; justify-content:center; gap:16px;
  list-style:none; flex-wrap:wrap; margin-bottom:16px;
}
.footer-links a { font-family:'Cinzel',serif; font-size:.75rem; letter-spacing:1px; color:var(--muted); text-decoration:none; }
.footer-links a:hover { color:var(--gold-l); }

/* ── FOOTER PHONE — always one line ── */
.footer-phone {
  display: inline-block;
  font-family:'Cinzel Decorative',cursive;
  font-size:clamp(1rem,4vw,1.4rem);
  color:var(--gold-p); text-decoration:none;
  white-space: nowrap;          /* ← prevents line break */
  margin-bottom:16px;
  text-shadow:0 0 20px var(--gg);
}

.footer-keywords { font-size:.72rem; color:var(--muted); margin-bottom:12px; line-height:1.8; }
.footer-copy { font-size:.75rem; color:var(--muted); }

/* ── TICKER ── */
.ticker-wrap {
  position:fixed; bottom:0; left:0; right:0; z-index:150; height:36px;
  background:linear-gradient(90deg,rgba(6,3,15,.97),rgba(42,23,96,.97),rgba(6,3,15,.97));
  border-top:1px solid rgba(201,162,39,.3);
  display:flex; align-items:center; overflow:hidden;
}
.ticker-label {
  flex-shrink:0; height:100%; display:flex; align-items:center;
  padding:0 14px; background:linear-gradient(135deg,var(--gold),var(--gold-p));
  font-family:'Cinzel',serif; font-size:.65rem; font-weight:700;
  letter-spacing:2px; text-transform:uppercase; color:var(--deep);
  white-space:nowrap;
}
.ticker-track { flex:1; overflow:hidden; height:100%; display:flex; align-items:center; }
.ticker-content {
  display:flex; white-space:nowrap;
  animation:tickerScroll 55s linear infinite;
}
.ticker-content:hover { animation-play-state:paused; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ti {
  font-family:'Cinzel',serif; font-size:.68rem; letter-spacing:1px;
  color:var(--silver); padding:0 24px; display:inline-flex; align-items:center; gap:8px;
}
.ti a { color:var(--gold-l); text-decoration:none; }
.ts { color:rgba(155,89,255,.5); }

/* ── MOBILE STICKY CALL ── */
.mobile-sticky {
  display: none; /* shown via JS after scroll */
  position:fixed; bottom:44px; left:50%;
  transform:translateX(-50%);
  z-index:148; width:calc(100% - 28px); max-width:380px;
}
.mobile-sticky a {
  display:flex; align-items:center; justify-content:center; gap:10px;
  width:100%; font-family:'Cinzel',serif; font-size:1rem;
  font-weight:700; letter-spacing:1.5px; text-decoration:none;
  color:var(--deep);
  background:linear-gradient(135deg,var(--gold),var(--gold-p));
  padding:16px 24px; border-radius:50px;
  animation:mobileCallPulse 1.8s ease-out infinite;
}
@keyframes mobileCallPulse {
  0%  {box-shadow:0 0 0 0 rgba(240,204,90,.7),0 6px 20px rgba(201,162,39,.4)}
  50% {box-shadow:0 0 0 12px rgba(240,204,90,0),0 6px 20px rgba(201,162,39,.4)}
  100%{box-shadow:0 0 0 0 rgba(240,204,90,0),0 6px 20px rgba(201,162,39,.3)}
}
.ring-icon { display:inline-block; animation:ringShake 2s ease-in-out infinite; }
@keyframes ringShake {
  0%,60%,100%{transform:rotate(0)}
  10%{transform:rotate(-18deg)} 20%{transform:rotate(18deg)}
  30%{transform:rotate(-12deg)} 40%{transform:rotate(12deg)}
  50%{transform:rotate(-6deg)}
}

/* ── WATERMARK ── */
.wm-bg {
  position:fixed; inset:0; pointer-events:none; z-index:1;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='200'%3E%3Ctext transform='rotate(-35 180 100)' x='20' y='110' font-family='Georgia' font-size='12' fill='rgba(155,89,255,0.05)'%3E%C2%A9 VrajitoareaMaestra.com%3C/text%3E%3C/svg%3E");
  background-repeat:repeat; background-size:360px 200px;
}

/* ═══════════════════════════════════════
   DESKTOP — 768px+
   ═══════════════════════════════════════ */
@media (min-width: 768px) {

  body { padding-bottom: 36px; }

  /* Nav — single line, all visible */
  .nav-logo span { display:inline; }
  .nav-burger    { display:none; }
  .nav-links {
    display:flex !important; position:static;
    background:none; border:none; padding:0; gap:20px;
    flex:1; justify-content:center;
  }
  .nav-links li a { padding:0; }

  /* Floating CTA */
  .floating-cta {
    display:flex; flex-direction:column; gap:10px;
    position:fixed; bottom:56px; right:24px; z-index:145; align-items:flex-end;
  }
  .float-btn {
    display:flex; align-items:center; gap:8px;
    font-family:'Cinzel',serif; font-size:.78rem;
    letter-spacing:1px; text-decoration:none;
    padding:12px 18px; border-radius:50px;
    box-shadow:0 6px 24px rgba(0,0,0,.5); white-space:nowrap;
    transition:transform .2s;
  }
  .float-call {
    color:var(--deep); background:linear-gradient(135deg,var(--gold),var(--gold-p));
    animation:floatPulse 2.5s ease-in-out infinite;
  }
  @keyframes floatPulse {
    0%,100%{box-shadow:0 4px 16px rgba(201,162,39,.5)}
    50%{box-shadow:0 4px 36px rgba(240,204,90,.8)}
  }
  .float-wa { color:#fff; background:linear-gradient(135deg,#1a7a45,#25d366); }
  .float-btn:hover { transform:scale(1.05); }

  /* Mobile sticky — hide on desktop */
  .mobile-sticky { display:none !important; }

  /* Photo+text rows */
  .pt-row {
    flex-direction:row; gap:48px; align-items:center;
  }
  .pt-img, .pt-text { flex:1; order:unset !important; }
  /* pt-reverse: image right on desktop */
  .pt-reverse .pt-img { order:2 !important; }
  .pt-reverse .pt-text { order:1 !important; }

  /* Spec grid */
  .spec-grid { grid-template-columns: repeat(3,1fr); }

  /* Services grid */
  .srv-grid { grid-template-columns: repeat(2,1fr); }

  /* Testimoniale */
  .testi-grid { grid-template-columns: repeat(2,1fr); }

  /* Steps + extra side by side */
  .steps-wrap { display:grid; grid-template-columns:1fr 1fr; gap:48px; }
}

@media (min-width: 1024px) {
  .srv-grid   { grid-template-columns:repeat(3,1fr); }
  .testi-grid { grid-template-columns:repeat(3,1fr); }
  .spec-grid  { grid-template-columns:repeat(3,1fr); }
}

/* ── MYSTICAL ANIMATION SHOWCASE ── */
.mistic-anim-section { padding: 40px 0 20px; }
.mistic-anim-wrap {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(155,89,255,.25);
  box-shadow: 0 20px 60px rgba(107,33,212,.25), 0 0 80px rgba(155,89,255,.1);
  position: relative;
}
.mistic-anim-wrap img,
.mistic-anim-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}
.mistic-anim-caption {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: 1.5px;
  padding: 14px 16px 16px;
  background: rgba(13,8,33,.85);
  border-top: 1px solid rgba(155,89,255,.15);
  margin: 0;
}

/* ── SERVICE IMAGE MOBILE TWEAKS ── */
@media (max-width: 767px) {
  .srv-img-wrap { margin: 12px 0 14px; }
  .srv-img-caption { font-size: .78rem; padding: 7px 10px 9px; }
  .mistic-anim-section { padding: 24px 0 10px; }
  .mistic-anim-wrap { border-radius: 14px; }
}

/* ── LOCAL VIDEO PLAYER ── */
.local-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r);
  background: #0d0821;
  max-height: 520px;
  object-fit: contain;
}
