:root {
  /* Primary Color Palette */
  --primary-sage: #a8b5a0;
  --primary-cream: #f5f2e8;
  --primary-terracotta: #d4a574;
  --primary-charcoal: #3a3a3a;
  --primary-lavender: #b19cd9;
  
  /* Light Shades */
  --light-sage: #d6e0d1;
  --light-cream: #fbf9f5;
  --light-terracotta: #e8c7a5;
  --light-charcoal: #6a6a6a;
  --light-lavender: #d4c8e7;
  
  /* Dark Shades */
  --dark-sage: #7d8a75;
  --dark-cream: #e8e2d2;
  --dark-terracotta: #b18c5f;
  --dark-charcoal: #2a2a2a;
  --dark-lavender: #9581c2;
  
  /* Fonts */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Georgia', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--primary-cream);
  font-size: 16px;
}

/* 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;
  }
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-sage), var(--light-sage));
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
  background: transparent !important;
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-charcoal) !important;
  font-family: var(--font-heading);
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--primary-charcoal) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-terracotta) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream), var(--light-lavender));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23d4a574" stroke-width="0.5"/></svg>');
  opacity: 0.1;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.hero h1 {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--dark-charcoal);
  margin-bottom: 2rem;
}

/* Sections */
section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background-color: var(--light-cream);
}

.section-title {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-charcoal);
  margin-bottom: 1rem;
  text-align: center;
}

.section-desc {
  color: var(--dark-charcoal);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--primary-charcoal);
  margin-bottom: 0.5rem;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-terracotta);
  margin: 1rem 0;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Reviews Slider */
.reviews-slider {
  background: var(--primary-sage);
  padding: 3rem 0;
  margin: 2rem 0;
  border-radius: 15px;
  position: relative;
}

.reviews-slider .swiper-container {
  position: relative;
}

.review-item {
  text-align: center;
  padding: 2rem;
  color: white;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: bold;
}

/* Swiper Navigation Buttons */
.reviews-slider .swiper-button-next,
.reviews-slider .swiper-button-prev {
  color: white !important;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  margin-top: -20px !important;
  transition: background-color 0.3s ease;
}

.reviews-slider .swiper-button-next:hover,
.reviews-slider .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.4);
}

.reviews-slider .swiper-button-next::after,
.reviews-slider .swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: bold;
}

/* Swiper Pagination */
.reviews-slider .swiper-pagination {
  position: relative !important;
  margin-top: 20px !important;
}

.reviews-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 5px !important;
  transition: background-color 0.3s ease;
}

.reviews-slider .swiper-pagination-bullet-active {
  background: white !important;
  transform: scale(1.2);
}

/* 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: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Blog */
.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.2rem;
  color: var(--primary-charcoal);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.blog-content p {
  color: var(--dark-charcoal);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.blog-link {
  color: var(--primary-terracotta);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--dark-terracotta);
  text-decoration: underline;
}

/* FAQ */
.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--light-sage);
  padding: 1rem;
  cursor: pointer;
  font-weight: bold;
  color: var(--primary-charcoal);
}

.faq-answer {
  padding: 1rem;
  display: none;
  background: white;
}

.faq-answer.active {
  display: block;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 181, 160, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-terracotta), var(--dark-terracotta));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-terracotta), var(--primary-terracotta));
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-charcoal), var(--dark-charcoal));
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--light-cream);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-terracotta);
}

.footer-bottom {
  border-top: 1px solid var(--dark-charcoal);
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: var(--light-cream);
  padding: 1rem 0;
}

.breadcrumb img {
  width: 20px;
  height: 20px;
}

/* Space Page */
#space {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--primary-cream), var(--light-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-charcoal);
  font-family: var(--font-heading);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.p-4 { padding: 2rem; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

.col, .col-md-6, .col-lg-4 {
  padding: 0 0.75rem;
  flex: 1;
}

@media (max-width: 768px) {
  .col-md-6 {
    flex: 0 0 100%;
  }
}

@media (max-width: 992px) {
  .col-lg-4 {
    flex: 0 0 50%;
  }
}

@media (max-width: 576px) {
  .col-lg-4 {
    flex: 0 0 100%;
  }
} 