:root {
  /* Primary Colors */
  --primary-color-1: #6b5b95;
  --primary-color-2: #b19cd9;
  --primary-color-3: #d3a25f;
  --primary-color-4: #86ac41;
  --primary-color-5: #507b9c;
  
  /* Light/Dark Shades */
  --primary-color-1-light: #8978b3;
  --primary-color-1-dark: #4e4070;
  --primary-color-2-light: #c9b9e5;
  --primary-color-2-dark: #9a7fcb;
  --primary-color-3-light: #e1ba81;
  --primary-color-3-dark: #b38a45;
  --primary-color-4-light: #a3c569;
  --primary-color-4-dark: #6a8934;
  --primary-color-5-light: #7395b1;
  --primary-color-5-dark: #3c6079;
  
  /* Neutrals */
  --neutral-dark: #333333;
  --neutral-medium: #777777;
  --neutral-light: #f8f9fa;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

p {
  line-height: 1.8;
}

section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--neutral-light);
}

/* Header & Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 500;
  color: var(--neutral-dark);
  margin: 0 0.5rem;
  position: relative;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--primary-color-1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background-color: var(--primary-color-2-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: var(--primary-color-1-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--neutral-dark);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color-1);
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 550px;
  margin-bottom: 2.5rem;
}

.hero-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-title {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.about-feature {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 1.5rem;
}

.about-feature-name {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background-color: var(--neutral-light);
}

.services-title {
  color: var(--primary-color-1);
}

.services-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  margin-bottom: 30px;
  height: 100%;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.services-item-content {
  padding: 2rem;
}

.services-item-name {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

.services-item-price {
  font-weight: 700;
  color: var(--primary-color-3);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.services-item-features {
  list-style: none;
  padding-left: 0;
}

.services-item-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.services-item-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-4);
}

/* Features Section */
.features {
  position: relative;
}

.features-title {
  color: var(--primary-color-1);
}

.features-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
}

.features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.features-item-icon {
  font-size: 3rem;
  color: var(--primary-color-3);
  margin-bottom: 1.5rem;
}

.features-item-name {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background-color: var(--neutral-light);
}

.priceplan-title {
  color: var(--primary-color-1);
}

.priceplan-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  text-align: center;
  padding: 3rem 2rem;
  height: 100%;
  position: relative;
  z-index: 1;
}

.priceplan-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color-2);
  z-index: -1;
}

.priceplan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.priceplan-item-name {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

.priceplan-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-3);
  margin-bottom: 2rem;
}

.priceplan-item-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.priceplan-item-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* Team Section */
.team-title {
  color: var(--primary-color-1);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-color-2);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.reviews-title {
  color: var(--primary-color-1);
}

.reviews-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
  position: relative;
}

.reviews-item-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.reviews-item-text::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -5px;
  color: var(--primary-color-2-light);
  font-size: 1.5rem;
}

.reviews-item-author {
  font-weight: 600;
  color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo-title {
  color: var(--primary-color-1);
}

.coreinfo-item {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
  margin-bottom: 2rem;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-item-icon {
  font-size: 2.5rem;
  color: var(--primary-color-4);
  margin-bottom: 1.5rem;
}

.coreinfo-item-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Contact Form Section */
.contact {
  position: relative;
}

.contact-title {
  color: var(--primary-color-1);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 1.5rem 0.5rem;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.contact-form .form-check-input:checked {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.contact-form button {
  background-color: var(--primary-color-1);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s;
}

.contact-form button:hover {
  background-color: var(--primary-color-1-dark);
  transform: translateY(-5px);
}

.contact-info {
  background: var(--primary-color-1);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  height: 100%;
}

.contact-info-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Blog Section */
.blog {
  background-color: var(--neutral-light);
}

.blog-title {
  color: var(--primary-color-1);
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  margin-bottom: 30px;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item-content {
  padding: 2rem;
}

.blog-item-title {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-item-excerpt {
  margin-bottom: 1.5rem;
}

.blog-item-link {
  display: inline-block;
  color: var(--primary-color-1);
  font-weight: 600;
  transition: all 0.3s;
}

.blog-item-link:hover {
  color: var(--primary-color-1-dark);
}

/* FAQ Section */
.faq-title {
  color: var(--primary-color-1);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background-color: white;
  color: var(--neutral-dark);
  font-weight: 600;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1-light);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1.5rem;
}

/* Gallery Section */
.gallery {
  padding-bottom: 3rem;
}

.gallery-title {
  color: var(--primary-color-1);
  margin-bottom: 3rem;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 5rem 0 2rem;
}

footer h5 {
  color: var(--primary-color-2);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

footer p {
  color: #ccc;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s;
}

footer ul li a:hover {
  color: var(--primary-color-2);
}

#site-copyright {
  border-top: 1px solid #444;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  display: block;
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional Pages */
.add-page-section {
  padding: 5rem 0;
}

.add-page-section:nth-child(even) {
  background-color: var(--neutral-light);
}

.add-page-title {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.add-page-element {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
  margin-bottom: 2rem;
}

.add-page-element:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.add-page-element-icon {
  font-size: 2.5rem;
  color: var(--primary-color-3);
  margin-bottom: 1.5rem;
} 