:root {
  --purple: #5a1b7a;
  --purple-dark: #351047;
  --gold: #d6a846;
  --gold-soft: #f4dfab;
  --green: #2f7d50;
  --green-soft: #e8f3ea;
  --white: #ffffff;
  --ink: #24112d;
  --muted: #6d6473;
  --surface: rgba(255, 255, 255, 0.76);
  --shadow: 0 24px 70px rgba(54, 16, 71, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  background: linear-gradient(180deg, #fff 0%, #fbf8f1 44%, #f6fbf7 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 50;
  pointer-events: none;
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(53, 16, 71, 0.12);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  background: transparent;
}

.brand-logo {
  display: block;
  width: auto;
  height: 72px;
  max-width: min(430px, 42vw);
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: radial-gradient(circle at 35% 28%, var(--gold) 0 18%, var(--purple) 58%, var(--purple-dark) 100%);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: var(--purple);
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--purple-dark);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: var(--purple);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  min-height: 100svh;
  padding-top: 148px;
  display: flex;
  align-items: center;
  color: var(--white);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/veda-cover.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: transparent;
}

.leaf-field {
  display: none;
}

.leaf-field span {
  position: absolute;
  z-index: -1;
  width: 38px;
  height: 18px;
  border-radius: 100% 0 100% 0;
  background: rgba(244, 223, 171, 0.28);
  animation: floatLeaf 11s linear infinite;
}

.leaf-field span:nth-child(1) {
  left: 8%;
  top: 38%;
}

.leaf-field span:nth-child(2) {
  left: 28%;
  top: 76%;
  animation-delay: -4s;
}

.leaf-field span:nth-child(3) {
  right: 18%;
  top: 28%;
  animation-delay: -7s;
}

.leaf-field span:nth-child(4) {
  right: 8%;
  top: 70%;
  animation-delay: -2s;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  grid-column: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-block;
  padding: 8px 12px;
  color: #f8dda0;
  background: rgba(53, 16, 71, 0.84);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.35rem);
}

h2 {
  margin-bottom: 18px;
  color: var(--purple-dark);
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--purple-dark);
  font-size: 1.2rem;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.8;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: var(--purple-dark);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  box-shadow: 0 18px 34px rgba(214, 168, 70, 0.26);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-outline {
  color: var(--purple);
  border-color: rgba(90, 27, 122, 0.22);
  background: rgba(255, 255, 255, 0.7);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  padding: 12px;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 35% center;
}

.hero-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(230px, calc(100% - 56px));
  padding: 18px;
  border-radius: var(--radius);
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.hero-badge span,
.hero-badge strong {
  display: block;
}

.hero-badge span {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
}

.section-heading {
  width: min(730px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.treatment-card {
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.treatment-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 84px rgba(54, 16, 71, 0.24);
}

.treatment-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.treatment-card div {
  padding: 24px;
}

.icon-pill,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--purple);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-soft), #ffffff);
  box-shadow: inset 0 0 0 1px rgba(214, 168, 70, 0.28);
}

.treatment-card p,
.feature-card p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.why-us {
  background:
    linear-gradient(135deg, rgba(90, 27, 122, 0.06), rgba(47, 125, 80, 0.1)),
    #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid rgba(90, 27, 122, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(47, 125, 80, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 168, 70, 0.48);
}

.feature-icon {
  color: var(--green);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.testimonial-frame {
  position: relative;
  min-height: 310px;
  padding: 42px;
  overflow: hidden;
}

.testimonial-track {
  position: relative;
  min-height: 190px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-slide p {
  color: var(--purple-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.35;
}

.testimonial-slide strong,
.testimonial-slide span {
  display: block;
}

.testimonial-slide strong {
  color: var(--green);
}

.testimonial-slide span {
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(90, 27, 122, 0.18);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.dot.active {
  width: 48px;
  background: var(--gold);
}

.contact {
  background: linear-gradient(180deg, #fff, #f7f1fb);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
}

.contact-copy,
.map-card {
  min-height: 420px;
}

.contact-copy {
  padding: 42px 0;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  color: var(--purple-dark);
  font-weight: 700;
}

.contact-list a,
.contact-list span {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.map-card {
  padding: 14px;
}

.map-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  height: 100%;
  min-height: 392px;
  border-radius: var(--radius);
  color: var(--purple-dark);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(214, 168, 70, 0.22), transparent 22%),
    radial-gradient(circle at 22% 22%, rgba(47, 125, 80, 0.16), transparent 18%),
    radial-gradient(circle at 82% 74%, rgba(90, 27, 122, 0.14), transparent 20%),
    linear-gradient(rgba(90, 27, 122, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 27, 122, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #fbf7ef 48%, #eef8f0 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 42px 42px, 42px 42px, 100% 100%;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(90, 27, 122, 0.16);
}

.map-placeholder::before,
.map-placeholder::after {
  position: absolute;
  content: "";
  z-index: -1;
  border-radius: 999px;
  opacity: 0.74;
  filter: blur(0.2px);
}

.map-placeholder::before {
  width: 140%;
  height: 46px;
  left: -18%;
  top: 28%;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, rgba(90, 27, 122, 0.08), rgba(214, 168, 70, 0.34), rgba(90, 27, 122, 0.08));
}

.map-placeholder::after {
  width: 48px;
  height: 140%;
  left: 66%;
  top: -20%;
  transform: rotate(24deg);
  background: linear-gradient(180deg, rgba(47, 125, 80, 0.08), rgba(47, 125, 80, 0.22), rgba(47, 125, 80, 0.08));
}

.map-content {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 54px rgba(54, 16, 71, 0.14);
  animation: mapCardFloat 4.8s ease-in-out infinite;
}

.map-road {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(90, 27, 122, 0.08), 0 10px 24px rgba(54, 16, 71, 0.08);
}

.map-road-one {
  width: 120%;
  height: 30px;
  left: -12%;
  bottom: 22%;
  transform: rotate(14deg);
}

.map-road-two {
  width: 34px;
  height: 120%;
  right: 22%;
  top: -10%;
  transform: rotate(-12deg);
}

.route-line {
  position: absolute;
  z-index: 2;
  width: min(360px, 68%);
  height: 190px;
  border: 5px dashed rgba(90, 27, 122, 0.68);
  border-right-color: transparent;
  border-bottom-color: rgba(214, 168, 70, 0.88);
  border-radius: 56% 44% 48% 52%;
  transform: rotate(-12deg);
  animation: routePulse 2.4s ease-in-out infinite;
}

.route-dot {
  position: absolute;
  z-index: 3;
  width: 16px;
  height: 16px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 9px rgba(214, 168, 70, 0.2);
  animation: travelDot 4.5s ease-in-out infinite;
}

.route-dot-one {
  left: 27%;
  top: 62%;
}

.route-dot-two {
  right: 28%;
  top: 30%;
  animation-delay: -2.2s;
}

.mini-pin {
  position: absolute;
  z-index: 3;
  width: 26px;
  height: 26px;
  border: 7px solid var(--green);
  border-radius: 50% 50% 50% 0;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(47, 125, 80, 0.18);
  animation: pinBounce 2.8s ease-in-out infinite;
}

.mini-pin-start {
  left: 16%;
  bottom: 18%;
  transform: rotate(-45deg);
}

.mini-pin-end {
  right: 18%;
  top: 17%;
  border-color: var(--gold);
  transform: rotate(-45deg);
  animation-delay: -1.1s;
}

.compass-ring {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(90, 27, 122, 0.18);
  border-radius: 50%;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 800;
  background:
    conic-gradient(from 20deg, rgba(214, 168, 70, 0.9), rgba(255, 255, 255, 0.9), rgba(47, 125, 80, 0.8), rgba(255, 255, 255, 0.9), rgba(214, 168, 70, 0.9));
  box-shadow: 0 14px 30px rgba(54, 16, 71, 0.12);
  animation: compassTurn 8s linear infinite;
}

.map-pin {
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border: 10px solid var(--purple);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(90, 27, 122, 0.24);
  animation: pinPulse 2.6s ease-in-out infinite;
}

.map-placeholder strong,
.map-placeholder small,
.map-placeholder em {
  display: block;
}

.map-placeholder small {
  margin-top: 6px;
  color: var(--muted);
}

.map-placeholder em {
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--green);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  background: var(--green-soft);
}

.footer {
  padding: 44px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--purple-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
}

.footer .brand strong,
.footer .brand small {
  color: var(--white);
}

.footer-brand {
  width: fit-content;
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
}

.footer-brand .brand-logo {
  width: auto;
  height: 78px;
  max-width: min(430px, 88vw);
}

.footer-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.94rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: var(--gold);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.copyright {
  width: min(1120px, calc(100% - 40px));
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatLeaf {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0) rotate(0deg);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(72px, -160px, 0) rotate(160deg);
  }
}

@keyframes mapCardFloat {

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

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

@keyframes routePulse {

  0%,
  100% {
    opacity: 0.64;
    filter: drop-shadow(0 0 0 rgba(214, 168, 70, 0));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(214, 168, 70, 0.44));
  }
}

@keyframes travelDot {

  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.58;
  }

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

@keyframes pinBounce {

  0%,
  100% {
    transform: translateY(0) rotate(-45deg);
  }

  50% {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@keyframes pinPulse {

  0%,
  100% {
    transform: rotate(-45deg) scale(1);
    box-shadow: 0 12px 28px rgba(90, 27, 122, 0.24), 0 0 0 0 rgba(214, 168, 70, 0.34);
  }

  50% {
    transform: rotate(-45deg) scale(1.08);
    box-shadow: 0 16px 36px rgba(90, 27, 122, 0.28), 0 0 0 14px rgba(214, 168, 70, 0);
  }
}

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

@media (max-width: 960px) {

  .hero-grid,
  .testimonial-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    grid-column: auto;
  }

  .card-grid.three,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    max-width: 560px;
  }

  .testimonial-frame {
    min-height: 340px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    inset: 10px 0 auto;
  }

  .nav-shell {
    width: calc(100% - 20px);
    min-height: 72px;
    padding: 9px 12px;
  }

  .brand-logo {
    height: 56px;
    max-width: min(270px, 66vw);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 40px rgba(53, 16, 71, 0.16);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 10px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .card-grid.three,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .treatment-card img {
    height: 218px;
  }

  .feature-card {
    min-height: auto;
  }

  .testimonial-frame {
    min-height: 390px;
    padding: 28px;
  }

  .contact-copy,
  .map-card {
    min-height: auto;
  }

  .contact-copy {
    padding: 0;
  }

  .map-content {
    padding: 24px 20px;
  }

  .route-line {
    width: 76%;
    height: 150px;
  }

  .compass-ring {
    width: 48px;
    height: 48px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 440px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .brand-logo {
    height: 46px;
    max-width: 220px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-card img {
    aspect-ratio: 1 / 1.05;
  }

  .hero-badge {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .testimonial-frame {
    min-height: 430px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
