:root {
  /* Color Palette */
  --primary-color-1: #6A8D73; /* Sage Green */
  --primary-color-1-light: #8CA990;
  --primary-color-1-dark: #4A6D53;
  
  --primary-color-2: #F4A261; /* Peach */
  --primary-color-2-light: #F7BE8A;
  --primary-color-2-dark: #E18A45;
  
  --primary-color-3: #457B9D; /* Steel Blue */
  --primary-color-3-light: #6A9FBF;
  --primary-color-3-dark: #346280;
  
  --primary-color-4: #E76F51; /* Terracotta */
  --primary-color-4-light: #EC9079;
  --primary-color-4-dark: #D15941;
  
  --primary-color-5: #2A9D8F; /* Teal */
  --primary-color-5-light: #3CB8A9;
  --primary-color-5-dark: #1F7A70;
  
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #E9ECEF;
  --dark-gray: #495057;
  --black: #212529;
  
  /* Fonts */
  --font-primary: 'Nunito Sans', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  color: var(--black);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-color-3);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-3-dark);
}

ul, ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

/* Header */
.header {
  padding: 1.5rem 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-scrolled {
  padding: 1rem 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-item {
  margin-left: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  color: var(--dark-gray);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, rgba(42,157,143,0.9) 0%, rgba(69,123,157,0.9) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-desc {
  color: var(--light-gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-img {
  position: relative;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  z-index: 1;
}

.hero-shape-1 {
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background-color: rgba(231, 111, 81, 0.2);
  border-radius: 50%;
}

.hero-shape-2 {
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(244, 162, 97, 0.2);
  border-radius: 50%;
}

/* Section Styles */
.section {
  padding: var(--spacing-lg) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  text-align: center;
  color: var(--primary-color-2);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
  background-color: var(--light-gray);
}

.about-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.2;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-feature {
  background-color: var(--white);
  padding: var(--spacing-md);
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: var(--spacing-sm);
}

.about-feature-name {
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

/* Services Section */
.services {
  background-color: var(--white);
}

.services-item {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: var(--spacing-md);
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-item-icon {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: var(--spacing-sm);
}

.services-item-name {
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.services-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-3);
  margin: var(--spacing-sm) 0;
}

.services-item-features {
  padding-left: 0;
  list-style: none;
}

.services-item-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.services-item-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Features Section */
.features {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.features-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
}

.features-content {
  position: relative;
  z-index: 2;
}

.features-item {
  display: flex;
  margin-bottom: var(--spacing-md);
  align-items: flex-start;
}

.features-item-icon {
  font-size: 2rem;
  color: var(--primary-color-3);
  margin-right: var(--spacing-sm);
  min-width: 50px;
  text-align: center;
}

.features-item-content {
  flex: 1;
}

.features-item-name {
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

/* Price Plan Section */
.priceplan {
  background-color: var(--white);
}

.priceplan-item {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: var(--spacing-md);
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.priceplan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.priceplan-item-name {
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.priceplan-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-2);
  margin: var(--spacing-sm) 0;
}

.priceplan-item-features {
  padding-left: 0;
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.priceplan-item-features li {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

/* Team Section */
.team {
  background-color: var(--light-gray);
}

.team-member {
  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;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-member-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member-info {
  padding: var(--spacing-md);
  text-align: center;
}

.team-member-name {
  margin-bottom: var(--spacing-xs);
}

.team-member-role {
  color: var(--primary-color-3);
  font-weight: 600;
}

/* Reviews Section */
.reviews {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.reviews-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
}

.reviews-content {
  position: relative;
  z-index: 2;
}

.reviews-slider {
  overflow: hidden;
}

.reviews-item {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: var(--spacing-md);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
}

.reviews-item-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-left: 2rem;
}

.reviews-item-text::before {
  content: """;
  font-size: 4rem;
  position: absolute;
  left: -1rem;
  top: -2rem;
  color: var(--primary-color-1-light);
  opacity: 0.5;
}

.reviews-item-author {
  display: flex;
  align-items: center;
}

.reviews-item-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: var(--spacing-sm);
}

.reviews-item-author-name {
  font-weight: 700;
}

/* Core Info Section */
.coreinfo {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.coreinfo-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
}

.coreinfo-content {
  position: relative;
  z-index: 2;
}

.coreinfo-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: var(--spacing-md);
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.coreinfo-item-icon {
  font-size: 2rem;
  color: var(--primary-color-4);
  margin-bottom: var(--spacing-sm);
}

.coreinfo-item-title {
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

/* Contact Section */
.contact {
  background-color: var(--white);
  position: relative;
}

.contact-form {
  background-color: var(--light-gray);
  padding: var(--spacing-md);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 2px rgba(106, 141, 115, 0.2);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.form-check-input {
  margin-right: 0.5rem;
  min-width: 20px;
  height: 20px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23495057' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

.btn {
  display: inline-block;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  color: var(--white);
}

.btn-primary {
  background-color: var(--primary-color-1);
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
}

/* Blog Section */
.blog {
  background-color: var(--light-gray);
}

.blog-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item-content {
  padding: var(--spacing-md);
}

.blog-item-title {
  margin-bottom: var(--spacing-xs);
}

.blog-item-excerpt {
  margin-bottom: var(--spacing-sm);
}

.blog-item-link {
  font-weight: 600;
  color: var(--primary-color-3);
}

/* FAQ Section */
.faq {
  background-color: var(--white);
}

.accordion-item {
  margin-bottom: var(--spacing-sm);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-header {
  background-color: var(--light-gray);
  padding: var(--spacing-sm);
  cursor: pointer;
  position: relative;
  font-weight: 600;
}

.accordion-header:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: var(--spacing-sm);
  transition: all 0.3s ease;
}

.accordion-header.active:after {
  transform: rotate(180deg);
}

.accordion-body {
  padding: var(--spacing-sm);
  background-color: var(--white);
  display: none;
}

.accordion-body.active {
  display: block;
}

/* Gallery Section */
.gallery {
  background-color: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: var(--spacing-sm);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--primary-color-3-dark);
  color: var(--white);
  padding: var(--spacing-md) 0;
}

.footer h5 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.footer p {
  margin-bottom: var(--spacing-xs);
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: var(--spacing-xs);
}

.footer ul li a {
  color: var(--light-gray);
}

.footer ul li a:hover {
  color: var(--white);
}

#site-copyright {
  text-align: center;
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-md);
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Space Page */
#space {
  height: calc(100vh - 150px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-gray);
}

/* Animation Classes */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

/* Breadcrumb (image only as per requirements) */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Helper Classes */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-xs) !important; }
.mb-2 { margin-bottom: var(--spacing-sm) !important; }
.mb-3 { margin-bottom: var(--spacing-md) !important; }
.mb-4 { margin-bottom: var(--spacing-lg) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-xs) !important; }
.mt-2 { margin-top: var(--spacing-sm) !important; }
.mt-3 { margin-top: var(--spacing-md) !important; }
.mt-4 { margin-top: var(--spacing-lg) !important; }

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; } 