:root {
  /* Color Palette */
  --primary-color: #4A5568;
  --secondary-color: #718096;
  --accent-color: #E53E3E;
  --neutral-color: #CBD5E0;
  --background-color: #F7FAFC;
  
  /* Shades */
  --primary-light: #A0AEC0;
  --primary-dark: #2D3748;
  --secondary-light: #A0AEC0;
  --secondary-dark: #4A5568;
  --accent-light: #FC8181;
  --accent-dark: #C53030;
}

/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--primary-dark);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

section {
  padding: 5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 600;
  color: var(--primary-dark) !important;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  z-index: 0;
}

/* Services Section */
.services-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.services-price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-top: 1rem;
}

/* Features Section */
.features-item {
  display: flex;
  margin-bottom: 2rem;
}

.features-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-right: 1.5rem;
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card-popular {
  border: 2px solid var(--accent-color);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.5rem 0;
}

.price-features {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.price-features li {
  padding: 0.5rem 0;
}

/* Team Section */
.team-card {
  text-align: center;
  margin-bottom: 2rem;
}

.team-image {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-name {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--secondary-color);
  font-style: italic;
}

/* Reviews Section */
.reviews-slider {
  padding: 2rem 0;
}

.review-item {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
}

/* Core Info Section */
.info-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-color);
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(229, 62, 62, 0.25);
}

/* Blog Section */
.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  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;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
}

.accordion-button {
  background-color: white;
  font-weight: 600;
  padding: 1.25rem;
  border-radius: 0.5rem !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background-color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.accordion-body {
  padding: 1.25rem;
  background-color: white;
  border-radius: 0 0 0.5rem 0.5rem;
}

/* Gallery */
.gallery-item {
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 3rem 0 1.5rem;
}

footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer a {
  color: var(--neutral-color);
}

footer a:hover {
  color: white;
}

#site-copyright {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--neutral-color);
  text-align: center;
}

/* Space Page */
#space {
  min-height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shape elements */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background-color: var(--accent-color);
  top: -200px;
  right: -200px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-color);
  bottom: -150px;
  left: -150px;
} 