:root {
  --primary-color: #9C1C66;
  --secondary-color: #B22B5B;
  --accent-color: #F0DB4F;
  --light-color: #FFF5F8;
  --dark-color: #3A0A22;
  --gradient-primary: linear-gradient(135deg, #9C1C66 0%, #B22B5B 100%);
  --hover-color: #7E1652;
  --background-color: #FFFAF8;
  --text-color: #3D2030;
  --border-color: rgba(156, 28, 102, 0.18);
  --divider-color: rgba(178, 43, 91, 0.14);
  --shadow-color: rgba(156, 28, 102, 0.12);
  --highlight-color: #F0DB4F;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', sans-serif;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
}
.hamburger .line {
  width: 28px;
  height: 3px;
  background-color: var(--light-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
#menu-toggle { display: none; }
#menu-toggle:checked ~ .mobile-nav {
  max-height: 420px;
  opacity: 1;
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: linear-gradient(160deg, var(--dark-color) 0%, var(--primary-color) 100%);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  z-index: 1000;
}
.mobile-nav ul { padding: 2rem; margin: 0; list-style: none; }
.mobile-nav li { margin: 0.9rem 0; }
.mobile-nav a {
  display: block;
  padding: 1.1rem 1.6rem;
  color: var(--light-color);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  font-weight: 500;
  border: 2px solid transparent;
}
.mobile-nav a:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateX(8px);
}

/* Feature Cards — icon on top with coloured circle bg, centered, card with top accent line */
.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 6px 22px rgba(156,28,102,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.feature-card-header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(160deg, rgba(156,28,102,0.06) 0%, rgba(240,219,79,0.06) 100%);
  border-bottom: 1px solid var(--border-color);
}
.feature-card-body {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 42px rgba(156,28,102,0.18);
}
.feature-icon {
  font-size: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(156,28,102,0.1) 0%, rgba(240,219,79,0.14) 100%);
  margin: 0 auto 1.2rem auto;
  transition: transform 0.35s ease;
  border: 2px solid rgba(156,28,102,0.12);
}
.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-6deg);
  background: linear-gradient(135deg, rgba(156,28,102,0.16) 0%, rgba(240,219,79,0.2) 100%);
}

/* Testimonials */
.testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem;
  margin: 1.2rem 0;
  box-shadow: 0 5px 18px rgba(156,28,102,0.09);
  border-bottom: 4px solid var(--secondary-color);
  position: relative;
  transition: all 0.35s ease;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 24px;
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(156,28,102,0.17);
  border-bottom-color: var(--accent-color);
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 16px;
  padding: 2rem 2.2rem;
  margin: 1.1rem 0;
  box-shadow: 0 4px 14px rgba(156,28,102,0.08);
  border: 2px solid var(--border-color);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.faq-item::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 100%;
  background: linear-gradient(180deg, rgba(156,28,102,0.04), rgba(240,219,79,0.04));
  transition: width 0.4s ease;
}
.faq-item:hover::after { width: 100%; }
.faq-item:hover {
  transform: translateX(-8px);
  box-shadow: 0 10px 28px rgba(156,28,102,0.15);
  border-color: var(--secondary-color);
}

/* Inputs */
input, textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  background-color: #fffafc;
  color: var(--text-color);
  font-size: 1rem;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 5px rgba(156,28,102,0.1);
  background: white;
}
input:hover, textarea:hover { border-color: var(--secondary-color); }

/* Buttons */
button, .btn {
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.1rem 2.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--alt-font);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
button::before, .btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.4s, height 0.4s;
}
button:hover::before, .btn:hover::before { width: 300%; height: 300%; }
button:hover, .btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 26px rgba(178,43,91,0.4);
}

/* Base */
html { scroll-behavior: smooth; }
h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.07);
}
body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.75;
}
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--dark-color) 0%, var(--primary-color) 70%, var(--secondary-color) 100%);
}

/* Stats */
.stat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 18px rgba(156,28,102,0.1);
  transition: all 0.3s ease;
  border-right: 4px solid var(--primary-color);
}
.stat-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 14px 32px rgba(156,28,102,0.2);
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--main-font);
}
.stat-text { font-size: 1rem; color: var(--text-color); margin-top: 0.4rem; }

/* Trust */
.trust-indicator {
  background: white;
  padding: 1.4rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(156,28,102,0.08);
  transition: all 0.3s ease;
}
.trust-indicator:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(156,28,102,0.14);
}

/* Header / Footer */
header {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: var(--light-color);
  padding: 1.2rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 3px 16px rgba(58,10,34,0.35);
}
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 4rem 0 1rem;
}
header img[alt="logo"], footer img[alt="logo"] { filter: brightness(0) invert(1); }

/* Pattern */
.pattern-bg {
  background-image:
    radial-gradient(ellipse at 15% 75%, rgba(156,28,102,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(240,219,79,0.07) 0%, transparent 45%),
    repeating-linear-gradient(-45deg, rgba(156,28,102,0.015) 0px, rgba(156,28,102,0.015) 1px, transparent 1px, transparent 24px);
}

/* Focus / Scrollbar */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid var(--highlight-color);
  outline-offset: 3px;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light-color); }
::-webkit-scrollbar-thumb { background: var(--gradient-primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.75s ease-out; }

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }
  .hero h1 { font-size: 2.1rem; }
  .container { padding: 0 1.2rem; }
  .feature-card, .testimonial, .faq-item, .stat-card { padding: 1.6rem; }
  .feature-card-header, .feature-card-body { padding: 1.4rem 1.4rem; }
  #contact .grid { max-width: 100% !important; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .stat-number { font-size: 2.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
@media (prefers-contrast: high) {
  :root {
    --text-color: #000;
    --background-color: #fff;
    --border-color: #000;
    --primary-color: #000;
    --secondary-color: #000;
  }
}