:root {
  /* Main color palette */
  --primary-color: #6a5acd;      /* Slate Blue */
  --secondary-color: #d8bfd8;    /* Thistle - soft lavender */
  --accent-color: #ff7f50;       /* Coral */
  --neutral-color: #f5f5f5;      /* White Smoke */
  --dark-color: #2e2e2e;         /* Almost Black */
  
  /* Shades */
  --primary-light: #8a7ddd;
  --primary-dark: #4b3bad;
  --secondary-light: #e8d8e8;
  --secondary-dark: #c8a6c8;
  --accent-light: #ff9e7a;
  --accent-dark: #e05e30;
  --neutral-light: #ffffff;
  --neutral-dark: #e0e0e0;
  --dark-light: #4e4e4e;
  --dark-darker: #1a1a1a;
}

/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-color);
  background-color: var(--neutral-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  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;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

/* Header Styles */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark-color);
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem;
  color: var(--dark-color);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar.scrolled {
  background-color: var(--neutral-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--secondary-light);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--dark-light);
}

.hero-image {
  position: relative;
}

/* About Section */
.about-section {
  position: relative;
  background-color: var(--neutral-light);
}

.about-feature {
  margin-bottom: 30px;
  transition: all 0.3s ease;
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-feature h4 {
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  position: relative;
  background-color: var(--secondary-light);
}

.service-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.service-item h4 {
  margin-bottom: 15px;
}

.service-item .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 15px 0;
}

.service-features {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--neutral-dark);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  position: relative;
  background-color: var(--neutral-light);
}

.feature-item {
  text-align: center;
  margin-bottom: 30px;
  padding: 40px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Price Plan Section */
.priceplan-section {
  position: relative;
  background-color: var(--secondary-light);
}

.price-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.price-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.price-header {
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
  text-align: center;
}

.price-header h4 {
  color: white;
  margin-bottom: 0;
}

.price-body {
  padding: 30px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-dark);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  position: relative;
  background-color: var(--neutral-light);
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.team-image img {
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
}

.team-details {
  padding: 20px;
}

.team-member h4 {
  margin-bottom: 5px;
}

.team-member p {
  color: var(--primary-color);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  background-color: var(--secondary-light);
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.review-text:before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 60px;
  color: var(--primary-light);
  position: absolute;
  left: 0;
  top: -20px;
}

.review-author {
  font-weight: 700;
  display: flex;
  align-items: center;
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
  background-color: var(--neutral-light);
}

.coreinfo-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  position: relative;
  background-color: var(--secondary-light);
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border: 1px solid var(--neutral-dark);
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Blog Section */
.blog-section {
  position: relative;
  background-color: var(--neutral-light);
}

.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-content h4 {
  margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
  position: relative;
  background-color: var(--secondary-light);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Gallery Section */
.gallery-section {
  position: relative;
  background-color: var(--neutral-light);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 70px 0 20px;
}

footer .footer-title {
  color: white;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

footer p {
  color: var(--neutral-dark);
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: var(--neutral-dark);
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
}

#site-copyright {
  color: var(--neutral-dark);
  font-size: 0.9rem;
}

/* Decorative shapes */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-light);
  opacity: 0.1;
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--accent-light);
  opacity: 0.1;
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  padding-bottom: 50px;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.swiper-button-next, .swiper-button-prev {
  color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

/* Additional Pages */
.page-header {
  background-color: var(--primary-color);
  padding: 100px 0 50px;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-title {
  font-size: 3rem;
  color: white;
  position: relative;
  z-index: 1;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

/* Space Page */
#space {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-light);
}

/* Media queries for responsive design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .contact-form {
    padding: 25px;
  }
} 