:root {
  /* Primary Colors - Pastel palette */
  --primary-color1: #f5cba7; /* Soft peach */
  --primary-color2: #d5ecc2; /* Soft mint green */
  --primary-color3: #98ddca; /* Soft teal */
  --primary-color4: #ffaaa7; /* Soft coral */
  --primary-color5: #ffd3b4; /* Soft amber */
  
  /* Shades */
  --primary-color1-light: #fae5d3;
  --primary-color1-dark: #e0a67b;
  --primary-color2-light: #e8f4db;
  --primary-color2-dark: #b3d89b;
  --primary-color3-light: #c6eedf;
  --primary-color3-dark: #6dc1aa;
  --primary-color4-light: #ffd5d3;
  --primary-color4-dark: #ff8683;
  --primary-color5-light: #ffe9d9;
  --primary-color5-dark: #ffbd8d;
  
  /* Neutral Colors */
  --bg-color: #ffffff;
  --text-color: #4a4a4a;
  --heading-color: #333333;
  --light-gray: #f7f7f7;
  --mid-gray: #e0e0e0;
  --dark-gray: #555555;
  
  /* Typography */
  --font-primary: 'Raleway', sans-serif;
  --font-secondary: 'Lora', serif;
  --base-font-size: 16px;
  --h1-size: 2.5rem;
  --h2-size: 2rem;
  --h3-size: 1.75rem;
  --h4-size: 1.5rem;
  --h5-size: 1.25rem;
  --h6-size: 1rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Borders & Shadows */
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  color: var(--heading-color);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--primary-color3-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color3);
  text-decoration: none;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color3);
  border-color: var(--primary-color3);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color3-dark);
  border-color: var(--primary-color3-dark);
}

.btn-secondary {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
  color: var(--heading-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color1-dark);
  border-color: var(--primary-color1-dark);
}

/* Header */
header {
  padding: var(--spacing-sm) 0;
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1rem;
  color: var(--heading-color);
}

.navbar-nav .nav-link {
  color: var(--heading-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color3-dark);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color3);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
  left: 15%;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: var(--spacing-xl) 0;
  background-color: var(--primary-color2-light);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, var(--primary-color3-light), transparent 60%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--heading-color);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: var(--spacing-md);
  color: var(--dark-gray);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  height: auto;
  padding: var(--spacing-xl) 0;
}

/* About Section */
.about-section {
  padding: var(--spacing-xl) 0;
  background-color: white;
}

.about-image {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.about-feature {
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border-radius: var(--border-radius);
  background-color: var(--light-gray);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-feature::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 0;
  left: 0;
  top: 0;
  background-color: var(--primary-color3);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.about-feature:hover::before {
  height: 100%;
}

.about-feature-icon {
  font-size: 2rem;
  color: var(--primary-color3);
  margin-bottom: var(--spacing-sm);
}

.about-feature-title {
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

/* Services Section */
.services-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color1-light);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  z-index: 0;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color2-light);
  border-radius: 50%;
  margin-bottom: var(--spacing-sm);
}

.service-icon i {
  font-size: 1rem;
  color: var(--primary-color2-dark);
}

.service-title {
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color3-dark);
  margin-bottom: var(--spacing-sm);
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--spacing-sm);
}

.service-features li {
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid var(--mid-gray);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--primary-color3);
  margin-right: 0.5rem;
}

/* Features Section */
.features-section {
  padding: var(--spacing-xl) 0;
  background-color: white;
}

.feature-item {
  text-align: center;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color4-light);
  border-radius: 50%;
  margin: 0 auto var(--spacing-sm);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color4-dark);
}

.feature-title {
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

/* Price Plan Section */
.price-plan-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.price-plan-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color5-light);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  z-index: 0;
}

.price-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.price-card-header {
  padding-bottom: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--mid-gray);
}

.price-card-title {
  font-weight: 700;
  text-align: center;
}

.price-card-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color3-dark);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.price-card-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--spacing-md);
}

.price-card-features li {
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid var(--mid-gray);
}

.price-card-features li:last-child {
  border-bottom: none;
}

.price-card-features li i {
  color: var(--primary-color3);
  margin-right: 0.5rem;
}

/* Team Section */
.team-section {
  padding: var(--spacing-xl) 0;
  background-color: white;
}

.team-member {
  margin-bottom: var(--spacing-md);
}

.team-member-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: var(--spacing-sm);
}

.team-member-details {
  text-align: center;
}

.team-member-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-member-role {
  color: var(--dark-gray);
}

/* Reviews Section */
.reviews-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--primary-color1-light);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color1);
  opacity: 0.5;
  border-radius: 50%;
  top: -75px;
  left: 10%;
  z-index: 0;
}

.reviews-section::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color3-light);
  opacity: 0.5;
  border-radius: 50%;
  bottom: -50px;
  right: 15%;
  z-index: 0;
}

.review-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.review-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 3rem;
  color: var(--primary-color1-light);
  z-index: -1;
}

.review-text {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

.review-author {
  font-weight: 600;
}

/* Core Info Section */
.core-info-section {
  padding: var(--spacing-xl) 0;
  background-color: white;
}

.core-info-item {
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border-radius: var(--border-radius);
  background-color: var(--light-gray);
  transition: all 0.3s ease;
}

.core-info-item:hover {
  background-color: var(--primary-color2-light);
}

.core-info-icon {
  font-size: 2rem;
  color: var(--primary-color2-dark);
  margin-bottom: var(--spacing-sm);
}

.core-info-title {
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.contact-form {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: var(--spacing-md);
}

.form-control {
  border: 1px solid var(--mid-gray);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  margin-bottom: var(--spacing-sm);
}

.form-control:focus {
  border-color: var(--primary-color3);
  box-shadow: 0 0 0 0.25rem rgba(152, 221, 202, 0.25);
}

.contact-info {
  background-color: var(--primary-color3-light);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  height: 100%;
}

.contact-info-item {
  margin-bottom: var(--spacing-sm);
}

.contact-info-item i {
  color: var(--primary-color3-dark);
  margin-right: 0.5rem;
}

/* Blog Section */
.blog-section {
  padding: var(--spacing-xl) 0;
  background-color: white;
}

.blog-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--spacing-md);
}

.blog-title {
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.blog-excerpt {
  margin-bottom: var(--spacing-sm);
}

.blog-link {
  color: var(--primary-color3-dark);
  font-weight: 500;
}

/* Footer */
footer {
  padding: var(--spacing-xl) 0 var(--spacing-md);
  background-color: var(--heading-color);
  color: white;
}

.footer-logo {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: var(--spacing-sm);
}

.footer-desc {
  margin-bottom: var(--spacing-md);
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  color: white;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--mid-gray);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact-item {
  margin-bottom: var(--spacing-xs);
  color: var(--mid-gray);
}

.footer-contact-item i {
  margin-right: 0.5rem;
  color: var(--primary-color3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--mid-gray);
}

/* Additional Pages */
.page-header {
  padding: var(--spacing-lg) 0;
  background-color: var(--primary-color2-light);
  margin-bottom: var(--spacing-lg);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.page-section {
  padding: var(--spacing-lg) 0;
  margin-bottom: var(--spacing-lg);
}

/* Space Page */
#space {
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
}

/* Animation utilities */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  :root {
    --h1-size: 2.25rem;
    --h2-size: 1.75rem;
    --h3-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --h1-size: 2rem;
    --h2-size: 1.5rem;
    --h3-size: 1.35rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-padding {
    padding: var(--spacing-lg) 0;
  }
} 