:root {
  /* Color Palette - 5 primary colors + light/dark variations */
  --primary-color: #4a90e2;
  --primary-light: #75b0ff;
  --primary-dark: #1e64b0;
  
  --secondary-color: #f5a623;
  --secondary-light: #ffca60;
  --secondary-dark: #c17b00;
  
  --accent-color: #e94c89;
  --accent-light: #ff7eb5;
  --accent-dark: #b01b5f;
  
  --neutral-color: #3e4659;
  --neutral-light: #697997;
  --neutral-dark: #232836;
  
  --background-color: #f8f9fc;
  --background-light: #ffffff;
  --background-dark: #e1e5ef;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-description {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Layout */
section {
  padding: 80px 0;
  position: relative;
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
  padding: 20px 0;
}

header.scrolled {
  background-color: var(--background-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--background-light);
}

header.scrolled .navbar-brand {
  color: var(--neutral-dark);
}

.nav-link {
  color: var(--background-light);
  font-weight: 500;
  margin: 0 15px;
  position: relative;
}

header.scrolled .nav-link {
  color: var(--neutral-color);
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

/* About Section */
#about {
  background-color: var(--background-light);
}

.about-feature {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  background: white;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Services Section */
#services {
  background-color: var(--background-color);
}

.service-card {
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  top: 0;
  left: 0;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 15px 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Features Section */
#features {
  background-color: var(--background-light);
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature-item:hover i {
  transform: scale(1.1);
}

/* Price Plans */
#priceplan {
  background-color: var(--background-color);
}

.price-card {
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.price-card:hover {
  border-color: var(--primary-color);
}

.price-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.price-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 20px 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.price-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Team Section */
#team {
  background-color: var(--background-light);
}

.team-member {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--background-light);
}

.team-member-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-member-role {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Reviews Section */
#reviews {
  background-color: var(--background-color);
  position: relative;
}

.review-item {
  padding: 30px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.review-item:hover {
  transform: translateY(-5px);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text:before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  left: -20px;
  top: -20px;
  color: var(--primary-light);
  opacity: 0.2;
}

.review-author {
  font-weight: 600;
  color: var(--neutral-dark);
}

/* Core Info Section */
#coreinfo {
  background-color: var(--background-light);
}

.info-item {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
}

.info-item:hover {
  transform: translateY(-5px);
}

.info-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* Contact Section */
#contact {
  background-color: var(--background-color);
}

.contact-form {
  padding: 40px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--background-dark);
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.1);
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.contact-info {
  padding: 20px 0;
}

.contact-info i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 10px;
}

/* Blog Section */
#blog {
  background-color: var(--background-light);
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: white;
  height: 100%;
  transition: all 0.3s ease;
}

.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.3s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--neutral-color);
  margin-bottom: 15px;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.blog-link:after {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.blog-link:hover:after {
  transform: translateX(5px);
}

/* FAQ Section */
#faq {
  background-color: var(--background-color);
}

.accordion-item {
  margin-bottom: 10px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  padding: 20px;
  background-color: white;
  color: var(--neutral-dark);
  font-weight: 600;
  border-radius: 8px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: var(--neutral-dark);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-light);
}

.accordion-body {
  padding: 20px;
  background-color: white;
}

/* Gallery Section */
#gallery {
  background-color: var(--background-light);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  
}

.footer-desc {
  max-width: 300px;
  margin-bottom: 30px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #ff7eb5;
}

.footer-title:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Additional pages */
.page-header {
  height: 50vh;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.breadcrumb img {
  height: 16px;
  margin: 0 5px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.fadeInUp {
  animation-name: fadeInUp;
}

/* Space page */
#space {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-light);
} 