:root {
  /* Color variables */
  --primary-color: #6a3de8;
  --secondary-color: #7cceb5;
  --accent-color: #ff7f50;
  --dark-color: #333333;
  --light-color: #f8f9fa;
  --gray-color: #7c838a;
  
  /* Font variables */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 15px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-subtitle {
  display: block;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Header styles */
.header {
  padding: 20px 0;
  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: 15px 0;
  background-color: #fff;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-color);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--light-color);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--gray-color);
}

.hero-description {
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* About section */
.about {
  position: relative;
  overflow: hidden;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 20px;
  font-size: 40px;
  color: var(--primary-color);
}

.feature-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Services section */
.services {
  background-color: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-features {
  margin-top: 20px;
  list-style: none;
}

.service-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

/* Features section */
.features {
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary-color);
  font-size: 24px;
}

.feature-content {
  flex-grow: 1;
}

.feature-title {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Price Plans */
.price-plans {
  background-color: var(--light-color);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 40px 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border: 2px solid var(--primary-color);
}

.price-card.featured:before {
  content: 'Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  transform: rotate(45deg);
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 40px;
  font-size: 0.8rem;
  z-index: 1;
}

.price-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.price-features {
  margin: 30px 0;
  list-style: none;
}

.price-features li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  text-align: left;
}

.price-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

/* Team section */
.team {
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-name {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.team-role {
  color: var(--gray-color);
  font-size: 0.9rem;
}

/* Reviews section */
.reviews {
  background-color: var(--light-color);
  position: relative;
}

.reviews-slider {
  overflow: hidden;
  padding: 30px 0;
}

.review-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  margin: 20px 15px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.review-text:before,
.review-text:after {
  content: '"';
  font-size: 40px;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
}

.review-text:before {
  top: -10px;
  left: 0;
}

.review-text:after {
  bottom: -30px;
  right: 0;
}

.review-author {
  font-weight: 700;
  text-align: right;
}

/* Core Info section */
.core-info {
  position: relative;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.core-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.core-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.core-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.core-title {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Contact section */
.contact {
  position: relative;
}

.contact-row {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary-color);
  font-size: 20px;
}

.contact-text {
  flex-grow: 1;
}

.contact-form {
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark-color);
  background-color: var(--light-color);
  border: 1px solid #e9ecef;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(106, 61, 232, 0.25);
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
}

.form-select {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark-color);
  background-color: var(--light-color);
  border: 1px solid #e9ecef;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn {
  display: inline-block;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 12px 30px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #5c34c7;
  border-color: #5c34c7;
  color: #fff;
}

/* Blog section */
.blog {
  background-color: var(--light-color);
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 500;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.blog-link:after {
  content: '→';
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.blog-link:hover:after {
  margin-left: 10px;
}

/* Footer */
.footer {
  background-color: #2d2d2d;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}

.footer-description {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #fff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Shape elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background-color: rgba(106, 61, 232, 0.05);
  border-radius: 50px;
  transform: rotate(45deg);
}

.shape-2 {
  bottom: 50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background-color: rgba(124, 206, 181, 0.05);
  border-radius: 50%;
}

.shape-3 {
  top: 40%;
  right: -100px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 127, 80, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Space page */
#space {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
} 