:root {
  --night: #03040a;
  --navy: #080d1f;
  --charcoal: #111017;
  --purple: #17102f;
  --gold: #c9952e;
  --gold-soft: #e7bd62;
  --gold-light: #ffe8a6;
  --text: #fff8e9;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #03040a 0%, #0a0618 25%, #080d1f 50%, #0d0a1f 75%, #03040a 100%);
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.preloader-cosmos {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 149, 46, 0.08) 0%, transparent 70%),
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 232, 166, 0.05) 0%, transparent 40%);
  animation: cosmosPulse 6s ease-in-out infinite;
}

@keyframes cosmosPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.preloader-star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffe8a6;
  border-radius: 50%;
  opacity: 0;
}

.preloader-star.s1 { left: 8%; top: 15%; animation: starFloat 3s ease-in-out infinite 0s; }
.preloader-star.s2 { left: 22%; top: 75%; animation: starFloat 4s ease-in-out infinite 0.5s; }
.preloader-star.s3 { left: 38%; top: 12%; animation: starFloat 3.5s ease-in-out infinite 1s; }
.preloader-star.s4 { left: 55%; top: 85%; animation: starFloat 4.5s ease-in-out infinite 1.5s; }
.preloader-star.s5 { left: 68%; top: 20%; animation: starFloat 3s ease-in-out infinite 2s; }
.preloader-star.s6 { left: 82%; top: 65%; animation: starFloat 4s ease-in-out infinite 0.3s; }
.preloader-star.s7 { left: 12%; top: 88%; animation: starFloat 3.5s ease-in-out infinite 0.8s; }
.preloader-star.s8 { left: 92%; top: 35%; animation: starFloat 4s ease-in-out infinite 1.2s; }
.preloader-star.s9 { left: 45%; top: 92%; animation: starFloat 3s ease-in-out infinite 1.8s; }
.preloader-star.s10 { left: 75%; top: 8%; animation: starFloat 4.5s ease-in-out infinite 0.6s; }
.preloader-star.s11 { left: 3%; top: 50%; animation: starFloat 3.5s ease-in-out infinite 2.2s; }
.preloader-star.s12 { left: 95%; top: 92%; animation: starFloat 4s ease-in-out infinite 1.4s; }

@keyframes starFloat {
  0%, 100% { opacity: 0; transform: scale(0.3) translateY(0); }
  20% { opacity: 0.9; }
  50% { opacity: 0.7; transform: scale(1.2) translateY(-40px); }
  80% { opacity: 0.4; }
}

.preloader-zodiac {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.zodiac {
  position: absolute;
  font-size: 18px;
  opacity: 0.15;
  color: #c9952e;
  animation: zodiacRotate 20s linear infinite;
}

.z1 { left: 5%; top: 10%; animation-delay: 0s; }
.z2 { right: 8%; top: 15%; animation-delay: -3s; }
.z3 { left: 3%; bottom: 20%; animation-delay: -7s; }
.z4 { right: 5%; bottom: 10%; animation-delay: -11s; }
.z5 { left: 15%; top: 50%; animation-delay: -15s; }
.z6 { right: 12%; top: 45%; animation-delay: -19s; }

@keyframes zodiacRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

.preloader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite;
}

.preloader-orb.o1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 149, 46, 0.2) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.preloader-orb.o2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  bottom: 15%;
  right: 15%;
  animation-delay: -3s;
}

.preloader-orb.o3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 232, 166, 0.1) 0%, transparent 70%);
  top: 50%;
  right: 5%;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  33% { transform: translate(30px, -30px) scale(1.1); opacity: 0.8; }
  66% { transform: translate(-20px, 20px) scale(0.9); opacity: 0.6; }
}

.preloader-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.preloader-ring-outer {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring-outer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #c9952e;
  border-right-color: rgba(201, 149, 46, 0.6);
  animation: ringSpin 1.5s linear infinite;
}

.preloader-ring-outer::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 232, 166, 0.3);
  animation: ringSpin 8s linear infinite reverse;
}

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

.preloader-ring-inner {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: #e7bd62;
  border-left-color: rgba(231, 189, 98, 0.5);
  animation: ringSpin 2s linear infinite reverse;
}

.preloader-glow-orb {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 149, 46, 0.3) 0%, rgba(201, 149, 46, 0.1) 40%, transparent 70%);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
}

.preloader-ring-core {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(201, 149, 46, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.preloader-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201, 149, 46, 0.6)) drop-shadow(0 0 24px rgba(201, 149, 46, 0.3));
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(201, 149, 46, 0.6)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(201, 149, 46, 0.8)); }
}

.preloader-brand {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-star {
  font-size: 20px;
  color: #c9952e;
  margin-bottom: 8px;
  animation: starTwinkle 1.5s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.preloader-welcome {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  letter-spacing: 6px;
  color: #ffe8a6;
  margin: 0;
  text-shadow: 0 0 30px rgba(255, 232, 166, 0.5), 0 0 60px rgba(201, 149, 46, 0.3), 0 4px 12px rgba(0, 0, 0, 0.6);
  animation: welcomeFade 1s ease-out;
}

@keyframes welcomeFade {
  0% { opacity: 0; transform: translateY(20px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.preloader-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9952e;
  margin: 8px 0 0;
  opacity: 0.8;
  animation: subtitleFade 1.2s ease-out 0.3s both;
}

@keyframes subtitleFade {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0.8; transform: translateY(0); }
}

.preloader-progress {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(280px, 80vw);
  animation: progressFade 0.8s ease-out 0.5s both;
}

@keyframes progressFade {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(201, 149, 46, 0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 232, 166, 0.1) 50%, transparent 100%);
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c9952e, #ffe8a6, #c9952e);
  border-radius: 2px;
  transition: width 0.2s ease;
  box-shadow: 0 0 10px rgba(255, 232, 166, 0.5);
}

.progress-text {
  margin-top: 12px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e7bd62;
  animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.preloader-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffe8a6;
  border-radius: 50%;
  opacity: 0;
}

.particle.p1 { left: 30%; top: 40%; animation: particleBurst 2s ease-out infinite 0s; }
.particle.p2 { left: 70%; top: 40%; animation: particleBurst 2s ease-out infinite 0.4s; }
.particle.p3 { left: 50%; top: 35%; animation: particleBurst 2s ease-out infinite 0.8s; }
.particle.p4 { left: 40%; top: 45%; animation: particleBurst 2s ease-out infinite 1.2s; }
.particle.p5 { left: 60%; top: 45%; animation: particleBurst 2s ease-out infinite 1.6s; }

@keyframes particleBurst {
  0% { opacity: 0; transform: scale(0) translate(0, 0); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: scale(1) translate(var(--tx, 20px), var(--ty, -30px)); }
}

.p1 { --tx: -30px; --ty: -40px; }
.p2 { --tx: 30px; --ty: -40px; }
.p3 { --tx: 0px; --ty: -50px; }
.p4 { --tx: -25px; --ty: -35px; }
.p5 { --tx: 25px; --ty: -35px; }

@media (max-width: 600px) {
  .preloader-ring-outer { width: 130px; height: 130px; }
  .preloader-ring-inner { width: 100px; height: 100px; }
  .preloader-ring-core { width: 75px; height: 75px; }
  .preloader-logo { width: 44px; height: 44px; }
  .preloader-welcome { letter-spacing: 4px; }
  .zodiac { font-size: 14px; }
  .preloader-orb { filter: blur(40px); }
}
  margin-top: 28px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e7bd62;
  z-index: 2;
  animation: preloaderTextPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderTextPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  font-display: swap;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 213, 117, 0.16), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(139, 92, 246, 0.14), transparent 28%),
    radial-gradient(circle at 50% 105%, rgba(201, 149, 46, 0.16), transparent 36%),
    linear-gradient(145deg, var(--night) 0%, var(--navy) 44%, var(--charcoal) 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 232, 166, 0.26) 0 1px, transparent 1.8px),
    linear-gradient(rgba(255, 232, 166, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 232, 166, 0.02) 1px, transparent 1px);
  background-size: 126px 126px, 86px 86px, 86px 86px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  right: -150px;
  bottom: -120px;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(201, 149, 46, 0.18);
  filter: blur(90px);
  pointer-events: none;
}

.astrology-strip {
  position: relative;
  z-index: 2;
  width: min(100%, 1400px);
  margin: 0 auto;
  overflow: hidden;
  border-block: 1px solid rgba(255, 232, 166, 0.32);
  background:
    linear-gradient(90deg, rgba(3, 4, 10, 0.98), rgba(19, 15, 35, 0.96), rgba(3, 4, 10, 0.98));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 232, 166, 0.18),
    0 0 50px rgba(201, 149, 46, 0.18);
}

.logo-header,
.banner-section {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(1008px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 232, 166, 0.32);
  border-radius: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 232, 166, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(18, 16, 23, 0.82), rgba(3, 4, 10, 0.92));
  box-shadow:
    0 26px 78px rgba(0, 0, 0, 0.56),
    inset 0 0 0 1px rgba(255, 232, 166, 0.06),
    0 0 48px rgba(201, 149, 46, 0.16);
}

.logo-header::after,
.banner-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 232, 166, 0.12),
    inset 0 0 34px rgba(3, 4, 10, 0.18);
}

.main-logo,
.banner-image {
  display: block;
  width: 100%;
  height: clamp(198px, 46.8vw, 558px);
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  filter: saturate(1.04) contrast(1.03) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.logo-header {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.banner-section {
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.banner-section:not(:last-of-type) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.banner-image {
  height: auto;
}

.bottom-heading {
  position: relative;
  z-index: 1;
  width: min(1008px, calc(100% - 32px));
  margin: clamp(18px, 3vw, 28px) auto clamp(14px, 2.5vw, 24px);
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(255, 232, 166, 0.28);
  border-radius: clamp(18px, 3vw, 28px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 232, 166, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(18, 16, 23, 0.88), rgba(3, 4, 10, 0.92));
  box-shadow:
    0 26px 78px rgba(0, 0, 0, 0.5),
    0 0 46px rgba(201, 149, 46, 0.14);
  text-align: center;
}

.heading-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 232, 166, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 232, 166, 0.08), rgba(201, 149, 46, 0.16), rgba(255, 232, 166, 0.08));
  color: var(--gold-light);
  font-size: clamp(0.74rem, 1.4vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 18px rgba(255, 232, 166, 0.08),
    0 0 24px rgba(201, 149, 46, 0.16);
}

.heading-kicker::before,
.heading-kicker::after {
  content: "✦";
  color: var(--gold-soft);
  font-size: 0.8em;
}

.bottom-heading h1 {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(1.9rem, 4.6vw, 4rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff6d8 0%, #ffe8a6 34%, #d7a43b 72%, #8f641b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(201, 149, 46, 0.28);
}

.bottom-heading h1::after {
  content: "";
  display: block;
  width: min(320px, 70%);
  height: 1px;
  margin: clamp(16px, 3vw, 24px) auto 0;
  background: linear-gradient(90deg, transparent, rgba(255, 232, 166, 0.76), transparent);
  box-shadow: 0 0 18px rgba(201, 149, 46, 0.28);
}

.about-copy {
  max-width: 820px;
  margin: clamp(18px, 3vw, 28px) auto 0;
  color: rgba(255, 248, 233, 0.78);
}

.about-copy h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
  color: var(--gold-soft);
}

.about-copy p {
  margin: 0 auto 12px;
  font-size: clamp(0.98rem, 1.7vw, 1.1rem);
  line-height: 1.75;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.services-section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(34px, 6vw, 70px);
}

.services-header {
  max-width: 760px;
  margin: 0 auto clamp(22px, 4vw, 34px);
  text-align: center;
}

.services-header span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 232, 166, 0.28);
  border-radius: 999px;
  background: rgba(201, 149, 46, 0.1);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.98;
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(201, 149, 46, 0.22);
}

.services-header p {
  margin: 14px auto 0;
  color: rgba(255, 248, 233, 0.74);
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

.service-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.divider-image {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  filter: drop-shadow(0 6px 20px rgba(201, 149, 46, 0.2)) saturate(1.05) contrast(1.02);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 232, 166, 0.26);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 232, 166, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(29, 21, 18, 0.92), rgba(5, 6, 13, 0.94));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(201, 149, 46, 0.12);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 232, 166, 0.48);
  box-shadow:
    0 32px 88px rgba(0, 0, 0, 0.56),
    0 0 44px rgba(201, 149, 46, 0.18);
}

.service-image {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 232, 166, 0.2);
  border-radius: 20px;
  background: #090912;
}

.service-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 8px 6px;
  text-align: center;
}

.service-content h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.02;
  color: var(--gold-light);
}

.service-content p {
  margin: 12px 0 18px;
  color: rgba(255, 248, 233, 0.72);
  font-size: 0.96rem;
  line-height: 1.65;
}

.service-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-btn:hover {
  transform: translateY(-2px);
}

.call-btn {
  border: 1px solid rgba(255, 232, 166, 0.38);
  background: linear-gradient(180deg, #ffe8a6, #c9952e);
  color: #170f08;
  box-shadow: 0 12px 26px rgba(201, 149, 46, 0.18);
}

.whatsapp-btn {
  border: 1px solid rgba(37, 211, 102, 0.34);
  background: linear-gradient(180deg, #35e77d, #159f4c);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.14);
}

@keyframes callRingPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 26px rgba(201, 149, 46, 0.18), 0 0 0 0 rgba(255, 232, 166, 0);
  }
  15% {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 12px 26px rgba(201, 149, 46, 0.22), 0 0 20px 6px rgba(255, 232, 166, 0.25);
  }
  30% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 26px rgba(201, 149, 46, 0.18), 0 0 0 0 rgba(255, 232, 166, 0);
  }
  45% {
    transform: translateY(-0.5px) scale(0.99);
    box-shadow: 0 12px 26px rgba(201, 149, 46, 0.2), 0 0 14px 4px rgba(255, 232, 166, 0.15);
  }
}

@keyframes whatsappRingPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.14), 0 0 0 0 rgba(37, 211, 102, 0);
  }
  15% {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.2), 0 0 20px 6px rgba(37, 211, 102, 0.3);
  }
  30% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.14), 0 0 0 0 rgba(37, 211, 102, 0);
  }
  45% {
    transform: translateY(-0.5px) scale(0.99);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.18), 0 0 14px 4px rgba(37, 211, 102, 0.2);
  }
}

.call-btn {
  animation: callRingPulse 4s ease-in-out infinite;
}

.call-btn:hover {
  animation: none;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 36px rgba(201, 149, 46, 0.28), 0 0 28px 8px rgba(255, 232, 166, 0.3);
}

.whatsapp-btn {
  animation: whatsappRingPulse 4s ease-in-out infinite;
  animation-delay: 2s;
}

.whatsapp-btn:hover {
  animation: none;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.24), 0 0 28px 8px rgba(37, 211, 102, 0.35);
}

.why-section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(34px, 6vw, 70px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 232, 166, 0.22);
  border-radius: clamp(24px, 4vw, 34px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 232, 166, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(18, 16, 23, 0.9), rgba(3, 4, 10, 0.94));
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(201, 149, 46, 0.14);
}

.why-header {
  max-width: 720px;
  margin: 0 auto clamp(22px, 4vw, 34px);
  text-align: center;
}

.why-header span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 232, 166, 0.3);
  border-radius: 999px;
  background: rgba(201, 149, 46, 0.12);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  line-height: 0.96;
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(201, 149, 46, 0.24);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-card,
.trust-block {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 232, 166, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 232, 166, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(29, 21, 18, 0.92), rgba(5, 6, 13, 0.94));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(201, 149, 46, 0.12);
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 245px;
  padding: 28px 22px;
  border-radius: 26px;
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 232, 166, 0.12), transparent 45%);
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 232, 166, 0.48);
  box-shadow:
    0 32px 88px rgba(0, 0, 0, 0.56),
    0 0 44px rgba(201, 149, 46, 0.18);
}

.why-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 232, 166, 0.42);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 232, 166, 0.2), rgba(201, 149, 46, 0.08));
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: 2rem;
  box-shadow: inset 0 0 18px rgba(255, 232, 166, 0.1), 0 0 24px rgba(201, 149, 46, 0.2);
}

.why-card strong {
  position: relative;
  display: block;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  line-height: 1.02;
  text-shadow: 0 0 24px rgba(201, 149, 46, 0.24);
}

.why-card p {
  position: relative;
  margin: 12px 0 0;
  color: rgba(255, 248, 233, 0.78);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.65;
}

.trust-block {
  max-width: 940px;
  margin: 22px auto 0;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 28px;
  text-align: center;
}

.trust-block h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
  color: var(--gold-light);
  text-shadow: 0 0 28px rgba(201, 149, 46, 0.22);
}

.trust-block p {
  max-width: 740px;
  margin: 14px auto 0;
  color: rgba(255, 248, 233, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.75;
}

.certificates-section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(34px, 6vw, 70px);
  padding: clamp(24px, 4vw, 42px) 0;
  overflow: hidden;
  border: 1px solid rgba(255, 232, 166, 0.22);
  border-radius: clamp(24px, 4vw, 34px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 232, 166, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(18, 16, 23, 0.9), rgba(3, 4, 10, 0.94));
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(201, 149, 46, 0.14);
}

.certificates-header {
  max-width: 720px;
  margin: 0 auto clamp(20px, 4vw, 32px);
  padding: 0 18px;
  text-align: center;
}

.certificates-header span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 232, 166, 0.3);
  border-radius: 999px;
  background: rgba(201, 149, 46, 0.12);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.certificates-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  line-height: 0.96;
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(201, 149, 46, 0.24);
}

.fixed-certificates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  width: min(940px, calc(100% - 36px));
  margin: 0 auto clamp(22px, 4vw, 34px);
}

.fixed-certificate-card {
  width: 100%;
  height: clamp(230px, 28vw, 330px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.fixed-certificate-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255, 232, 166, 0.52);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.58),
    0 0 46px rgba(201, 149, 46, 0.2);
}

.certificates-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.certificates-slider::before,
.certificates-slider::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: clamp(42px, 9vw, 130px);
  height: 100%;
  pointer-events: none;
}

.certificates-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 4, 10, 0.96), transparent);
}

.certificates-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 4, 10, 0.96), transparent);
}

.certificates-track {
  display: flex;
  width: max-content;
  animation: certificatesSlide 26s linear infinite;
}

.certificates-group {
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 3vw, 28px);
  padding: 0 clamp(18px, 3vw, 28px);
}

.certificate-card {
  flex: 0 0 clamp(240px, 28vw, 340px);
  width: clamp(240px, 28vw, 340px);
  height: clamp(310px, 38vw, 430px);
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 232, 166, 0.32);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 232, 166, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(29, 21, 18, 0.92), rgba(5, 6, 13, 0.94));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(201, 149, 46, 0.13);
}

.certificate-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  background: rgba(255, 248, 233, 0.04);
}

.reviews-section {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto clamp(34px, 6vw, 70px);
  padding: clamp(34px, 6vw, 68px) 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 232, 166, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 232, 166, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(18, 16, 23, 0.82), rgba(3, 4, 10, 0.94));
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.48),
    0 0 48px rgba(201, 149, 46, 0.12);
}

.reviews-intro {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto clamp(24px, 4vw, 38px);
  text-align: center;
}

.reviews-intro span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 232, 166, 0.3);
  border-radius: 999px;
  background: rgba(201, 149, 46, 0.12);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reviews-intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(2.35rem, 5.8vw, 5rem);
  line-height: 0.94;
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(201, 149, 46, 0.24);
}

.reviews-intro p {
  max-width: 850px;
  margin: 16px auto 0;
  color: rgba(255, 248, 233, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.8;
}

.reviews-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reviews-slider::before,
.reviews-slider::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: clamp(42px, 9vw, 140px);
  height: 100%;
  pointer-events: none;
}

.reviews-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 4, 10, 0.96), transparent);
}

.reviews-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 4, 10, 0.96), transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: reviewsSlide 72s linear infinite;
}

.reviews-group {
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 3vw, 26px);
  padding: 0 clamp(18px, 3vw, 26px);
}

.review-card {
  flex: 0 0 clamp(300px, 30vw, 382px);
  width: clamp(300px, 30vw, 382px);
  min-height: 274px;
  padding: 26px;
  border: 1px solid rgba(255, 232, 166, 0.3);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 232, 166, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 232, 166, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(29, 21, 18, 0.92), rgba(5, 6, 13, 0.94));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(201, 149, 46, 0.12);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.review-avatar {
  display: block;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border: 2px solid rgba(255, 232, 166, 0.46);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: radial-gradient(circle, rgba(255, 232, 166, 0.22), rgba(201, 149, 46, 0.08));
  box-shadow: inset 0 0 18px rgba(255, 232, 166, 0.1), 0 0 26px rgba(201, 149, 46, 0.22);
}

.review-top h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: 1.45rem;
  line-height: 1;
}

.review-top span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 248, 233, 0.58);
  font-size: 0.88rem;
}

.review-card p {
  margin: 0;
  color: rgba(255, 248, 233, 0.8);
  font-size: 0.98rem;
  line-height: 1.7;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-shadow: 0 0 18px rgba(201, 149, 46, 0.26);
}

.review-stars span {
  font-size: 0.98rem;
}

.review-stars small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid rgba(255, 232, 166, 0.26);
  border-radius: 999px;
  background: rgba(255, 232, 166, 0.08);
  color: rgba(255, 248, 233, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: none;
}

.video-reviews-section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(34px, 6vw, 70px);
  padding: clamp(26px, 4.5vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 232, 166, 0.24);
  border-radius: clamp(24px, 4vw, 34px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 232, 166, 0.13), transparent 44%),
    linear-gradient(145deg, rgba(255, 232, 166, 0.07), transparent 38%),
    linear-gradient(180deg, rgba(18, 16, 23, 0.9), rgba(3, 4, 10, 0.96));
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.52),
    0 0 48px rgba(201, 149, 46, 0.14);
}

.video-reviews-section::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255, 232, 166, 0.08);
  border-radius: clamp(18px, 3vw, 28px);
  background: radial-gradient(circle at 50% 44%, rgba(201, 149, 46, 0.12), transparent 46%);
}

.video-reviews-header {
  max-width: 820px;
  margin: 0 auto clamp(22px, 4vw, 34px);
  text-align: center;
}

.video-reviews-header span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 232, 166, 0.3);
  border-radius: 999px;
  background: rgba(201, 149, 46, 0.12);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-reviews-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
  line-height: 0.96;
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(201, 149, 46, 0.24);
}

.video-reviews-header p {
  max-width: 740px;
  margin: 14px auto 0;
  color: rgba(255, 248, 233, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.75;
}

.video-gallery-shell {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.video-gallery-frame {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 232, 166, 0.34);
  border-radius: clamp(24px, 4vw, 34px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 232, 166, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(12, 12, 20, 0.96), rgba(3, 4, 10, 0.98));
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.56),
    inset 0 0 0 1px rgba(255, 232, 166, 0.08),
    0 0 42px rgba(201, 149, 46, 0.18);
}

.video-gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 232, 166, 0.1),
    inset 0 -80px 120px rgba(0, 0, 0, 0.16);
}

.video-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  transition: transform 850ms cubic-bezier(0.22, 0.72, 0.24, 1);
  will-change: transform;
}

.video-review-slide {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 100%;
  height: 100%;
  padding: 10px;
  opacity: 0.52;
  transform: scale(0.985);
  transition: opacity 600ms ease, transform 850ms cubic-bezier(0.22, 0.72, 0.24, 1);
}

.video-review-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.review-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 232, 166, 0.18);
  border-radius: clamp(18px, 3vw, 26px);
  background: #03040a;
  object-fit: contain;
  object-position: center;
}

.video-gallery-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 680px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 232, 166, 0.22);
  border-radius: 999px;
  background: rgba(255, 232, 166, 0.07);
  color: rgba(255, 248, 233, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.video-gallery-note strong {
  color: var(--gold-light);
}

@keyframes reviewsSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes certificatesSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.floating-contact {
  position: fixed;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-contact:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5), 0 0 28px rgba(255, 232, 166, 0.22);
}

.floating-whatsapp {
  left: 16px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  background: linear-gradient(180deg, #35e77d, #159f4c);
}

.floating-call {
  right: 16px;
  border: 1px solid rgba(255, 232, 166, 0.42);
  background: linear-gradient(180deg, #ffe8a6, #c9952e);
  color: #170f08;
}


.astrology-strip::before,
.astrology-strip::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: clamp(42px, 10vw, 150px);
  height: 100%;
  pointer-events: none;
}

.astrology-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--night), transparent);
}

.astrology-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--night), transparent);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: scroll-strip 28s linear infinite;
}

.strip-group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  padding: 18px clamp(18px, 3vw, 36px);
  white-space: nowrap;
}

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 248, 233, 0.92);
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-item {
  gap: 0;
  padding: 8px 0;
}

.strip-logo {
  display: block;
  width: 100px;
  height: 50px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)) brightness(1.08) saturate(1.08);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.strip-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 24px rgba(201, 149, 46, 0.46)) brightness(1.13) saturate(1.1);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(255, 232, 166, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 232, 166, 0.22), rgba(201, 149, 46, 0.07)),
    rgba(3, 4, 10, 0.36);
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: 1.22rem;
  line-height: 1;
  box-shadow:
    inset 0 0 18px rgba(255, 232, 166, 0.1),
    0 0 22px rgba(201, 149, 46, 0.22);
}

@keyframes scroll-strip {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .strip-track {
    animation-duration: 22s;
  }

  .strip-group {
    gap: 18px;
    padding: 14px 18px;
  }

  .icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 1.08rem;
  }

  .strip-logo {
    width: 80px;
    height: 40px;
    border-radius: 8px;
  }

  .logo-item {
    padding: 6px 0;
  }

  .logo-header,
  .banner-section,
  .bottom-heading {
    width: 100%;
    margin-top: 0;
    border-inline: 0;
    border-radius: 0;
  }

  .bottom-heading {
    margin-bottom: 24px;
    padding: 22px 14px;
  }

  .services-section {
    width: min(100% - 20px, 1180px);
    margin-bottom: 34px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-divider {
    padding: 4px 0;
  }

  .divider-image {
    max-width: 100%;
    border-radius: 10px;
  }

  .service-card {
    border-radius: 24px;
  }

  .service-image {
    height: 210px;
  }

  .service-actions {
    grid-template-columns: 1fr;
  }

  .why-section {
    width: min(100% - 20px, 1180px);
    margin-bottom: 34px;
    padding: 22px 12px;
  }

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

  .why-card {
    min-height: 170px;
    border-radius: 24px;
  }

  .trust-block {
    border-radius: 24px;
    padding: 24px 16px;
  }

  .certificates-section {
    width: min(100% - 20px, 1180px);
    margin-bottom: 34px;
    padding: 22px 0;
    border-radius: 24px;
  }

  .certificates-track {
    animation-duration: 22s;
  }

  .certificate-card {
    flex-basis: 250px;
    width: 250px;
    height: 320px;
    padding: 8px;
    border-radius: 22px;
  }

  .fixed-certificates {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 520px);
    gap: 16px;
    margin-bottom: 20px;
  }

  .fixed-certificate-card {
    width: 100%;
    height: clamp(210px, 56vw, 300px);
  }

  .reviews-section {
    padding: 30px 0;
    margin-bottom: 34px;
  }

  .video-reviews-section {
    width: min(100% - 20px, 1180px);
    margin-bottom: 34px;
    padding: 24px 12px;
    border-radius: 24px;
  }

  .video-reviews-section::before {
    inset: 8px;
  }

  .video-gallery-frame {
    width: min(100%, 360px);
    border-radius: 24px;
  }

  .video-review-slide {
    padding: 8px;
  }

  .video-gallery-note {
    flex-direction: column;
    width: min(100%, 360px);
    gap: 3px;
    border-radius: 22px;
    padding: 12px 14px;
  }

  .reviews-intro {
    width: min(100% - 22px, 980px);
  }

  .reviews-track {
    animation-duration: 58s;
  }

  .review-card {
    flex-basis: 296px;
    width: 296px;
    min-height: 260px;
    padding: 20px;
    border-radius: 24px;
  }

  .review-avatar {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .floating-contact {
    bottom: 14px;
    min-width: 96px;
    min-height: 48px;
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .floating-whatsapp {
    left: 10px;
  }

  .floating-call {
    right: 10px;
  }

  .main-logo,
  .banner-image {
    height: clamp(189px, 70vw, 378px);
    border-radius: 0;
  }

  .banner-image {
    height: auto;
  }
}

@media (min-width: 601px) and (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-divider {
    grid-column: span 2;
  }

  .divider-image {
    max-width: 560px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.why-icon {
  animation: iconFloat 2.8s ease-in-out infinite;
  will-change: transform;
}

.floating-contact {
  animation: floatingPulse 3.6s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, box-shadow;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes floatingPulse {
  0%, 72%, 100% {
    transform: scale(1);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  }

  76% {
    transform: scale(1.045) rotate(-1.4deg);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.46), 0 0 22px rgba(255, 232, 166, 0.2);
  }

  80% {
    transform: scale(1.045) rotate(1.4deg);
  }

  84% {
    transform: scale(1.035) rotate(-0.8deg);
  }

  88% {
    transform: scale(1.02) rotate(0.8deg);
  }
}

.premium-footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(34px, 6vw, 70px);
  border-top: 1px solid rgba(255, 232, 166, 0.22);
  background:
    linear-gradient(180deg, rgba(3, 4, 10, 0.96), rgba(17, 16, 23, 0.98)),
    radial-gradient(circle at 50% 100%, rgba(201, 149, 46, 0.12), transparent 50%);
  overflow: hidden;
}

.premium-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 232, 166, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(201, 149, 46, 0.06) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(231, 189, 98, 0.04) 0%, transparent 40%);
  animation: footerOrb 20s linear infinite;
  pointer-events: none;
}

.premium-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 232, 166, 0.018) 2px,
      rgba(255, 232, 166, 0.018) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 232, 166, 0.018) 2px,
      rgba(255, 232, 166, 0.018) 4px
    );
  background-size: 60px 60px, 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 70%);
  pointer-events: none;
}

.footer-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 4vw, 32px);
  text-align: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.brand-symbol {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 232, 166, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 232, 166, 0.18), rgba(201, 149, 46, 0.08));
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: 1.4rem;
  animation: brandSymbolRotate 8s linear infinite;
  box-shadow: inset 0 0 18px rgba(255, 232, 166, 0.1), 0 0 22px rgba(201, 149, 46, 0.2);
}

.footer-brand h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(201, 149, 46, 0.22);
  animation: brandGlow 3s ease-in-out infinite alternate;
}

.brand-tagline {
  margin: 0;
  max-width: 480px;
  color: rgba(255, 248, 233, 0.78);
  font-size: clamp(0.96rem, 1.6vw, 1.08rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  animation: taglineFade 4s ease-in-out infinite alternate;
}

.footer-call-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 28px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background:
    linear-gradient(180deg, var(--gold-light), var(--gold)),
    linear-gradient(180deg, rgba(255, 232, 166, 0.12), transparent);
  color: var(--night);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow:
    0 16px 42px rgba(201, 149, 46, 0.24),
    inset 0 0 0 1px rgba(255, 232, 166, 0.18);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: footerBtnGlow 2s ease-in-out infinite alternate;
  overflow: hidden;
}

.btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: inherit;
  transform: translate(-50%, -50%);
  animation: btnPulseRipple 2s ease-out infinite;
  pointer-events: none;
}

.footer-call-btn:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--gold-light);
  box-shadow:
    0 22px 56px rgba(201, 149, 46, 0.32),
    0 0 32px rgba(255, 232, 166, 0.18),
    inset 0 0 0 1px rgba(255, 232, 166, 0.24);
}

.btn-icon {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  filter: drop-shadow(0 2px 4px rgba(3, 4, 10, 0.2));
}

.btn-text {
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(255, 232, 166, 0.3);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-legal-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 232, 166, 0.26);
  border-radius: 999px;
  background: rgba(255, 232, 166, 0.06);
  color: rgba(255, 248, 233, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-legal-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 232, 166, 0.5);
  background: rgba(201, 149, 46, 0.14);
  color: var(--gold-light);
}

.footer-legal-note {
  max-width: 720px;
  margin: -10px auto 0;
  color: rgba(255, 248, 233, 0.6);
  font-size: clamp(0.82rem, 1.35vw, 0.92rem);
  line-height: 1.65;
}

.footer-email {
  text-align: center;
  margin: 8px auto;
  color: #c9952e;
  font-size: clamp(0.82rem, 1.2vw, 0.9rem);
  font-weight: 500;
}

.footer-copyright {
  margin-top: 8px;
  padding-top: clamp(16px, 3vw, 24px);
  border-top: 1px solid rgba(255, 232, 166, 0.12);
  width: 100%;
}

.legal-page-shell {
  position: relative;
  z-index: 1;
  width: min(1000px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 70px) 0 clamp(18px, 4vw, 42px);
}

.legal-hero,
.legal-content-card {
  border: 1px solid rgba(255, 232, 166, 0.26);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 232, 166, 0.13), transparent 44%),
    linear-gradient(180deg, rgba(18, 16, 23, 0.92), rgba(3, 4, 10, 0.96));
  box-shadow:
    0 26px 78px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(201, 149, 46, 0.12);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  padding: clamp(26px, 5vw, 52px);
  border-radius: clamp(22px, 4vw, 34px);
  text-align: center;
}

.legal-home-link {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 232, 166, 0.24);
  border-radius: 999px;
  background: rgba(255, 232, 166, 0.06);
  color: rgba(255, 248, 233, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-hero span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 232, 166, 0.3);
  border-radius: 999px;
  background: rgba(201, 149, 46, 0.12);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.96;
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(201, 149, 46, 0.24);
}

.legal-hero p {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(255, 248, 233, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.75;
}

.legal-content-card {
  padding: clamp(24px, 4vw, 44px);
  border-radius: clamp(22px, 4vw, 30px);
}

.legal-content-card h2 {
  margin: 28px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-display: swap;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.05;
  color: var(--gold-light);
}

.legal-content-card h2:first-child {
  margin-top: 0;
}

.legal-content-card p {
  margin: 0;
  color: rgba(255, 248, 233, 0.76);
  font-size: clamp(0.98rem, 1.6vw, 1.05rem);
  line-height: 1.78;
}

.footer-copyright p {
  margin: 0 0 12px;
  color: rgba(255, 248, 233, 0.56);
  font-size: clamp(0.82rem, 1.4vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.star {
  color: var(--gold-soft);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  animation: starTwinkle 3s ease-in-out infinite;
}

.star:nth-child(2) {
  animation-delay: 0.6s;
  color: var(--gold-light);
}

.star:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes footerBtnGlow {
  from {
    box-shadow:
      0 16px 42px rgba(201, 149, 46, 0.24),
      inset 0 0 0 1px rgba(255, 232, 166, 0.18);
  }

  to {
    box-shadow:
      0 16px 42px rgba(201, 149, 46, 0.28),
      0 0 24px rgba(255, 232, 166, 0.12),
      inset 0 0 0 1px rgba(255, 232, 166, 0.22);
  }
}

@keyframes footerOrb {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg) scale(1.1);
  }
}

@keyframes brandSymbolRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes brandGlow {
  from {
    text-shadow: 0 0 24px rgba(201, 149, 46, 0.22);
  }

  to {
    text-shadow: 0 0 32px rgba(255, 232, 166, 0.34);
  }
}

@keyframes taglineFade {
  from {
    opacity: 0.78;
    transform: translateY(0);
  }

  to {
    opacity: 0.92;
    transform: translateY(-2px);
  }
}

@keyframes btnPulseRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.3;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
