:root {
  --primary-color-1: #3e5973; /* Dark blue */
  --primary-color-2: #e09f7d; /* Terracotta */
  --primary-color-3: #f5d491; /* Soft gold */
  --primary-color-4: #a7cbb5; /* Sage green */
  --primary-color-5: #5b3e57; /* Plum */
  
  /* Shades */
  --primary-color-1-light: #5a7694;
  --primary-color-1-dark: #2a3e50;
  --primary-color-2-light: #eeb79c;
  --primary-color-2-dark: #c0855f;
  --primary-color-3-light: #f9e5b9;
  --primary-color-3-dark: #d3b670;
  --primary-color-4-light: #c4dece;
  --primary-color-4-dark: #87a993;
  --primary-color-5-light: #7c5977;
  --primary-color-5-dark: #3f2a3c;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding: 6rem 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  position: relative;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--primary-color-1);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary-color-2);
  margin-bottom: 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 600;
  color: var(--primary-color-1);
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color-2);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-1-light);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(62, 89, 115, 0.8), rgba(91, 62, 87, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* About Section */
.about {
  background-color: #fff;
}

.about-feature {
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services {
  background-color: #f9f9f9;
}

.service-item {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-img {
  height: 200px;
  overflow: hidden;
}

.service-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-item:hover .service-item-img img {
  transform: scale(1.1);
}

.service-item-content {
  padding: 2rem;
}

.service-item-name {
  font-size: 1.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.service-item-price {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color-3);
  color: var(--primary-color-1-dark);
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-item-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-item-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.service-item-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features {
  background-color: #fff;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color-3);
  margin-bottom: 1.5rem;
}

.feature-item-name {
  font-size: 1.3rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background-color: #f9f9f9;
}

.pricing-table {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.pricing-table:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  background-color: var(--primary-color-1);
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.pricing-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.pricing-body {
  padding: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team {
  background-color: #fff;
}

.team-member {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member-img {
  height: 300px;
  overflow: hidden;
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-info {
  padding: 1.5rem;
  text-align: center;
}

.team-member-name {
  font-size: 1.3rem;
  color: var(--primary-color-1);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-color-2);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(245, 212, 145, 0.1);
}

.reviews::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(224, 159, 125, 0.1);
}

.review-item {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text::before {
  content: '\201C';
  font-family: Arial;
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: var(--primary-color-3);
  opacity: 0.3;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo {
  background-color: #fff;
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: #f9f9f9;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  background-color: var(--primary-color-4-light);
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-color-5);
  margin-bottom: 1.5rem;
}

.coreinfo-item-title {
  font-size: 1.3rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
}

.contact-form {
  background-color: #fff;
  padding: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 0.8rem 1.2rem;
  border-radius: 0.3rem;
  border: 1px solid #eee;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-4);
}

.form-check-label {
  font-size: 0.9rem;
}

/* Blog Section */
.blog {
  background-color: #fff;
}

.blog-item {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  height: 200px;
  overflow: hidden;
}

.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 2rem;
}

.blog-item-title {
  font-size: 1.3rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.blog-item-excerpt {
  margin-bottom: 1.5rem;
}

.blog-item-link {
  display: inline-block;
  color: var(--primary-color-2);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-item-link:hover {
  color: var(--primary-color-2-dark);
}

/* FAQ Section */
.faq {
  background-color: #f9f9f9;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
}

.accordion-button {
  background-color: #fff;
  color: var(--primary-color-1);
  font-weight: 600;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1.5rem;
  background-color: #fff;
}

/* Gallery Section */
.gallery {
  background-color: #fff;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-img {
  height: 250px;
  overflow: hidden;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--primary-color-1-dark);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer h4 {
  color: var(--primary-color-3);
  margin-bottom: 1.5rem;
}

.footer p {
  opacity: 0.8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-color-3);
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#site-copyright {
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Additional pages */
.page-header {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-1);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(62, 89, 115, 0.8), rgba(91, 62, 87, 0.8));
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.breadcrumb {
  background-color: transparent;
  justify-content: center;
  margin-bottom: 0;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
  color: #fff;
}

/* Decorative elements */
.shape-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: var(--primary-color-2);
  opacity: 0.1;
  z-index: 0;
}

.shape-2 {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  background-color: var(--primary-color-4);
  opacity: 0.1;
  z-index: 0;
}

/* Space page specific */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInUp {
  animation-name: fadeInUp;
} 