:root {
  --primary-color-1: #d8e2dc; /* Soft mint */
  --primary-color-2: #ffe5d9; /* Pale peach */
  --primary-color-3: #ffcad4; /* Soft pink */
  --primary-color-4: #f4acb7; /* Muted rose */
  --primary-color-5: #9d8189; /* Mauve */
  
  --primary-color-1-light: #e9eeec;
  --primary-color-1-dark: #b1bab5;
  
  --primary-color-2-light: #fff6f1;
  --primary-color-2-dark: #e6c8b7;
  
  --primary-color-3-light: #ffe0e5;
  --primary-color-3-dark: #e6a1af;
  
  --primary-color-4-light: #f7c1c9;
  --primary-color-4-dark: #d3899c;
  
  --primary-color-5-light: #b8a3a8;
  --primary-color-5-dark: #7c666d;
  
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #777777;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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: 1rem;
  line-height: 1.2;
}

section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

.btn-custom {
  padding: 12px 30px;
  background-color: var(--primary-color-4);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  background-color: var(--primary-color-4-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.header.sticky {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.header .navbar-brand {
  font-weight: 700;
  font-size: 28px;
  color: var(--primary-color-5);
}

.header .nav-link {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 15px;
  position: relative;
  transition: all 0.3s ease;
}

.header .nav-link:hover,
.header .nav-link.active {
  color: var(--primary-color-4);
}

.header .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-4);
  transition: all 0.3s ease;
}

.header .nav-link:hover::after,
.header .nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  background-color: var(--primary-color-1-light);
}

.hero .swiper {
  width: 100%;
  height: 100%;
}

.hero .swiper-slide {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-btn {
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

/* About Section */
.about {
  background-color: var(--white);
  position: relative;
}

.about-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: var(--primary-color-2-light);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 40% 0);
  z-index: 0;
}

.about-img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-feature {
  padding: 25px;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 25px;
  border-left: 4px solid var(--primary-color-3);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 40px;
  color: var(--primary-color-3);
  margin-bottom: 20px;
}

.about-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Services Section */
.services {
  background-color: var(--primary-color-1-light);
  position: relative;
}

.services-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: var(--white);
  clip-path: polygon(0 50%, 100% 100%, 100% 100%, 0 100%);
  z-index: 0;
}

.service-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1rem;
  margin-bottom: 15px;
}

.service-content p {
  margin-bottom: 20px;
}

.service-price {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--primary-color-2);
  color: var(--text-dark);
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-features {
  margin-top: 20px;
}

.service-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--primary-color-3);
  margin-right: 10px;
}

/* Features Section */
.features {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.features-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, var(--primary-color-2-light) 0%, transparent 60%);
  z-index: 0;
}

.feature-item {
  padding: 30px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  border-bottom: 4px solid var(--primary-color-4);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 50px;
  color: var(--primary-color-4);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan {
  background-color: var(--primary-color-2-light);
  position: relative;
}

.price-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 30px;
  background-color: var(--primary-color-3-light);
  position: relative;
}

.price-card:nth-child(2) .price-header {
  background-color: var(--primary-color-4-light);
}

.price-card:nth-child(3) .price-header {
  background-color: var(--primary-color-5-light);
}

.price-header h3 {
  font-size: 1rem;
  margin-bottom: 15px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color-5);
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
}

.price-content {
  padding: 30px;
}

.price-features {
  margin-bottom: 30px;
}

.price-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features i {
  color: var(--primary-color-3);
  margin-right: 10px;
}

/* Team Section */
.team {
  background-color: var(--white);
  position: relative;
}

.team-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 300px;
  background-color: var(--primary-color-1-light);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.team-member {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.team-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.team-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.team-info p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.8;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-color-1-light);
  position: relative;
}

.review-slider .swiper {
  width: 100%;
  padding: 40px 20px;
}

.review-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-top: 30px;
}

.review-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 100px;
  color: var(--primary-color-3-light);
  opacity: 0.5;
  line-height: 1;
  font-family: serif;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.review-author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Core Info Section */
.coreinfo {
  background-color: var(--white);
  position: relative;
}

.coreinfo-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color-2-light) 0%, transparent 50%);
  z-index: 0;
}

.coreinfo-item {
  padding: 30px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  border-top: 4px solid var(--primary-color-5);
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 40px;
  color: var(--primary-color-5);
  margin-bottom: 20px;
}

.coreinfo-item h3 {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  background-color: var(--primary-color-2-light);
  position: relative;
}

.contact-form {
  padding: 40px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-4);
  box-shadow: 0 0 0 0.25rem rgba(244, 172, 183, 0.25);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.contact-info {
  background-color: var(--primary-color-4);
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  color: var(--white);
}

.contact-info h3 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.contact-info-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
}

.contact-info-text h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-info-text p {
  margin: 0;
}

/* Blog Section */
.blog {
  background-color: var(--white);
  position: relative;
}

.blog-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 200px;
  background-color: var(--primary-color-1-light);
  clip-path: polygon(0 80%, 100% 50%, 100% 100%, 0 100%);
  z-index: 0;
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  background-color: var(--white);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 250px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--primary-color-3);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-content h3 {
  font-size: 1rem;
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color-4);
  text-decoration: none;
  position: relative;
}

.blog-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-4);
  transition: all 0.3s ease;
}

.blog-link:hover::after {
  width: 100%;
}

/* Footer */
.footer {
  background-color: var(--primary-color-5-dark);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 30px;
  opacity: 0.8;
}

.footer-heading {
  font-size: 1rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color-3);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
  color: var(--primary-color-3);
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.footer-contact-text {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 30px;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.6;
  margin: 0;
}

/* Additional Page Styles */
.page-header {
  height: 400px;
  background-color: var(--primary-color-5);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--white);
  clip-path: polygon(0 50%, 100% 100%, 100% 100%, 0 100%);
}

.page-header-content {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-header-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Space Page */
#space {
  min-height: 500px;
  width: 100%;
  background-color: var(--primary-color-1-light);
  position: relative;
} 