:root {
  /* Primary Colors */
  --primary-1: #ff7b54; /* Warm Orange */
  --primary-2: #4ecdc4; /* Teal */
  --primary-3: #ffcc29; /* Yellow */
  --primary-4: #6a4c93; /* Purple */
  --primary-5: #ff5a5f; /* Coral */
  
  /* Light/Dark Variations */
  --primary-1-light: #ffa088;
  --primary-1-dark: #e65c33;
  --primary-2-light: #7de0d9;
  --primary-2-dark: #35a59e;
  --primary-3-light: #ffd95e;
  --primary-3-dark: #e6b000;
  --primary-4-light: #8f70b7;
  --primary-4-dark: #523a71;
  --primary-5-light: #ff8a8e;
  --primary-5-dark: #e6353a;
  
  /* Neutrals */
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-800);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-2);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-2-dark);
}

/* Container */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Section Spacing */
section {
  padding: 80px 0;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-1);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-2);
  color: white;
  border: none;
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  color: white;
}

/* Header/Navigation */
header {
  background-color: var(--neutral-100);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-1);
}

.navbar-nav {
  display: flex;
  list-style: none;
  flex-direction: row;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  color: var(--neutral-800);
  font-weight: 600;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-1);
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-1);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(45deg, var(--primary-3-light) 0%, var(--primary-3) 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--neutral-800);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--neutral-700);
}

.hero-desc {
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Section Titles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-1);
  bottom: -15px;
  left: calc(50% - 25px);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto;
}

/* About Section */
.about {
  background-color: var(--neutral-100);
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
  font-size: 2.5rem;
  color: var(--primary-2);
  margin-bottom: 1.5rem;
}

.feature-card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background-color: var(--neutral-200);
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-4);
}

.service-card-desc {
  margin-bottom: 1.5rem;
}

.service-card-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 1.5rem;
}

.service-card-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-card-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-card-features li:before {
  content: '✓';
  color: var(--primary-2);
  position: absolute;
  left: 0;
  top: 0;
}

/* Features Section */
.features {
  background-color: var(--neutral-100);
}

.features-item {
  text-align: center;
  margin-bottom: 30px;
}

.features-item-icon {
  font-size: 3rem;
  color: var(--primary-3);
  margin-bottom: 1.5rem;
}

.features-item-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.price-plan {
  background-color: var(--neutral-200);
}

.pricing-card {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-4);
}

.pricing-card-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 2rem;
}

.pricing-card-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-card-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-card-features li:before {
  content: '✓';
  color: var(--primary-2);
  position: absolute;
  left: 0;
  top: 0;
}

/* Team Section */
.team {
  background-color: var(--neutral-100);
}

.team-card {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-card-info {
  background-color: white;
  padding: 20px;
  text-align: center;
}

.team-card-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-card-role {
  color: var(--primary-2);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.review-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text:before,
.review-text:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-3-light);
  position: absolute;
}

.review-text:before {
  top: -0.5rem;
  left: -0.5rem;
}

.review-text:after {
  bottom: -1.5rem;
  right: -0.5rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-4);
}

/* Core Info Section */
.core-info {
  background-color: var(--neutral-100);
}

.core-info-item {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.core-info-item-icon {
  font-size: 2.5rem;
  color: var(--primary-5);
  margin-bottom: 1.5rem;
}

.core-info-item-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background-color: var(--neutral-200);
}

.contact-form {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--neutral-800);
  background-color: var(--neutral-100);
  background-clip: padding-box;
  border: 1px solid var(--neutral-400);
  border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: var(--primary-2);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
}

textarea.form-control {
  height: auto;
  min-height: 150px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-label {
  margin-bottom: 0;
}

/* Blog Section */
.blog {
  background-color: var(--neutral-100);
}

.blog-card {
  margin-bottom: 30px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-card-excerpt {
  margin-bottom: 1.5rem;
}

.blog-card-link {
  color: var(--primary-1);
  font-weight: 600;
  position: relative;
}

.blog-card-link:after {
  content: '→';
  margin-left: 0.25rem;
  transition: margin-left 0.3s ease;
}

.blog-card-link:hover:after {
  margin-left: 0.5rem;
}

/* FAQ Section */
.faq {
  background-color: var(--neutral-200);
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-header {
  padding: 1.25rem;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.accordion-header:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-1);
}

.accordion-header.active:after {
  content: '-';
}

.accordion-content {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content-inner {
  padding-bottom: 1.25rem;
}

/* Gallery Section */
.gallery {
  background-color: var(--neutral-100);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 60px 0 20px;
}

.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-100);
  margin-bottom: 1rem;
}

.footer-desc {
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: 1.25rem;
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--neutral-400);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-1);
}

.footer-contact {
  margin-bottom: 0.75rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--primary-1);
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
}

/* Animations & Shape Elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 204, 41, 0.2);
  border-radius: 50%;
}

.shape-2 {
  bottom: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background-color: rgba(78, 205, 196, 0.15);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 8s ease-in-out infinite;
}

.shape-3 {
  top: 40%;
  right: 25%;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 90, 95, 0.15);
  border-radius: 30% 70% 50% 50% / 50% 30% 70% 50%;
  animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Media Queries */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Space Page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-200);
} 