:root {
  /* Primary Color Palette */
  --primary-1: #7c9881; /* sage green */
  --primary-2: #d2b48c; /* tan */
  --primary-3: #6c7a89; /* slate */
  --primary-4: #a17c6b; /* taupe */
  --primary-5: #b0c4de; /* light steel blue */
  
  /* Shades */
  --primary-1-light: #a3b8a7;
  --primary-1-dark: #5a7460;
  --primary-2-light: #e8d5b9;
  --primary-2-dark: #ac9370;
  --primary-3-light: #8c97a3;
  --primary-3-dark: #505964;
  --primary-4-light: #c1a494;
  --primary-4-dark: #7a5d50;
  --primary-5-light: #d0dced;
  --primary-5-dark: #8a9eb8;
  
  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #212529;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

a {
  color: var(--primary-1-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1);
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  color: var(--white);
  padding: 0.8rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background-color: var(--primary-1);
  transform: translateX(-50%);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/* Header */
header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .navbar-brand {
  color: var(--primary-1-dark);
  font-weight: 700;
  font-size: 1.8rem;
}

header .nav-link {
  color: var(--dark-gray);
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  position: relative;
}

header .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-1);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

header .nav-link:hover:before,
header .nav-link.active:before {
  width: 80%;
}

header .nav-link:hover,
header .nav-link.active {
  color: var(--primary-1);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-color: var(--primary-3-light);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
  color: var(--off-white);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: var(--light-gray);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 3;
  padding: 20px;
}

.hero-image img {
  max-height: 80vh;
  object-fit: contain;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 4;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary-1);
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  padding: 30px 0 30px 30px;
}

.about-feature {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.about-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--off-white);
  position: relative;
}

.service-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-1-light);
  opacity: 0.1;
  z-index: -1;
  transition: all 0.3s ease;
}

.service-item:hover:before {
  height: 100%;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 1.5rem;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-3);
  margin: 1rem 0;
}

.service-features {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
}

.service-features ul {
  padding-left: 1rem;
}

.service-features li {
  padding: 5px 0;
  position: relative;
}

/* Features Section */
.features-section {
  position: relative;
  overflow: hidden;
}

.feature-item {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--primary-1-light);
  color: var(--primary-1-dark);
  font-size: 2rem;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--primary-1);
  color: var(--white);
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--off-white);
  position: relative;
}

.price-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-item.featured {
  border: 2px solid var(--primary-1);
  transform: scale(1.05);
}

.price-item.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.price-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 30px;
}

.price-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-1-dark);
  margin-bottom: 1rem;
}

.price-period {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.price-features {
  margin-bottom: 30px;
}

.price-features ul {
  padding: 0;
  list-style: none;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

/* Team Section */
.team-section {
  position: relative;
}

.team-member {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  background-color: var(--white);
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-1);
  font-style: italic;
  margin-bottom: 10px;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--off-white);
  position: relative;
}

.review-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-top: 30px;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5rem;
  color: var(--primary-1-light);
}

.review-author {
  font-weight: 700;
  display: block;
  margin-top: 15px;
  color: var(--primary-1-dark);
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
  overflow: hidden;
}

.coreinfo-item {
  padding: 40px 30px;
  margin-bottom: 30px;
  text-align: center;
  background-color: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.coreinfo-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--primary-1);
  transition: all 0.3s ease;
}

.coreinfo-item:hover:before {
  width: 100%;
  opacity: 0.1;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 20px;
}

.coreinfo-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Blog Section */
.blog-section {
  background-color: var(--off-white);
  position: relative;
}

.blog-item {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-1);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 700;
  z-index: 1;
}

.blog-content {
  padding: 30px;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.blog-content h3:hover {
  color: var(--primary-1);
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 700;
  color: var(--primary-1);
  position: relative;
  padding-right: 20px;
  display: inline-block;
}

.blog-link:after {
  content: '\f061';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.blog-link:hover:after {
  right: -5px;
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-info {
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--primary-1);
  margin-right: 15px;
  min-width: 30px;
}

.contact-info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-form {
  padding: 40px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(124, 152, 129, 0.25);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.form-check-label {
  padding-left: 10px;
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--light-gray);
  padding: 80px 0 20px;
  position: relative;
}

.footer-heading {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--light-gray);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-1);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 20px;
}

.footer-info p {
  margin-bottom: 15px;
}

.footer-social {
  margin-top: 30px;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 60px;
}

.copyright {
  font-size: 0.9rem;
}

/* Additional Pages */
.page-header {
  position: relative;
  height: 300px;
  background-color: var(--primary-3);
  overflow: hidden;
}

.page-header-content {
  position: relative;
  z-index: 3;
  padding: 100px 0;
  text-align: center;
}

.page-header-content h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.page-header-content p {
  color: var(--light-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.add-page-section {
  padding: 100px 0;
}

.add-page-section:nth-child(even) {
  background-color: var(--off-white);
}

.add-page-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.add-page-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.add-page-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-1-dark);
}

.add-page-item-icon {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 20px;
}

/* Space Page */
.space-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--off-white);
  padding: 100px 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

/* Decorative Elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.shape-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-divider-top svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.bg-dots {
  background-image: radial-gradient(var(--light-gray) 2px, transparent 2px);
  background-size: 20px 20px;
}

.bg-lines {
  background: linear-gradient(to right, var(--light-gray) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-1) !important;
}

.bg-primary {
  background-color: var(--primary-1) !important;
}

.shadow-sm {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.shadow-lg {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
  border-radius: 10px !important;
}

.overflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
} 