:root {
  /* Primary Color Palette - 5 colors with shades */
  --primary-1: #2c3e50;
  --primary-1-light: #4a5e75;
  --primary-1-dark: #1a252f;
  
  --primary-2: #e74c3c;
  --primary-2-light: #f39c8a;
  --primary-2-dark: #c0392b;
  
  --primary-3: #f39c12;
  --primary-3-light: #f7c52a;
  --primary-3-dark: #e67e22;
  
  --primary-4: #27ae60;
  --primary-4-light: #58c787;
  --primary-4-dark: #229954;
  
  --primary-5: #8e44ad;
  --primary-5-light: #a569bd;
  --primary-5-dark: #7d3c98;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #495057;
  --black: #212529;
  
  /* Conservative Font Sizes */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --h1-size: 2rem;
  --h2-size: 1.75rem;
  --h3-size: 1.5rem;
  --navbar-brand-size: 1.25rem;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

/* Respect reduced motion preferences */
@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;
  }
}

/* Conservative Typography */
h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  margin-bottom: 0.875rem;
  color: var(--primary-1);
}

h3 {
  font-size: var(--h3-size);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-1-dark);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

/* Header & Navigation */
.navbar-brand {
    font-size: 12px !important;
  font-size: var(--navbar-brand-size) !important;
  font-weight: 700;
  color: var(--primary-1) !important;
}

.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

.navbar-nav .nav-link {
    font-size: 10px !important;
  color: var(--primary-1);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-2);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-5) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-2);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

.hero-content {
  color: var(--white);
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  color: var(--white);
  font-size: var(--h1-size);
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: var(--font-size-lg);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-gray);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-2);
  margin: 1rem 0;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-3);
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  border-radius: 12px;
  padding: 3rem;
  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-2);
  box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-2) 0%, var(--primary-2-dark) 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-2-dark) 0%, var(--primary-2) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--light-gray);
  padding: 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-1);
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-1-light);
  color: var(--white);
}

.faq-answer {
  padding: 1.25rem;
  background: var(--white);
  color: var(--dark-gray);
  border-top: 1px solid var(--light-gray);
}

/* Testimonials */
.testimonial-slide {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  margin: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  font-size: var(--font-size-lg);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-1);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-1-dark) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-3);
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-3);
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-3);
  margin-bottom: 1rem;
}

/* Price Plans */
.price-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-plan {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-plan:hover {
  transform: translateY(-8px);
  border-color: var(--primary-2);
}

.price-plan.featured {
  border-color: var(--primary-2);
  transform: scale(1.05);
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-2);
  margin: 1rem 0;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-xl);
  margin: 0 auto 1rem;
}

/* Case Studies */
.case-studies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.case-study {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.case-study:hover {
  transform: translateY(-5px);
}

.case-study-content {
  padding: 2rem;
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-3);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 45%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) {
  left: 55%;
  text-align: left;
  padding-left: 2rem;
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive adjustments for mobile */
@media (max-width: 767.98px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
    width: 100%;
    text-align: left;
    padding-left: 3rem;
    padding-right: 0;
  }
}

/* Breadcrumbs */
.breadcrumb-section {
  background: var(--light-gray);
  padding: 1rem 0;
}

.breadcrumb-img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-2) 0%, var(--primary-5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-5) 100%);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-2) 0%, var(--primary-3) 100%);
}

/* Space page specific */
#space {
  min-height: 80vh;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
} 