:root {
  /* Main color palette */
  --primary-1: #e6d7c3; /* Soft beige */
  --primary-2: #b3a59a; /* Warm taupe */
  --primary-3: #726e60; /* Sage gray */
  --primary-4: #4a443d; /* Deep brown */
  --primary-5: #85a3b2; /* Dusty blue */
  
  /* Tints and shades */
  --primary-1-light: #f4ede2;
  --primary-1-dark: #c9b8a0;
  --primary-2-light: #d1c8c0;
  --primary-2-dark: #8c7e74;
  --primary-3-light: #a09c8e;
  --primary-3-dark: #4e4a3c;
  --primary-4-light: #7a7169;
  --primary-4-dark: #2d2925;
  --primary-5-light: #b0c5d0;
  --primary-5-dark: #5c7382;
  
  /* Font sizes */
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-xxl: 3rem;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

/* Base styles */
body {
  font-family: 'Inter', sans-serif;
  color: var(--primary-4);
  background-color: #faf7f4;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-4-dark);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--primary-3);
  transition: color 0.3s ease;
  text-decoration: none;
}

a:hover {
  color: var(--primary-5);
}

/* Common utility classes */
.section-padding {
  padding: var(--space-lg) 0;
}

.section-title {
  position: relative;
  margin-bottom: var(--space-md);
  font-size: var(--fs-xl);
}

.section-subtitle {
  color: var(--primary-3);
  margin-bottom: var(--space-md);
  font-size: var(--fs-md);
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-block;
}

.btn-primary {
  background-color: var(--primary-3);
  color: white;
  border: 2px solid var(--primary-3);
}

.btn-primary:hover {
  background-color: var(--primary-3-dark);
  border-color: var(--primary-3-dark);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-3);
  border: 2px solid var(--primary-3);
}

.btn-outline:hover {
  background-color: var(--primary-3);
  color: white;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--primary-4-dark);
}

.navbar-nav .nav-link {
  color: var(--primary-4);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-5);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide {
  height: 100vh;
  min-height: 600px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  max-width: 700px;
}

.hero-title {
  font-size: var(--fs-xxl);
  margin-bottom: var(--space-sm);
  color: white;
}

.hero-subtitle {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.9);
}

.hero-desc {
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
  background-color: white;
}

.about-content {
  position: relative;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature {
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  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 {
  margin-bottom: var(--space-sm);
  color: var(--primary-5);
  font-size: 2.5rem;
}

.about-feature h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-xs);
}

/* Services Section */
.services-section {
  background-color: var(--primary-1-light);
}

.service-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--space-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.service-content {
  padding: var(--space-md);
}

.service-title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.service-desc {
  margin-bottom: var(--space-sm);
  color: var(--primary-3);
}

.service-features {
  margin-bottom: var(--space-sm);
}

.service-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "✓";
  color: var(--primary-5);
  position: absolute;
  left: 0;
}

.service-price {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--primary-4-dark);
  margin-bottom: var(--space-sm);
}

/* Features Section */
.features-section {
  background-color: white;
}

.feature-item {
  text-align: center;
  margin-bottom: var(--space-md);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-5);
  margin-bottom: var(--space-sm);
}

.feature-title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.feature-desc {
  color: var(--primary-3);
}

/* Price Plan Section */
.price-plan-section {
  background-color: var(--primary-1-light);
}

.price-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: var(--space-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: 10px;
  right: -30px;
  background-color: var(--primary-5);
  color: white;
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-size: var(--fs-sm);
  font-weight: 500;
}

.price-name {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.price-amount {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--primary-4-dark);
  margin-bottom: var(--space-sm);
}

.price-period {
  font-size: var(--fs-sm);
  color: var(--primary-3);
  display: block;
  margin-top: -0.5rem;
}

.price-desc {
  margin-bottom: var(--space-sm);
  color: var(--primary-3);
}

.price-features {
  margin-bottom: var(--space-md);
  text-align: left;
}

.price-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:before {
  content: "✓";
  color: var(--primary-5);
  position: absolute;
  left: 0;
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-member {
  text-align: center;
  margin-bottom: var(--space-md);
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-sm);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: var(--fs-lg);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-3);
  margin-bottom: var(--space-sm);
}

.team-social a {
  display: inline-block;
  color: var(--primary-3);
  margin: 0 0.5rem;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.team-social a:hover {
  color: var(--primary-5);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-1-light);
}

.review-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: var(--space-sm);
  color: var(--primary-3-dark);
}

.review-text:before,
.review-text:after {
  content: """;
  font-size: 2rem;
  color: var(--primary-1-dark);
}

.review-text:after {
  content: """;
}

.review-author {
  font-weight: 600;
  color: var(--primary-4-dark);
}

/* Core Info Section */
.coreinfo-section {
  background-color: white;
}

.coreinfo-item {
  text-align: center;
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--primary-5);
  margin-bottom: var(--space-sm);
}

.coreinfo-title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.coreinfo-desc {
  color: var(--primary-3);
}

/* Contact Section */
.contact-section {
  position: relative;
  background-color: var(--primary-1-light);
}

.contact-form {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-control {
  border: 1px solid var(--primary-1);
  padding: 0.75rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-5);
  box-shadow: 0 0 0 0.2rem rgba(133, 163, 178, 0.25);
}

.form-label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-4);
}

.contact-info {
  margin-bottom: var(--space-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.contact-icon {
  color: var(--primary-5);
  font-size: 1.25rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-text h4 {
  font-size: var(--fs-md);
  margin-bottom: 0.25rem;
}

.contact-text p {
  color: var(--primary-3);
  margin-bottom: 0;
}

/* Blog Section */
.blog-section {
  background-color: white;
}

.blog-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--space-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: var(--space-md);
}

.blog-title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.blog-excerpt {
  margin-bottom: var(--space-sm);
  color: var(--primary-3);
}

.blog-meta {
  color: var(--primary-3);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
}

/* Footer */
.footer {
  background-color: var(--primary-4-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-lg) 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-desc {
  margin-bottom: var(--space-md);
}

.footer-heading {
  font-size: var(--fs-md);
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: var(--fs-sm);
}

/* Decorative elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

.shape-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.shape-divider-top .shape-fill {
  fill: #FFFFFF;
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Space page specific */
#space {
  width: 100%;
  min-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-1-light);
}

/* Additional pages */
.additional-page-section {
  padding: var(--space-lg) 0;
}

.additional-page-section:nth-child(even) {
  background-color: var(--primary-1-light);
}

.additional-page-section:nth-child(odd) {
  background-color: white;
}

.section-element {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-element:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Swiper pagination styling */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary-5);
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-5);
}

/* Critical Swiper Fix Styles - Add at the end of the file */
.hero-section {
  min-height: 600px !important;
  height: 100vh !important;
  position: relative !important;
  display: block !important;
  margin-top: 76px !important;
  overflow: visible !important;
}

.swiper, 
.swiper-wrapper,
.swiper-slide {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1 !important;
}

.hero-swiper {
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
}

.hero-slide {
  width: 100% !important;
  height: 100% !important;
  background-position: center !important;
  background-size: cover !important;
}

.hero-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  display: flex !important;
  align-items: center !important;
}

.hero-content {
  z-index: 100 !important;
  color: #fff !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

.hero-title,
.hero-subtitle,
.hero-desc {
  color: #fff !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 200 !important;
}

.swiper-pagination-bullet {
  background-color: #fff !important;
  opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
  background-color: #85a3b2 !important;
  opacity: 1 !important;
} . s w i p e r - p a g i n a t i o n - b u l l e t - a c t i v e   {   b a c k g r o u n d - c o l o r :   # 8 5 a 3 b 2   ! i m p o r t a n t ;   o p a c i t y :   1   ! i m p o r t a n t ;   }  
 