:root {
  /* Magic Shop Color Palette - 5 Primary Colors */
  --primary-purple: #6B46C1;
  --primary-gold: #D97706;
  --primary-emerald: #059669;
  --primary-indigo: #4338CA;
  --primary-rose: #E11D48;
  
  /* Light Shades */
  --light-purple: #E0E7FF;
  --light-gold: #FEF3C7;
  --light-emerald: #ECFDF5;
  --light-indigo: #E0E7FF;
  --light-rose: #FFE4E6;
  
  /* Dark Shades */
  --dark-purple: #2D1B69;
  --dark-gold: #92400E;
  --dark-emerald: #064E3B;
  --dark-indigo: #1E1B4B;
  --dark-rose: #7F1D1D;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #1F2937;
  --gray-light: #F3F4F6;
  --gray-dark: #4B5563;
}

/* Conservative Font Sizes */
html {
  font-size: 16px;
}

body {
  overflow-x: hidden;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 700;
  color: var(--primary-purple) !important;
}

.navbar-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple) !important;
}

/* Typography */
h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--primary-indigo);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-emerald);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-gold);
}

p {
  font-size: 1rem;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-indigo));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../NUM_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: linear-gradient(45deg, var(--light-purple), var(--light-emerald));
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-gold);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-rose);
  margin: 1rem 0;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: var(--light-gold);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-emerald);
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-indigo), var(--light-rose));
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-gold);
}

/* Contact Form */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(45deg, var(--dark-purple), var(--dark-indigo));
  color: var(--white);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--light-purple);
  padding: 12px 16px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.25);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-gold), var(--primary-rose));
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
  background: var(--dark-purple);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer p {
  color: var(--white) !important;
}

.footer a {
  color: var(--light-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

.footer small {
  color: var(--white) !important;
}

/* Reviews/Testimonials */
.reviews-section {
  padding: 5rem 0;
  background: var(--light-emerald);
}

.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-emerald);
}

/* Gallery */
.gallery-section {
  padding: 5rem 0;
  background: var(--gray-light);
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* FAQ */
.faq-section {
  padding: 5rem 0;
  background: var(--white);
}

.accordion-button {
  background: var(--light-purple);
  color: var(--dark-purple);
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-purple);
  color: var(--white);
}

/* Blog */
.blog-section {
  padding: 5rem 0;
  background: var(--light-gold);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .service-card,
  .team-member {
    margin-bottom: 2rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.gradient-text {
  background: linear-gradient(45deg, var(--primary-purple), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.magic-border {
  border: 3px solid;
  border-image: linear-gradient(45deg, var(--primary-purple), var(--primary-gold), var(--primary-emerald)) 1;
} 