:root {
  --primary-purple: #8a4f9f;
  --secondary-purple: #6d3b8d;
  --light-purple: #9c5bb2;
  --dark-purple: #7b4aa3;
  --text-dark: #333;
  --text-light: #ffffff;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --border-radius: 20px;
  --transition: all 0.3s ease;
  --site-bg-start: #f8f4ff;
  --site-bg-end: #e5dbf5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background: linear-gradient(135deg, var(--site-bg-start), var(--site-bg-end));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  z-index: 1000;
  padding: 14px 0;
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-purple),
    var(--secondary-purple)
  );
  opacity: 0.6;
  border-radius: 2px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 28px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}
.nav-menu .label-mobile {
  display: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-purple);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-purple),
    var(--secondary-purple)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.nav-menu a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(156, 91, 178, 0.18) 0%,
    rgba(156, 91, 178, 0) 60%
  );
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.nav-menu a:hover::before {
  width: 120px;
  height: 120px;
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
}
.nav-cta {
  background: transparent;
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.nav-cta:hover {
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--secondary-purple)
  );
  color: var(--text-light);
  box-shadow: 0 8px 24px rgba(138, 79, 159, 0.4);
}

.nav-divider {
  height: 1px;
  background: #e0e0e0;
  margin-top: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/images/sensualimage.jpg") center/cover;
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(138, 79, 159, 0.7),
    rgba(109, 59, 141, 0.8)
  );
}

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

.hero-quote {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-button {
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--secondary-purple)
  );
  color: var(--text-light);
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(138, 79, 159, 0.4);
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(138, 79, 159, 0.6);
}

/* Hero Wave Cut */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 140px;
}

.hero-wave .wave-fill {
  fill: #ffffff;
}
.hero-wave .wave-stroke {
  fill: none;
  stroke: var(--light-purple);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Wave Dividers */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

/* About Section */
.about {
  padding: 100px 0;
  background: transparent;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-purple);
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.image-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, var(--light-purple), var(--dark-purple));
  border-radius: var(--border-radius);
  z-index: -1;
}

.portrait-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

/* Services Section */
.services {
  padding: 100px 0 0;
  background: linear-gradient(135deg, #f8f4ff, #f0ebf8);
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.service-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(255, 255, 255, 0.98)
  );
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(156, 91, 178, 0.18);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 12%,
    rgba(255, 255, 255, 0) 24%
  );
  transform: translateX(-140%) skewX(-20deg);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  pointer-events: none;
}

.service-card::before {
  display: none;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--secondary-purple)
  );
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(138, 79, 159, 0.28);
  border-color: rgba(156, 91, 178, 0.45);
  filter: saturate(1.06);
}

.service-card:hover::after {
  opacity: 1;
  transform: translateX(140%) skewX(-20deg);
}

.card-icon {
  margin-bottom: 25px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--secondary-purple)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  color: var(--text-light);
  position: relative;
  box-shadow: 0 0 0 8px rgba(156, 91, 178, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(156, 91, 178, 0.35);
  transform: scale(0.9);
  opacity: 0;
}

.service-card:hover .icon-circle {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 0 12px rgba(156, 91, 178, 0.18);
}

.service-card:hover .icon-circle::after {
  animation: ringPulse 1s ease-out;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 20px;
  text-transform: none;
  line-height: 1.3;
  transition: transform 0.3s ease, filter 0.3s ease;
  min-height: 2.6em;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-dark);
  transition: transform 0.3s ease, filter 0.3s ease;
  min-height: 4.8em;
}

.service-card:hover h3,
.service-card:hover p {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.card-button {
  background: linear-gradient(135deg, #caa7d6, var(--light-purple));
  color: var(--text-light);
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  align-self: center;
}

.card-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-160%) skewX(-20deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.service-card:hover .card-button::before {
  transform: translateX(200%) skewX(-20deg);
}

.card-button:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(156, 91, 178, 0.35);
}

.read-more-button {
  background: linear-gradient(135deg, #caa7d6, var(--light-purple));
  color: var(--text-light);
  border: none;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
  display: block;
  margin: 12px auto 0;
}
.read-more-button:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 20px rgba(156, 91, 178, 0.3);
}

.read-less-button {
  background: transparent;
  color: var(--primary-purple);
  border: 1px solid var(--primary-purple);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  display: block;
  margin: 10px auto 0;
}
.read-less-button:hover {
  background: rgba(138, 79, 159, 0.08);
}
/* flame hover removed */

.card-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.card-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(156, 91, 178, 0.35);
}
.card-dots .dot.active {
  background: var(--primary-purple);
}
/* Approaches Section */
.approaches {
  padding: 100px 0;
  background: transparent;
}

.approaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
  margin-top: 60px;
}

.approach-card {
  background: linear-gradient(135deg, #f8f4ff, #f0ebf8);
  border-radius: var(--border-radius);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.approach-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.approach-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 12%,
    rgba(255, 255, 255, 0) 24%
  );
  transform: translateX(-140%) skewX(-20deg);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  pointer-events: none;
}

.approach-card:hover::after {
  opacity: 1;
  transform: translateX(140%) skewX(-20deg);
}
.approach-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 25px;
  text-transform: uppercase;
  line-height: 1.3;
}

.approach-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.social {
  padding: 100px 0;
  background: transparent;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.instagram-embed {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instagram-embed .instagram-media,
.instagram-embed blockquote {
  width: 100% !important;
  max-width: 540px !important;
  margin: 0 auto !important;
}

.social-button {
  background: linear-gradient(135deg, #caa7d6, var(--light-purple));
  color: var(--text-light);
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.social-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-160%) skewX(-20deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.social-button:hover::before {
  transform: translateX(200%) skewX(-20deg);
}

.social-button:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(156, 91, 178, 0.35);
}
/* Footer */
.footer {
  position: relative;
  color: var(--text-dark);
  padding: 80px 0;
  background: linear-gradient(135deg, var(--site-bg-start), var(--site-bg-end));
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 45%;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(6px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  height: 50px;
  width: 50px;
}
.footer-copy {
  opacity: 0.9;
  font-size: 0.95rem;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: var(--primary-purple);
}
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-purple),
    var(--secondary-purple)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.footer-col a:hover::after {
  transform: scaleX(1);
}
.footer-actions {
  margin-top: 16px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes ringPulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  30% {
    opacity: 0.6;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}
