:root {
  /* Primary Color Palette - 5 Colors */
  --primary-burgundy: #8B2635;
  --primary-teal: #2B8A8A;
  --primary-gold: #D4A574;
  --primary-sage: #9CAF88;
  --primary-plum: #6B4C7A;
  
  /* Light Shades */
  --light-burgundy: #B85A6B;
  --light-teal: #5BAAAA;
  --light-gold: #E4C19A;
  --light-sage: #BDCAA8;
  --light-plum: #8B7A9A;
  
  /* Dark Shades */
  --dark-burgundy: #5B1A23;
  --dark-teal: #1B5A5A;
  --dark-gold: #A48554;
  --dark-sage: #7C8F68;
  --dark-plum: #4B3C5A;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Typography - Conservative Sizes */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-burgundy), var(--primary-teal));
  --gradient-secondary: linear-gradient(135deg, var(--primary-gold), var(--primary-sage));
  --gradient-accent: linear-gradient(135deg, var(--primary-plum), var(--primary-burgundy));
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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(--dark-gray);
  background-color: var(--white);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Typography */
h1 {
  font-size: var(--font-size-xxl);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-burgundy);
}

h2 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.875rem;
  color: var(--primary-teal);
}

h3 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--primary-plum);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Header Styles */
.navbar {
  background: var(--gradient-primary);
  padding: 0.75rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--white) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-gold) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-gold) 0%, transparent 50%);
  opacity: 0.1;
  transform: rotate(45deg);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section .hero-title {
  color: var(--white);
  font-size: var(--font-size-xxl);
  margin-bottom: 1.5rem;
}

.hero-section .hero-subtitle {
  color: var(--light-gold);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.hero-section .hero-desc {
  color: var(--white);
  font-size: var(--font-size-base);
  opacity: 0.9;
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--light-gray);
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--gradient-secondary);
  color: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark-gray);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-burgundy);
  margin: 1rem 0;
}

/* Price Plan Section */
.priceplan-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.priceplan-card:hover {
  border-color: var(--primary-teal);
  transform: scale(1.02);
}

.priceplan-card.featured {
  border-color: var(--primary-burgundy);
  background: var(--gradient-primary);
  color: var(--white);
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-gold);
}

/* Reviews Section */
.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.review-stars {
  color: var(--primary-gold);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

/* Process Steps */
.process-step {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-burgundy);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.process-container {
  counter-reset: step-counter;
}

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--primary-teal);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--primary-gold);
  border-radius: 50%;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  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-teal);
  box-shadow: 0 0 0 0.2rem rgba(43, 138, 138, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-accent);
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
  background: var(--primary-sage);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  font-weight: 500;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--dark-gray);
}

/* Gallery */
.gallery-item {
  margin-bottom: 1rem;
  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.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

#site-copyright {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid var(--gray);
  margin-top: 2rem;
  color: var(--gray);
}

/* Breadcrumbs - Image Only */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  overflow-x: hidden;
  padding: 1.5rem;
}

/* Career Cards */
.career-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

/* Case Study Cards */
.casestudy-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.casestudy-card:hover {
  transform: translateY(-5px);
}

/* Core Info Cards */
.coreinfo-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
}

.coreinfo-card i {
  font-size: 2.5rem;
  color: var(--primary-plum);
  margin-bottom: 1rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
