:root {
  --primary-color-1: #e6c9c9; /* Soft pink */
  --primary-color-2: #c9e6d1; /* Mint green */
  --primary-color-3: #d1c9e6; /* Lavender */
  --primary-color-4: #e6dfc9; /* Sand */
  --primary-color-5: #c9d8e6; /* Soft blue */
  
  --primary-color-1-dark: #c9abab;
  --primary-color-2-dark: #abc9b3;
  --primary-color-3-dark: #b3abc9;
  --primary-color-4-dark: #c9c1ab;
  --primary-color-5-dark: #abc0d8;
  
  --primary-color-1-light: #f2e0e0;
  --primary-color-2-light: #e0f2e6;
  --primary-color-3-light: #e6e0f2;
  --primary-color-4-light: #f2ecdf;
  --primary-color-5-light: #e0ebf2;
  
  --text-dark: #333333;
  --text-light: #f8f8f8;
  --bg-light: #ffffff;
  --bg-dark: #272727;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color-3);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--primary-color-3-dark);
}

.btn-secondary {
  background-color: var(--primary-color-1);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--primary-color-1-dark);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.main-menu ul {
  display: flex;
}

.main-menu ul li {
  margin-left: 30px;
}

.main-menu ul li a {
  font-weight: 500;
  position: relative;
}

.main-menu ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-3);
  left: 0;
  bottom: -5px;
  transition: all 0.3s ease;
}

.main-menu ul li a:hover::after,
.main-menu ul li a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-light);
}

/* About Section */
.about-section {
  background-color: var(--primary-color-2-light);
  position: relative;
  overflow: hidden;
}

.about-shape {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--primary-color-3-light);
  opacity: 0.2;
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
  margin-top: 50px;
}

.feature-item {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary-color-3);
}

/* Services Section */
.services-section {
  background-color: var(--bg-light);
  position: relative;
}

.services-shape {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-color-1-light);
  opacity: 0.2;
  z-index: 0;
}

.service-item {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color-3-light);
  transition: all 0.3s ease;
  z-index: -1;
}

.service-item:hover::before {
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--primary-color-3);
}

.service-features {
  margin-top: 20px;
}

.service-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color-2);
}

.service-price {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color-3);
}

/* Features Section */
.features-section {
  background-color: var(--primary-color-4-light);
  position: relative;
  overflow: hidden;
}

.features-shape {
  position: absolute;
  top: 100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-color-2-light);
  opacity: 0.3;
  z-index: 0;
}

.features-item {
  text-align: center;
  padding: 40px 30px;
  background-color: var(--bg-light);
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 35px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: var(--primary-color-2-light);
  color: var(--primary-color-2-dark);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--bg-light);
  position: relative;
}

.priceplan-shape {
  position: absolute;
  bottom: 100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-color-5-light);
  opacity: 0.2;
  z-index: 0;
}

.price-item {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 30px;
  border: 2px solid transparent;
}

.price-item.featured {
  border-color: var(--primary-color-3);
  transform: scale(1.05);
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-item.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--primary-color-3);
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color-3);
}

.price-duration {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  opacity: 0.7;
}

.price-features {
  margin: 25px 0;
}

.price-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color-2);
}

/* Team Section */
.team-section {
  background-color: var(--primary-color-3-light);
  position: relative;
  overflow: hidden;
}

.team-shape {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--primary-color-1-light);
  opacity: 0.2;
  z-index: 0;
}

.team-member {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  transition: all 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  background-color: var(--bg-light);
  padding: 25px 20px;
  text-align: center;
}

.team-info h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary-color-3);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--bg-light);
  position: relative;
}

.reviews-shape {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-color-4-light);
  opacity: 0.2;
  z-index: 0;
}

.review-item {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-text::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 24px;
  color: var(--primary-color-3);
  opacity: 0.3;
  margin-right: 10px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.review-author-info h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.review-author-info p {
  font-size: 14px;
  color: var(--text-dark);
  opacity: 0.7;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-color-5-light);
  position: relative;
  overflow: hidden;
}

.coreinfo-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-color-2-light);
  opacity: 0.3;
  z-index: 0;
}

.coreinfo-item {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary-color-5);
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-light);
  position: relative;
}

.contact-shape {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-color-1-light);
  opacity: 0.2;
  z-index: 0;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color-3-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color-3);
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-form {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 55px;
  padding: 0 20px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 100%;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-3);
  box-shadow: none;
  outline: none;
}

textarea.form-control {
  height: 150px;
  padding: 20px;
  resize: none;
}

.service-checkbox {
  margin-bottom: 20px;
}

.service-checkbox label {
  margin-left: 10px;
  cursor: pointer;
}

/* Blog Section */
.blog-section {
  background-color: var(--primary-color-1-light);
  position: relative;
  overflow: hidden;
}

.blog-shape {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--primary-color-3-light);
  opacity: 0.2;
  z-index: 0;
}

.blog-item {
  background-color: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  margin-bottom: 15px;
}

.blog-meta span {
  font-size: 14px;
  color: var(--text-dark);
  opacity: 0.7;
  margin-right: 15px;
}

.blog-meta span i {
  margin-right: 5px;
  color: var(--primary-color-3);
}

.blog-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color-3);
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--primary-color-3-dark);
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 70px 0 20px;
  position: relative;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h3 {
  color: var(--text-light);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color-3);
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: var(--text-light);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  opacity: 1;
  color: var(--primary-color-3);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

.copyright {
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* Space Page Styles */
.space-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color-3-light);
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: all 0.5s ease;
}

.fade-in.active {
  opacity: 1;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-color-3);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color-3);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color-3) !important;
}

/* Additional Pages Styles */
.page-header {
  height: 40vh;
  min-height: 300px;
  background: linear-gradient(to right, var(--primary-color-3-dark), var(--primary-color-3-light));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../INN_images/pattern.png');
  opacity: 0.1;
}

.page-title {
  position: relative;
  z-index: 2;
  color: var(--text-light);
}

.page-title h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
}

.breadcrumb li {
  color: var(--text-light);
  opacity: 0.8;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 10px;
}

.breadcrumb li:last-child {
  opacity: 1;
}

/* Decorative Elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.shape-divider .shape-fill {
  fill: var(--bg-light);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-dark {
  background-color: var(--bg-dark);
}

.text-primary {
  color: var(--primary-color-3);
}

.rounded {
  border-radius: 10px;
}

.shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
} 