:root {
  --primary-color-1: #e7c9ff; /* Light lavender */
  --primary-color-2: #ffcbc1; /* Soft peach */
  --primary-color-3: #c2e7f2; /* Light sky blue */
  --primary-color-4: #d8f2c2; /* Mint green */
  --primary-color-5: #f2e4c2; /* Cream */
  
  --dark-shade-1: #8a6db1;
  --dark-shade-2: #c27b6f;
  --dark-shade-3: #6a9eb1;
  --dark-shade-4: #7fb06a;
  --dark-shade-5: #b1a56a;
  
  --light-shade-1: #f5edff;
  --light-shade-2: #ffeeea;
  --light-shade-3: #eaf8ff;
  --light-shade-4: #f0ffea;
  --light-shade-5: #fffaea;
  
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #777777;
  --bg-light: #f8f9fa;
  --bg-dark: #212529;
}

/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-subtitle {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.section-description {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: var(--primary-color-3);
  border-color: var(--primary-color-3);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--dark-shade-3);
  border-color: var(--dark-shade-3);
  color: var(--text-light);
}

.btn-outline-primary {
  border-color: var(--primary-color-3);
  color: var(--text-dark);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color-3);
  color: var(--text-dark);
}

/* Header */
.site-header {
  padding: 1rem 0;
  background-color: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .navbar-brand {
  font-weight: 800;
  font-size: 1rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* About Section */
.about-section {
  background-color: var(--light-shade-3);
}

.about-feature {
  background-color: var(--text-light);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-3);
}

/* Services Section */
.services-section {
  background-color: var(--light-shade-1);
}

.service-item {
  background-color: var(--text-light);
  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%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
}

.service-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-shade-3);
  margin-bottom: 1rem;
}

.service-features {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: var(--text-light);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-4);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-shade-5);
}

.pricing-card {
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 3rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--primary-color-3);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.pricing-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-shade-3);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  margin-right: 0.5rem;
  color: var(--dark-shade-4);
}

/* Team Section */
.team-section {
  background-color: var(--light-shade-2);
}

.team-member {
  background-color: var(--text-light);
  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;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-muted);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-shade-4);
}

.review-item {
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 2rem;
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -20px;
  color: var(--primary-color-2);
  opacity: 0.3;
}

.review-author {
  font-weight: 700;
  color: var(--dark-shade-2);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light-shade-3);
}

.coreinfo-item {
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.coreinfo-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-1);
}

/* Contact Section */
.contact-section {
  background-color: var(--text-light);
}

.contact-form {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.75rem 1rem;
}

.form-select {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.75rem 1rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-shade-1);
}

.blog-card {
  background-color: var(--text-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.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.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style-type: none;
  padding-left: 0;
}

.footer-links li {
  padding: 0.5rem 0;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}

/* Shape Elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.shape-top {
  top: 0;
  bottom: auto;
  transform: rotate(180deg);
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional Pages */
.page-header {
  height: 50vh;
  min-height: 400px;
  background-color: var(--primary-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-dark);
  position: relative;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1rem;
}

/* Space Page */
#space {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-shade-3);
} 