:root {
  /* Primary Color Palette */
  --primary-sage: #a8c4a2;
  --primary-lavender: #b8a9d4;
  --primary-peach: #f4c2a1;
  --primary-mint: #9dd6c0;
  --primary-rose: #e8b7b7;
  
  /* Light Shades */
  --light-sage: #d5e6d2;
  --light-lavender: #e1dbe9;
  --light-peach: #f9e0d0;
  --light-mint: #ceebe0;
  --light-rose: #f3dbdb;
  
  /* Dark Shades */
  --dark-sage: #7a9175;
  --dark-lavender: #8c7ca7;
  --dark-peach: #d09474;
  --dark-mint: #6bb093;
  --dark-rose: #d58a8a;
  
  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #f5f5f5;
  --gray: #666666;
  --dark-gray: #333333;
  --black: #000000;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Merriweather', serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 15px;
  
  /* Border Radius */
  --border-radius: 12px;
  --border-radius-lg: 20px;
  
  /* Shadows */
  --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
overflow-x: hidden;
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  color: var(--dark-gray);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.8rem; font-weight: 600; }
h3 { font-size: 2.2rem; font-weight: 600; }
h4 { font-size: 1.8rem; font-weight: 500; }
h5 { font-size: 1.4rem; font-weight: 500; }
h6 { font-size: 1.2rem; font-weight: 500; }

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--gray);
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--light-sage) 0%, var(--light-lavender) 100%);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.navbar {
  background: transparent !important;
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-sage) !important;
}

.navbar-nav .nav-link {
  color: var(--dark-gray) !important;
  font-weight: 500;
  padding: 0.75rem 1.25rem !important;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: var(--light-mint);
  color: var(--dark-sage) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-peach) 0%, var(--light-mint) 50%, var(--light-lavender) 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: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--dark-sage);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  color: var(--dark-lavender);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-rose);
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-mint);
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-sage);
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--dark-lavender);
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: var(--gray);
}

/* About Section */
.about-section {
  background: linear-gradient(45deg, var(--light-sage) 0%, var(--off-white) 100%);
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.about-feature-icon {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.about-feature-name {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.service-name {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-peach);
  margin-bottom: 1rem;
}

.service-description {
  margin-bottom: 1.5rem;
}

.service-features {
  color: var(--dark-lavender);
  font-style: italic;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--light-lavender) 0%, var(--light-rose) 100%);
}

.feature-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--off-white);
}

.price-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(45deg, var(--primary-sage), var(--primary-lavender));
}

/* Team Section */
.team-section {
  background: linear-gradient(45deg, var(--light-mint) 0%, var(--light-peach) 100%);
}

.team-member {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  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 1.5rem;
  border: 5px solid var(--light-sage);
}

.team-name {
  color: var(--dark-sage);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-lavender);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: var(--off-white);
}

.review-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--light-sage);
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: serif;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.review-author {
  color: var(--dark-sage);
  font-weight: 600;
  text-align: right;
}

/* Core Info Section */
.coreinfo-section {
  background: linear-gradient(135deg, var(--light-peach) 0%, var(--light-rose) 100%);
}

.coreinfo-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-3px);
}

/* Contact Form Section */
.contact-section {
  background: var(--off-white);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  padding: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(168, 196, 162, 0.25);
}

.btn-submit {
  background: linear-gradient(45deg, var(--primary-sage), var(--primary-mint));
  border: none;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--light-lavender) 0%, var(--light-mint) 100%);
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  background: var(--light-sage);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  color: var(--dark-sage);
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-sage);
  color: var(--white);
}

.faq-answer {
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Section */
.blog-section {
  background: linear-gradient(45deg, var(--light-peach) 0%, var(--light-lavender) 100%);
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-lavender);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--dark-lavender);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-sage) 0%, var(--dark-lavender) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--light-sage);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: var(--off-white);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--light-mint);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--light-gray);
}

.breadcrumb-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: var(--border-radius);
}

/* Swiper Customizations */
.swiper-pagination-bullet {
  background: var(--primary-sage);
}

.swiper-pagination-bullet-active {
  background: var(--dark-sage);
}

.swiper-button-next, .swiper-button-prev {
  color: var(--primary-sage);
}

/* Utility Classes */
.text-primary { color: var(--primary-sage) !important; }
.text-secondary { color: var(--primary-lavender) !important; }
.bg-primary { background-color: var(--primary-sage) !important; }
.bg-secondary { background-color: var(--primary-lavender) !important; }

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Space page specific */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--light-sage) 0%, var(--light-lavender) 50%, var(--light-peach) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
} 