:root {
  /* Primary color palette */
  --primary-1: #4a6fa5; /* Deep blue */
  --primary-2: #e8c547; /* Gold */
  --primary-3: #47a8bd; /* Teal */
  --primary-4: #95b46a; /* Sage green */
  --primary-5: #d57a66; /* Terracotta */
  
  /* Light/dark shades */
  --primary-1-light: #6189c0;
  --primary-1-dark: #395783;
  
  --primary-2-light: #f2d676;
  --primary-2-dark: #c9a92f;
  
  --primary-3-light: #6bbfcf;
  --primary-3-dark: #348799;
  
  --primary-4-light: #b0c88c;
  --primary-4-dark: #7a9950;
  
  --primary-5-light: #e49683;
  --primary-5-dark: #bc624f;
  
  /* Neutral colors */
  --neutral-100: #ffffff;
  --neutral-200: #f7f7f7;
  --neutral-300: #e6e6e6;
  --neutral-400: #cccccc;
  --neutral-500: #999999;
  --neutral-600: #666666;
  --neutral-700: #444444;
  --neutral-800: #222222;
  --neutral-900: #111111;
}

/* General styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 0.5rem;
  color: var(--primary-1);
  position: relative;
}

.section-subtitle {
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: var(--primary-5);
}

.section-desc {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--neutral-800);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
  color: var(--neutral-800);
}

/* Shape decorations */
.shape-decorator {
  position: absolute;
  z-index: -1;
  opacity: 0.2;
}

.shape-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: var(--primary-3);
}

.shape-square {
  width: 200px;
  height: 200px;
  transform: rotate(45deg);
  background-color: var(--primary-4);
}

/* Header */
.site-header {
  padding: 1rem 0;
  background-color: var(--neutral-100);
  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;
}

.site-header.scrolled {
  padding: 0.5rem 0;
}

.site-header .navbar-brand {
  font-weight: 700;
  color: var(--primary-1);
  font-size: 1.5rem;
}

.site-header .nav-link {
  color: var(--neutral-700);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--primary-1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary-1-light);
  overflow: hidden;
  padding-top: 76px; /* Header height */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--neutral-100);
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
  background-color: var(--neutral-100);
}

.about-feature {
  padding: 2rem;
  background-color: var(--neutral-200);
  border-radius: 8px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

/* Services Section */
.services-section {
  background-color: var(--neutral-200);
  position: relative;
}

.service-item {
  background-color: var(--neutral-100);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  display: inline-block;
  background-color: var(--primary-2);
  color: var(--neutral-800);
  padding: 0.25rem 1rem;
  border-radius: 30px;
  font-weight: 700;
}

.service-features {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-300);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--primary-1);
  margin-right: 0.5rem;
}

/* Features Section */
.features-section {
  background-color: var(--neutral-100);
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-3);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--neutral-200);
}

.price-item {
  background-color: var(--neutral-100);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.price-item:hover {
  transform: translateY(-10px);
}

.price-header {
  padding: 2rem;
  background-color: var(--primary-1);
  color: var(--neutral-100);
  text-align: center;
}

.price-content {
  padding: 2rem;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1-dark);
  margin: 1rem 0;
}

.price-features {
  list-style-type: none;
  padding-left: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-300);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li i {
  color: var(--primary-1);
  margin-right: 0.5rem;
}

/* Team Section */
.team-section {
  background-color: var(--neutral-100);
  position: relative;
}

.team-member {
  text-align: center;
  background-color: var(--neutral-200);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-1);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-1-light);
  color: var(--neutral-100);
  position: relative;
}

.review-item {
  background-color: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem;
  margin: 1rem;
  backdrop-filter: blur(5px);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
}

.swiper-pagination-bullet {
  background-color: var(--neutral-100);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--neutral-100);
}

.core-item {
  background-color: var(--neutral-200);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.core-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.core-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-200);
  position: relative;
}

.contact-form {
  background-color: var(--neutral-100);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-form .form-control {
  border: 1px solid var(--neutral-300);
  border-radius: 4px;
  padding: 0.75rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.25rem rgba(74, 111, 165, 0.25);
}

.contact-info {
  background-color: var(--primary-1);
  color: var(--neutral-100);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--neutral-100);
}

.blog-item {
  background-color: var(--neutral-200);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--neutral-200);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--neutral-100);
  color: var(--primary-1);
  font-weight: 600;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1);
  color: var(--neutral-100);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--neutral-300);
}

.accordion-body {
  background-color: var(--neutral-100);
  padding: 1.25rem;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--neutral-100);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.gallery-image {
  aspect-ratio: 1.5;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Footer */
.site-footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 4rem 0 2rem;
}

.footer-heading {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-link {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: var(--primary-2);
}

.footer-contact {
  margin-bottom: 0.75rem;
}

.footer-contact i {
  width: 20px;
  margin-right: 10px;
  color: var(--primary-2);
}

.site-copyright {
  border-top: 1px solid var(--neutral-700);
  padding-top: 1.5rem;
  margin-top: 3rem;
}

/* Spaces page */
#space {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-200);
}

/* Additional Pages */
.page-header {
  height: 40vh;
  min-height: 300px;
  background-color: var(--primary-1);
  color: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 76px; /* Header height */
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}

.breadcrumb-item {
  color: var(--neutral-200);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--neutral-300);
}

.breadcrumb-item.active {
  color: var(--primary-2);
} 