:root {
  /* Primary Colors */
  --primary-1: #5A9A8E; /* Teal green */
  --primary-2: #E8C547; /* Mustard yellow */
  --primary-3: #B46060; /* Rust red */
  --primary-4: #4A4E69; /* Slate blue */
  --primary-5: #F7F0F5; /* Off-white */
  
  /* Light/Dark Shades */
  --primary-1-light: #7FB9AE;
  --primary-1-dark: #3A7A6E;
  --primary-2-light: #F2D976;
  --primary-2-dark: #C9A82C;
  --primary-3-light: #CF8383;
  --primary-3-dark: #914D4D;
  --primary-4-light: #6C7089;
  --primary-4-dark: #363A4D;
  --primary-5-light: #FFFFFF;
  --primary-5-dark: #E0D9DD;
  
  /* Font Sizes */
  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.125rem;  /* 18px */
  --font-size-lg: 1.25rem;   /* 20px */
  --font-size-xl: 1.5rem;    /* 24px */
  --font-size-2xl: 1.875rem; /* 30px */
  --font-size-3xl: 2.25rem;  /* 36px */
  --font-size-4xl: 3rem;     /* 48px */
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-4-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--primary-5);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--primary-1);
  transition: color 0.3s;
}

a:hover {
  color: var(--primary-1-dark);
}

/* Layout Components */
.section-padding {
  padding: var(--spacing-xl) 0;
}

.section-title {
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.section-subtitle {
  color: var(--primary-3);
  font-size: var(--font-size-md);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-xs);
}

.section-description {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  text-align: center;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .navbar-brand {
  font-weight: 700;
  font-size: var(--font-size-xl);
  color: var(--primary-4-dark);
}

.header .nav-link {
  color: var(--primary-4-dark);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.header .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--primary-1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.header .nav-link:hover:after,
.header .nav-link.active:after {
  transform: scaleX(1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-5-light);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--primary-4-dark);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
  color: var(--primary-1);
}

.hero-desc {
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-md);
  max-width: 600px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  z-index: 0;
}

.hero-shape-1 {
  top: -10%;
  right: -5%;
  width: 30%;
  height: 40%;
  background-color: var(--primary-2-light);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-shape-2 {
  bottom: -10%;
  left: -5%;
  width: 25%;
  height: 35%;
  background-color: var(--primary-1-light);
  opacity: 0.1;
  border-radius: 50% 50% 70% 30% / 30% 50% 50% 70%;
}

/* About Section */
.about {
  background-color: var(--primary-5);
  position: relative;
  overflow: hidden;
}

.about-feature {
  background-color: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-1);
}

.about-feature-name {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

/* Services Section */
.services {
  background-color: var(--primary-5-light);
  position: relative;
}

.service-item {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-name {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-xs);
  color: var(--primary-4-dark);
}

.service-desc {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-4);
}

.service-features {
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.service-features ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.service-features li {
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-1);
  margin-top: auto;
}

/* Features Section */
.features {
  background-color: var(--primary-5);
  position: relative;
}

.feature-item {
  text-align: center;
  padding: var(--spacing-md);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-2);
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-name {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

/* Price Plan Section */
.price-plan {
  background-color: var(--primary-5-light);
  position: relative;
}

.price-item {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: var(--spacing-md);
  background-color: var(--primary-4-light);
  color: white;
  text-align: center;
}

.price-name {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-xs);
  font-weight: 700;
}

.price-amount {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.price-content {
  padding: var(--spacing-md);
}

.price-desc {
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.price-features {
  margin-bottom: var(--spacing-md);
}

.price-features ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--primary-5-dark);
  display: flex;
  align-items: center;
}

.price-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 0.5rem;
  color: var(--primary-1);
}

/* Team Section */
.team {
  background-color: var(--primary-5);
  position: relative;
}

.team-member {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.team-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--spacing-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team-role {
  color: var(--primary-1);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-5-light);
  position: relative;
  overflow: hidden;
}

.review-item {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: var(--spacing-sm);
  height: auto;
}

.review-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding: 0 var(--spacing-md);
}

.review-text:before,
.review-text:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.review-text:before {
  top: -5px;
  left: -5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.983 3v7.391c0 5.704-3.731 9.57-8.983 10.609l-.995-2.151c2.432-.917 3.995-3.638 3.995-5.849h-4v-10h9.983zm14.017 0v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151c2.433-.917 3.996-3.638 3.996-5.849h-3.983v-10h9.983z'/%3E%3C/svg%3E");
}

.review-text:after {
  bottom: -5px;
  right: -5px;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.983 3v7.391c0 5.704-3.731 9.57-8.983 10.609l-.995-2.151c2.432-.917 3.995-3.638 3.995-5.849h-4v-10h9.983zm14.017 0v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151c2.433-.917 3.996-3.638 3.996-5.849h-3.983v-10h9.983z'/%3E%3C/svg%3E");
}

.review-author {
  font-weight: 600;
  text-align: right;
}

.swiper-pagination {
  position: static;
  margin-top: var(--spacing-md);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary-1);
  opacity: 0.2;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-1);
}

/* Core Info Section */
.core-info {
  background-color: var(--primary-5);
  position: relative;
}

.core-info-item {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-3);
}

.core-info-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

/* Contact Section */
.contact {
  background-color: var(--primary-5-light);
  position: relative;
}

.contact-form {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 2px solid var(--primary-5-dark);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(90, 154, 142, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.form-label {
  font-weight: 500;
}

.contact-info {
  margin-top: var(--spacing-lg);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--primary-1);
  margin-right: var(--spacing-sm);
}

/* Blog Section */
.blog {
  background-color: var(--primary-5);
  position: relative;
}

.blog-item {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--spacing-md);
}

.blog-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.blog-excerpt {
  margin-bottom: var(--spacing-md);
}

.blog-link {
  font-weight: 500;
  color: var(--primary-1);
  display: inline-flex;
  align-items: center;
}

.blog-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
.faq {
  background-color: var(--primary-5-light);
  position: relative;
}

.accordion-item {
  border: none;
  margin-bottom: var(--spacing-sm);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--primary-4-dark);
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-1);
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235A9A8E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.25rem;
  background-color: white;
}

/* Gallery Section */
.gallery {
  background-color: var(--primary-5);
  position: relative;
}

.gallery-item {
  margin-bottom: var(--spacing-md);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-img {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--primary-4-dark);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.footer-desc {
  margin-bottom: var(--spacing-lg);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--primary-5-light);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-2);
  transform: translateX(5px);
}

.contact-info-footer {
  margin-bottom: var(--spacing-lg);
}

.contact-info-footer p {
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
}

.contact-info-footer i {
  margin-right: var(--spacing-xs);
  color: var(--primary-2);
}

.copyright {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.float {
  animation: float 5s ease-in-out infinite;
}

/* Custom Shapes */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -5%;
  right: -5%;
  width: 25%;
  height: 35%;
  background-color: var(--primary-2-light);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
  bottom: -5%;
  left: -5%;
  width: 20%;
  height: 30%;
  background-color: var(--primary-1-light);
  opacity: 0.1;
  border-radius: 50% 50% 70% 30% / 30% 50% 50% 70%;
}

/* Space Page */
#space {
  min-height: 500px;
  background-color: var(--primary-5-light);
  border-radius: var(--radius-lg);
  margin: var(--spacing-xl) 0;
}

/* Breadcrumb styles */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  max-height: 20px;
  width: auto;
}

/* Additional Pages */
.additional-page-section {
  padding: var(--spacing-xl) 0;
}

.additional-page-section:nth-child(odd) {
  background-color: var(--primary-5);
}

.additional-page-section:nth-child(even) {
  background-color: var(--primary-5-light);
}

/* Media Queries */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0; /* Disable autoplay */
  }
  
  .float {
    animation: none;
  }
}

@media (min-width: 992px) {
  .hero-content {
    padding-right: var(--spacing-xl);
  }
  
  .about-img {
    padding-left: var(--spacing-lg);
  }
} 