:root {
  --primary-1: #5c86a7; /* Primary blue */
  --primary-2: #e9a678; /* Warm accent */
  --primary-3: #58705e; /* Muted green */
  --primary-4: #c8b6a4; /* Neutral taupe */
  --primary-5: #9c636f; /* Subdued rose */
  
  --light-1: #f8f9fa;
  --light-2: #e9ecef;
  --dark-1: #212529;
  --dark-2: #343a40;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-1);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary:hover {
  background-color: var(--primary-3);
  border-color: var(--primary-3);
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--dark-1);
}

.btn-secondary:hover {
  background-color: #d89666;
  border-color: #d89666;
  color: var(--dark-1);
}

/* Header Styles */
.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-1);
}

.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--light-1);
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-img {
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(92, 134, 167, 0.1);
  border-radius: 50%;
}

.shape-2 {
  top: 100px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(233, 166, 120, 0.1);
  border-radius: 50%;
}

/* About Section */
.about {
  background-color: var(--light-2);
  position: relative;
  overflow: hidden;
}

.about-feature {
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  height: 100%;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

/* Services Section */
.services {
  position: relative;
  background-color: var(--light-1);
}

.service-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  background-color: #fff;
}

.service-card:hover {
  transform: translateY(-10px);
  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-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-2);
  color: var(--dark-1);
  font-weight: 700;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.service-features {
  margin-top: 1rem;
  padding-left: 1.25rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features {
  background-color: var(--light-2);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-3);
}

/* Price Plan Section */
.price-plan {
  background-color: var(--light-1);
}

.price-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  background-color: #fff;
  border: 2px solid transparent;
}

.price-card:hover {
  border-color: var(--primary-1);
  transform: translateY(-10px);
}

.price-header {
  padding: 2rem 1.5rem;
  background-color: var(--primary-1);
  color: #fff;
  text-align: center;
}

.price-content {
  padding: 2rem 1.5rem;
}

.price-features {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
}

.price-features li {
  margin-bottom: 0.75rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--primary-1);
}

/* Team Section */
.team {
  background-color: var(--light-2);
}

.team-member {
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
}

.team-role {
  color: var(--primary-3);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  position: relative;
  background-color: var(--light-1);
  overflow: hidden;
}

.review-container .swiper-slide {
  height: auto;
}

.review-card {
  padding: 2rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.5rem;
  color: rgba(92, 134, 167, 0.2);
}

.review-text {
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-1);
}

/* Core Info Section */
.core-info {
  background-color: var(--light-2);
}

.core-item {
  padding: 2rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.core-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.core-item:hover {
  transform: translateY(-5px);
}

.core-item:hover::after {
  transform: scaleX(1);
}

.core-item i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-5);
}

/* Contact Form Section */
.contact {
  background-color: var(--light-1);
  position: relative;
}

.contact-form {
  padding: 2rem;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  height: calc(3rem + 2px);
  border: 1px solid var(--light-2);
  border-radius: 5px;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: none;
}

textarea.form-control {
  height: auto;
  min-height: 120px;
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

/* Blog Section */
.blog {
  background-color: var(--light-2);
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  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-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blog-link {
  display: inline-block;
  color: var(--primary-1);
  font-weight: 500;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-3);
}

/* FAQ Section */
.faq {
  background-color: var(--light-1);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  background-color: #fff;
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  color: var(--dark-1);
  background-color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-1);
  background-color: rgba(92, 134, 167, 0.05);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%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-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c86a7'%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 {
overflow-x: hidden;
  padding: 1.25rem;
  background-color: #fff;
}

/* Gallery Section */
.gallery {
  background-color: var(--light-2);
}

.gallery-container {
  position: relative;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--dark-1);
  color: #fff;
  padding: 5rem 0 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-2);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-2);
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Additional pages */
.page-header {
  padding: 8rem 0;
  background-color: var(--primary-1);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.breadcrumb-img {
  max-width: 100px;
  height: auto;
}

.page-section {
  padding: 5rem 0;
}

.page-section:nth-child(odd) {
  background-color: var(--light-2);
}

.page-section:nth-child(even) {
  background-color: var(--light-1);
}

/* Space page */
.space-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-1);
} 