:root {
  --primary-1: #4A6FA5; /* Deep blue */
  --primary-2: #E18A65; /* Coral */
  --primary-3: #86B18D; /* Sage green */
  --primary-4: #D8B98B; /* Sand */
  --primary-5: #9C73AF; /* Lavender */
  
  --primary-1-light: #6B8BBC;
  --primary-1-dark: #385580;
  --primary-2-light: #EAA989;
  --primary-2-dark: #C7704D;
  --primary-3-light: #A4C5A9;
  --primary-3-dark: #6A9070;
  --primary-4-light: #E5CEA9;
  --primary-4-dark: #BEA06D;
  --primary-5-light: #B591C4;
  --primary-5-dark: #815996;
  
  --white: #FFFFFF;
  --black: #222222;
  --light-gray: #F5F7FA;
  --gray: #E8E8E8;
  --dark-gray: #666666;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-2);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-2-dark);
  color: var(--white);
}

.btn-outline {
  border: 2px solid var(--primary-1);
  background-color: transparent;
  color: var(--primary-1);
}

.btn-outline:hover {
  background-color: var(--primary-1);
  color: var(--white);
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

header .navbar {
  padding: 15px 0;
}

header .navbar-brand {
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-1);
}

header .nav-link {
  color: var(--black);
  font-weight: 500;
  margin: 0 12px;
  position: relative;
}

header .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-2);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

header .nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background-color: var(--light-gray);
  background-image: linear-gradient(135deg, var(--primary-1-light) 0%, var(--primary-5-light) 100%);
  color: var(--white);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  right: -15%;
  background-color: rgba(255, 255, 255, 0.15);
  transform: skewX(-12deg);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* About Section */
.about-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--white);
}

.section-title {
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-1);
}

.section-title p {
  font-size: 18px;
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto;
}

.about-feature {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 48px;
  color: var(--primary-3);
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: var(--light-gray);
  position: relative;
}

.service-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-content {
  padding: 30px;
}

.service-item h3 {
  color: var(--primary-1);
  margin-bottom: 15px;
}

.service-img {
  height: 200px;
  background-position: center;
  background-size: cover;
}

.service-price {
  display: inline-block;
  background-color: var(--primary-2);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 15px;
}

.service-features {
  margin-top: 20px;
  padding-left: 0;
  list-style-type: none;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-3);
  position: absolute;
  left: 0;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background-color: var(--white);
}

.feature-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
}

.feature-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-3-light);
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0.2;
}

.feature-item:hover::before {
  height: 100%;
}

.feature-item i {
  font-size: 50px;
  color: var(--primary-3);
  margin-bottom: 20px;
}

/* Price Plan Section */
.priceplan-section {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.price-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-item h3 {
  color: var(--primary-1);
  font-weight: 700;
}

.price-value {
  font-size: 36px;
  color: var(--primary-2);
  font-weight: 700;
  margin: 20px 0;
}

.price-features {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 30px;
}

.price-features li {
  position: relative;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background-color: var(--white);
}

.team-member {
  background-color: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  margin-bottom: 5px;
  color: var(--primary-1);
}

.team-info p {
  color: var(--primary-2);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  padding: 100px 0;
  background-color: var(--light-gray);
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  width: 30%;
  height: 100%;
  top: 0;
  left: -10%;
  background-color: rgba(var(--primary-5-light), 0.05);
  transform: skewX(-12deg);
  z-index: 0;
}

.review-slider {
  position: relative;
  z-index: 1;
}

.review-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin: 20px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.review-item p {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-1);
}

/* Core Info Section */
.coreinfo-section {
  padding: 100px 0;
  background-color: var(--white);
}

.coreinfo-item {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--light-gray);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.coreinfo-item:hover {
  background-color: var(--primary-4-light);
}

.coreinfo-item i {
  font-size: 36px;
  color: var(--primary-3);
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--light-gray);
  position: relative;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--gray);
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.form-check {
  margin-bottom: 20px;
}

/* Blog Section */
.blog-section {
  padding: 100px 0;
  background-color: var(--white);
}

.blog-item {
  background-color: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 25px;
}

.blog-item h3 {
  margin-bottom: 15px;
  color: var(--primary-1);
}

.blog-link {
  display: inline-block;
  color: var(--primary-2);
  font-weight: 600;
  margin-top: 15px;
}

.blog-link:hover {
  color: var(--primary-2-dark);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: none;
}

.accordion-button {
  background-color: var(--white);
  border: none;
  box-shadow: none;
  padding: 20px;
  font-weight: 600;
  color: var(--primary-1);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-2);
  background-color: var(--white);
}

.accordion-body {
  padding: 20px;
  background-color: var(--white);
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background-color: var(--white);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-1-dark);
  color: var(--white);
  padding: 80px 0 20px;
}

footer h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-weight: 600;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
  color: var(--white);
}

footer ul {
  padding-left: 0;
  list-style-type: none;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  transition: all 0.3s ease;
}

footer ul li a:hover {
  padding-left: 5px;
}

#site-copyright {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Additional Pages */
.page-header {
  background-color: var(--primary-1);
  color: var(--white);
  padding: 120px 0 60px;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
  color: var(--white);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}

/* Space Page */
#space {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in, .slide-in-left, .slide-in-right {
    animation: none;
  }
} 