:root {
  /* Color Palette */
  --primary-color-1: #ff7e5f; /* Sunset orange */
  --primary-color-2: #feb47b; /* Light peach */
  --primary-color-3: #5e35b1; /* Deep purple */
  --primary-color-4: #ffd54f; /* Warm yellow */
  --primary-color-5: #2c3e50; /* Dark slate */
  
  /* Light/Dark Shades */
  --primary-color-1-light: #ff9e85;
  --primary-color-1-dark: #e55a3b;
  --primary-color-2-light: #ffca9c;
  --primary-color-2-dark: #e09656;
  --primary-color-3-light: #7c52c8;
  --primary-color-3-dark: #4a2490;
  --primary-color-4-light: #ffe380;
  --primary-color-4-dark: #dbb32c;
  --primary-color-5-light: #3e5670;
  --primary-color-5-dark: #1a242f;
}

/* General styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--primary-color-5);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 2rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-2));
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  background-color: #fff;
  position: relative;
}

.about-feature-item {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-10px);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services {
  background-color: #f9f9f9;
  position: relative;
}

.service-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

.service-price {
  font-weight: 700;
  color: var(--primary-color-3);
  font-size: 1.5rem;
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed #eee;
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features {
  background-color: white;
}

.feature-item {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: var(--primary-color-3-light);
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

/* Price Plan Section */
.priceplan {
  background-color: #f9f9f9;
}

.price-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 5px solid transparent;
}

.price-card:hover {
  border-bottom: 5px solid var(--primary-color-1);
  transform: translateY(-10px);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color-3);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.7rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Team Section */
.team {
  background-color: white;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--primary-color-1-light);
}

.team-member-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-color-1);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-color-5-light);
  color: white;
}

.review-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  margin: 1rem 0;
}

.review-author {
  font-weight: 700;
  margin-top: 1rem;
  display: flex;
  align-items: center;
}

.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

/* Core Info Section */
.coreinfo {
  background-color: white;
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 8px;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  background: var(--primary-color-1-light);
  color: white;
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color-3);
  margin-bottom: 1rem;
}

/* Contact Form Section */
.contact {
  background-color: #f9f9f9;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  margin-bottom: 1.5rem;
}

/* Blog Section */
.blog {
  background-color: white;
}

.blog-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: #777;
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
  background-color: #f9f9f9;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  background-color: white;
  color: var(--primary-color-5);
  font-weight: 600;
  padding: 1.2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1-light);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-body {
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
.gallery {
  background-color: white;
}

.gallery-img {
  height: 250px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-img:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-5);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-desc {
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-1);
}

.contact-info p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 0.8rem;
  color: var(--primary-color-1);
}

.copyright {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header/Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: var(--primary-color-5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.navbar-nav .nav-link {
  color: white;
  padding: 0.8rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color-1);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Space page */
#space {
  min-height: 500px;
  padding: 5rem 0;
}

/* Additional pages */
.add-page-section {
  padding: 5rem 0;
}

.add-page-section:nth-child(odd) {
  background-color: #f9f9f9;
}

.add-page-section:nth-child(even) {
  background-color: white;
} 