:root {
  /* Color Palette - 5 primary colors with light/dark shades */
  --primary-1: #f57c00; /* Orange - brand color */
  --primary-1-light: #ffad42;
  --primary-1-dark: #bc5100;
  
  --primary-2: #26a69a; /* Teal - accent */
  --primary-2-light: #64d8cb;
  --primary-2-dark: #00766c;
  
  --primary-3: #7e57c2; /* Purple - seasonal */
  --primary-3-light: #b085f5;
  --primary-3-dark: #4d2c91;
  
  --primary-4: #ef5350; /* Red - action */
  --primary-4-light: #ff867c;
  --primary-4-dark: #b61827;
  
  --primary-5: #66bb6a; /* Green - success */
  --primary-5-light: #98ee99;
  --primary-5-dark: #338a3e;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #424242;
  --black: #212121;
}

/* Global styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-1);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--primary-2);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  color: var(--white);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-1);
}

.section-subtitle {
  color: var(--primary-1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.text-center {
  text-align: center;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-1);
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-1);
}

.nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-1);
  transition: all 0.3s ease;
}

.nav-link:hover:before {
  width: 100%;
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--black);
}

/* Hero Section */
.hero {
  background-color: var(--light-gray);
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--black);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--dark-gray);
}

.hero-desc {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.hero-shape {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 40%;
  background-color: var(--primary-1-light);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-feature {
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: var(--primary-1);
}

.about-feature-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Services Section */
.services {
  background-color: var(--light-gray);
  position: relative;
}

.service-item {
  background-color: var(--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;
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.service-item-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-1);
}

.service-item-desc {
  margin-bottom: 20px;
}

.service-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 20px;
}

.service-item-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-item-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.service-item-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-5);
}

/* Features Section */
.features {
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item-icon {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 20px;
}

.feature-item-name {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Price Plan Section */
.price-plan {
  background-color: var(--light-gray);
  position: relative;
}

.price-plan-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.price-plan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-plan-item.featured {
  border: 2px solid var(--primary-1);
  transform: scale(1.05);
}

.price-plan-item.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-plan-name {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-1);
}

.price-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 20px;
}

.price-plan-desc {
  margin-bottom: 20px;
}

.price-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.price-plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--medium-gray);
  position: relative;
  padding-left: 25px;
}

.price-plan-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--primary-5);
}

/* Team Section */
.team {
  position: relative;
}

.team-member {
  margin-bottom: 30px;
  position: relative;
}

.team-member-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.team-member-info {
  text-align: center;
}

.team-member-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-member-role {
  color: var(--primary-1);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: var(--light-gray);
  position: relative;
}

.reviews-slider {
  padding-bottom: 50px;
}

.review-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 10px;
  height: 100%;
}

.review-text {
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  padding-left: 25px;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-1);
  opacity: 0.3;
  font-size: 1.2rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-1);
}

/* Core Info Section */
.core-info {
  position: relative;
}

.core-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.core-info-item {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.core-info-item-icon {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 20px;
}

.core-info-item-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.1);
}

.contact-info {
  background-color: var(--primary-1);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
  height: 100%;
}

.contact-info-item {
  margin-bottom: 25px;
}

.contact-info-item i {
  margin-right: 10px;
}

.contact-info-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Blog Section */
.blog {
  background-color: var(--light-gray);
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item-content {
  padding: 20px;
}

.blog-item-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-item-excerpt {
  margin-bottom: 15px;
}

.blog-item-link {
  font-weight: 600;
  color: var(--primary-1);
}

/* FAQ Section */
.faq {
  position: relative;
}

.faq-accordion {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--white);
  cursor: pointer;
  font-weight: 600;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.faq-question.active:after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.faq-answer.active {
  padding: 20px;
  max-height: 500px;
}

/* Gallery Section */
.gallery {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  padding: 70px 0 20px;
  color: var(--white);
  position: relative;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 30px;
  color: var(--medium-gray);
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--medium-gray);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-1);
  padding-left: 5px;
}

.footer-contact-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-item i {
  margin-right: 10px;
  color: var(--primary-1);
}

.copyright {
  padding-top: 20px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* Additional Pages */
.page-header {
  padding: 150px 0 100px;
  background-color: var(--light-gray);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  margin: 0 10px;
}

.breadcrumb-item a {
  color: var(--primary-1);
}

.breadcrumb-divider {
  color: var(--dark-gray);
}

/* Space Page */
#space {
  height: 500px;
  background-color: var(--light-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin: 100px 0;
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.bg-primary {
  background-color: var(--primary-1);
}

.text-primary {
  color: var(--primary-1);
}

.shadow-sm {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.shadow-lg {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.rounded {
  border-radius: 10px;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }
