:root {
  --primary-color: #630E76;
  --primary-rgb: 99, 14, 118;
  --secondary-color: #F79C92;
  --accent-color: #F2D4C9;
  --light-color: #FFF5F3;
  --dark-color: #3D0849;
  --gradient-primary: linear-gradient(135deg, #630E76 0%, #F79C92 100%);
  --gradient-accent: linear-gradient(45deg, #F2D4C9, #B2B3B1);
  --hover-color: #8B1A9F;
  --background-color: #FFFBFA;
  --text-color: #4A3A4E;
  --text-color-secondary: #6A5A6E;
  --border-color: rgba(247, 156, 146, 0.25);
  --divider-color: rgba(99, 14, 118, 0.12);
  --shadow-color: rgba(99, 14, 118, 0.15);
  --highlight-color: #F4D03F;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

/* Mobile Menu Styles */
.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: 400px;
  opacity: 1;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.mobile-nav ul {
  padding: 2rem;
  margin: 0;
  list-style: none;
}

.mobile-nav li {
  margin: 1rem 0;
}

.mobile-nav a {
  display: block;
  padding: 1.2rem 1.8rem;
  color: var(--light-color);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

/* Magnetic Hover Feature Cards */
.feature-card {
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  overflow: hidden;
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 6px 20px var(--shadow-color);
  text-align: center;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}



.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(99, 14, 118, 0.3);
  border-color: transparent;
}

.feature-icon {
  font-size: 3.5rem;
  margin: 0 auto 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 95px;
  background: var(--gradient-primary);
  border-radius: 20px;
  color: white;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15);
  border-radius: 50%;
}

/* Slider Look Testimonials */
.testimonial {
  transition: all 0.4s ease;
  border: none;
  position: relative;
  background: white;
  padding: 3rem;
  margin: 2rem 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow-color);
  border-left: 5px solid var(--secondary-color);
}

.testimonial:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(99, 14, 118, 0.25);
}

.testimonial::after {
  content: '★★★★★';
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--secondary-color);
  font-size: 1.2rem;
  letter-spacing: 3px;
}

/* Side Icon FAQ */
.faq-item {
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  background: white;
  padding: 2.5rem;
  margin: 2rem 0;
  border-radius: 18px;
  box-shadow: 0 6px 20px var(--shadow-color);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(99, 14, 118, 0.2);
  border-color: var(--primary-color);
  border-left-width: 5px;
}

.faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}

/* Enhanced Form Styles */
input,
textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 14px;
  padding: 1.4rem;
  background-color: white;
  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(99, 14, 118, 0.1);
  transform: translateY(-2px);
}

input:hover,
textarea:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 5px 18px var(--shadow-color);
}

/* Morphing Button */
button,
.btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.4rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

button:hover,
.btn:hover {
  border-radius: 10px;
  padding: 1.4rem 4rem;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(99, 14, 118, 0.4);
  background: linear-gradient(135deg, #8B1A9F 0%, #FA9E94 100%);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Hero with Big Number */
.hero-number {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  overflow: hidden;
}

.big-number {
  position: absolute;
  font-size: 18rem;
  font-weight: 900;
  opacity: 0.08;
  color: white;
  line-height: 1;
  pointer-events: none;
  font-family: var(--main-font);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Bento Grid Styles */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 200px;
}

.bento-item {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 6px 20px var(--shadow-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(99, 14, 118, 0.25);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

.bento-tall {
  grid-row: span 2;
}

/* Enhanced Typography */
h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .navigation {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .big-number {
    font-size: 10rem;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  
  .bento-large,
  .bento-wide,
  .bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .feature-card,
  .testimonial,
  .faq-item {
    padding: 2rem;
  }
  
  .faq-item {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .feature-card,
  .testimonial,
  .faq-item {
    margin: 1rem 0;
    padding: 1.8rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .big-number {
    font-size: 6rem;
  }
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--light-color);
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(99, 14, 118, 0.25);
}

footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: var(--light-color);
  padding: 3rem 0 1rem;
}

header img[alt="logo"],
footer img[alt="logo"] {
  filter: brightness(0) invert(1);
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid var(--highlight-color);
  outline-offset: 2px;
}

/* Background patterns */
.pattern-bg {
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 14, 118, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(247, 156, 146, 0.04) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(242, 212, 201, 0.02) 50px, rgba(242, 212, 201, 0.02) 100px);
}

/* Animation for page elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.7s ease-out;
}

/* Custom Scrollbar */
::-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);
}