:root {
  /* Color Palette - Pastel colors */
  --primary-color-1: #e8d5c4; /* Soft cream */
  --primary-color-2: #c3dbd4; /* Mint */
  --primary-color-3: #f7d9c4; /* Peach */
  --primary-color-4: #d5e5f2; /* Sky blue */
  --primary-color-5: #e8e1ef; /* Lavender */

  /* Shades */
  --primary-color-1-dark: #d0bda9;
  --primary-color-2-dark: #a8c5be;
  --primary-color-3-dark: #e1c4af;
  --primary-color-4-dark: #bfd0dd;
  --primary-color-5-dark: #d3cad9;

  --primary-color-1-light: #f2e7df;
  --primary-color-2-light: #d9e9e4;
  --primary-color-3-light: #fbe6d9;
  --primary-color-4-light: #e6f0f7;
  --primary-color-5-light: #f2eef5;

  /* Text colors */
  --text-dark: #333333;
  --text-light: #f8f9fa;
  --text-muted: #6c757d;

  /* Background */
  --bg-light: #ffffff;
  --bg-dark: #212529;
}

/* Base Styling */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

section {
  padding: 80px 0;
  position: relative;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color-3);
  border-color: var(--primary-color-3);
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-3-dark);
  border-color: var(--primary-color-3-dark);
}

.btn-secondary {
  background-color: var(--primary-color-5);
  border-color: var(--primary-color-5);
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color-5-dark);
  border-color: var(--primary-color-5-dark);
}

/* Header */
header {
  background-color: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.75rem;
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color-3);
}

/* Hero Section */
.hero-section {
  min-height: 85vh;
  background-color: var(--primary-color-4-light);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Swiper Slider */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--text-light);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color-3);
}

/* About Section */
.about-section {
  background-color: var(--bg-light);
}

.about-feature {
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature.feature-1 {
  background-color: var(--primary-color-1-light);
}

.about-feature.feature-2 {
  background-color: var(--primary-color-2-light);
}

.about-feature.feature-3 {
  background-color: var(--primary-color-3-light);
}

.about-feature.feature-4 {
  background-color: var(--primary-color-4-light);
}

/* Services Section */
.services-section {
  background-color: var(--primary-color-5-light);
}

.service-item {
  background-color: var(--bg-light);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-3);
}

.service-item .price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color-3-dark);
  margin: 15px 0;
}

.service-item .features {
  margin: 20px 0;
}

.service-item .features ul {
  list-style: none;
  padding-left: 0;
}

.service-item .features ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.service-item .features ul li:before {
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
}

/* Features Section */
.features-section {
  background-color: var(--bg-light);
}

.feature-item {
  text-align: center;
  margin-bottom: 40px;
}

.feature-item .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-2);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-color-1-light);
}

.price-item {
  background-color: var(--bg-light);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-item .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-3);
  margin: 20px 0;
}

.price-item .features {
  margin: 20px 0;
}

.price-item .features ul {
  list-style: none;
  padding-left: 0;
}

.price-item .features ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.price-item .features ul li:before {
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
}

/* Team Section */
.team-section {
  background-color: var(--primary-color-4-light);
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-member .team-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.team-member .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member .name {
  font-weight: 700;
  margin-bottom: 5px;
}

.team-member .role {
  color: var(--text-muted);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--bg-light);
}

.reviews-slider .swiper-slide {
  padding: 30px;
}

.review-item {
  background-color: var(--primary-color-2-light);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-item:before {
  content: "\f10d";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 3rem;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.1;
  color: var(--primary-color-3);
}

.review-item .author {
  font-weight: 700;
  margin-top: 20px;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-color-3-light);
}

.coreinfo-item {
  background-color: var(--bg-light);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-item .icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color-3);
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-color-5-light);
}

.contact-form {
  background-color: var(--bg-light);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--primary-color-5-dark);
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.form-control:focus {
  border-color: var(--primary-color-3);
  box-shadow: 0 0 0 0.25rem rgba(231, 126, 35, 0.25);
}

.form-select {
  border: 1px solid var(--primary-color-5-dark);
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.form-select:focus {
  border-color: var(--primary-color-3);
  box-shadow: 0 0 0 0.25rem rgba(231, 126, 35, 0.25);
}

.contact-info {
  margin-top: 40px;
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info p i {
  margin-right: 10px;
  color: var(--primary-color-3);
}

/* Blog Section */
.blog-section {
  background-color: var(--bg-light);
}

.blog-item {
  background-color: var(--bg-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item .blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-item .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-item .blog-content {
  padding: 25px;
}

.blog-item .blog-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-item .blog-excerpt {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.blog-item .blog-link {
  color: var(--primary-color-3);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.blog-item .blog-link:hover {
  color: var(--primary-color-3-dark);
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
}

footer h5 {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: var(--primary-color-3);
}

footer p {
  margin-bottom: 10px;
}

footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--primary-color-3);
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 15px;
}

footer .site-desc {
  margin-top: 20px;
  margin-bottom: 30px;
}

footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 30px;
  text-align: center;
}

/* Additional Pages */
.page-header {
  background-color: var(--primary-color-3-light);
  padding: 100px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
}

.additional-section {
  padding: 80px 0;
}

.additional-section:nth-child(odd) {
  background-color: var(--bg-light);
}

.additional-section:nth-child(even) {
  background-color: var(--primary-color-5-light);
}

/* Space Page */
#space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-4-light);
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  transition: all 0.6s ease;
}

.animate-fade-in.active {
  opacity: 1;
}

/* Shape decorations */
.shape-decorator {
  position: absolute;
  z-index: 0;
}

.shape-top-right {
  top: -50px;
  right: -50px;
}

.shape-bottom-left {
  bottom: -50px;
  left: -50px;
}

.shape-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--primary-color-1-light);
  opacity: 0.5;
}

.shape-square {
  width: 150px;
  height: 150px;
  background-color: var(--primary-color-2-light);
  transform: rotate(45deg);
  opacity: 0.5;
}

.shape-wave {
  width: 100%;
  height: 150px;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color-3) !important;
}

.bg-primary {
  background-color: var(--primary-color-3) !important;
}

.bg-light-1 {
  background-color: var(--primary-color-1-light);
}

.bg-light-2 {
  background-color: var(--primary-color-2-light);
}

.bg-light-3 {
  background-color: var(--primary-color-3-light);
}

.bg-light-4 {
  background-color: var(--primary-color-4-light);
}

.bg-light-5 {
  background-color: var(--primary-color-5-light);
} 