/* ============================================================
   Miraclegurunik — Premium Astrology Design System
   Stack: Pure CSS3 + Tailwind CSS (via CDN)
   ============================================================ */

:root {
  /* Theme Colors */
  --night-950: #0a0212;
  --night-900: #110420;
  --night-800: #1c0635;
  --night-700: #2a0a4e;

  --rose-deep: #7a1040;
  --rose-mid: #b31b5a;
  --rose-soft: #e8457a;
  --rose-pale: #f9a8c4;
  --rose-mist: #fde8ef;

  --gold-dark: #9a5a08;
  --gold-mid: #d4860e;
  --gold-bright: #f5a623;
  --gold-light: #fdd17a;
  --gold-glow: #fff0c0;

  --plum-deep: #3d0060;
  --plum-mid: #6b0fa8;
  --plum-soft: #a94ad4;
  --plum-pale: #d8a0f0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--night-950);
  color: #f5e6ff;
  overflow-x: hidden;
  line-height: 1.6;
}

#cvs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--night-900);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--rose-mid), var(--plum-mid));
  border-radius: 3px;
}

/* ── Keyframes ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.18); }
  30% { transform: scale(1); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes spinOrbit {
  to { transform: rotate(360deg); }
}
@keyframes shimmerLove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes petals {
  0% { opacity: 0; transform: translateY(-20px) rotate(0deg); }
  20% { opacity: .8; }
  80% { opacity: .6; }
  100% { opacity: 0; transform: translateY(110vh) rotate(720deg); }
}
@keyframes glow-rose {
  0%, 100% { box-shadow: 0 0 12px rgba(232, 69, 122, .4); }
  50% { box-shadow: 0 0 32px rgba(232, 69, 122, .8), 0 0 60px rgba(107, 15, 168, .3); }
}
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 69, 122, .5); }
  50% { box-shadow: 0 0 0 14px rgba(232, 69, 122, 0); }
}
@keyframes blink-dot {
  0%, 80%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

/* ── Loader Animations ── */
@keyframes spin-loader {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes pulse-loader {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes loader-fade-out {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
@keyframes loader-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; visibility: visible; }
}
@keyframes ring-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(232, 69, 122, .4), 0 0 40px rgba(212, 134, 14, .2); }
  50% { box-shadow: 0 0 40px rgba(232, 69, 122, .8), 0 0 80px rgba(212, 134, 14, .4); }
}

/* ── Animation Helpers ── */
.fade-up {
  animation: fadeUp .9s ease forwards;
}
.fade-in {
  animation: fadeIn 1s ease forwards;
}
.float-it {
  animation: floatUp 6s ease-in-out infinite;
}
.glow-rose {
  animation: glow-rose 3s ease-in-out infinite;
}

.d1 { animation-delay: .1s; opacity: 0; }
.d2 { animation-delay: .25s; opacity: 0; }
.d3 { animation-delay: .4s; opacity: 0; }
.d4 { animation-delay: .55s; opacity: 0; }
.d5 { animation-delay: .7s; opacity: 0; }
.d6 { animation-delay: .85s; opacity: 0; }
.d7 { animation-delay: 1s; opacity: 0; }
.d8 { animation-delay: 1.15s; opacity: 0; }

/* ── Page Loader ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 2, 18, .98) 0%, rgba(26, 5, 40, .98) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.loader-logo {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  animation: pulse-loader 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(232, 69, 122, .5), inset 0 0 20px rgba(212, 134, 14, .2);
  border: 3px solid rgba(212, 134, 14, .3);
}

.page-loader.hidden .loader-logo img {
  animation-play-state: paused;
}

.loader-ring {
  position: absolute;
  inset: -15px;
  border: 3px solid transparent;
  border-top-color: var(--rose-soft);
  border-right-color: var(--gold-bright);
  border-radius: 50%;
  animation: ring-spin 1.5s linear infinite;
  box-shadow: inset 0 0 40px rgba(232, 69, 122, .1);
}

.page-loader.hidden .loader-ring {
  animation-play-state: paused;
}

.loader-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  animation: blink-dot 1.5s ease-in-out infinite;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
}

.page-loader.hidden .loader-text {
  animation-play-state: paused;
}

.loader-text::after {
  content: '';
  animation: none;
  margin-left: 4px;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 2, 18, .75);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(232, 69, 122, .12);
}

.nav-link {
  color: var(--plum-pale);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover {
  color: var(--rose-pale);
}

/* ── Text Gradients ── */
.love-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 30%, var(--rose-soft) 65%, var(--plum-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shimmer-love {
  background: linear-gradient(90deg, var(--gold-light), var(--rose-soft), var(--plum-pale), var(--gold-mid), var(--gold-light));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerLove 5s ease infinite;
}

/* ── Buttons ── */
.btn-love {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose-soft), var(--gold-mid));
  background-size: 200%;
  animation: shimmerLove 4s ease infinite, pulse-btn 2.5s infinite;
  color: #fff;
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform .2s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-love:hover {
  transform: translateY(-2px) scale(1.03);
}

.btn-ghost {
  border: 1px solid rgba(232, 69, 122, .45);
  color: var(--rose-pale);
  background: transparent;
  transition: all .25s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-ghost:hover {
  background: rgba(232, 69, 122, .12);
  border-color: var(--rose-soft);
}

/* Map CosmicSeer buttons to Miraclegurunik classes */
.btn-gold {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose-soft), var(--gold-mid));
  background-size: 200%;
  animation: shimmerLove 4s ease infinite;
  color: #fff;
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform .2s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.03);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}
.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
}

.btn-outline {
  border: 1px solid rgba(232, 69, 122, .45);
  color: var(--rose-pale);
  background: transparent;
  transition: all .25s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline:hover {
  background: rgba(232, 69, 122, .12);
  border-color: var(--rose-soft);
}

/* ── Country Selector ── */
.cselector {
  background: rgba(42, 10, 78, .7);
  border: 1px solid rgba(232, 69, 122, .3);
  color: var(--gold-light);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .83rem;
  cursor: pointer;
  outline: none;
  font-family: 'Nunito', sans-serif;
  transition: border-color .2s;
}
.cselector:hover {
  border-color: var(--rose-soft);
}
.cselector option {
  background: var(--night-800);
}

/* ── Hero Background ── */
.hero-bg {
  background:
    radial-gradient(ellipse 90% 60% at 50% -5%, rgba(179, 27, 90, .22) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 15% 80%, rgba(107, 15, 168, .2) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 85% 60%, rgba(212, 134, 14, .12) 0%, transparent 60%),
    linear-gradient(180deg, var(--night-800) 0%, var(--night-950) 100%);
}

/* ── Petals ── */
.petal {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  font-size: 1.1rem;
  opacity: 0;
  animation: petals linear infinite;
}

/* ── Divider ── */
.div-love {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 69, 122, .5), rgba(212, 134, 14, .3), transparent);
}

/* ── Orbit Decoration ── */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 69, 122, .1);
  pointer-events: none;
}

/* ── Section title adaptations ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-pale);
  background: rgba(232, 69, 122, .1);
  border: 1px solid rgba(232, 69, 122, .35);
  padding: 4px 14px;
  border-radius: 20px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: white;
  line-height: 1.2;
}
.section-sub {
  color: var(--plum-pale);
  font-size: 16px;
  margin-top: 8px;
}

/* ── Service Cards & Grid ── */
.cat-card, .service-card {
  background: linear-gradient(140deg, rgba(42, 10, 78, .9) 0%, rgba(28, 6, 53, .95) 100%);
  border: 1px solid rgba(232, 69, 122, .15);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.cat-card::after, .service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 69, 122, .07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.cat-card:hover, .service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(232, 69, 122, .18), 0 0 0 1px rgba(232, 69, 122, .3);
  border-color: rgba(232, 69, 122, .45);
}
.cat-card:hover::after, .service-card:hover::after {
  opacity: 1;
}

.icon-halo, .service-card-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgba(232, 69, 122, .2), rgba(179, 27, 90, .12));
  margin: 24px 24px 0;
}
.icon-halo::before, .service-card-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(232, 69, 122, .4);
  animation: spinOrbit 10s linear infinite;
}
.service-card-icon i {
  color: var(--gold-light);
  font-size: 1.5rem;
}

.service-card-body {
  padding: 14px 24px 10px;
  flex: 1;
  z-index: 1;
}
.service-category-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose-pale);
  margin-bottom: 8px;
}
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  margin-bottom: 8px;
  line-height: 1.4;
}
.service-card-desc {
  font-size: 14px;
  color: #ddb8f0;
  line-height: 1.6;
}

.aeo-box, .aeo-box-large {
  margin-top: 10px;
  background: rgba(179, 27, 90, .12);
  border: 1px solid rgba(232, 69, 122, .2);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  gap: 6px;
}
.aeo-box-large {
  background: rgba(42, 10, 78, .5);
  border-color: rgba(232, 69, 122, .3);
  padding: 18px;
}

.service-card-footer {
  padding: 12px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-pale);
  text-decoration: none;
  transition: color 0.2s;
}
.service-link:hover {
  color: var(--rose-soft);
}
.service-wa-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .15);
  border: 1px solid rgba(37, 211, 102, .25);
  display: flex; align-items: center; justify-content: center;
  color: #25d366;
  font-size: 16px;
  transition: all 0.2s;
}
.service-wa-btn:hover {
  background: rgba(37, 211, 102, .3);
  transform: scale(1.1);
}

/* Category Tabs */
.cat-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(232, 69, 122, .3);
  background: transparent;
  color: var(--rose-pale);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-tab:hover {
  border-color: var(--rose-soft);
  color: #fff;
}
.cat-tab.active {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose-soft), var(--gold-mid));
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}

/* ── Trust Cards & Testimonials ── */
.trust-card, .testimonial-card {
  background: rgba(28, 6, 53, .6);
  border: 1px solid rgba(232, 69, 122, .18);
  border-radius: 18px;
  padding: 24px;
  transition: border-color .25s, transform .25s;
  position: relative;
}
.testimonial-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 13.33px);
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}
.trust-card:hover, .testimonial-card:hover {
  border-color: rgba(232, 69, 122, .5);
  transform: translateY(-4px);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-mid), var(--plum-mid));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.carousel-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(232, 69, 122, .3);
  background: rgba(179, 27, 90, .12);
  color: var(--rose-pale);
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover {
  background: rgba(179, 27, 90, .3);
  border-color: var(--rose-soft);
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.carousel-dot.active {
  background: var(--rose-soft);
  width: 20px;
  border-radius: 4px;
}

/* ── Form Styling ── */
.consultation-form-card {
  background: linear-gradient(155deg, rgba(42, 10, 78, .85) 0%, rgba(28, 6, 53, .9) 100%);
  border: 1px solid rgba(232, 69, 122, .2);
  border-radius: 24px;
  padding: 2.5rem 2rem;
}

.form-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ddb8f0;
  margin-bottom: 6px;
}

.f-input, .form-input {
  background: rgba(42, 10, 78, .5);
  border: 1px solid rgba(232, 69, 122, .22);
  color: #f5e6ff;
  border-radius: 12px;
  padding: 13px 17px;
  font-size: .94rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.f-input:focus, .form-input:focus {
  border-color: var(--rose-soft);
  box-shadow: 0 0 0 3px rgba(232, 69, 122, .1);
}
.f-input::placeholder, .form-input::placeholder {
  color: rgba(220, 180, 255, .3);
}
.f-input option, .form-input option {
  background: #1c0635;
  color: white;
}

/* ── Feature Cards ── */
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(28, 6, 53, .6);
  border: 1px solid rgba(232, 69, 122, .18);
  border-radius: 12px;
  padding: 18px;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: rgba(232, 69, 122, .45);
}
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(232, 69, 122, .2), rgba(179, 27, 90, .12));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
  flex-shrink: 0;
}

/* ── Awards / Gallery ── */
.award-card {
  background: rgba(28, 6, 53, .6);
  border: 1px solid rgba(232, 69, 122, .18);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.award-card:hover {
  border-color: rgba(232, 69, 122, .45);
  transform: translateY(-2px);
}
.award-img-placeholder {
  height: 100px;
  background: rgba(232, 69, 122, .1);
  display: flex; align-items: center; justify-content: center;
}

.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(28, 6, 53, .6);
  border: 1px solid rgba(232, 69, 122, .18);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-card:hover {
  transform: scale(1.02);
}
.gallery-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(232, 69, 122, .2), rgba(179, 27, 90, .12));
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 2, 18, 0.95), transparent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* ── Service Info Card (Service Detail Page) ── */
.service-info-card {
  background: linear-gradient(140deg, rgba(42, 10, 78, .9) 0%, rgba(28, 6, 53, .95) 100%);
  border: 1px solid rgba(232, 69, 122, .15);
  border-radius: 16px;
  padding: 28px;
}

.prose-cosmic p {
  color: #ddb8f0;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

/* ── Contact Page Cards ── */
.contact-card {
  background: rgba(28, 6, 53, .6);
  border: 1px solid rgba(232, 69, 122, .18);
  border-radius: 14px;
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
}
.contact-card:hover {
  border-color: rgba(232, 69, 122, .45);
  transform: translateX(4px);
}

/* ── Social Icons ── */
.social-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(232, 69, 122, .1);
  border: 1px solid rgba(232, 69, 122, .25);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-pale);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-icon:hover {
  background: rgba(232, 69, 122, .22);
  color: white;
  border-color: var(--rose-soft);
}

/* ── Flash Messages ── */
.flash-msg {
  border-radius: 8px;
  padding: 12px 18px;
  animation: slideIn 0.3s ease;
}
.flash-success { background: rgba(72, 187, 120, 0.2); border: 1px solid rgba(72, 187, 120, 0.35); color: #9ae6b4; }
.flash-error   { background: rgba(245, 101, 101, 0.2); border: 1px solid rgba(245, 101, 101, 0.35); color: #fc8181; }
.flash-info    { background: rgba(66, 153, 225, 0.2);  border: 1px solid rgba(66, 153, 225, 0.35); color: #90cdf4; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Floating WhatsApp Button ── */
#waBtn {
  position: fixed;
  bottom: 36px;
  left: 36px;
  z-index: 99999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #fff;
  cursor: pointer;
  transition: transform .2s;
}
#waBtn:hover {
  transform: scale(1.12);
}

.whatsapp-float {
  position: fixed;
  bottom: 36px;
  left: 36px;
  z-index: 99999;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  color: #fff;
  cursor: pointer;
  transition: transform .2s;
}
.whatsapp-float:hover {
  transform: scale(1.12);
}
.whatsapp-tooltip {
  display: none;
}

/* ── Chatbot widget ── */
#chatWidget {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 99999;
}
#chatBtn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-deep), var(--rose-mid), var(--plum-mid));
  border: 2px solid rgba(232, 69, 122, .55);
  box-shadow: 0 4px 24px rgba(179, 27, 90, .55);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  transition: transform .2s;
  animation: glow-rose 3s infinite;
}
#chatBtn:hover {
  transform: scale(1.1);
}

#chatWindow {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 340px;
  max-height: 82vh;
  background: linear-gradient(155deg, var(--night-700) 0%, var(--night-800) 100%);
  border: 1px solid rgba(232, 69, 122, .3);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .7), 0 0 0 1px rgba(107, 15, 168, .2);
}
#chatWindow.open {
  display: flex;
  flex-direction: column;
  animation: fadeUp .3s ease;
}

.chat-hdr {
  background: linear-gradient(90deg, var(--rose-deep), var(--rose-mid) 50%, var(--plum-mid));
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(232, 69, 122, .2);
}
.chat-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-mid), var(--rose-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-height: 280px;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-mid) transparent;
}

.msg-b, .msg-u {
  padding: 10px 13px;
  border-radius: 14px;
  font-size: .855rem;
  max-width: 86%;
  line-height: 1.5;
}
.msg-b {
  background: rgba(122, 16, 64, .45);
  border: 1px solid rgba(232, 69, 122, .25);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.msg-u {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose-mid));
  color: #ffe;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 9px 13px;
  background: rgba(122, 16, 64, .4);
  border: 1px solid rgba(232, 69, 122, .2);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: fit-content;
}
.tdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose-soft);
}
.tdot:nth-child(1) { animation: blink-dot 1.4s .0s infinite; }
.tdot:nth-child(2) { animation: blink-dot 1.4s .2s infinite; }
.tdot:nth-child(3) { animation: blink-dot 1.4s .4s infinite; }

.qreplies {
  padding: 8px 14px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.qbtn {
  background: rgba(179, 27, 90, .12);
  border: 1px solid rgba(232, 69, 122, .35);
  color: var(--rose-pale);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: .78rem;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Nunito', sans-serif;
}
.qbtn:hover {
  background: rgba(179, 27, 90, .3);
  border-color: var(--rose-soft);
  color: #fff;
}

.chat-footer {
  display: flex;
  gap: 8px;
  padding: 11px 14px;
  border-top: 1px solid rgba(232, 69, 122, .12);
  background: rgba(10, 2, 18, .4);
}
.chat-inp {
  flex: 1;
  background: rgba(42, 10, 78, .6);
  border: 1px solid rgba(179, 27, 90, .3);
  color: #f5e6ff;
  border-radius: 10px;
  padding: 8px 11px;
  font-size: .855rem;
  outline: none;
  font-family: 'Nunito', sans-serif;
}
.chat-inp::placeholder {
  color: rgba(220, 180, 255, .28);
}
.chat-send {
  width: 35px; height: 35px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--rose-mid), var(--rose-soft));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  font-size: .75rem;
  transition: transform .15s;
}
.chat-send:hover {
  transform: scale(1.1);
}

/* ── Country Badge ── */
#cbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 69, 122, .1);
  border: 1px solid rgba(232, 69, 122, .35);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .78rem;
  color: var(--rose-pale);
  transition: all .35s;
}

/* ── Responsive tweaks ── */
@media (max-width: 768px) {
  #chatWindow {
    width: 300px;
  }
}
@media (max-width: 640px) {
  #chatWindow { right: 10px; left: -100px; width: 280px; bottom: 74px; }
  .consultation-form-card { padding: 20px; }
  #waBtn, .whatsapp-float { bottom: 18px; left: 18px; }
  #chatWidget { bottom: 18px; right: 18px; }
}

/* ────────────────────────────────────────────── */
/* ── Premium Video Testimonials & Gallery Tabs ── */
/* ────────────────────────────────────────────── */

/* Reels-style vertical video cards */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: var(--night-800);
  border: 1px solid rgba(232, 69, 122, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold-mid);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2), 0 0 15px rgba(232, 69, 122, 0.3);
}

.video-card-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-card:hover .video-card-thumbnail {
  transform: scale(1.08);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 1, 10, 0.9) 0%, rgba(5, 1, 10, 0.3) 50%, rgba(5, 1, 10, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  z-index: 2;
}

.video-card-play-btn {
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid var(--gold-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.video-card:hover .video-card-play-btn {
  background: var(--gold-mid);
  color: var(--night-950);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
  transform: scale(1.1);
}

.video-card-info {
  margin-top: auto;
}

.video-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.video-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--rose-pale);
}

.video-card-stars {
  color: var(--gold-mid);
}

/* Lightbox Modal for Video Playback */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 1, 10, 0.95);
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-lightbox.active {
  display: flex;
  opacity: 1;
}

.video-lightbox-content {
  position: relative;
  width: 90%;
  max-width: 400px;
  aspect-ratio: 9/16;
  background: var(--night-950);
  border: 2px solid var(--gold-mid);
  box-shadow: 0 0 50px rgba(232, 69, 122, 0.4);
  border-radius: 24px;
  overflow: hidden;
}

.video-lightbox-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232, 69, 122, 0.2);
  border: 1px solid var(--rose-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.2s;
}

.video-lightbox-close:hover {
  background: var(--rose-deep);
  transform: rotate(90deg);
}

/* Gallery Section Tabs */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-tab-btn {
  padding: 10px 24px;
  border-radius: 30px;
  background: rgba(26, 15, 44, 0.5);
  border: 1px solid rgba(232, 69, 122, 0.2);
  color: var(--rose-pale);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.gallery-tab-btn:hover {
  border-color: var(--rose-soft);
  color: #fff;
  background: rgba(232, 69, 122, 0.1);
}

.gallery-tab-btn.active {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose-mid));
  border-color: var(--rose-soft);
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 69, 122, 0.4);
}

.gallery-panel {
  display: none !important;
  animation: fadeIn 0.5s ease forwards;
}

.gallery-panel.active {
  display: grid !important;
}

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

/* Enhanced Service Detail Styles */
.service-showcase-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid rgba(232, 69, 122, 0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.service-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--night-950);
  z-index: 1;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--night-950) 10%, rgba(11, 4, 20, 0.75) 50%, rgba(11, 4, 20, 0.4) 100%);
  z-index: 2;
}

.service-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
}

.service-video-wrapper {
  background: linear-gradient(145deg, var(--night-800), var(--night-900));
  border: 1px solid rgba(232, 69, 122, 0.2);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.service-video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step-card {
  background: rgba(26, 15, 44, 0.45);
  border: 1px solid rgba(232, 69, 122, 0.15);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--rose-deep), var(--gold-mid));
}

.process-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 69, 122, 0.35);
  box-shadow: 0 10px 25px rgba(232, 69, 122, 0.1);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}
