:root {
  /* Primary Color Palette - 5 colors plus shades */
  --primary-green: #2d5a27;
  --primary-green-light: #4a7c59;
  --primary-green-dark: #1a3a1a;
  
  --accent-orange: #d97706;
  --accent-orange-light: #f59e0b;
  --accent-orange-dark: #b45309;
  
  --natural-brown: #8b4513;
  --natural-brown-light: #a0522d;
  --natural-brown-dark: #654321;
  
  --fresh-yellow: #fbbf24;
  --fresh-yellow-light: #fcd34d;
  --fresh-yellow-dark: #f59e0b;
  
  --earth-red: #dc2626;
  --earth-red-light: #ef4444;
  --earth-red-dark: #b91c1c;
  
  /* Neutral colors */
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  
  /* Conservative font sizes */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-xl: 22px;
  --font-size-xxl: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

/* Header Styles */
.navbar-brand {
  font-size: var(--font-size-large) !important;
  font-weight: 600;
  color: var(--primary-green) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--natural-brown) 100%);
  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.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: var(--font-size-base);
  margin-bottom: 2rem;
}

/* Section Styles */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: var(--font-size-large);
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: var(--font-size-base);
  color: var(--text-dark);
  margin-bottom: 3rem;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-name {
  font-size: var(--font-size-large);
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: var(--font-size-small);
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-features {
  font-size: var(--font-size-small);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-price {
  font-size: var(--font-size-large);
  font-weight: 700;
  color: var(--accent-orange);
}

/* About Features */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.feature-name {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: var(--font-size-small);
  color: var(--text-light);
}

/* Team Cards */
.team-card {
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-green-light);
}

.team-name {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: var(--font-size-small);
  color: var(--text-light);
}

/* Swiper Styles */
.swiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-size: var(--font-size-base);
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.review-author {
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--primary-green);
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  height: 100%;
}

.price-card.featured {
  border: 3px solid var(--accent-orange);
  transform: scale(1.05);
}

.price-name {
  font-size: var(--font-size-large);
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.price-features {
  font-size: var(--font-size-small);
  margin-bottom: 2rem;
  text-align: left;
}

/* Contact Form */
.contact-form {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 3rem;
}

.form-control {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 90, 39, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-orange) 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--accent-orange-dark) 100%);
}

/* FAQ Accordion */
.accordion-item {
  border: 1px solid #e5e7eb;
  margin-bottom: 0.5rem;
  border-radius: 8px;
}

.accordion-button {
  font-weight: 600;
  color: var(--primary-green);
  background-color: var(--bg-light);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-green);
  color: white;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Grid */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  font-size: var(--font-size-small);
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--natural-brown-dark) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  font-size: var(--font-size-small);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer a:hover {
  color: white;
  text-decoration: none;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Process/Timeline Items */
.process-item, .timeline-item {
  text-align: center;
  padding: 2rem 1rem;
}

.process-item i, .timeline-item i {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.process-title, .timeline-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-desc, .timeline-desc {
  font-size: var(--font-size-small);
  color: var(--text-light);
}

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.case-study-title {
  font-size: var(--font-size-large);
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.case-study-desc {
  font-size: var(--font-size-base);
  color: var(--text-dark);
}

/* Career Items */
.career-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent-orange);
}

.career-title {
  font-size: var(--font-size-large);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.career-role {
  font-size: var(--font-size-small);
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.career-desc {
  font-size: var(--font-size-base);
  color: var(--text-dark);
}

/* Core Info Grid */
.core-info-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.core-info-item i {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.core-info-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.core-info-desc {
  font-size: var(--font-size-small);
  color: var(--text-light);
}

/* Breadcrumbs */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Utility Classes */
.text-primary-green { color: var(--primary-green) !important; }
.text-accent-orange { color: var(--accent-orange) !important; }
.bg-primary-green { background-color: var(--primary-green) !important; }
.bg-accent-orange { background-color: var(--accent-orange) !important; }
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-orange) 100%) !important;
}

/* Additional Page Sections */
.additional-section {
  padding: 3rem 0;
}

.additional-section:nth-child(even) {
  background-color: var(--bg-light);
}

.section-item {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-item-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
}

.section-item-desc {
  font-size: var(--font-size-small);
  color: var(--text-dark);
} 