:root {
  /* Primary Color Palette - 5 colors with light/dark shades */
  --primary-orange: #ff6b35;
  --primary-orange-light: #ff8a5c;
  --primary-orange-dark: #e55a2b;
  
  --primary-blue: #2c5aa0;
  --primary-blue-light: #4a7bc8;
  --primary-blue-dark: #1e3f73;
  
  --primary-green: #27ae60;
  --primary-green-light: #2ecc71;
  --primary-green-dark: #1e8449;
  
  --primary-gold: #f39c12;
  --primary-gold-light: #f4d03f;
  --primary-gold-dark: #d68910;
  
  --primary-slate: #34495e;
  --primary-slate-light: #5d6d7e;
  --primary-slate-dark: #2c3e50;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
  --gradient-secondary: linear-gradient(135deg, var(--primary-blue), var(--primary-slate));
  --gradient-accent: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.75rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.25rem;
  --font-size-h6: 1rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-slate-dark);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-base);
}

a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-orange-dark);
}

/* Header Styles */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-sm) 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-orange);
}

.navbar-nav .nav-link {
  color: var(--primary-slate);
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-orange);
}

/* 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: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../CHR_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: var(--spacing-xxl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--primary-slate-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--primary-orange);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  color: var(--medium-gray);
}

/* About Section */
.about-section {
  background: var(--light-gray);
}

.feature-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: var(--spacing-md);
}

/* Services Section */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  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;
}

.service-content {
  padding: var(--spacing-lg);
}

.service-name {
  color: var(--primary-slate-dark);
  margin-bottom: var(--spacing-sm);
}

.service-desc {
  color: var(--medium-gray);
  margin-bottom: var(--spacing-md);
}

.service-features {
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.service-features li {
  padding: var(--spacing-xs) 0;
  color: var(--medium-gray);
}

.service-features li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: bold;
  margin-right: var(--spacing-xs);
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-orange);
  text-align: center;
}

/* Team Section */
.team-member {
  text-align: center;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--spacing-md);
  border: 4px solid var(--primary-orange);
}

.team-name {
  color: var(--primary-slate-dark);
  margin-bottom: var(--spacing-xs);
}

.team-role {
  color: var(--primary-orange);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: var(--gradient-secondary);
  color: var(--white);
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-lg);
}

.review-author {
  font-weight: 600;
  color: var(--primary-gold);
}

/* Price Plan Section */
.price-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
}

.price-card.featured {
  border: 3px solid var(--primary-orange);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-orange);
  margin: var(--spacing-md) 0;
}

.price-features {
  list-style: none;
  margin: var(--spacing-lg) 0;
}

.price-features li {
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid var(--light-gray);
}

/* Process Section */
.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: 0 auto var(--spacing-md);
}

.process-title {
  color: var(--primary-slate-dark);
  margin-bottom: var(--spacing-sm);
}

.process-desc {
  color: var(--medium-gray);
}

/* FAQ Section */
.faq-section {
  background: var(--light-gray);
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  background: var(--primary-slate);
  color: var(--white);
  padding: var(--spacing-md);
  cursor: pointer;
  margin: 0;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-slate-dark);
}

.faq-answer {
  padding: var(--spacing-md);
  color: var(--medium-gray);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Contact Form */
.contact-section {
  background: var(--gradient-accent);
  color: var(--white);
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: var(--font-size-base);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.3);
}

.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background: var(--primary-slate-dark);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
  border-bottom: 1px solid var(--primary-slate);
  padding-bottom: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h5 {
  color: var(--primary-gold);
  margin-bottom: var(--spacing-md);
}

.footer-section p,
.footer-section a {
  color: var(--light-gray);
  margin-bottom: var(--spacing-xs);
}

.footer-section a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  text-align: center;
  color: var(--medium-gray);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.gallery-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Section */
.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: var(--spacing-lg);
}

.blog-title {
  color: var(--primary-slate-dark);
  margin-bottom: var(--spacing-sm);
}

.blog-excerpt {
  color: var(--medium-gray);
  margin-bottom: var(--spacing-md);
}

.blog-link {
  color: var(--primary-orange);
  font-weight: 600;
}

/* Breadcrumbs */
.breadcrumb {
  background: var(--light-gray);
  padding: var(--spacing-sm) 0;
  margin-bottom: var(--spacing-lg);
}

.breadcrumb-item {
  display: inline-block;
}

.breadcrumb-image {
  height: 24px;
  width: auto;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.py-5 { padding: var(--spacing-xl) 0; }
.px-3 { padding: 0 var(--spacing-md); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Space page specific */
#space {
  min-height: 80vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--font-size-xl);
} 