:root {
  /* Primary Colors - Pastel Palette */
  --primary-1: #e8f4f8; /* Light Blue */
  --primary-2: #d8e2dc; /* Sage Green */
  --primary-3: #ffe5d9; /* Peach */
  --primary-4: #ffcad4; /* Pink */
  --primary-5: #f4f1de; /* Cream */
  
  /* Shades */
  --primary-1-dark: #b6d0d9;
  --primary-2-dark: #b6c0ba;
  --primary-3-dark: #d9c4ba;
  --primary-4-dark: #d9acb4;
  --primary-5-dark: #d0cdbe;
  
  --primary-1-light: #f4f9fb;
  --primary-2-light: #eaf0ec;
  --primary-3-light: #fff0eb;
  --primary-4-light: #ffe0e5;
  --primary-5-light: #faf8ed;
  
  /* Text Colors */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  
  /* Other */
  --white: #ffffff;
  --black: #000000;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-1-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-1);
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.btn {
  display: inline-block;
  background-color: var(--primary-3);
  color: var(--text-dark);
  padding: 12px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-3-dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-3);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.navbar-nav {
  display: flex;
  list-style: none;
  flex-direction: row;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-3);
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s ease;
}

.hero-desc {
  margin-bottom: 40px;
  animation: fadeInUp 1.4s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* About Section */
.about-section {
  background-color: var(--primary-1-light);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-text {
  flex: 1;
}

.about-feature {
  margin-top: 30px;
}

.about-feature-item {
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.about-feature-item:hover {
  transform: translateY(-5px);
}

.about-feature-item i {
  font-size: 2rem;
  color: var(--primary-3);
  margin-bottom: 15px;
}

.about-feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Services Section */
.services-section {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-item {
  background-color: var(--primary-5-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-name {
  font-size: 1rem;
  margin-bottom: 15px;
}

.service-desc {
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 15px;
}

.service-features ul {
  list-style: none;
}

.service-features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-3);
}

.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-3-dark);
}

/* Features Section */
.features-section {
  background-color: var(--primary-2-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-4);
  min-width: 60px;
}

.feature-content h3 {
  margin-bottom: 10px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--white);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.priceplan-item {
  background-color: var(--primary-1-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.priceplan-item:hover {
  transform: translateY(-10px);
}

.priceplan-header {
  background-color: var(--primary-1);
  padding: 30px 20px;
}

.priceplan-name {
  font-size: 1rem;
  margin-bottom: 15px;
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-3-dark);
  margin-bottom: 0;
}

.priceplan-content {
  padding: 30px 20px;
}

.priceplan-desc {
  margin-bottom: 25px;
}

.priceplan-features {
  text-align: left;
  margin-bottom: 30px;
}

.priceplan-features ul {
  list-style: none;
}

.priceplan-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.priceplan-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-3);
}

/* Team Section */
.team-section {
  background-color: var(--primary-3-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-item:hover {
  transform: translateY(-10px);
}

.team-image {
  overflow: hidden;
  height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-item:hover .team-image img {
  transform: scale(1.1);
}

.team-content {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--text-medium);
  margin-bottom: 15px;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--white);
}

.swiper-reviews {
  overflow: hidden;
  padding: 30px 10px;
}

.review-item {
  background-color: var(--primary-5-light);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-top: 30px;
}

.review-text:before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary-4-light);
  opacity: 0.5;
}

.review-author {
  font-weight: 700;
  text-align: right;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-4-light);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.coreinfo-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: 20px;
}

.coreinfo-item h3 {
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-2-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--text-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-3);
  outline: none;
}

.form-check {
  margin-bottom: 15px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 1rem;
  color: var(--primary-3);
  margin-right: 15px;
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  color: var(--text-medium);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-3-dark);
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--primary-3);
}

/* Footer */
footer {
  background-color: var(--primary-1-dark);
  padding: 80px 0 30px;
  color: var(--text-dark);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about h3 {
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 25px;
}

.footer-links h4 {
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-dark);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-3);
  padding-left: 5px;
}

.footer-contact h4 {
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-contact-icon {
  margin-right: 15px;
  color: var(--primary-3);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  text-align: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Shape Decorations */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-color: var(--primary-3-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: var(--primary-4-light);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: float 8s ease-in-out infinite;
}

.shape-3 {
  top: 50%;
  right: 10%;
  width: 80px;
  height: 80px;
  background-color: var(--primary-2-light);
  border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, 15px) rotate(10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Space Page */
#space {
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional Pages */
.add-page-section {
  padding: 80px 0;
}

.add-page-header {
  background-color: var(--primary-3-light);
  padding: 120px 0 80px;
  text-align: center;
}

.add-page-content {
  padding: 80px 0;
}

.add-page-section:nth-child(even) {
  background-color: var(--primary-1-light);
}

.add-page-section:nth-child(odd) {
  background-color: var(--white);
}

.add-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.add-page-item {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
}

.add-page-item:hover {
  transform: translateY(-5px);
}

.add-page-icon {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: 20px;
}

/* Swiper Custom Styles */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary-3);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-3);
}

.swiper-container {
  padding-bottom: 50px;
} 