/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Color Palette - 5 Pastel High-Contrast Colors */
  --primary-color: #4ade80;       /* Light Green */
  --secondary-color: #60a5fa;     /* Light Blue */
  --accent-color: #fbbf24;        /* Light Yellow */
  --neutral-color: #e5e7eb;       /* Light Gray */
  --highlight-color: #f472b6;     /* Light Pink */
  
  /* Light/Dark Shades */
  --primary-light: #bbf7d0;
  --primary-dark: #16a34a;
  --secondary-light: #bfdbfe;
  --secondary-dark: #2563eb;
  --accent-light: #fef3c7;
  --accent-dark: #d97706;
  --neutral-light: #f9fafb;
  --neutral-dark: #6b7280;
  --highlight-light: #fce7f3;
  --highlight-dark: #db2777;
  
  /* Typography */
  --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-sm: 0.875rem;
  --line-height-base: 1.5;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --card-padding: 1.5rem;
  --border-radius: 0.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--neutral-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-dark);
  font-weight: 600;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--neutral-dark);
  margin-bottom: 2rem;
}

/* ===== HEADER STYLES ===== */
.header-section {
  background: white;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--primary-color);
}

.nav-link {
  font-weight: 500;
  color: var(--neutral-dark);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.hero-content .lead {
  font-size: 1.25rem;
  color: var(--neutral-dark);
  margin-bottom: 2.5rem;
}

.hero-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Hero Decorative Shapes */
.hero-decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--secondary-color);
  top: 10%;
  right: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  bottom: 20%;
  left: 5%;
}

.shape-3 {
  width: 180px;
  height: 180px;
  background-color: var(--highlight-color);
  top: 30%;
  left: 15%;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background-color: var(--primary-color);
  bottom: 30%;
  right: 20%;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: var(--section-padding);
  background: white;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: var(--card-padding);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: var(--section-padding);
  background: var(--neutral-light);
}

.about-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.feature-item i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* ===== TEAM SECTION ===== */
.team-section {
  padding: var(--section-padding);
  background: white;
}

.team-card {
  text-align: center;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: var(--card-padding);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--secondary-color);
  font-weight: 500;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: var(--section-padding);
  background: var(--neutral-light);
}

.gallery-item {
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: var(--section-padding);
  background: white;
}

.testimonial-card {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.stars {
  margin-bottom: 1rem;
}

.client-name {
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: var(--section-padding);
  background: var(--neutral-light);
}

.faq-card {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
}

.faq-card .card-title {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1.125rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--section-padding);
  background: white;
}

.contact-form {
  background: var(--neutral-light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.form-control, .form-select {
  border: 2px solid var(--neutral-color);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 222, 128, 0.25);
}

/* ===== FOOTER STYLES ===== */
.footer-section {
  padding: 2rem 0;
  background: var(--neutral-dark);
  color: white;
}

.footer-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-link {
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-divider {
  border-color: var(--neutral-color);
  margin: 2rem 0 1rem;
}

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb-nav {
  background: var(--neutral-light);
  padding: 1rem 0;
  margin-top: 76px;
}

.breadcrumb-icon {
  height: 24px;
  width: auto;
}

/* ===== CONTENT SECTION STYLES ===== */
.content-section {
  padding: var(--section-padding);
}

.content-wrapper {
  padding: 2rem 0;
}

/* Recipe Cards */
.recipe-card {
  background: white;
  padding: var(--card-padding);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.recipe-card:hover {
  transform: translateY(-3px);
}

.recipe-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.recipe-title {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.recipe-ingredients {
  color: var(--neutral-dark);
}

/* Method Cards */
.method-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.method-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.method-item i {
  margin-right: 1rem;
  font-size: 1.5rem;
}

/* Tips List */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.tip-number {
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.tip-content h5 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* Strategy Steps */
.strategy-step {
  background: white;
  padding: var(--card-padding);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.strategy-step:hover {
  transform: translateY(-3px);
}

.step-number {
  background: var(--secondary-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-title {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-description {
  color: var(--neutral-dark);
}

/* Prevention Cards */
.prevention-card {
  background: white;
  padding: var(--card-padding);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.prevention-card:hover {
  transform: translateY(-3px);
}

.prevention-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.prevention-title {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.prevention-text {
  color: var(--neutral-dark);
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 2rem;
}

.benefit-content h5 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* Compliance Cards */
.compliance-card {
  background: white;
  padding: var(--card-padding);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.compliance-card:hover {
  transform: translateY(-3px);
}

.compliance-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.compliance-header i {
  font-size: 2rem;
  margin-right: 1rem;
}

.compliance-header h4 {
  color: var(--primary-dark);
  margin: 0;
}

.compliance-list {
  list-style: none;
  padding: 0;
}

.compliance-list li {
  padding: 0.25rem 0;
  color: var(--neutral-dark);
}

.compliance-list li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Contact Info Cards */
.contact-info-card {
  background: white;
  padding: var(--card-padding);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-info-card h5 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-info-card p {
  color: var(--neutral-dark);
  margin: 0;
}

/* Form Styling */
.contact-form-container {
  background: var(--neutral-light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.form-label {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-check-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-check-label {
  font-weight: 500;
  color: var(--neutral-dark);
}

/* Additional Info Sections */
.contact-additional-info {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.info-section h4 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.info-section ul {
  list-style: none;
  padding: 0;
}

.info-section li {
  padding: 0.5rem 0;
  color: var(--neutral-dark);
  border-bottom: 1px solid var(--neutral-color);
}

.info-section li:last-child {
  border-bottom: none;
}

/* Space-specific Styles */
.hygiene-standards,
.space-about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.standard-item,
.space-feature-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.standard-item i,
.space-feature-item i {
  margin-right: 1rem;
  font-size: 1.5rem;
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .hero-decorative-shapes .shape {
    animation: float 6s ease-in-out infinite;
  }
  
  .shape-1 {
    animation-delay: 0s;
  }
  
  .shape-2 {
    animation-delay: -2s;
  }
  
  .shape-3 {
    animation-delay: -4s;
  }
  
  .shape-4 {
    animation-delay: -1s;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ===== UTILITIES ===== */
.bg-light {
  background-color: var(--neutral-light);
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-warning {
  color: var(--accent-color);
} 