/* ============================================
   PURPLE VENTURE — PREMIUM WEBSITE STYLESHEET
   Author: Purple Venture UI System
   ============================================ */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --primary: #780061;
  --primary-dark: #5a0048;
  --primary-light: #9d0080;
  --primary-pale: #f5e8f2;
  --accent: #c06aa0;
  --accent-light: #e8b4d8;
  --accent-pale: #fdf0f9;

  --lavender: #d4a0c8;
  --lavender-light: #ede0f5;
  --lavender-soft: #f8f0fc;

  --white: #ffffff;
  --off-white: #fdfbff;
  --surface: #f9f4fb;
  --border: rgba(120, 0, 97, 0.12);

  --text-dark: #1a0d19;
  --text-mid: #4a2a44;
  --text-light: #8a6080;
  --text-muted: #b09ab0;

  --shadow-sm: 0 2px 12px rgba(120, 0, 97, 0.08);
  --shadow-md: 0 8px 32px rgba(120, 0, 97, 0.12);
  --shadow-lg: 0 20px 60px rgba(120, 0, 97, 0.18);
  --shadow-xl: 0 32px 80px rgba(120, 0, 97, 0.22);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --section-pad: 100px;
  --container-max: 1200px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ---- LOADING SCREEN ---- */
.loader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo { width: 80px; height: 80px; margin: 0 auto 16px; }
.loader-circle { animation: drawCircle 1.5s ease forwards; }
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
.loader-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: 0.05em;
  animation: fadeIn 1s 0.5s both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ---- TYPOGRAPHY SYSTEM ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(120, 0, 97, 0.15);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}
.section-title em {
  font-style: italic;
  color: var(--primary);
}
.section-sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.8;
}
.section-header { margin-bottom: 60px; }
.section-header .section-sub { margin-top: 16px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 6px 24px rgba(120, 0, 97, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(120, 0, 97, 0.45);
}
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ---- GLASS CARD ---- */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: white;
  border-bottom: 1px solid rgba(120, 0, 97, 0.1);
  box-shadow: 0 2px 20px rgba(120, 0, 97, 0.08);
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(120,0,97,0.3);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
}
.logo-text span { color: var(--primary); display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: var(--primary-pale);
  color: var(--primary);
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  color: white !important;
  box-shadow: 0 4px 14px rgba(120,0,97,0.3);
  padding: 9px 20px !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(120,0,97,0.4) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--primary-pale); color: var(--primary); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 100px 24px 40px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-slow);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-link { color: var(--text-mid); width: 100%; padding: 12px 16px !important; border-radius: var(--radius-sm) !important; }
  .nav-link:hover { background: var(--primary-pale) !important; color: var(--primary) !important; }
  .nav-cta { background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important; color: white !important; width: 100%; justify-content: center; margin-top: 16px; }
  .nav-dropdown .dropdown-menu { position: static; transform: none; box-shadow: none; background: var(--surface); padding: 4px 0 4px 16px; opacity: 1; visibility: visible; }
}
@media (max-width: 480px) { .nav-container { padding: 0 20px; } }

/* ============================================
   HERO — IMAGE SLIDER
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 73px; /* height of fixed navbar */
  height: calc(100vh - 73px);
}

/* Slider track */
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Individual slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--slide-img);
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1s ease, transform 1.2s ease;
  transform: scale(1.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.hero-slide.prev {
  opacity: 0;
  transform: scale(1.04);
  z-index: 1;
}

/* Dark overlay on each slide */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(60, 0, 50, 0.45) 0%,
    rgba(80, 0, 65, 0.62) 50%,
    rgba(40, 0, 35, 0.72) 100%
  );
}

/* Content centred over the image */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
  animation: slideContentIn 0.8s ease both;
}
.hero-slide:not(.active) .hero-content { animation: none; }
@keyframes slideContentIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero-brand {
  display: block;
  font-weight: 600;
  color: white;
  font-size: clamp(2.8rem, 7.5vw, 5.8rem);
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 18px;
}
.heart { display: inline-block; animation: heartbeat 2s ease-in-out infinite; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.8;
}
.br-hide { display: inline; }
@media (max-width: 600px) { .br-hide { display: none; } }

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  cursor: pointer;
}
.hero-arrow:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.1); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
@media (max-width: 600px) {
  .hero-arrow { width: 40px; height: 40px; font-size: 1.3rem; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
  cursor: pointer;
}
.hero-dot.active {
  background: white;
  width: 28px;
  border-radius: 5px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 600px) { .hero-scroll-hint { display: none; } }

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: white;
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
}
.stats-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 16px 24px;
  position: relative;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px; height: 50px;
  background: var(--border);
}
@media (max-width: 600px) { .stat-divider { display: none; } .stat-item { border-bottom: 1px solid var(--border); } }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  max-width: 440px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  margin: 0 auto;
}
.img-abstract { position: relative; width: 220px; height: 220px; }
.abstract-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.r1 { width: 220px; height: 220px; animation: spinSlow 20s linear infinite; }
.r2 { width: 160px; height: 160px; animation: spinSlow 15s linear infinite reverse; border-style: dashed; }
.r3 { width: 100px; height: 100px; animation: spinSlow 10s linear infinite; }
@keyframes spinSlow { to { transform: translate(-50%, -50%) rotate(360deg); } }
.abstract-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-family: var(--font-display);
}
.abstract-center span { display: block; font-size: 1.1rem; font-weight: 600; line-height: 1.2; }

.about-card-float, .about-card-float2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  min-width: 180px;
}
.about-card-float { bottom: 40px; right: -24px; animation: floatY 6s ease-in-out infinite; }
.about-card-float2 { top: 40px; left: -24px; animation: floatY 7s ease-in-out infinite 2s; }
.about-card-float strong, .about-card-float2 strong { display: block; color: var(--text-dark); font-size: 0.88rem; }
.about-card-float p, .about-card-float2 p { color: var(--text-light); margin: 0; font-size: 0.78rem; }
.about-card-icon { font-size: 1.5rem; }
@media (max-width: 600px) { .about-card-float, .about-card-float2 { display: none; } }

.about-lead {
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-body { color: var(--text-mid); margin-bottom: 16px; }
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}
.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-pale);
  border: 1px solid rgba(120,0,97,0.15);
  padding: 7px 16px;
  border-radius: var(--radius-full);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-pad) 0;
  background: white;
  position: relative;
  overflow: hidden;
}
.services-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20px 20px, rgba(120,0,97,0.03) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--card-color), var(--card-glow));
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.service-card--featured {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  border-color: transparent;
  color: white;
}
.service-card--featured::before { height: 0; }
.service-card--featured .card-tag { background: rgba(255,255,255,0.2); color: white; border-color: rgba(255,255,255,0.3); }
.service-card--featured .card-title { color: white; }
.service-card--featured .card-title em { color: var(--accent-light); }
.service-card--featured .card-desc { color: rgba(255,255,255,0.8); }
.service-card--featured .card-features li { color: rgba(255,255,255,0.75); }
.service-card--featured .card-features li::before { color: rgba(255,255,255,0.6); }
.service-card--featured .card-btn { background: rgba(255,255,255,0.2); color: white; border: 1px solid rgba(255,255,255,0.3); }
.service-card--featured .card-btn:hover { background: rgba(255,255,255,0.35); }

.card-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--card-color) 0%, transparent 70%);
  top: -80px; right: -80px;
  opacity: 0.2;
  pointer-events: none;
  transition: opacity 0.4s;
}
.service-card:hover .card-glow { opacity: 0.4; }

.card-icon-wrap {
  width: 64px; height: 64px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.service-card:hover .card-icon-wrap { transform: scale(1.1); }
.service-card--featured .card-icon-wrap { background: rgba(255,255,255,0.15); }
.card-icon { font-size: 2rem; }

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-pale);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.card-title em { font-style: italic; color: var(--primary); }
.card-desc { color: var(--text-light); font-size: 0.93rem; line-height: 1.7; margin-bottom: 20px; }
.card-features { margin-bottom: 32px; }
.card-features li {
  font-size: 0.87rem;
  color: var(--text-mid);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}
.card-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--primary);
  font-weight: 700;
}
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-pale);
  border: 1px solid rgba(120,0,97,0.2);
  padding: 11px 22px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.card-btn span { transition: transform 0.3s ease; }
.card-btn:hover { background: var(--primary); color: white; }
.card-btn:hover span { transform: translateX(4px); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why {
  padding: var(--section-pad) 0;
  background: var(--lavender-soft);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 550px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid white;
  transition: var(--transition);
  text-align: center;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}
.why-card:hover .why-icon { transform: scale(1.15) rotate(-5deg); }
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.why-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; }

/* ============================================
   VISION & MISSION
   ============================================ */
.vision {
  padding: var(--section-pad) 0;
  background: white;
  position: relative;
}
.vision-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--lavender-soft) 0%, white 50%, var(--primary-pale) 100%);
  opacity: 0.5;
  pointer-events: none;
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .vision-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vision-center { order: -1; }
}
.vision-card, .mission-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.vm-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.vision-card h3, .mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.vision-card p { color: var(--text-mid); line-height: 1.8; }
.mission-list { padding: 0; }
.mission-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}
.mission-list li:last-child { border-bottom: none; }
.mission-list li::before {
  content: '💜';
  position: absolute; left: 0;
  font-size: 0.9rem;
}
.vm-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--primary-pale), transparent);
  border-radius: 50%;
  transform: translate(40%, 40%);
}
.vision-center { text-align: center; }
.vm-center-ring {
  width: 100px; height: 100px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  animation: spinSlow 20s linear infinite;
}

/* ============================================
   FOUNDER MESSAGE
   ============================================ */
.founder {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 60%, #a0005e);
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.founder-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.founder-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(255,255,255,0.15);
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}
.founder-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  margin-bottom: 48px;
}
.founder-info {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.founder-avatar {
  position: relative;
  width: 64px; height: 64px;
}
.avatar-ring {
  position: absolute; inset: -4px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: spinSlow 10s linear infinite;
}
.avatar-inner {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.founder-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-display);
}
.founder-role {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 4px;
}
.founder-deco {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.deco-line { flex: 1; max-width: 80px; height: 1px; background: rgba(255,255,255,0.3); }
.deco-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); }

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 450px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.g-large { grid-column: span 1; grid-row: span 2; aspect-ratio: auto; }

.gallery-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  background: linear-gradient(135deg,
    hsl(var(--g-hue), 45%, 72%) 0%,
    hsl(var(--g-hue), 55%, 60%) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.06); }
.g-icon { font-size: 3rem; }
.gallery-placeholder span { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 600; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(120,0,97,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  background: white;
}
.testimonials-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-pale) 0%, white 60%, var(--lavender-soft) 100%);
  pointer-events: none;
}
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(33.33% - 19px);
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
@media (max-width: 900px) { .testimonial-card { flex: 0 0 calc(50% - 14px); } }
@media (max-width: 600px) { .testimonial-card { flex: 0 0 100%; } }

.t-stars { font-size: 1.2rem; margin-bottom: 20px; letter-spacing: 2px; color: #f59e0b; }
.t-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.t-author span { font-size: 0.78rem; color: var(--text-light); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  color: var(--primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: 80px 32px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: blobFloat 10s ease-in-out infinite;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: white;
  font-weight: 600;
  margin-bottom: 16px;
}
.cta-content h2 em { font-style: italic; color: var(--accent-light); }
.cta-content p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card { padding: 36px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--text-mid); font-size: 0.93rem; }
.contact-item a:hover { color: var(--primary); }

.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--primary); color: white; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Contact Form */
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .contact-form { grid-template-columns: 1fr; padding: 28px 20px; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--text-mid); letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(120,0,97,0.08);
}
.form-group textarea { resize: vertical; }
.form-submit { grid-column: 1 / -1; width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 16px;
  background: rgba(120,0,97,0.08);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-weight: 600;
  display: none;
  animation: fadeIn 0.4s ease;
}
.form-success.visible { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
}
.footer-top { padding: 70px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 550px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo .logo-text, .footer-logo .logo-mark { color: white !important; }
.footer-logo .logo-text span { color: var(--accent-light) !important; }
.footer-brand p { margin-top: 16px; font-size: 0.88rem; line-height: 1.7; }
.footer-brand .social-row { margin-top: 20px; }
.footer-brand .social-btn { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.footer-brand .social-btn:hover { background: var(--primary); color: white; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a, .footer-col ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.3) !important;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ============================================
   UTILITIES & RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  :root { --section-pad: 70px; }
  .hero { padding: 100px 20px 60px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .stats-container { flex-wrap: wrap; }
  .founder-quote { font-size: 1.1rem; }
  .contact-form { gap: 16px; }
  .scroll-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-brand { font-size: 2.8rem; }
  .section-title { font-size: 1.8rem; }
  .about-img-placeholder { max-width: 300px; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
